
    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_d034a5f1513d41307929eaaf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f3eed52cc387d39e363360ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_564f87851353bbfc67146de9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_109404a4d6dcb690889982e4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_ba8b3066f39ff2491476984a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7d2f31484557f4e2b1ac7439.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ceb6d5065cff5e59c3e9f96f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca87fc956bf3a4a71c6a8c02.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f03bffb90d9353c43b8f30d0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_de6e670c499f4c3b5f7ab0c1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-3.660000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.600000px;}
.v1{vertical-align:21.600000px;}
.v7{vertical-align:36.000000px;}
.v5{vertical-align:42.000000px;}
.v4{vertical-align:45.600000px;}
.ls8{letter-spacing:-1.410000px;}
.ls11{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.075000px;}
.ls3{letter-spacing:-0.048000px;}
.ls10{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.078000px;}
.ls1c{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.186000px;}
.ls7{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.246000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.lse{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.465600px;}
.ls18{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.708000px;}
.ls1e{letter-spacing:1.800000px;}
.ls19{letter-spacing:3.300000px;}
.ls1f{letter-spacing:15.720000px;}
.ls1d{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws13{word-spacing:-18.024000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.537500px;}
.wsb{word-spacing:-16.500000px;}
.ws14{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.540000px;}
.ws9{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws1a{word-spacing:-15.180000px;}
.ws19{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.880000px;}
.ws18{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.220000px;}
.ws6{word-spacing:-12.900000px;}
.ws12{word-spacing:-11.352000px;}
.ws7{word-spacing:-11.136000px;}
.wsf{word-spacing:-9.900000px;}
.ws4{word-spacing:-8.490000px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:4.062000px;}
.ws11{word-spacing:21.156000px;}
.wsd{word-spacing:21.516000px;}
.wsa{word-spacing:35.736000px;}
.wse{word-spacing:47.196000px;}
.ws16{word-spacing:402.297600px;}
._1b{margin-left:-7.200000px;}
._22{margin-left:-3.819600px;}
._d{margin-left:-2.040000px;}
._1{margin-left:-1.008000px;}
._0{width:1.056000px;}
._5{width:2.838000px;}
._7{width:4.320000px;}
._6{width:5.928000px;}
._4{width:7.080000px;}
._9{width:8.136000px;}
._8{width:9.240000px;}
._b{width:11.100000px;}
._a{width:12.420000px;}
._e{width:13.542000px;}
._2d{width:16.680000px;}
._2e{width:18.126000px;}
._2b{width:19.182000px;}
._2f{width:20.262000px;}
._30{width:22.260000px;}
._c{width:23.460000px;}
._f{width:27.480000px;}
._10{width:28.980000px;}
._1e{width:41.904000px;}
._1f{width:44.292000px;}
._1d{width:45.444000px;}
._2a{width:46.644000px;}
._20{width:51.300000px;}
._21{width:53.880000px;}
._13{width:56.064000px;}
._14{width:58.392000px;}
._12{width:59.928000px;}
._17{width:66.084000px;}
._18{width:68.076000px;}
._24{width:69.864000px;}
._11{width:72.048000px;}
._16{width:73.932000px;}
._27{width:77.484000px;}
._15{width:79.956000px;}
._23{width:83.568000px;}
._26{width:85.572000px;}
._25{width:91.536000px;}
._2c{width:109.416000px;}
._19{width:202.368000px;}
._1c{width:203.664000px;}
._28{width:206.448000px;}
._1a{width:237.048000px;}
._29{width:241.428000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:51.600000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fsb{font-size:63.600000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:66.150000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.fsd{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.600000px;}
.y3d{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y163{bottom:5.700000px;}
.ycf{bottom:8.100000px;}
.ycb{bottom:9.600000px;}
.yf0{bottom:9.900000px;}
.yf1{bottom:11.100000px;}
.yd5{bottom:11.700000px;}
.y15d{bottom:11.707500px;}
.yde{bottom:11.715000px;}
.yda{bottom:12.000000px;}
.y15b{bottom:12.030000px;}
.y167{bottom:12.045000px;}
.yd0{bottom:12.285000px;}
.yd3{bottom:12.300000px;}
.y5{bottom:12.337500px;}
.ycd{bottom:13.800000px;}
.y9e{bottom:14.025000px;}
.y9f{bottom:16.125000px;}
.yaf{bottom:17.550000px;}
.y154{bottom:20.400000px;}
.y155{bottom:20.700000px;}
.y161{bottom:23.100000px;}
.y3c{bottom:23.415000px;}
.ydc{bottom:25.192500px;}
.yd6{bottom:25.200000px;}
.yca{bottom:27.030000px;}
.y7e{bottom:27.270000px;}
.ycc{bottom:31.245000px;}
.y3b{bottom:38.100000px;}
.y4{bottom:46.800000px;}
.yad{bottom:51.150000px;}
.ye1{bottom:52.395000px;}
.y3a{bottom:55.200000px;}
.y1{bottom:57.037500px;}
.y9b{bottom:63.945000px;}
.y7d{bottom:65.070000px;}
.ya1{bottom:72.300000px;}
.y39{bottom:72.615000px;}
.y3f{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y8a{bottom:85.080000px;}
.y94{bottom:85.425000px;}
.y77{bottom:86.220000px;}
.ye2{bottom:88.155000px;}
.y38{bottom:89.700000px;}
.yea{bottom:100.050000px;}
.y37{bottom:107.145000px;}
.yee{bottom:107.745000px;}
.y75{bottom:114.637500px;}
.ydf{bottom:117.637500px;}
.y88{bottom:120.337500px;}
.ya7{bottom:122.175000px;}
.y8b{bottom:123.525000px;}
.ye3{bottom:123.900000px;}
.y18e{bottom:124.237500px;}
.y36{bottom:124.245000px;}
.y12b{bottom:124.537500px;}
.y74{bottom:128.437500px;}
.y76{bottom:129.600000px;}
.y78{bottom:133.905000px;}
.ydb{bottom:134.737500px;}
.y26{bottom:135.337500px;}
.y87{bottom:137.437500px;}
.y1a7{bottom:140.437500px;}
.y15c{bottom:141.337500px;}
.y18d{bottom:141.637500px;}
.y35{bottom:141.645000px;}
.y12a{bottom:141.937500px;}
.ya2{bottom:142.125000px;}
.y95{bottom:143.025000px;}
.yeb{bottom:147.705000px;}
.y25{bottom:152.430000px;}
.y86{bottom:154.830000px;}
.y1a6{bottom:157.830000px;}
.y18c{bottom:158.730000px;}
.y34{bottom:158.745000px;}
.y129{bottom:159.030000px;}
.ye4{bottom:159.645000px;}
.ydd{bottom:161.430000px;}
.y8c{bottom:161.925000px;}
.y9c{bottom:165.570000px;}
.y15a{bottom:167.745000px;}
.y24{bottom:169.845000px;}
.y85{bottom:171.930000px;}
.ya8{bottom:172.050000px;}
.y1a5{bottom:174.930000px;}
.y33{bottom:176.145000px;}
.y128{bottom:176.430000px;}
.y79{bottom:181.650000px;}
.y23{bottom:186.975000px;}
.y84{bottom:189.375000px;}
.yd9{bottom:190.575000px;}
.y1a4{bottom:192.375000px;}
.y32{bottom:193.245000px;}
.y18b{bottom:193.275000px;}
.y127{bottom:193.575000px;}
.y159{bottom:194.475000px;}
.ye5{bottom:195.375000px;}
.yae{bottom:196.395000px;}
.y8d{bottom:200.325000px;}
.y96{bottom:200.670000px;}
.y83{bottom:203.175000px;}
.ya0{bottom:204.300000px;}
.y22{bottom:204.375000px;}
.y1a3{bottom:209.475000px;}
.y31{bottom:210.645000px;}
.y18a{bottom:210.675000px;}
.y126{bottom:211.275000px;}
.ya3{bottom:211.950000px;}
.yd7{bottom:219.975000px;}
.y21{bottom:221.475000px;}
.ya9{bottom:221.925000px;}
.y158{bottom:223.875000px;}
.y1a2{bottom:226.875000px;}
.y30{bottom:227.745000px;}
.y189{bottom:227.775000px;}
.y7a{bottom:229.350000px;}
.y125{bottom:230.775000px;}
.ye6{bottom:231.120000px;}
.y8e{bottom:238.725000px;}
.y20{bottom:238.875000px;}
.yec{bottom:243.030000px;}
.y1a1{bottom:243.975000px;}
.y2f{bottom:245.145000px;}
.y188{bottom:245.175000px;}
.y124{bottom:245.475000px;}
.yd8{bottom:246.675000px;}
.y157{bottom:250.275000px;}
.y1f{bottom:255.975000px;}
.y97{bottom:258.255000px;}
.y1a0{bottom:261.375000px;}
.y187{bottom:262.275000px;}
.y2e{bottom:262.290000px;}
.y123{bottom:262.575000px;}
.ye7{bottom:266.895000px;}
.yaa{bottom:271.800000px;}
.y1e{bottom:273.375000px;}
.yd2{bottom:275.775000px;}
.y156{bottom:276.975000px;}
.y7b{bottom:277.050000px;}
.y8f{bottom:277.125000px;}
.y19f{bottom:278.475000px;}
.y186{bottom:279.675000px;}
.y2d{bottom:279.690000px;}
.y122{bottom:279.975000px;}
.ya4{bottom:281.775000px;}
.y1d{bottom:290.475000px;}
.yed{bottom:290.700000px;}
.y19e{bottom:295.875000px;}
.y185{bottom:296.775000px;}
.y2c{bottom:296.790000px;}
.y121{bottom:297.075000px;}
.yd4{bottom:302.475000px;}
.ye8{bottom:302.625000px;}
.y153{bottom:306.075000px;}
.y1c{bottom:308.175000px;}
.y19d{bottom:312.975000px;}
.y2b{bottom:314.175000px;}
.y120{bottom:314.475000px;}
.y90{bottom:315.570000px;}
.y98{bottom:315.870000px;}
.yab{bottom:321.645000px;}
.y7c{bottom:324.780000px;}
.y1b{bottom:328.875000px;}
.y19c{bottom:330.375000px;}
.y2a{bottom:331.275000px;}
.yc9{bottom:331.575000px;}
.y11f{bottom:332.175000px;}
.ye9{bottom:338.370000px;}
.y19b{bottom:347.505000px;}
.y152{bottom:348.105000px;}
.y29{bottom:348.690000px;}
.y184{bottom:348.720000px;}
.ya5{bottom:351.570000px;}
.y11e{bottom:351.705000px;}
.yce{bottom:352.320000px;}
.y91{bottom:353.955000px;}
.y19a{bottom:364.905000px;}
.y183{bottom:365.820000px;}
.y11d{bottom:366.120000px;}
.y28{bottom:366.390000px;}
.y151{bottom:368.820000px;}
.yac{bottom:371.520000px;}
.y99{bottom:373.500000px;}
.y68{bottom:376.020000px;}
.y199{bottom:382.020000px;}
.y182{bottom:383.220000px;}
.y11c{bottom:383.505000px;}
.y150{bottom:388.320000px;}
.y92{bottom:392.370000px;}
.y67{bottom:393.120000px;}
.yc8{bottom:393.420000px;}
.y198{bottom:399.420000px;}
.y11b{bottom:400.620000px;}
.y181{bottom:400.920000px;}
.y14f{bottom:402.720000px;}
.y66{bottom:410.505000px;}
.yc7{bottom:412.920000px;}
.y197{bottom:416.505000px;}
.y11a{bottom:418.005000px;}
.y14e{bottom:420.120000px;}
.y180{bottom:420.420000px;}
.y27{bottom:421.305000px;}
.ya6{bottom:421.395000px;}
.yc6{bottom:427.320000px;}
.y65{bottom:427.620000px;}
.y93{bottom:430.755000px;}
.y9a{bottom:431.100000px;}
.y196{bottom:433.920000px;}
.y17f{bottom:434.820000px;}
.y119{bottom:435.120000px;}
.y14d{bottom:437.205000px;}
.yc5{bottom:444.720000px;}
.y64{bottom:445.005000px;}
.y195{bottom:451.005000px;}
.y17e{bottom:452.205000px;}
.y118{bottom:452.505000px;}
.y14c{bottom:454.620000px;}
.yc4{bottom:461.820000px;}
.y63{bottom:462.705000px;}
.y194{bottom:468.420000px;}
.y17d{bottom:469.320000px;}
.y117{bottom:469.620000px;}
.y14b{bottom:471.720000px;}
.yc3{bottom:479.205000px;}
.y62{bottom:483.420000px;}
.y193{bottom:485.505000px;}
.y17c{bottom:486.705000px;}
.y116{bottom:487.005000px;}
.y14a{bottom:489.120000px;}
.y73{bottom:494.505000px;}
.yc2{bottom:496.905000px;}
.y192{bottom:502.920000px;}
.y17b{bottom:503.820000px;}
.y115{bottom:504.105000px;}
.y149{bottom:506.205000px;}
.y72{bottom:512.220000px;}
.yc1{bottom:516.450000px;}
.y61{bottom:518.250000px;}
.y191{bottom:520.050000px;}
.y17a{bottom:521.250000px;}
.y114{bottom:521.550000px;}
.y148{bottom:522.750000px;}
.y71{bottom:529.350000px;}
.yc0{bottom:530.850000px;}
.y60{bottom:535.950000px;}
.y147{bottom:537.450000px;}
.y113{bottom:538.650000px;}
.y179{bottom:538.950000px;}
.y70{bottom:546.750000px;}
.ybf{bottom:548.250000px;}
.y5f{bottom:553.050000px;}
.y146{bottom:554.550000px;}
.y112{bottom:556.350000px;}
.y178{bottom:558.450000px;}
.y6f{bottom:563.850000px;}
.ybe{bottom:565.350000px;}
.y5e{bottom:570.450000px;}
.y145{bottom:571.950000px;}
.y177{bottom:572.850000px;}
.y111{bottom:575.850000px;}
.y6e{bottom:581.250000px;}
.ybd{bottom:583.050000px;}
.y144{bottom:589.050000px;}
.y176{bottom:590.250000px;}
.y110{bottom:590.550000px;}
.y6d{bottom:598.950000px;}
.y5d{bottom:599.250000px;}
.ybc{bottom:602.550000px;}
.y143{bottom:606.450000px;}
.y175{bottom:607.350000px;}
.y10f{bottom:607.650000px;}
.y5c{bottom:616.950000px;}
.ybb{bottom:617.250000px;}
.y6c{bottom:618.450000px;}
.y142{bottom:623.550000px;}
.y174{bottom:624.750000px;}
.y10e{bottom:625.350000px;}
.y6b{bottom:632.850000px;}
.y5b{bottom:634.050000px;}
.yba{bottom:634.350000px;}
.y141{bottom:640.950000px;}
.y173{bottom:641.850000px;}
.y10d{bottom:646.050000px;}
.y6a{bottom:648.150000px;}
.y5a{bottom:651.450000px;}
.yb9{bottom:651.750000px;}
.y82{bottom:652.050000px;}
.y69{bottom:655.350000px;}
.y140{bottom:658.050000px;}
.y172{bottom:659.250000px;}
.y10c{bottom:665.850000px;}
.y59{bottom:668.550000px;}
.yb8{bottom:668.850000px;}
.y81{bottom:669.450000px;}
.y13f{bottom:675.450000px;}
.y171{bottom:676.350000px;}
.y10b{bottom:681.795000px;}
.y58{bottom:685.995000px;}
.yb7{bottom:686.280000px;}
.y80{bottom:686.580000px;}
.y13e{bottom:692.595000px;}
.y170{bottom:692.880000px;}
.y10a{bottom:699.195000px;}
.y7f{bottom:700.395000px;}
.y89{bottom:700.500000px;}
.y9d{bottom:701.700000px;}
.yb6{bottom:703.380000px;}
.y16f{bottom:707.595000px;}
.y13d{bottom:709.980000px;}
.y57{bottom:714.780000px;}
.y109{bottom:716.280000px;}
.yb5{bottom:720.795000px;}
.y1a8{bottom:724.095000px;}
.y16e{bottom:724.695000px;}
.y13c{bottom:727.080000px;}
.y56{bottom:732.495000px;}
.y108{bottom:733.695000px;}
.yb4{bottom:738.480000px;}
.y16d{bottom:742.080000px;}
.y13b{bottom:744.495000px;}
.y55{bottom:749.595000px;}
.y107{bottom:750.795000px;}
.yb3{bottom:757.995000px;}
.y16c{bottom:759.195000px;}
.y190{bottom:761.595000px;}
.y13a{bottom:762.195000px;}
.y54{bottom:766.995000px;}
.y106{bottom:768.495000px;}
.yb2{bottom:772.380000px;}
.y16b{bottom:776.880000px;}
.y18f{bottom:778.980000px;}
.y139{bottom:781.695000px;}
.y53{bottom:784.080000px;}
.yb1{bottom:787.695000px;}
.y105{bottom:787.995000px;}
.yb0{bottom:794.895000px;}
.y138{bottom:796.080000px;}
.y16a{bottom:796.380000px;}
.ye0{bottom:796.800000px;}
.yef{bottom:797.100000px;}
.y52{bottom:801.495000px;}
.y104{bottom:802.695000px;}
.y169{bottom:811.080000px;}
.y137{bottom:813.495000px;}
.y103{bottom:819.795000px;}
.y168{bottom:828.195000px;}
.y1a{bottom:829.980000px;}
.y51{bottom:830.295000px;}
.y136{bottom:830.580000px;}
.y102{bottom:837.195000px;}
.y166{bottom:845.280000px;}
.y19{bottom:847.380000px;}
.y50{bottom:847.995000px;}
.y101{bottom:854.925000px;}
.y18{bottom:864.525000px;}
.y4f{bottom:865.125000px;}
.y165{bottom:872.025000px;}
.y100{bottom:874.425000px;}
.y135{bottom:878.925000px;}
.y4e{bottom:882.525000px;}
.yff{bottom:885.525000px;}
.y17{bottom:888.825000px;}
.yfe{bottom:894.525000px;}
.y134{bottom:896.325000px;}
.y164{bottom:898.725000px;}
.y4d{bottom:899.625000px;}
.y16{bottom:907.425000px;}
.y133{bottom:913.425000px;}
.y4c{bottom:917.025000px;}
.y160{bottom:927.825000px;}
.y132{bottom:930.825000px;}
.y15{bottom:931.425000px;}
.y4b{bottom:934.125000px;}
.yfd{bottom:936.525000px;}
.y162{bottom:947.325000px;}
.y131{bottom:947.925000px;}
.y14{bottom:949.125000px;}
.y4a{bottom:951.525000px;}
.yfc{bottom:962.025000px;}
.y130{bottom:965.325000px;}
.y13{bottom:966.225000px;}
.y49{bottom:968.625000px;}
.y12{bottom:978.225000px;}
.y15f{bottom:979.425000px;}
.yfb{bottom:981.825000px;}
.y12f{bottom:982.425000px;}
.y48{bottom:986.025000px;}
.yfa{bottom:990.825000px;}
.y11{bottom:995.925000px;}
.y12e{bottom:999.825000px;}
.y47{bottom:1003.125000px;}
.y10{bottom:1016.670000px;}
.yf9{bottom:1016.955000px;}
.y12d{bottom:1017.570000px;}
.y46{bottom:1020.570000px;}
.yf8{bottom:1034.370000px;}
.y12c{bottom:1037.070000px;}
.y45{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.yf7{bottom:1051.455000px;}
.y44{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yf6{bottom:1068.870000px;}
.y15e{bottom:1069.170000px;}
.y43{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.yf5{bottom:1085.955000px;}
.y42{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.yf4{bottom:1103.370000px;}
.y41{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.yf3{bottom:1120.455000px;}
.y40{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yf2{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.ha{height:8.677734px;}
.h5{height:12.700195px;}
.h33{height:17.400000px;}
.h24{height:17.437500px;}
.hb{height:21.000000px;}
.h16{height:21.694336px;}
.h27{height:25.800000px;}
.h2a{height:25.837500px;}
.h28{height:26.100000px;}
.h31{height:26.137500px;}
.h23{height:26.400000px;}
.hf{height:28.636523px;}
.h2c{height:32.700000px;}
.h8{height:33.867188px;}
.h30{height:34.500000px;}
.h17{height:34.710938px;}
.h3{height:36.000000px;}
.h32{height:36.900000px;}
.h10{height:38.100586px;}
.h14{height:38.953125px;}
.h9{height:39.049805px;}
.h1e{height:41.400000px;}
.h4{height:42.333984px;}
.h7{height:43.388672px;}
.h34{height:43.681641px;}
.h15{height:44.507812px;}
.h1d{height:44.874023px;}
.h1b{height:46.567383px;}
.h1c{height:46.673218px;}
.h22{height:47.137500px;}
.h11{height:49.453125px;}
.h25{height:49.540430px;}
.he{height:50.236523px;}
.h20{height:50.296523px;}
.h6{height:50.800781px;}
.h19{height:50.906616px;}
.h21{height:52.066406px;}
.h26{height:52.500000px;}
.h29{height:52.537500px;}
.h13{height:54.239062px;}
.hc{height:58.429688px;}
.hd{height:59.343750px;}
.h2f{height:60.744141px;}
.h1{height:65.645508px;}
.h2e{height:86.800781px;}
.h2d{height:89.087109px;}
.h2{height:97.200000px;}
.h18{height:350.100000px;}
.h2b{height:358.200000px;}
.h12{height:383.175000px;}
.h1f{height:444.600000px;}
.h1a{height:454.500000px;}
.h0{height:1263.000000px;}
.w1f{width:36.637500px;}
.w20{width:45.900000px;}
.w25{width:53.137500px;}
.w22{width:53.700000px;}
.w24{width:60.300000px;}
.w21{width:66.037500px;}
.w23{width:69.037500px;}
.w16{width:70.500000px;}
.w17{width:71.137500px;}
.w4{width:72.300000px;}
.w19{width:73.537500px;}
.w18{width:76.500000px;}
.w1b{width:78.900000px;}
.w1c{width:78.937500px;}
.w27{width:79.237500px;}
.w26{width:79.500000px;}
.w1a{width:83.137500px;}
.w28{width:83.437500px;}
.w1d{width:85.537500px;}
.w1e{width:87.000000px;}
.wb{width:95.437500px;}
.wc{width:100.200000px;}
.w15{width:107.437500px;}
.w3{width:108.000000px;}
.w11{width:118.537500px;}
.w29{width:120.937500px;}
.w12{width:136.537500px;}
.w10{width:136.837500px;}
.wf{width:136.875000px;}
.w2a{width:194.130000px;}
.w13{width:198.945000px;}
.w6{width:252.975000px;}
.we{width:255.975000px;}
.wd{width:274.320000px;}
.w5{width:483.450000px;}
.w8{width:675.000000px;}
.w14{width:696.600000px;}
.w9{width:712.800000px;}
.wa{width:721.800000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:6.300000px;}
.x57{left:7.500000px;}
.x60{left:9.600000px;}
.x2{left:10.799998px;}
.x55{left:12.030000px;}
.x4f{left:14.400000px;}
.x11{left:16.200000px;}
.x51{left:17.430000px;}
.x37{left:18.600000px;}
.x43{left:20.137500px;}
.x3{left:22.200000px;}
.x4b{left:23.700000px;}
.x2f{left:24.787500px;}
.x3a{left:25.800000px;}
.x4{left:27.600000px;}
.x4a{left:29.100000px;}
.x1c{left:30.487500px;}
.x3b{left:31.500000px;}
.x53{left:33.300000px;}
.x52{left:35.400000px;}
.x3e{left:36.945000px;}
.x25{left:38.062500px;}
.x1b{left:39.487500px;}
.x41{left:40.875000px;}
.x3c{left:42.000000px;}
.x2d{left:44.175000px;}
.x3d{left:46.200000px;}
.x39{left:47.400000px;}
.x1a{left:48.495000px;}
.x34{left:50.100000px;}
.x2c{left:53.175000px;}
.x2b{left:62.175000px;}
.x5f{left:68.100000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x1d{left:82.050000px;}
.x10{left:83.137500px;}
.x29{left:85.200000px;}
.x1e{left:88.650000px;}
.x23{left:89.700000px;}
.x24{left:95.850000px;}
.x2e{left:97.200000px;}
.x18{left:108.900000px;}
.x40{left:112.905000px;}
.xf{left:116.445000px;}
.x26{left:125.580000px;}
.x17{left:128.137487px;}
.x22{left:132.337487px;}
.x42{left:144.645000px;}
.xa{left:153.629987px;}
.x54{left:173.145000px;}
.x33{left:181.575000px;}
.x47{left:188.775000px;}
.x27{left:200.700000px;}
.x56{left:210.675000px;}
.x44{left:224.550000px;}
.x46{left:226.274987px;}
.xd{left:241.567500px;}
.x58{left:257.475000px;}
.x48{left:259.875000px;}
.x20{left:261.374987px;}
.x31{left:265.574987px;}
.x35{left:285.075000px;}
.x59{left:324.420000px;}
.x49{left:331.620000px;}
.x15{left:350.504987px;}
.x7{left:363.419987px;}
.x5a{left:379.020000px;}
.x5{left:388.619987px;}
.x4c{left:409.020000px;}
.x36{left:422.550000px;}
.x28{left:439.695000px;}
.x14{left:446.549987px;}
.x5b{left:448.950000px;}
.x45{left:472.125000px;}
.x4d{left:483.450000px;}
.x5c{left:509.850000px;}
.xe{left:561.780000px;}
.x5d{left:563.595000px;}
.x4e{left:567.495000px;}
.x12{left:568.694987px;}
.x9{left:614.879987px;}
.x5e{left:643.695000px;}
.x19{left:646.170000px;}
.x8{left:648.194987px;}
.x3f{left:667.050000px;}
.x38{left:682.125000px;}
.x2a{left:694.500000px;}
.x6{left:696.524987px;}
.x50{left:726.825000px;}
.x16{left:784.169987px;}
.x13{left:791.954987px;}
.x30{left:795.569987px;}
.x1f{left:803.369987px;}
.x21{left:807.869987px;}
.xb{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-3.253333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.200000pt;}
.v1{vertical-align:19.200000pt;}
.v7{vertical-align:32.000000pt;}
.v5{vertical-align:37.333333pt;}
.v4{vertical-align:40.533333pt;}
.ls8{letter-spacing:-1.253333pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.066667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.069333pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.165333pt;}
.ls7{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.218667pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.413867pt;}
.ls18{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.629333pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls19{letter-spacing:2.933333pt;}
.ls1f{letter-spacing:13.973333pt;}
.ls1d{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws13{word-spacing:-16.021333pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.700000pt;}
.wsb{word-spacing:-14.666667pt;}
.ws14{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.813333pt;}
.ws9{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws1a{word-spacing:-13.493333pt;}
.ws19{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.226667pt;}
.ws18{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.640000pt;}
.ws6{word-spacing:-11.466667pt;}
.ws12{word-spacing:-10.090667pt;}
.ws7{word-spacing:-9.898667pt;}
.wsf{word-spacing:-8.800000pt;}
.ws4{word-spacing:-7.546667pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:3.610667pt;}
.ws11{word-spacing:18.805333pt;}
.wsd{word-spacing:19.125333pt;}
.wsa{word-spacing:31.765333pt;}
.wse{word-spacing:41.952000pt;}
.ws16{word-spacing:357.597867pt;}
._1b{margin-left:-6.400000pt;}
._22{margin-left:-3.395200pt;}
._d{margin-left:-1.813333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.938667pt;}
._5{width:2.522667pt;}
._7{width:3.840000pt;}
._6{width:5.269333pt;}
._4{width:6.293333pt;}
._9{width:7.232000pt;}
._8{width:8.213333pt;}
._b{width:9.866667pt;}
._a{width:11.040000pt;}
._e{width:12.037333pt;}
._2d{width:14.826667pt;}
._2e{width:16.112000pt;}
._2b{width:17.050667pt;}
._2f{width:18.010667pt;}
._30{width:19.786667pt;}
._c{width:20.853333pt;}
._f{width:24.426667pt;}
._10{width:25.760000pt;}
._1e{width:37.248000pt;}
._1f{width:39.370667pt;}
._1d{width:40.394667pt;}
._2a{width:41.461333pt;}
._20{width:45.600000pt;}
._21{width:47.893333pt;}
._13{width:49.834667pt;}
._14{width:51.904000pt;}
._12{width:53.269333pt;}
._17{width:58.741333pt;}
._18{width:60.512000pt;}
._24{width:62.101333pt;}
._11{width:64.042667pt;}
._16{width:65.717333pt;}
._27{width:68.874667pt;}
._15{width:71.072000pt;}
._23{width:74.282667pt;}
._26{width:76.064000pt;}
._25{width:81.365333pt;}
._2c{width:97.258667pt;}
._19{width:179.882667pt;}
._1c{width:181.034667pt;}
._28{width:183.509333pt;}
._1a{width:210.709333pt;}
._29{width:214.602667pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:45.866667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fsb{font-size:56.533333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:58.800000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.fsd{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:3.200000pt;}
.y3d{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y163{bottom:5.066667pt;}
.ycf{bottom:7.200000pt;}
.ycb{bottom:8.533333pt;}
.yf0{bottom:8.800000pt;}
.yf1{bottom:9.866667pt;}
.yd5{bottom:10.400000pt;}
.y15d{bottom:10.406667pt;}
.yde{bottom:10.413333pt;}
.yda{bottom:10.666667pt;}
.y15b{bottom:10.693333pt;}
.y167{bottom:10.706667pt;}
.yd0{bottom:10.920000pt;}
.yd3{bottom:10.933333pt;}
.y5{bottom:10.966667pt;}
.ycd{bottom:12.266667pt;}
.y9e{bottom:12.466667pt;}
.y9f{bottom:14.333333pt;}
.yaf{bottom:15.600000pt;}
.y154{bottom:18.133333pt;}
.y155{bottom:18.400000pt;}
.y161{bottom:20.533333pt;}
.y3c{bottom:20.813333pt;}
.ydc{bottom:22.393333pt;}
.yd6{bottom:22.400000pt;}
.yca{bottom:24.026667pt;}
.y7e{bottom:24.240000pt;}
.ycc{bottom:27.773333pt;}
.y3b{bottom:33.866667pt;}
.y4{bottom:41.600000pt;}
.yad{bottom:45.466667pt;}
.ye1{bottom:46.573333pt;}
.y3a{bottom:49.066667pt;}
.y1{bottom:50.700000pt;}
.y9b{bottom:56.840000pt;}
.y7d{bottom:57.840000pt;}
.ya1{bottom:64.266667pt;}
.y39{bottom:64.546667pt;}
.y3f{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y8a{bottom:75.626667pt;}
.y94{bottom:75.933333pt;}
.y77{bottom:76.640000pt;}
.ye2{bottom:78.360000pt;}
.y38{bottom:79.733333pt;}
.yea{bottom:88.933333pt;}
.y37{bottom:95.240000pt;}
.yee{bottom:95.773333pt;}
.y75{bottom:101.900000pt;}
.ydf{bottom:104.566667pt;}
.y88{bottom:106.966667pt;}
.ya7{bottom:108.600000pt;}
.y8b{bottom:109.800000pt;}
.ye3{bottom:110.133333pt;}
.y18e{bottom:110.433333pt;}
.y36{bottom:110.440000pt;}
.y12b{bottom:110.700000pt;}
.y74{bottom:114.166667pt;}
.y76{bottom:115.200000pt;}
.y78{bottom:119.026667pt;}
.ydb{bottom:119.766667pt;}
.y26{bottom:120.300000pt;}
.y87{bottom:122.166667pt;}
.y1a7{bottom:124.833333pt;}
.y15c{bottom:125.633333pt;}
.y18d{bottom:125.900000pt;}
.y35{bottom:125.906667pt;}
.y12a{bottom:126.166667pt;}
.ya2{bottom:126.333333pt;}
.y95{bottom:127.133333pt;}
.yeb{bottom:131.293333pt;}
.y25{bottom:135.493333pt;}
.y86{bottom:137.626667pt;}
.y1a6{bottom:140.293333pt;}
.y18c{bottom:141.093333pt;}
.y34{bottom:141.106667pt;}
.y129{bottom:141.360000pt;}
.ye4{bottom:141.906667pt;}
.ydd{bottom:143.493333pt;}
.y8c{bottom:143.933333pt;}
.y9c{bottom:147.173333pt;}
.y15a{bottom:149.106667pt;}
.y24{bottom:150.973333pt;}
.y85{bottom:152.826667pt;}
.ya8{bottom:152.933333pt;}
.y1a5{bottom:155.493333pt;}
.y33{bottom:156.573333pt;}
.y128{bottom:156.826667pt;}
.y79{bottom:161.466667pt;}
.y23{bottom:166.200000pt;}
.y84{bottom:168.333333pt;}
.yd9{bottom:169.400000pt;}
.y1a4{bottom:171.000000pt;}
.y32{bottom:171.773333pt;}
.y18b{bottom:171.800000pt;}
.y127{bottom:172.066667pt;}
.y159{bottom:172.866667pt;}
.ye5{bottom:173.666667pt;}
.yae{bottom:174.573333pt;}
.y8d{bottom:178.066667pt;}
.y96{bottom:178.373333pt;}
.y83{bottom:180.600000pt;}
.ya0{bottom:181.600000pt;}
.y22{bottom:181.666667pt;}
.y1a3{bottom:186.200000pt;}
.y31{bottom:187.240000pt;}
.y18a{bottom:187.266667pt;}
.y126{bottom:187.800000pt;}
.ya3{bottom:188.400000pt;}
.yd7{bottom:195.533333pt;}
.y21{bottom:196.866667pt;}
.ya9{bottom:197.266667pt;}
.y158{bottom:199.000000pt;}
.y1a2{bottom:201.666667pt;}
.y30{bottom:202.440000pt;}
.y189{bottom:202.466667pt;}
.y7a{bottom:203.866667pt;}
.y125{bottom:205.133333pt;}
.ye6{bottom:205.440000pt;}
.y8e{bottom:212.200000pt;}
.y20{bottom:212.333333pt;}
.yec{bottom:216.026667pt;}
.y1a1{bottom:216.866667pt;}
.y2f{bottom:217.906667pt;}
.y188{bottom:217.933333pt;}
.y124{bottom:218.200000pt;}
.yd8{bottom:219.266667pt;}
.y157{bottom:222.466667pt;}
.y1f{bottom:227.533333pt;}
.y97{bottom:229.560000pt;}
.y1a0{bottom:232.333333pt;}
.y187{bottom:233.133333pt;}
.y2e{bottom:233.146667pt;}
.y123{bottom:233.400000pt;}
.ye7{bottom:237.240000pt;}
.yaa{bottom:241.600000pt;}
.y1e{bottom:243.000000pt;}
.yd2{bottom:245.133333pt;}
.y156{bottom:246.200000pt;}
.y7b{bottom:246.266667pt;}
.y8f{bottom:246.333333pt;}
.y19f{bottom:247.533333pt;}
.y186{bottom:248.600000pt;}
.y2d{bottom:248.613333pt;}
.y122{bottom:248.866667pt;}
.ya4{bottom:250.466667pt;}
.y1d{bottom:258.200000pt;}
.yed{bottom:258.400000pt;}
.y19e{bottom:263.000000pt;}
.y185{bottom:263.800000pt;}
.y2c{bottom:263.813333pt;}
.y121{bottom:264.066667pt;}
.yd4{bottom:268.866667pt;}
.ye8{bottom:269.000000pt;}
.y153{bottom:272.066667pt;}
.y1c{bottom:273.933333pt;}
.y19d{bottom:278.200000pt;}
.y2b{bottom:279.266667pt;}
.y120{bottom:279.533333pt;}
.y90{bottom:280.506667pt;}
.y98{bottom:280.773333pt;}
.yab{bottom:285.906667pt;}
.y7c{bottom:288.693333pt;}
.y1b{bottom:292.333333pt;}
.y19c{bottom:293.666667pt;}
.y2a{bottom:294.466667pt;}
.yc9{bottom:294.733333pt;}
.y11f{bottom:295.266667pt;}
.ye9{bottom:300.773333pt;}
.y19b{bottom:308.893333pt;}
.y152{bottom:309.426667pt;}
.y29{bottom:309.946667pt;}
.y184{bottom:309.973333pt;}
.ya5{bottom:312.506667pt;}
.y11e{bottom:312.626667pt;}
.yce{bottom:313.173333pt;}
.y91{bottom:314.626667pt;}
.y19a{bottom:324.360000pt;}
.y183{bottom:325.173333pt;}
.y11d{bottom:325.440000pt;}
.y28{bottom:325.680000pt;}
.y151{bottom:327.840000pt;}
.yac{bottom:330.240000pt;}
.y99{bottom:332.000000pt;}
.y68{bottom:334.240000pt;}
.y199{bottom:339.573333pt;}
.y182{bottom:340.640000pt;}
.y11c{bottom:340.893333pt;}
.y150{bottom:345.173333pt;}
.y92{bottom:348.773333pt;}
.y67{bottom:349.440000pt;}
.yc8{bottom:349.706667pt;}
.y198{bottom:355.040000pt;}
.y11b{bottom:356.106667pt;}
.y181{bottom:356.373333pt;}
.y14f{bottom:357.973333pt;}
.y66{bottom:364.893333pt;}
.yc7{bottom:367.040000pt;}
.y197{bottom:370.226667pt;}
.y11a{bottom:371.560000pt;}
.y14e{bottom:373.440000pt;}
.y180{bottom:373.706667pt;}
.y27{bottom:374.493333pt;}
.ya6{bottom:374.573333pt;}
.yc6{bottom:379.840000pt;}
.y65{bottom:380.106667pt;}
.y93{bottom:382.893333pt;}
.y9a{bottom:383.200000pt;}
.y196{bottom:385.706667pt;}
.y17f{bottom:386.506667pt;}
.y119{bottom:386.773333pt;}
.y14d{bottom:388.626667pt;}
.yc5{bottom:395.306667pt;}
.y64{bottom:395.560000pt;}
.y195{bottom:400.893333pt;}
.y17e{bottom:401.960000pt;}
.y118{bottom:402.226667pt;}
.y14c{bottom:404.106667pt;}
.yc4{bottom:410.506667pt;}
.y63{bottom:411.293333pt;}
.y194{bottom:416.373333pt;}
.y17d{bottom:417.173333pt;}
.y117{bottom:417.440000pt;}
.y14b{bottom:419.306667pt;}
.yc3{bottom:425.960000pt;}
.y62{bottom:429.706667pt;}
.y193{bottom:431.560000pt;}
.y17c{bottom:432.626667pt;}
.y116{bottom:432.893333pt;}
.y14a{bottom:434.773333pt;}
.y73{bottom:439.560000pt;}
.yc2{bottom:441.693333pt;}
.y192{bottom:447.040000pt;}
.y17b{bottom:447.840000pt;}
.y115{bottom:448.093333pt;}
.y149{bottom:449.960000pt;}
.y72{bottom:455.306667pt;}
.yc1{bottom:459.066667pt;}
.y61{bottom:460.666667pt;}
.y191{bottom:462.266667pt;}
.y17a{bottom:463.333333pt;}
.y114{bottom:463.600000pt;}
.y148{bottom:464.666667pt;}
.y71{bottom:470.533333pt;}
.yc0{bottom:471.866667pt;}
.y60{bottom:476.400000pt;}
.y147{bottom:477.733333pt;}
.y113{bottom:478.800000pt;}
.y179{bottom:479.066667pt;}
.y70{bottom:486.000000pt;}
.ybf{bottom:487.333333pt;}
.y5f{bottom:491.600000pt;}
.y146{bottom:492.933333pt;}
.y112{bottom:494.533333pt;}
.y178{bottom:496.400000pt;}
.y6f{bottom:501.200000pt;}
.ybe{bottom:502.533333pt;}
.y5e{bottom:507.066667pt;}
.y145{bottom:508.400000pt;}
.y177{bottom:509.200000pt;}
.y111{bottom:511.866667pt;}
.y6e{bottom:516.666667pt;}
.ybd{bottom:518.266667pt;}
.y144{bottom:523.600000pt;}
.y176{bottom:524.666667pt;}
.y110{bottom:524.933333pt;}
.y6d{bottom:532.400000pt;}
.y5d{bottom:532.666667pt;}
.ybc{bottom:535.600000pt;}
.y143{bottom:539.066667pt;}
.y175{bottom:539.866667pt;}
.y10f{bottom:540.133333pt;}
.y5c{bottom:548.400000pt;}
.ybb{bottom:548.666667pt;}
.y6c{bottom:549.733333pt;}
.y142{bottom:554.266667pt;}
.y174{bottom:555.333333pt;}
.y10e{bottom:555.866667pt;}
.y6b{bottom:562.533333pt;}
.y5b{bottom:563.600000pt;}
.yba{bottom:563.866667pt;}
.y141{bottom:569.733333pt;}
.y173{bottom:570.533333pt;}
.y10d{bottom:574.266667pt;}
.y6a{bottom:576.133333pt;}
.y5a{bottom:579.066667pt;}
.yb9{bottom:579.333333pt;}
.y82{bottom:579.600000pt;}
.y69{bottom:582.533333pt;}
.y140{bottom:584.933333pt;}
.y172{bottom:586.000000pt;}
.y10c{bottom:591.866667pt;}
.y59{bottom:594.266667pt;}
.yb8{bottom:594.533333pt;}
.y81{bottom:595.066667pt;}
.y13f{bottom:600.400000pt;}
.y171{bottom:601.200000pt;}
.y10b{bottom:606.040000pt;}
.y58{bottom:609.773333pt;}
.yb7{bottom:610.026667pt;}
.y80{bottom:610.293333pt;}
.y13e{bottom:615.640000pt;}
.y170{bottom:615.893333pt;}
.y10a{bottom:621.506667pt;}
.y7f{bottom:622.573333pt;}
.y89{bottom:622.666667pt;}
.y9d{bottom:623.733333pt;}
.yb6{bottom:625.226667pt;}
.y16f{bottom:628.973333pt;}
.y13d{bottom:631.093333pt;}
.y57{bottom:635.360000pt;}
.y109{bottom:636.693333pt;}
.yb5{bottom:640.706667pt;}
.y1a8{bottom:643.640000pt;}
.y16e{bottom:644.173333pt;}
.y13c{bottom:646.293333pt;}
.y56{bottom:651.106667pt;}
.y108{bottom:652.173333pt;}
.yb4{bottom:656.426667pt;}
.y16d{bottom:659.626667pt;}
.y13b{bottom:661.773333pt;}
.y55{bottom:666.306667pt;}
.y107{bottom:667.373333pt;}
.yb3{bottom:673.773333pt;}
.y16c{bottom:674.840000pt;}
.y190{bottom:676.973333pt;}
.y13a{bottom:677.506667pt;}
.y54{bottom:681.773333pt;}
.y106{bottom:683.106667pt;}
.yb2{bottom:686.560000pt;}
.y16b{bottom:690.560000pt;}
.y18f{bottom:692.426667pt;}
.y139{bottom:694.840000pt;}
.y53{bottom:696.960000pt;}
.yb1{bottom:700.173333pt;}
.y105{bottom:700.440000pt;}
.yb0{bottom:706.573333pt;}
.y138{bottom:707.626667pt;}
.y16a{bottom:707.893333pt;}
.ye0{bottom:708.266667pt;}
.yef{bottom:708.533333pt;}
.y52{bottom:712.440000pt;}
.y104{bottom:713.506667pt;}
.y169{bottom:720.960000pt;}
.y137{bottom:723.106667pt;}
.y103{bottom:728.706667pt;}
.y168{bottom:736.173333pt;}
.y1a{bottom:737.760000pt;}
.y51{bottom:738.040000pt;}
.y136{bottom:738.293333pt;}
.y102{bottom:744.173333pt;}
.y166{bottom:751.360000pt;}
.y19{bottom:753.226667pt;}
.y50{bottom:753.773333pt;}
.y101{bottom:759.933333pt;}
.y18{bottom:768.466667pt;}
.y4f{bottom:769.000000pt;}
.y165{bottom:775.133333pt;}
.y100{bottom:777.266667pt;}
.y135{bottom:781.266667pt;}
.y4e{bottom:784.466667pt;}
.yff{bottom:787.133333pt;}
.y17{bottom:790.066667pt;}
.yfe{bottom:795.133333pt;}
.y134{bottom:796.733333pt;}
.y164{bottom:798.866667pt;}
.y4d{bottom:799.666667pt;}
.y16{bottom:806.600000pt;}
.y133{bottom:811.933333pt;}
.y4c{bottom:815.133333pt;}
.y160{bottom:824.733333pt;}
.y132{bottom:827.400000pt;}
.y15{bottom:827.933333pt;}
.y4b{bottom:830.333333pt;}
.yfd{bottom:832.466667pt;}
.y162{bottom:842.066667pt;}
.y131{bottom:842.600000pt;}
.y14{bottom:843.666667pt;}
.y4a{bottom:845.800000pt;}
.yfc{bottom:855.133333pt;}
.y130{bottom:858.066667pt;}
.y13{bottom:858.866667pt;}
.y49{bottom:861.000000pt;}
.y12{bottom:869.533333pt;}
.y15f{bottom:870.600000pt;}
.yfb{bottom:872.733333pt;}
.y12f{bottom:873.266667pt;}
.y48{bottom:876.466667pt;}
.yfa{bottom:880.733333pt;}
.y11{bottom:885.266667pt;}
.y12e{bottom:888.733333pt;}
.y47{bottom:891.666667pt;}
.y10{bottom:903.706667pt;}
.yf9{bottom:903.960000pt;}
.y12d{bottom:904.506667pt;}
.y46{bottom:907.173333pt;}
.yf8{bottom:919.440000pt;}
.y12c{bottom:921.840000pt;}
.y45{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.yf7{bottom:934.626667pt;}
.y44{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yf6{bottom:950.106667pt;}
.y15e{bottom:950.373333pt;}
.y43{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.yf5{bottom:965.293333pt;}
.y42{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.yf4{bottom:980.773333pt;}
.y41{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.yf3{bottom:995.960000pt;}
.y40{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yf2{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.ha{height:7.713542pt;}
.h5{height:11.289062pt;}
.h33{height:15.466667pt;}
.h24{height:15.500000pt;}
.hb{height:18.666667pt;}
.h16{height:19.283854pt;}
.h27{height:22.933333pt;}
.h2a{height:22.966667pt;}
.h28{height:23.200000pt;}
.h31{height:23.233333pt;}
.h23{height:23.466667pt;}
.hf{height:25.454687pt;}
.h2c{height:29.066667pt;}
.h8{height:30.104167pt;}
.h30{height:30.666667pt;}
.h17{height:30.854167pt;}
.h3{height:32.000000pt;}
.h32{height:32.800000pt;}
.h10{height:33.867188pt;}
.h14{height:34.625000pt;}
.h9{height:34.710938pt;}
.h1e{height:36.800000pt;}
.h4{height:37.630208pt;}
.h7{height:38.567708pt;}
.h34{height:38.828125pt;}
.h15{height:39.562500pt;}
.h1d{height:39.888021pt;}
.h1b{height:41.393229pt;}
.h1c{height:41.487305pt;}
.h22{height:41.900000pt;}
.h11{height:43.958333pt;}
.h25{height:44.035938pt;}
.he{height:44.654688pt;}
.h20{height:44.708021pt;}
.h6{height:45.156250pt;}
.h19{height:45.250326pt;}
.h21{height:46.281250pt;}
.h26{height:46.666667pt;}
.h29{height:46.700000pt;}
.h13{height:48.212500pt;}
.hc{height:51.937500pt;}
.hd{height:52.750000pt;}
.h2f{height:53.994792pt;}
.h1{height:58.351562pt;}
.h2e{height:77.156250pt;}
.h2d{height:79.188542pt;}
.h2{height:86.400000pt;}
.h18{height:311.200000pt;}
.h2b{height:318.400000pt;}
.h12{height:340.600000pt;}
.h1f{height:395.200000pt;}
.h1a{height:404.000000pt;}
.h0{height:1122.666667pt;}
.w1f{width:32.566667pt;}
.w20{width:40.800000pt;}
.w25{width:47.233333pt;}
.w22{width:47.733333pt;}
.w24{width:53.600000pt;}
.w21{width:58.700000pt;}
.w23{width:61.366667pt;}
.w16{width:62.666667pt;}
.w17{width:63.233333pt;}
.w4{width:64.266667pt;}
.w19{width:65.366667pt;}
.w18{width:68.000000pt;}
.w1b{width:70.133333pt;}
.w1c{width:70.166667pt;}
.w27{width:70.433333pt;}
.w26{width:70.666667pt;}
.w1a{width:73.900000pt;}
.w28{width:74.166667pt;}
.w1d{width:76.033333pt;}
.w1e{width:77.333333pt;}
.wb{width:84.833333pt;}
.wc{width:89.066667pt;}
.w15{width:95.500000pt;}
.w3{width:96.000000pt;}
.w11{width:105.366667pt;}
.w29{width:107.500000pt;}
.w12{width:121.366667pt;}
.w10{width:121.633333pt;}
.wf{width:121.666667pt;}
.w2a{width:172.560000pt;}
.w13{width:176.840000pt;}
.w6{width:224.866667pt;}
.we{width:227.533333pt;}
.wd{width:243.840000pt;}
.w5{width:429.733333pt;}
.w8{width:600.000000pt;}
.w14{width:619.200000pt;}
.w9{width:633.600000pt;}
.wa{width:641.600000pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:5.600000pt;}
.x57{left:6.666667pt;}
.x60{left:8.533333pt;}
.x2{left:9.599999pt;}
.x55{left:10.693333pt;}
.x4f{left:12.800000pt;}
.x11{left:14.400000pt;}
.x51{left:15.493333pt;}
.x37{left:16.533333pt;}
.x43{left:17.900000pt;}
.x3{left:19.733333pt;}
.x4b{left:21.066667pt;}
.x2f{left:22.033333pt;}
.x3a{left:22.933333pt;}
.x4{left:24.533333pt;}
.x4a{left:25.866667pt;}
.x1c{left:27.100000pt;}
.x3b{left:28.000000pt;}
.x53{left:29.600000pt;}
.x52{left:31.466667pt;}
.x3e{left:32.840000pt;}
.x25{left:33.833333pt;}
.x1b{left:35.100000pt;}
.x41{left:36.333333pt;}
.x3c{left:37.333333pt;}
.x2d{left:39.266667pt;}
.x3d{left:41.066667pt;}
.x39{left:42.133333pt;}
.x1a{left:43.106667pt;}
.x34{left:44.533333pt;}
.x2c{left:47.266667pt;}
.x2b{left:55.266667pt;}
.x5f{left:60.533333pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x1d{left:72.933333pt;}
.x10{left:73.900000pt;}
.x29{left:75.733333pt;}
.x1e{left:78.800000pt;}
.x23{left:79.733333pt;}
.x24{left:85.200000pt;}
.x2e{left:86.400000pt;}
.x18{left:96.800000pt;}
.x40{left:100.360000pt;}
.xf{left:103.506667pt;}
.x26{left:111.626667pt;}
.x17{left:113.899988pt;}
.x22{left:117.633322pt;}
.x42{left:128.573333pt;}
.xa{left:136.559988pt;}
.x54{left:153.906667pt;}
.x33{left:161.400000pt;}
.x47{left:167.800000pt;}
.x27{left:178.400000pt;}
.x56{left:187.266667pt;}
.x44{left:199.600000pt;}
.x46{left:201.133322pt;}
.xd{left:214.726667pt;}
.x58{left:228.866667pt;}
.x48{left:231.000000pt;}
.x20{left:232.333322pt;}
.x31{left:236.066655pt;}
.x35{left:253.400000pt;}
.x59{left:288.373333pt;}
.x49{left:294.773333pt;}
.x15{left:311.559988pt;}
.x7{left:323.039988pt;}
.x5a{left:336.906667pt;}
.x5{left:345.439988pt;}
.x4c{left:363.573333pt;}
.x36{left:375.600000pt;}
.x28{left:390.840000pt;}
.x14{left:396.933322pt;}
.x5b{left:399.066667pt;}
.x45{left:419.666667pt;}
.x4d{left:429.733333pt;}
.x5c{left:453.200000pt;}
.xe{left:499.360000pt;}
.x5d{left:500.973333pt;}
.x4e{left:504.440000pt;}
.x12{left:505.506655pt;}
.x9{left:546.559988pt;}
.x5e{left:572.173333pt;}
.x19{left:574.373333pt;}
.x8{left:576.173322pt;}
.x3f{left:592.933333pt;}
.x38{left:606.333333pt;}
.x2a{left:617.333333pt;}
.x6{left:619.133322pt;}
.x50{left:646.066667pt;}
.x16{left:697.039988pt;}
.x13{left:703.959988pt;}
.x30{left:707.173322pt;}
.x1f{left:714.106655pt;}
.x21{left:718.106655pt;}
.xb{left:722.106655pt;}
}




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