
    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_bea715fd8b22730f9b1adddf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ab44c7d9e6fd88de0316b993.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_d6dd6d51d293132682288c30.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b522e484938f71c5e4e1153b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8de51eb010dc1f195837d58b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c9e9b527774ab547ccade566.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f9303fe0da2633928df1285.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_2d91c0820ed8fd83e700798a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e82dc44916d6a7e3d02101ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_219a791fdc598539aa6bdee0.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b31ceb6ef58935ce7e27607c.woff2')format("woff");}.ffd{font-family:ffd;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: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_113def3bb43b52a72df96363.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_ffa6509eeebc879be2da2b9d.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);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-71.280000px;}
.v3{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.291600px;}
.ls28{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.018000px;}
.lsf{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.018000px;}
.ls2b{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls2c{letter-spacing:0.108000px;}
.lse{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls5{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.210240px;}
.lsa{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.269400px;}
.ls2e{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.316800px;}
.ls7{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.900000px;}
.lsc{letter-spacing:1.080000px;}
.ls1a{letter-spacing:3.060000px;}
.ls6{letter-spacing:4.500000px;}
.lsb{letter-spacing:5.220000px;}
.ls23{letter-spacing:7.380000px;}
.ls22{letter-spacing:8.100000px;}
.ls17{letter-spacing:8.586720px;}
.lsd{letter-spacing:11.700000px;}
.ls14{letter-spacing:11.880000px;}
.ls1d{letter-spacing:12.420000px;}
.ls8{letter-spacing:13.860000px;}
.ls21{letter-spacing:14.580000px;}
.ls26{letter-spacing:15.066720px;}
.ls12{letter-spacing:18.180000px;}
.ls20{letter-spacing:23.940000px;}
.ls1c{letter-spacing:39.060000px;}
.ls27{letter-spacing:41.940000px;}
.ls1f{letter-spacing:44.562720px;}
.ls24{letter-spacing:47.700000px;}
.ls25{letter-spacing:49.860000px;}
.ls1e{letter-spacing:250.020000px;}
.ls4{letter-spacing:904.620000px;}
.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;}
.ws12{word-spacing:-54.468000px;}
.ws11{word-spacing:-54.270000px;}
.ws10{word-spacing:-54.000000px;}
.wsf{word-spacing:-16.280640px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.680200px;}
.ws3{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.626000px;}
.ws13{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.410000px;}
.ws14{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.284000px;}
.ws18{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.064160px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-7.740000px;}
._15{margin-left:-3.677760px;}
._8{margin-left:-2.670960px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._7{width:3.024240px;}
._6{width:4.709760px;}
._9{width:6.253440px;}
._e{width:7.350480px;}
._4{width:8.761920px;}
._5{width:10.183680px;}
._b{width:11.593440px;}
._a{width:13.247760px;}
._14{width:16.057680px;}
._3{width:17.076960px;}
._1b{width:18.117600px;}
._f{width:19.141680px;}
._c{width:20.451840px;}
._d{width:21.633120px;}
._12{width:23.542080px;}
._13{width:24.800400px;}
._10{width:26.234640px;}
._18{width:28.206720px;}
._11{width:29.520240px;}
._17{width:31.015440px;}
._16{width:32.569200px;}
._19{width:39.667680px;}
._1a{width:40.712880px;}
._20{width:43.179600px;}
._1c{width:48.099600px;}
._1e{width:49.395120px;}
._1d{width:50.676480px;}
._1f{width:51.815760px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs9{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.520000px;}
.y6d{bottom:2.880000px;}
.y97{bottom:2.910000px;}
.y7a{bottom:3.060000px;}
.y65{bottom:3.600000px;}
.y4b{bottom:3.645000px;}
.y90{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.yb4{bottom:9.615000px;}
.yb0{bottom:10.590000px;}
.y76{bottom:10.620000px;}
.y115{bottom:10.665000px;}
.yae{bottom:10.770000px;}
.y72{bottom:10.800000px;}
.y4d{bottom:11.880000px;}
.y4c{bottom:12.060000px;}
.y1a6{bottom:16.560000px;}
.y6b{bottom:18.360000px;}
.y116{bottom:18.405000px;}
.y74{bottom:18.540000px;}
.y96{bottom:18.570000px;}
.y68{bottom:26.100000px;}
.y70{bottom:26.280000px;}
.y93{bottom:26.310000px;}
.y9{bottom:32.940000px;}
.y6a{bottom:33.840000px;}
.y73{bottom:34.020000px;}
.y95{bottom:34.050000px;}
.y67{bottom:41.580000px;}
.y6f{bottom:41.760000px;}
.y7{bottom:48.600000px;}
.y69{bottom:49.500000px;}
.y94{bottom:49.530000px;}
.y71{bottom:57.240000px;}
.y78{bottom:57.420000px;}
.y6c{bottom:64.980000px;}
.y103{bottom:65.025000px;}
.yfe{bottom:65.160000px;}
.y79{bottom:65.205000px;}
.ydf{bottom:72.720000px;}
.y6{bottom:72.900000px;}
.y101{bottom:72.945000px;}
.yd5{bottom:80.460000px;}
.yff{bottom:80.640000px;}
.y102{bottom:80.685000px;}
.y109{bottom:88.200000px;}
.yde{bottom:88.380000px;}
.y107{bottom:88.425000px;}
.ybb{bottom:89.850000px;}
.ya8{bottom:90.180000px;}
.y8a{bottom:91.440000px;}
.yaa{bottom:93.030000px;}
.y1a7{bottom:94.140000px;}
.y49{bottom:95.220000px;}
.y1a5{bottom:95.400000px;}
.y10b{bottom:95.970000px;}
.yd4{bottom:96.120000px;}
.y105{bottom:96.165000px;}
.y14b{bottom:100.980000px;}
.ydd{bottom:103.860000px;}
.y106{bottom:103.905000px;}
.yfc{bottom:105.480000px;}
.ya7{bottom:107.460000px;}
.y89{bottom:108.720000px;}
.y178{bottom:109.980000px;}
.yd3{bottom:111.600000px;}
.y10c{bottom:111.630000px;}
.y104{bottom:111.645000px;}
.y48{bottom:112.500000px;}
.y126{bottom:113.940000px;}
.y14a{bottom:118.260000px;}
.yc4{bottom:119.340000px;}
.yfb{bottom:122.760000px;}
.ya6{bottom:125.820000px;}
.y88{bottom:126.000000px;}
.yd2{bottom:127.080000px;}
.y177{bottom:127.260000px;}
.y47{bottom:129.780000px;}
.y125{bottom:131.040000px;}
.y1a4{bottom:133.560000px;}
.yc3{bottom:134.820000px;}
.y149{bottom:135.540000px;}
.yfa{bottom:140.040000px;}
.yd1{bottom:142.560000px;}
.y87{bottom:143.280000px;}
.ya5{bottom:144.180000px;}
.y176{bottom:144.540000px;}
.y46{bottom:147.060000px;}
.y124{bottom:148.320000px;}
.y1a3{bottom:149.400000px;}
.yc2{bottom:150.300000px;}
.yf3{bottom:150.480000px;}
.y148{bottom:152.640000px;}
.yf9{bottom:157.320000px;}
.yec{bottom:158.220000px;}
.yd0{bottom:158.265000px;}
.y86{bottom:160.380000px;}
.ya4{bottom:161.460000px;}
.y175{bottom:161.640000px;}
.y45{bottom:164.340000px;}
.y123{bottom:165.600000px;}
.yf2{bottom:165.960000px;}
.yc1{bottom:166.005000px;}
.y1a2{bottom:166.680000px;}
.y147{bottom:169.920000px;}
.ycf{bottom:173.745000px;}
.yf8{bottom:174.600000px;}
.y85{bottom:177.660000px;}
.ya3{bottom:178.560000px;}
.y174{bottom:178.920000px;}
.y44{bottom:181.440000px;}
.yc0{bottom:181.485000px;}
.y122{bottom:182.880000px;}
.y1a1{bottom:183.630000px;}
.y146{bottom:187.230000px;}
.yce{bottom:189.225000px;}
.yf7{bottom:191.910000px;}
.y84{bottom:194.970000px;}
.ya2{bottom:195.870000px;}
.y173{bottom:196.230000px;}
.ybf{bottom:196.965000px;}
.y43{bottom:198.750000px;}
.y1a0{bottom:199.470000px;}
.y121{bottom:200.190000px;}
.y145{bottom:204.510000px;}
.ycd{bottom:204.705000px;}
.yf6{bottom:209.010000px;}
.ya1{bottom:209.910000px;}
.y83{bottom:212.250000px;}
.ybe{bottom:212.445000px;}
.ye1{bottom:212.625000px;}
.y172{bottom:213.510000px;}
.y42{bottom:216.030000px;}
.y19f{bottom:216.750000px;}
.y120{bottom:217.470000px;}
.ycc{bottom:220.365000px;}
.y144{bottom:221.790000px;}
.yf5{bottom:226.290000px;}
.ydc{bottom:228.105000px;}
.y82{bottom:229.530000px;}
.y171{bottom:230.790000px;}
.y41{bottom:233.310000px;}
.y19e{bottom:233.670000px;}
.y11f{bottom:234.570000px;}
.ycb{bottom:235.845000px;}
.y143{bottom:239.070000px;}
.yf4{bottom:243.570000px;}
.ydb{bottom:243.585000px;}
.y81{bottom:246.630000px;}
.y170{bottom:248.070000px;}
.y19d{bottom:249.150000px;}
.yca{bottom:251.325000px;}
.y11e{bottom:251.850000px;}
.y40{bottom:255.090000px;}
.yba{bottom:256.140000px;}
.y142{bottom:256.170000px;}
.ye0{bottom:258.330000px;}
.yda{bottom:259.065000px;}
.y80{bottom:263.910000px;}
.y19c{bottom:264.990000px;}
.y16f{bottom:265.170000px;}
.yc9{bottom:266.805000px;}
.y11d{bottom:269.130000px;}
.y141{bottom:273.450000px;}
.yd9{bottom:274.545000px;}
.y3f{bottom:276.870000px;}
.y7f{bottom:281.190000px;}
.y19b{bottom:282.270000px;}
.y16e{bottom:282.450000px;}
.yc8{bottom:282.465000px;}
.yb9{bottom:283.890000px;}
.y11c{bottom:286.410000px;}
.yd8{bottom:290.205000px;}
.y3e{bottom:293.970000px;}
.yc7{bottom:297.945000px;}
.y7e{bottom:298.470000px;}
.y19a{bottom:299.190000px;}
.yb8{bottom:299.370000px;}
.y16d{bottom:299.730000px;}
.y11b{bottom:303.690000px;}
.yd7{bottom:305.685000px;}
.y3d{bottom:311.250000px;}
.yc6{bottom:313.425000px;}
.yb7{bottom:315.030000px;}
.y7d{bottom:315.750000px;}
.y16c{bottom:317.010000px;}
.y11a{bottom:318.450000px;}
.yd6{bottom:321.165000px;}
.y3c{bottom:328.530000px;}
.yc5{bottom:328.905000px;}
.yb6{bottom:330.510000px;}
.y199{bottom:332.310000px;}
.y7c{bottom:333.030000px;}
.y16b{bottom:334.290000px;}
.y119{bottom:334.650000px;}
.yf1{bottom:336.645000px;}
.y140{bottom:343.110000px;}
.yeb{bottom:344.565000px;}
.y3b{bottom:345.810000px;}
.yb5{bottom:345.990000px;}
.y198{bottom:349.590000px;}
.y7b{bottom:350.130000px;}
.y16a{bottom:351.570000px;}
.yf0{bottom:352.305000px;}
.yea{bottom:360.045000px;}
.y3a{bottom:363.090000px;}
.y77{bottom:364.890000px;}
.y118{bottom:366.510000px;}
.yef{bottom:367.785000px;}
.y169{bottom:368.670000px;}
.ye9{bottom:375.525000px;}
.y39{bottom:380.370000px;}
.y197{bottom:382.350000px;}
.y117{bottom:382.710000px;}
.yee{bottom:383.265000px;}
.y168{bottom:385.950000px;}
.ye8{bottom:391.005000px;}
.y38{bottom:397.470000px;}
.yed{bottom:398.745000px;}
.y196{bottom:399.630000px;}
.y167{bottom:403.230000px;}
.ye7{bottom:406.665000px;}
.y13f{bottom:412.950000px;}
.y114{bottom:414.570000px;}
.y37{bottom:414.750000px;}
.y195{bottom:416.730000px;}
.y166{bottom:420.510000px;}
.ye6{bottom:422.175000px;}
.y4a{bottom:423.030000px;}
.y13e{bottom:430.275000px;}
.y36{bottom:432.075000px;}
.y194{bottom:433.875000px;}
.ye5{bottom:437.655000px;}
.y165{bottom:437.835000px;}
.y75{bottom:443.415000px;}
.y13d{bottom:447.555000px;}
.y35{bottom:449.355000px;}
.y193{bottom:449.715000px;}
.ye4{bottom:453.135000px;}
.y164{bottom:454.935000px;}
.y113{bottom:464.655000px;}
.y13c{bottom:464.835000px;}
.y34{bottom:466.635000px;}
.y192{bottom:466.815000px;}
.ye3{bottom:468.795000px;}
.yb3{bottom:470.520000px;}
.y163{bottom:472.215000px;}
.y112{bottom:481.935000px;}
.y33{bottom:483.735000px;}
.y191{bottom:484.095000px;}
.ye2{bottom:484.275000px;}
.y162{bottom:489.495000px;}
.y111{bottom:499.035000px;}
.y13b{bottom:499.215000px;}
.y190{bottom:501.015000px;}
.y32{bottom:501.375000px;}
.y161{bottom:506.775000px;}
.ya0{bottom:512.535000px;}
.y31{bottom:515.235000px;}
.y110{bottom:516.315000px;}
.y13a{bottom:516.495000px;}
.y18f{bottom:516.855000px;}
.y6e{bottom:521.715000px;}
.y160{bottom:524.055000px;}
.y30{bottom:529.095000px;}
.y9f{bottom:529.635000px;}
.y10f{bottom:533.595000px;}
.y139{bottom:533.775000px;}
.y18e{bottom:534.135000px;}
.y15f{bottom:541.335000px;}
.y2f{bottom:542.955000px;}
.y9e{bottom:546.915000px;}
.y10e{bottom:550.875000px;}
.y138{bottom:551.055000px;}
.y18d{bottom:551.415000px;}
.y2e{bottom:556.635000px;}
.y15e{bottom:558.435000px;}
.y9d{bottom:564.195000px;}
.y10d{bottom:568.155000px;}
.y137{bottom:568.335000px;}
.y2d{bottom:570.495000px;}
.y9c{bottom:581.475000px;}
.y10a{bottom:582.915000px;}
.y18c{bottom:584.175000px;}
.y2c{bottom:584.355000px;}
.y136{bottom:585.435000px;}
.y2b{bottom:598.035000px;}
.y9b{bottom:598.755000px;}
.y66{bottom:600.195000px;}
.y18b{bottom:601.455000px;}
.y135{bottom:602.715000px;}
.y2a{bottom:611.895000px;}
.y9a{bottom:615.855000px;}
.y18a{bottom:618.735000px;}
.y134{bottom:619.995000px;}
.y29{bottom:625.755000px;}
.y15d{bottom:628.095000px;}
.y99{bottom:633.135000px;}
.y189{bottom:635.655000px;}
.y133{bottom:637.275000px;}
.y28{bottom:639.435000px;}
.y98{bottom:650.415000px;}
.y188{bottom:651.495000px;}
.y27{bottom:653.295000px;}
.y132{bottom:654.555000px;}
.y92{bottom:665.175000px;}
.y26{bottom:667.005000px;}
.y187{bottom:668.625000px;}
.y131{bottom:671.865000px;}
.y64{bottom:678.525000px;}
.y25{bottom:680.865000px;}
.y186{bottom:685.905000px;}
.y130{bottom:688.965000px;}
.y24{bottom:694.725000px;}
.y15c{bottom:697.965000px;}
.y185{bottom:702.825000px;}
.y12f{bottom:706.245000px;}
.y108{bottom:707.865000px;}
.y23{bottom:708.405000px;}
.y63{bottom:714.525000px;}
.y15b{bottom:715.245000px;}
.y184{bottom:718.665000px;}
.y22{bottom:722.265000px;}
.y12e{bottom:723.525000px;}
.y91{bottom:728.025000px;}
.y62{bottom:731.805000px;}
.y15a{bottom:732.525000px;}
.y183{bottom:735.945000px;}
.y21{bottom:736.125000px;}
.y12d{bottom:740.805000px;}
.y61{bottom:749.085000px;}
.y20{bottom:749.805000px;}
.y182{bottom:753.225000px;}
.ybd{bottom:755.925000px;}
.y12c{bottom:758.085000px;}
.y1f{bottom:763.665000px;}
.y60{bottom:766.365000px;}
.y159{bottom:767.085000px;}
.y181{bottom:770.145000px;}
.y12b{bottom:775.365000px;}
.y1e{bottom:777.525000px;}
.y5f{bottom:783.465000px;}
.y158{bottom:784.365000px;}
.y180{bottom:785.985000px;}
.y8f{bottom:790.845000px;}
.y1d{bottom:791.205000px;}
.y12a{bottom:792.465000px;}
.y157{bottom:801.465000px;}
.y17f{bottom:803.265000px;}
.y1c{bottom:805.065000px;}
.y5e{bottom:805.245000px;}
.y129{bottom:809.745000px;}
.y156{bottom:818.745000px;}
.y1b{bottom:818.925000px;}
.y17e{bottom:820.545000px;}
.y8e{bottom:826.845000px;}
.y5d{bottom:827.025000px;}
.y1a{bottom:832.785000px;}
.y17d{bottom:834.585000px;}
.y155{bottom:836.025000px;}
.y8d{bottom:844.125000px;}
.y5c{bottom:844.305000px;}
.y100{bottom:848.265000px;}
.y19{bottom:849.885000px;}
.y154{bottom:853.305000px;}
.y8c{bottom:861.405000px;}
.y5b{bottom:861.585000px;}
.y18{bottom:866.985000px;}
.y153{bottom:870.585000px;}
.y5a{bottom:878.685000px;}
.y17{bottom:884.265000px;}
.y152{bottom:887.685000px;}
.y59{bottom:895.965000px;}
.y17c{bottom:896.685000px;}
.y16{bottom:901.545000px;}
.y151{bottom:904.965000px;}
.y8b{bottom:910.050000px;}
.y17b{bottom:912.210000px;}
.y58{bottom:913.290000px;}
.y15{bottom:918.870000px;}
.y150{bottom:922.290000px;}
.yb2{bottom:923.220000px;}
.y17a{bottom:927.690000px;}
.y57{bottom:930.570000px;}
.y14{bottom:936.150000px;}
.y14f{bottom:939.570000px;}
.y56{bottom:947.850000px;}
.y14e{bottom:956.850000px;}
.y55{bottom:965.130000px;}
.ya9{bottom:968.580000px;}
.y13{bottom:971.250000px;}
.yfd{bottom:973.230000px;}
.y14d{bottom:974.130000px;}
.y128{bottom:982.230000px;}
.y54{bottom:986.730000px;}
.y179{bottom:989.790000px;}
.yb1{bottom:991.080000px;}
.y14c{bottom:991.230000px;}
.y12{bottom:991.950000px;}
.y127{bottom:1004.010000px;}
.y53{bottom:1008.510000px;}
.y11{bottom:1012.650000px;}
.y52{bottom:1025.790000px;}
.yac{bottom:1030.650000px;}
.y10{bottom:1033.350000px;}
.y51{bottom:1043.070000px;}
.yab{bottom:1046.130000px;}
.yf{bottom:1054.050000px;}
.y50{bottom:1060.350000px;}
.yaf{bottom:1062.360000px;}
.y4f{bottom:1077.630000px;}
.ye{bottom:1094.730000px;}
.ybc{bottom:1098.150000px;}
.yd{bottom:1112.010000px;}
.yc{bottom:1129.290000px;}
.yad{bottom:1135.980000px;}
.yb{bottom:1146.570000px;}
.ya{bottom:1163.880000px;}
.y5{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h31{height:5.653125px;}
.h2a{height:15.480000px;}
.h2d{height:15.516000px;}
.h16{height:17.100000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h21{height:29.160000px;}
.h14{height:30.209062px;}
.h20{height:30.960000px;}
.h29{height:30.996000px;}
.h1f{height:31.140000px;}
.h15{height:32.835938px;}
.h2e{height:35.280000px;}
.h3{height:38.089687px;}
.hf{height:40.231406px;}
.h2f{height:40.985156px;}
.h18{height:45.035156px;}
.h23{height:46.620000px;}
.he{height:47.321367px;}
.h6{height:47.344922px;}
.h30{height:48.616875px;}
.h10{height:49.838906px;}
.h9{height:50.068125px;}
.h2b{height:52.971680px;}
.h4{height:52.998047px;}
.h2c{height:53.709961px;}
.hd{height:58.621992px;}
.hb{height:58.651172px;}
.h11{height:60.226875px;}
.h1d{height:61.423863px;}
.h1b{height:62.100000px;}
.h1c{height:62.136000px;}
.ha{height:65.884219px;}
.h12{height:66.996000px;}
.hc{height:72.562500px;}
.h19{height:77.580000px;}
.h17{height:77.616000px;}
.h1a{height:77.796000px;}
.h26{height:124.200000px;}
.h27{height:124.236000px;}
.h22{height:127.440000px;}
.h28{height:139.680000px;}
.h1e{height:164.700000px;}
.h13{height:282.656250px;}
.h24{height:341.490000px;}
.h25{height:496.875000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.w1e{width:84.960000px;}
.w19{width:104.040000px;}
.w16{width:110.340000px;}
.w18{width:122.436000px;}
.w1b{width:135.180000px;}
.w1c{width:135.216000px;}
.wf{width:136.980000px;}
.wc{width:137.160000px;}
.w11{width:137.880000px;}
.w17{width:141.336000px;}
.w3{width:157.530000px;}
.wd{width:158.790000px;}
.w15{width:159.480000px;}
.w1a{width:197.670000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.w2{width:269.670000px;}
.w12{width:271.260000px;}
.w13{width:271.440000px;}
.we{width:381.495000px;}
.wa{width:434.415000px;}
.w14{width:502.380000px;}
.w10{width:541.185000px;}
.w1f{width:595.545000px;}
.w6{width:680.325000px;}
.w1d{width:682.485000px;}
.wb{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x61{left:1.980000px;}
.x64{left:5.220000px;}
.x2{left:8.100000px;}
.x17{left:9.360000px;}
.x2b{left:10.830000px;}
.x1c{left:12.420000px;}
.x52{left:13.500000px;}
.x4d{left:14.580000px;}
.x50{left:15.660000px;}
.x44{left:16.740000px;}
.x4a{left:17.820000px;}
.x45{left:19.620000px;}
.x49{left:20.880000px;}
.x4b{left:22.140000px;}
.x25{left:23.940000px;}
.x51{left:25.020000px;}
.x4f{left:26.640000px;}
.x46{left:28.260000px;}
.x30{left:29.415000px;}
.x53{left:31.320000px;}
.x32{left:33.375000px;}
.x4c{left:34.380000px;}
.x4{left:35.640000px;}
.x4e{left:37.080000px;}
.x56{left:38.340000px;}
.x42{left:39.420000px;}
.x48{left:40.680000px;}
.x27{left:41.940000px;}
.x55{left:43.200000px;}
.x40{left:44.460000px;}
.x57{left:46.440000px;}
.x5e{left:47.520000px;}
.x6{left:50.040000px;}
.x60{left:55.074000px;}
.x5c{left:56.340000px;}
.x54{left:61.200000px;}
.x1e{left:64.485000px;}
.x2e{left:73.185000px;}
.x63{left:74.334000px;}
.x34{left:85.530000px;}
.x14{left:97.596000px;}
.x15{left:104.256000px;}
.x1{left:106.416000px;}
.x62{left:114.516000px;}
.x13{left:127.655987px;}
.xb{left:131.795987px;}
.x20{left:132.870000px;}
.x12{left:159.509987px;}
.x11{left:162.929987px;}
.x19{left:173.730000px;}
.x33{left:191.880000px;}
.x9{left:198.929987px;}
.x2a{left:203.220000px;}
.x24{left:214.049987px;}
.x3f{left:218.370000px;}
.x58{left:222.149987px;}
.x29{left:226.469987px;}
.x26{left:229.365000px;}
.x2c{left:236.189987px;}
.xc{left:238.889987px;}
.x5d{left:241.409987px;}
.x59{left:243.030000px;}
.x1d{left:245.010000px;}
.x1b{left:247.709987px;}
.x22{left:252.209987px;}
.x38{left:256.349987px;}
.x3e{left:264.089987px;}
.x35{left:269.309987px;}
.x37{left:276.149987px;}
.x36{left:279.209987px;}
.x8{left:326.919000px;}
.x1a{left:331.239000px;}
.x16{left:333.255000px;}
.x23{left:335.594987px;}
.x18{left:354.495000px;}
.x41{left:360.435000px;}
.x3{left:376.095000px;}
.x5a{left:378.975000px;}
.x31{left:399.420000px;}
.x1f{left:404.535000px;}
.x2f{left:408.780000px;}
.x5f{left:418.574987px;}
.x2d{left:426.420000px;}
.xa{left:446.474987px;}
.xd{left:448.814987px;}
.x43{left:483.585000px;}
.x39{left:493.560000px;}
.x3a{left:508.784987px;}
.x3c{left:515.804987px;}
.x3b{left:524.084987px;}
.x5{left:533.625000px;}
.x3d{left:536.684987px;}
.x47{left:588.345000px;}
.xf{left:590.864987px;}
.xe{left:596.984987px;}
.x5b{left:650.805000px;}
.x10{left:661.244987px;}
.x21{left:724.829987px;}
.x28{left:744.629987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-63.360000pt;}
.v3{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.259200pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.016000pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls2c{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.186880pt;}
.lsa{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.239467pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.281600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls6{letter-spacing:4.000000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls23{letter-spacing:6.560000pt;}
.ls22{letter-spacing:7.200000pt;}
.ls17{letter-spacing:7.632640pt;}
.lsd{letter-spacing:10.400000pt;}
.ls14{letter-spacing:10.560000pt;}
.ls1d{letter-spacing:11.040000pt;}
.ls8{letter-spacing:12.320000pt;}
.ls21{letter-spacing:12.960000pt;}
.ls26{letter-spacing:13.392640pt;}
.ls12{letter-spacing:16.160000pt;}
.ls20{letter-spacing:21.280000pt;}
.ls1c{letter-spacing:34.720000pt;}
.ls27{letter-spacing:37.280000pt;}
.ls1f{letter-spacing:39.611307pt;}
.ls24{letter-spacing:42.400000pt;}
.ls25{letter-spacing:44.320000pt;}
.ls1e{letter-spacing:222.240000pt;}
.ls4{letter-spacing:804.106667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws12{word-spacing:-48.416000pt;}
.ws11{word-spacing:-48.240000pt;}
.ws10{word-spacing:-48.000000pt;}
.wsf{word-spacing:-14.471680pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.049067pt;}
.ws3{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.160000pt;}
.ws15{word-spacing:-12.112000pt;}
.ws13{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.920000pt;}
.ws14{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.808000pt;}
.ws18{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-6.880000pt;}
._15{margin-left:-3.269120pt;}
._8{margin-left:-2.374187pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._7{width:2.688213pt;}
._6{width:4.186453pt;}
._9{width:5.558613pt;}
._e{width:6.533760pt;}
._4{width:7.788373pt;}
._5{width:9.052160pt;}
._b{width:10.305280pt;}
._a{width:11.775787pt;}
._14{width:14.273493pt;}
._3{width:15.179520pt;}
._1b{width:16.104533pt;}
._f{width:17.014827pt;}
._c{width:18.179413pt;}
._d{width:19.229440pt;}
._12{width:20.926293pt;}
._13{width:22.044800pt;}
._10{width:23.319680pt;}
._18{width:25.072640pt;}
._11{width:26.240213pt;}
._17{width:27.569280pt;}
._16{width:28.950400pt;}
._19{width:35.260160pt;}
._1a{width:36.189227pt;}
._20{width:38.381867pt;}
._1c{width:42.755200pt;}
._1e{width:43.906773pt;}
._1d{width:45.045760pt;}
._1f{width:46.058453pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs9{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.240000pt;}
.y6d{bottom:2.560000pt;}
.y97{bottom:2.586667pt;}
.y7a{bottom:2.720000pt;}
.y65{bottom:3.200000pt;}
.y4b{bottom:3.240000pt;}
.y90{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.yb4{bottom:8.546667pt;}
.yb0{bottom:9.413333pt;}
.y76{bottom:9.440000pt;}
.y115{bottom:9.480000pt;}
.yae{bottom:9.573333pt;}
.y72{bottom:9.600000pt;}
.y4d{bottom:10.560000pt;}
.y4c{bottom:10.720000pt;}
.y1a6{bottom:14.720000pt;}
.y6b{bottom:16.320000pt;}
.y116{bottom:16.360000pt;}
.y74{bottom:16.480000pt;}
.y96{bottom:16.506667pt;}
.y68{bottom:23.200000pt;}
.y70{bottom:23.360000pt;}
.y93{bottom:23.386667pt;}
.y9{bottom:29.280000pt;}
.y6a{bottom:30.080000pt;}
.y73{bottom:30.240000pt;}
.y95{bottom:30.266667pt;}
.y67{bottom:36.960000pt;}
.y6f{bottom:37.120000pt;}
.y7{bottom:43.200000pt;}
.y69{bottom:44.000000pt;}
.y94{bottom:44.026667pt;}
.y71{bottom:50.880000pt;}
.y78{bottom:51.040000pt;}
.y6c{bottom:57.760000pt;}
.y103{bottom:57.800000pt;}
.yfe{bottom:57.920000pt;}
.y79{bottom:57.960000pt;}
.ydf{bottom:64.640000pt;}
.y6{bottom:64.800000pt;}
.y101{bottom:64.840000pt;}
.yd5{bottom:71.520000pt;}
.yff{bottom:71.680000pt;}
.y102{bottom:71.720000pt;}
.y109{bottom:78.400000pt;}
.yde{bottom:78.560000pt;}
.y107{bottom:78.600000pt;}
.ybb{bottom:79.866667pt;}
.ya8{bottom:80.160000pt;}
.y8a{bottom:81.280000pt;}
.yaa{bottom:82.693333pt;}
.y1a7{bottom:83.680000pt;}
.y49{bottom:84.640000pt;}
.y1a5{bottom:84.800000pt;}
.y10b{bottom:85.306667pt;}
.yd4{bottom:85.440000pt;}
.y105{bottom:85.480000pt;}
.y14b{bottom:89.760000pt;}
.ydd{bottom:92.320000pt;}
.y106{bottom:92.360000pt;}
.yfc{bottom:93.760000pt;}
.ya7{bottom:95.520000pt;}
.y89{bottom:96.640000pt;}
.y178{bottom:97.760000pt;}
.yd3{bottom:99.200000pt;}
.y10c{bottom:99.226667pt;}
.y104{bottom:99.240000pt;}
.y48{bottom:100.000000pt;}
.y126{bottom:101.280000pt;}
.y14a{bottom:105.120000pt;}
.yc4{bottom:106.080000pt;}
.yfb{bottom:109.120000pt;}
.ya6{bottom:111.840000pt;}
.y88{bottom:112.000000pt;}
.yd2{bottom:112.960000pt;}
.y177{bottom:113.120000pt;}
.y47{bottom:115.360000pt;}
.y125{bottom:116.480000pt;}
.y1a4{bottom:118.720000pt;}
.yc3{bottom:119.840000pt;}
.y149{bottom:120.480000pt;}
.yfa{bottom:124.480000pt;}
.yd1{bottom:126.720000pt;}
.y87{bottom:127.360000pt;}
.ya5{bottom:128.160000pt;}
.y176{bottom:128.480000pt;}
.y46{bottom:130.720000pt;}
.y124{bottom:131.840000pt;}
.y1a3{bottom:132.800000pt;}
.yc2{bottom:133.600000pt;}
.yf3{bottom:133.760000pt;}
.y148{bottom:135.680000pt;}
.yf9{bottom:139.840000pt;}
.yec{bottom:140.640000pt;}
.yd0{bottom:140.680000pt;}
.y86{bottom:142.560000pt;}
.ya4{bottom:143.520000pt;}
.y175{bottom:143.680000pt;}
.y45{bottom:146.080000pt;}
.y123{bottom:147.200000pt;}
.yf2{bottom:147.520000pt;}
.yc1{bottom:147.560000pt;}
.y1a2{bottom:148.160000pt;}
.y147{bottom:151.040000pt;}
.ycf{bottom:154.440000pt;}
.yf8{bottom:155.200000pt;}
.y85{bottom:157.920000pt;}
.ya3{bottom:158.720000pt;}
.y174{bottom:159.040000pt;}
.y44{bottom:161.280000pt;}
.yc0{bottom:161.320000pt;}
.y122{bottom:162.560000pt;}
.y1a1{bottom:163.226667pt;}
.y146{bottom:166.426667pt;}
.yce{bottom:168.200000pt;}
.yf7{bottom:170.586667pt;}
.y84{bottom:173.306667pt;}
.ya2{bottom:174.106667pt;}
.y173{bottom:174.426667pt;}
.ybf{bottom:175.080000pt;}
.y43{bottom:176.666667pt;}
.y1a0{bottom:177.306667pt;}
.y121{bottom:177.946667pt;}
.y145{bottom:181.786667pt;}
.ycd{bottom:181.960000pt;}
.yf6{bottom:185.786667pt;}
.ya1{bottom:186.586667pt;}
.y83{bottom:188.666667pt;}
.ybe{bottom:188.840000pt;}
.ye1{bottom:189.000000pt;}
.y172{bottom:189.786667pt;}
.y42{bottom:192.026667pt;}
.y19f{bottom:192.666667pt;}
.y120{bottom:193.306667pt;}
.ycc{bottom:195.880000pt;}
.y144{bottom:197.146667pt;}
.yf5{bottom:201.146667pt;}
.ydc{bottom:202.760000pt;}
.y82{bottom:204.026667pt;}
.y171{bottom:205.146667pt;}
.y41{bottom:207.386667pt;}
.y19e{bottom:207.706667pt;}
.y11f{bottom:208.506667pt;}
.ycb{bottom:209.640000pt;}
.y143{bottom:212.506667pt;}
.yf4{bottom:216.506667pt;}
.ydb{bottom:216.520000pt;}
.y81{bottom:219.226667pt;}
.y170{bottom:220.506667pt;}
.y19d{bottom:221.466667pt;}
.yca{bottom:223.400000pt;}
.y11e{bottom:223.866667pt;}
.y40{bottom:226.746667pt;}
.yba{bottom:227.680000pt;}
.y142{bottom:227.706667pt;}
.ye0{bottom:229.626667pt;}
.yda{bottom:230.280000pt;}
.y80{bottom:234.586667pt;}
.y19c{bottom:235.546667pt;}
.y16f{bottom:235.706667pt;}
.yc9{bottom:237.160000pt;}
.y11d{bottom:239.226667pt;}
.y141{bottom:243.066667pt;}
.yd9{bottom:244.040000pt;}
.y3f{bottom:246.106667pt;}
.y7f{bottom:249.946667pt;}
.y19b{bottom:250.906667pt;}
.y16e{bottom:251.066667pt;}
.yc8{bottom:251.080000pt;}
.yb9{bottom:252.346667pt;}
.y11c{bottom:254.586667pt;}
.yd8{bottom:257.960000pt;}
.y3e{bottom:261.306667pt;}
.yc7{bottom:264.840000pt;}
.y7e{bottom:265.306667pt;}
.y19a{bottom:265.946667pt;}
.yb8{bottom:266.106667pt;}
.y16d{bottom:266.426667pt;}
.y11b{bottom:269.946667pt;}
.yd7{bottom:271.720000pt;}
.y3d{bottom:276.666667pt;}
.yc6{bottom:278.600000pt;}
.yb7{bottom:280.026667pt;}
.y7d{bottom:280.666667pt;}
.y16c{bottom:281.786667pt;}
.y11a{bottom:283.066667pt;}
.yd6{bottom:285.480000pt;}
.y3c{bottom:292.026667pt;}
.yc5{bottom:292.360000pt;}
.yb6{bottom:293.786667pt;}
.y199{bottom:295.386667pt;}
.y7c{bottom:296.026667pt;}
.y16b{bottom:297.146667pt;}
.y119{bottom:297.466667pt;}
.yf1{bottom:299.240000pt;}
.y140{bottom:304.986667pt;}
.yeb{bottom:306.280000pt;}
.y3b{bottom:307.386667pt;}
.yb5{bottom:307.546667pt;}
.y198{bottom:310.746667pt;}
.y7b{bottom:311.226667pt;}
.y16a{bottom:312.506667pt;}
.yf0{bottom:313.160000pt;}
.yea{bottom:320.040000pt;}
.y3a{bottom:322.746667pt;}
.y77{bottom:324.346667pt;}
.y118{bottom:325.786667pt;}
.yef{bottom:326.920000pt;}
.y169{bottom:327.706667pt;}
.ye9{bottom:333.800000pt;}
.y39{bottom:338.106667pt;}
.y197{bottom:339.866667pt;}
.y117{bottom:340.186667pt;}
.yee{bottom:340.680000pt;}
.y168{bottom:343.066667pt;}
.ye8{bottom:347.560000pt;}
.y38{bottom:353.306667pt;}
.yed{bottom:354.440000pt;}
.y196{bottom:355.226667pt;}
.y167{bottom:358.426667pt;}
.ye7{bottom:361.480000pt;}
.y13f{bottom:367.066667pt;}
.y114{bottom:368.506667pt;}
.y37{bottom:368.666667pt;}
.y195{bottom:370.426667pt;}
.y166{bottom:373.786667pt;}
.ye6{bottom:375.266667pt;}
.y4a{bottom:376.026667pt;}
.y13e{bottom:382.466667pt;}
.y36{bottom:384.066667pt;}
.y194{bottom:385.666667pt;}
.ye5{bottom:389.026667pt;}
.y165{bottom:389.186667pt;}
.y75{bottom:394.146667pt;}
.y13d{bottom:397.826667pt;}
.y35{bottom:399.426667pt;}
.y193{bottom:399.746667pt;}
.ye4{bottom:402.786667pt;}
.y164{bottom:404.386667pt;}
.y113{bottom:413.026667pt;}
.y13c{bottom:413.186667pt;}
.y34{bottom:414.786667pt;}
.y192{bottom:414.946667pt;}
.ye3{bottom:416.706667pt;}
.yb3{bottom:418.240000pt;}
.y163{bottom:419.746667pt;}
.y112{bottom:428.386667pt;}
.y33{bottom:429.986667pt;}
.y191{bottom:430.306667pt;}
.ye2{bottom:430.466667pt;}
.y162{bottom:435.106667pt;}
.y111{bottom:443.586667pt;}
.y13b{bottom:443.746667pt;}
.y190{bottom:445.346667pt;}
.y32{bottom:445.666667pt;}
.y161{bottom:450.466667pt;}
.ya0{bottom:455.586667pt;}
.y31{bottom:457.986667pt;}
.y110{bottom:458.946667pt;}
.y13a{bottom:459.106667pt;}
.y18f{bottom:459.426667pt;}
.y6e{bottom:463.746667pt;}
.y160{bottom:465.826667pt;}
.y30{bottom:470.306667pt;}
.y9f{bottom:470.786667pt;}
.y10f{bottom:474.306667pt;}
.y139{bottom:474.466667pt;}
.y18e{bottom:474.786667pt;}
.y15f{bottom:481.186667pt;}
.y2f{bottom:482.626667pt;}
.y9e{bottom:486.146667pt;}
.y10e{bottom:489.666667pt;}
.y138{bottom:489.826667pt;}
.y18d{bottom:490.146667pt;}
.y2e{bottom:494.786667pt;}
.y15e{bottom:496.386667pt;}
.y9d{bottom:501.506667pt;}
.y10d{bottom:505.026667pt;}
.y137{bottom:505.186667pt;}
.y2d{bottom:507.106667pt;}
.y9c{bottom:516.866667pt;}
.y10a{bottom:518.146667pt;}
.y18c{bottom:519.266667pt;}
.y2c{bottom:519.426667pt;}
.y136{bottom:520.386667pt;}
.y2b{bottom:531.586667pt;}
.y9b{bottom:532.226667pt;}
.y66{bottom:533.506667pt;}
.y18b{bottom:534.626667pt;}
.y135{bottom:535.746667pt;}
.y2a{bottom:543.906667pt;}
.y9a{bottom:547.426667pt;}
.y18a{bottom:549.986667pt;}
.y134{bottom:551.106667pt;}
.y29{bottom:556.226667pt;}
.y15d{bottom:558.306667pt;}
.y99{bottom:562.786667pt;}
.y189{bottom:565.026667pt;}
.y133{bottom:566.466667pt;}
.y28{bottom:568.386667pt;}
.y98{bottom:578.146667pt;}
.y188{bottom:579.106667pt;}
.y27{bottom:580.706667pt;}
.y132{bottom:581.826667pt;}
.y92{bottom:591.266667pt;}
.y26{bottom:592.893333pt;}
.y187{bottom:594.333333pt;}
.y131{bottom:597.213333pt;}
.y64{bottom:603.133333pt;}
.y25{bottom:605.213333pt;}
.y186{bottom:609.693333pt;}
.y130{bottom:612.413333pt;}
.y24{bottom:617.533333pt;}
.y15c{bottom:620.413333pt;}
.y185{bottom:624.733333pt;}
.y12f{bottom:627.773333pt;}
.y108{bottom:629.213333pt;}
.y23{bottom:629.693333pt;}
.y63{bottom:635.133333pt;}
.y15b{bottom:635.773333pt;}
.y184{bottom:638.813333pt;}
.y22{bottom:642.013333pt;}
.y12e{bottom:643.133333pt;}
.y91{bottom:647.133333pt;}
.y62{bottom:650.493333pt;}
.y15a{bottom:651.133333pt;}
.y183{bottom:654.173333pt;}
.y21{bottom:654.333333pt;}
.y12d{bottom:658.493333pt;}
.y61{bottom:665.853333pt;}
.y20{bottom:666.493333pt;}
.y182{bottom:669.533333pt;}
.ybd{bottom:671.933333pt;}
.y12c{bottom:673.853333pt;}
.y1f{bottom:678.813333pt;}
.y60{bottom:681.213333pt;}
.y159{bottom:681.853333pt;}
.y181{bottom:684.573333pt;}
.y12b{bottom:689.213333pt;}
.y1e{bottom:691.133333pt;}
.y5f{bottom:696.413333pt;}
.y158{bottom:697.213333pt;}
.y180{bottom:698.653333pt;}
.y8f{bottom:702.973333pt;}
.y1d{bottom:703.293333pt;}
.y12a{bottom:704.413333pt;}
.y157{bottom:712.413333pt;}
.y17f{bottom:714.013333pt;}
.y1c{bottom:715.613333pt;}
.y5e{bottom:715.773333pt;}
.y129{bottom:719.773333pt;}
.y156{bottom:727.773333pt;}
.y1b{bottom:727.933333pt;}
.y17e{bottom:729.373333pt;}
.y8e{bottom:734.973333pt;}
.y5d{bottom:735.133333pt;}
.y1a{bottom:740.253333pt;}
.y17d{bottom:741.853333pt;}
.y155{bottom:743.133333pt;}
.y8d{bottom:750.333333pt;}
.y5c{bottom:750.493333pt;}
.y100{bottom:754.013333pt;}
.y19{bottom:755.453333pt;}
.y154{bottom:758.493333pt;}
.y8c{bottom:765.693333pt;}
.y5b{bottom:765.853333pt;}
.y18{bottom:770.653333pt;}
.y153{bottom:773.853333pt;}
.y5a{bottom:781.053333pt;}
.y17{bottom:786.013333pt;}
.y152{bottom:789.053333pt;}
.y59{bottom:796.413333pt;}
.y17c{bottom:797.053333pt;}
.y16{bottom:801.373333pt;}
.y151{bottom:804.413333pt;}
.y8b{bottom:808.933333pt;}
.y17b{bottom:810.853333pt;}
.y58{bottom:811.813333pt;}
.y15{bottom:816.773333pt;}
.y150{bottom:819.813333pt;}
.yb2{bottom:820.640000pt;}
.y17a{bottom:824.613333pt;}
.y57{bottom:827.173333pt;}
.y14{bottom:832.133333pt;}
.y14f{bottom:835.173333pt;}
.y56{bottom:842.533333pt;}
.y14e{bottom:850.533333pt;}
.y55{bottom:857.893333pt;}
.ya9{bottom:860.960000pt;}
.y13{bottom:863.333333pt;}
.yfd{bottom:865.093333pt;}
.y14d{bottom:865.893333pt;}
.y128{bottom:873.093333pt;}
.y54{bottom:877.093333pt;}
.y179{bottom:879.813333pt;}
.yb1{bottom:880.960000pt;}
.y14c{bottom:881.093333pt;}
.y12{bottom:881.733333pt;}
.y127{bottom:892.453333pt;}
.y53{bottom:896.453333pt;}
.y11{bottom:900.133333pt;}
.y52{bottom:911.813333pt;}
.yac{bottom:916.133333pt;}
.y10{bottom:918.533333pt;}
.y51{bottom:927.173333pt;}
.yab{bottom:929.893333pt;}
.yf{bottom:936.933333pt;}
.y50{bottom:942.533333pt;}
.yaf{bottom:944.320000pt;}
.y4f{bottom:957.893333pt;}
.ye{bottom:973.093333pt;}
.ybc{bottom:976.133333pt;}
.yd{bottom:988.453333pt;}
.yc{bottom:1003.813333pt;}
.yad{bottom:1009.760000pt;}
.yb{bottom:1019.173333pt;}
.ya{bottom:1034.560000pt;}
.y5{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h31{height:5.025000pt;}
.h2a{height:13.760000pt;}
.h2d{height:13.792000pt;}
.h16{height:15.200000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h21{height:25.920000pt;}
.h14{height:26.852500pt;}
.h20{height:27.520000pt;}
.h29{height:27.552000pt;}
.h1f{height:27.680000pt;}
.h15{height:29.187500pt;}
.h2e{height:31.360000pt;}
.h3{height:33.857500pt;}
.hf{height:35.761250pt;}
.h2f{height:36.431250pt;}
.h18{height:40.031250pt;}
.h23{height:41.440000pt;}
.he{height:42.063437pt;}
.h6{height:42.084375pt;}
.h30{height:43.215000pt;}
.h10{height:44.301250pt;}
.h9{height:44.505000pt;}
.h2b{height:47.085938pt;}
.h4{height:47.109375pt;}
.h2c{height:47.742188pt;}
.hd{height:52.108438pt;}
.hb{height:52.134375pt;}
.h11{height:53.535000pt;}
.h1d{height:54.598989pt;}
.h1b{height:55.200000pt;}
.h1c{height:55.232000pt;}
.ha{height:58.563750pt;}
.h12{height:59.552000pt;}
.hc{height:64.500000pt;}
.h19{height:68.960000pt;}
.h17{height:68.992000pt;}
.h1a{height:69.152000pt;}
.h26{height:110.400000pt;}
.h27{height:110.432000pt;}
.h22{height:113.280000pt;}
.h28{height:124.160000pt;}
.h1e{height:146.400000pt;}
.h13{height:251.250000pt;}
.h24{height:303.546667pt;}
.h25{height:441.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.w1e{width:75.520000pt;}
.w19{width:92.480000pt;}
.w16{width:98.080000pt;}
.w18{width:108.832000pt;}
.w1b{width:120.160000pt;}
.w1c{width:120.192000pt;}
.wf{width:121.760000pt;}
.wc{width:121.920000pt;}
.w11{width:122.560000pt;}
.w17{width:125.632000pt;}
.w3{width:140.026667pt;}
.wd{width:141.146667pt;}
.w15{width:141.760000pt;}
.w1a{width:175.706667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.w2{width:239.706667pt;}
.w12{width:241.120000pt;}
.w13{width:241.280000pt;}
.we{width:339.106667pt;}
.wa{width:386.146667pt;}
.w14{width:446.560000pt;}
.w10{width:481.053333pt;}
.w1f{width:529.373333pt;}
.w6{width:604.733333pt;}
.w1d{width:606.653333pt;}
.wb{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x61{left:1.760000pt;}
.x64{left:4.640000pt;}
.x2{left:7.200000pt;}
.x17{left:8.320000pt;}
.x2b{left:9.626667pt;}
.x1c{left:11.040000pt;}
.x52{left:12.000000pt;}
.x4d{left:12.960000pt;}
.x50{left:13.920000pt;}
.x44{left:14.880000pt;}
.x4a{left:15.840000pt;}
.x45{left:17.440000pt;}
.x49{left:18.560000pt;}
.x4b{left:19.680000pt;}
.x25{left:21.280000pt;}
.x51{left:22.240000pt;}
.x4f{left:23.680000pt;}
.x46{left:25.120000pt;}
.x30{left:26.146667pt;}
.x53{left:27.840000pt;}
.x32{left:29.666667pt;}
.x4c{left:30.560000pt;}
.x4{left:31.680000pt;}
.x4e{left:32.960000pt;}
.x56{left:34.080000pt;}
.x42{left:35.040000pt;}
.x48{left:36.160000pt;}
.x27{left:37.280000pt;}
.x55{left:38.400000pt;}
.x40{left:39.520000pt;}
.x57{left:41.280000pt;}
.x5e{left:42.240000pt;}
.x6{left:44.480000pt;}
.x60{left:48.954667pt;}
.x5c{left:50.080000pt;}
.x54{left:54.400000pt;}
.x1e{left:57.320000pt;}
.x2e{left:65.053333pt;}
.x63{left:66.074667pt;}
.x34{left:76.026667pt;}
.x14{left:86.752000pt;}
.x15{left:92.672000pt;}
.x1{left:94.592000pt;}
.x62{left:101.792000pt;}
.x13{left:113.471988pt;}
.xb{left:117.151988pt;}
.x20{left:118.106667pt;}
.x12{left:141.786655pt;}
.x11{left:144.826655pt;}
.x19{left:154.426667pt;}
.x33{left:170.560000pt;}
.x9{left:176.826655pt;}
.x2a{left:180.640000pt;}
.x24{left:190.266655pt;}
.x3f{left:194.106667pt;}
.x58{left:197.466655pt;}
.x29{left:201.306655pt;}
.x26{left:203.880000pt;}
.x2c{left:209.946655pt;}
.xc{left:212.346655pt;}
.x5d{left:214.586655pt;}
.x59{left:216.026667pt;}
.x1d{left:217.786667pt;}
.x1b{left:220.186655pt;}
.x22{left:224.186655pt;}
.x38{left:227.866655pt;}
.x3e{left:234.746655pt;}
.x35{left:239.386655pt;}
.x37{left:245.466655pt;}
.x36{left:248.186655pt;}
.x8{left:290.594667pt;}
.x1a{left:294.434667pt;}
.x16{left:296.226667pt;}
.x23{left:298.306655pt;}
.x18{left:315.106667pt;}
.x41{left:320.386667pt;}
.x3{left:334.306667pt;}
.x5a{left:336.866667pt;}
.x31{left:355.040000pt;}
.x1f{left:359.586667pt;}
.x2f{left:363.360000pt;}
.x5f{left:372.066655pt;}
.x2d{left:379.040000pt;}
.xa{left:396.866655pt;}
.xd{left:398.946655pt;}
.x43{left:429.853333pt;}
.x39{left:438.720000pt;}
.x3a{left:452.253322pt;}
.x3c{left:458.493322pt;}
.x3b{left:465.853322pt;}
.x5{left:474.333333pt;}
.x3d{left:477.053322pt;}
.x47{left:522.973333pt;}
.xf{left:525.213322pt;}
.xe{left:530.653322pt;}
.x5b{left:578.493333pt;}
.x10{left:587.773322pt;}
.x21{left:644.293322pt;}
.x28{left:661.893322pt;}
.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; }
  