
    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_39d69fe021e8cd90c0710b6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8a91f4a1e550575612d44acc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a139c3198396fb504c96b92a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_429b0f6f49f901b1db794a7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_17d25dd0f5520bcf7a158fc2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d8db6247512c3ab1adac7cb.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-20.880000px;}
.v3{vertical-align:-9.360000px;}
.v1{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.va{vertical-align:5.760000px;}
.v4{vertical-align:9.360000px;}
.v7{vertical-align:12.240000px;}
.vb{vertical-align:20.880000px;}
.v8{vertical-align:31.680000px;}
.v2{vertical-align:37.440000px;}
.v9{vertical-align:41.040000px;}
.ls21{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.343200px;}
.ls8{letter-spacing:-0.262200px;}
.ls9{letter-spacing:-0.219000px;}
.ls4{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.178800px;}
.ls16{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.051840px;}
.ls23{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.097920px;}
.ls10{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.152400px;}
.ls1e{letter-spacing:0.178560px;}
.ls1f{letter-spacing:0.178800px;}
.ls19{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.183360px;}
.ls1b{letter-spacing:0.207360px;}
.ls6{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.334080px;}
.ls18{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.088000px;}
.lsc{letter-spacing:2.340000px;}
.lse{letter-spacing:2.880000px;}
.ls22{letter-spacing:18.000000px;}
.lsd{letter-spacing:173.465280px;}
.ls11{letter-spacing:179.460000px;}
.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;}
}
.ws5{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.297800px;}
.wse{word-spacing:-16.174200px;}
.wsd{word-spacing:-15.891840px;}
.ws8{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.788160px;}
.wsa{word-spacing:-15.621000px;}
.ws0{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.220000px;}
.ws15{word-spacing:-14.192640px;}
.ws14{word-spacing:-13.860000px;}
.ws10{word-spacing:-10.618800px;}
.ws9{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.979200px;}
.wsc{word-spacing:-9.636000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-15.120000px;}
._18{margin-left:-7.236720px;}
._12{margin-left:-4.554720px;}
._3{margin-left:-3.406320px;}
._c{margin-left:-2.330640px;}
._0{margin-left:-1.324800px;}
._1{width:1.314720px;}
._6{width:2.743680px;}
._5{width:3.944160px;}
._b{width:5.318640px;}
._d{width:7.051680px;}
._a{width:8.307840px;}
._9{width:9.442080px;}
._11{width:11.224800px;}
._2{width:12.967920px;}
._14{width:14.065200px;}
._13{width:15.102720px;}
._10{width:17.390160px;}
._15{width:18.720000px;}
._1d{width:20.106000px;}
._1c{width:25.896000px;}
._16{width:27.308160px;}
._17{width:28.913040px;}
._4{width:30.955680px;}
._e{width:32.389920px;}
._8{width:34.063200px;}
._7{width:35.198640px;}
._f{width:46.433520px;}
._19{width:147.600000px;}
._1a{width:200.280000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsb{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.y12c{bottom:-34.380000px;}
.y12b{bottom:-16.380000px;}
.y13d{bottom:-15.480000px;}
.y132{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:1.800000px;}
.y131{bottom:2.520000px;}
.y12f{bottom:2.700000px;}
.y32{bottom:3.240000px;}
.y10e{bottom:3.420000px;}
.y146{bottom:3.960000px;}
.yb1{bottom:7.845000px;}
.yb3{bottom:8.025000px;}
.y10f{bottom:12.420000px;}
.y10{bottom:14.400000px;}
.y17{bottom:21.240000px;}
.y10d{bottom:21.420000px;}
.y31{bottom:29.340000px;}
.y16{bottom:38.550000px;}
.y30{bottom:46.620000px;}
.y15{bottom:55.830000px;}
.y2f{bottom:63.900000px;}
.y14{bottom:73.110000px;}
.y2e{bottom:81.180000px;}
.y13{bottom:90.390000px;}
.y18{bottom:95.430000px;}
.y2d{bottom:98.460000px;}
.y12{bottom:105.330000px;}
.y2c{bottom:115.785000px;}
.y2b{bottom:133.065000px;}
.y2a{bottom:150.165000px;}
.y177{bottom:156.060000px;}
.y144{bottom:160.770000px;}
.y109{bottom:160.950000px;}
.yaf{bottom:161.130000px;}
.y19b{bottom:167.430000px;}
.y29{bottom:167.445000px;}
.y8f{bottom:168.510000px;}
.y176{bottom:174.270000px;}
.y75{bottom:176.070000px;}
.y1e1{bottom:176.970000px;}
.y1bd{bottom:177.330000px;}
.y143{bottom:177.870000px;}
.y108{bottom:179.130000px;}
.yae{bottom:179.310000px;}
.ydd{bottom:181.830000px;}
.y28{bottom:184.725000px;}
.y40{bottom:186.330000px;}
.y175{bottom:192.450000px;}
.y1e0{bottom:193.350000px;}
.y19a{bottom:194.610000px;}
.y74{bottom:195.150000px;}
.y1bc{bottom:195.510000px;}
.y8e{bottom:195.690000px;}
.y107{bottom:197.130000px;}
.yad{bottom:197.490000px;}
.y27{bottom:202.005000px;}
.y3f{bottom:205.230000px;}
.ydc{bottom:209.010000px;}
.y1df{bottom:209.730000px;}
.y174{bottom:210.630000px;}
.y39{bottom:211.005000px;}
.y142{bottom:212.430000px;}
.y199{bottom:212.790000px;}
.y1bb{bottom:213.510000px;}
.y8d{bottom:213.870000px;}
.y73{bottom:214.050000px;}
.y106{bottom:215.310000px;}
.yac{bottom:215.490000px;}
.y26{bottom:219.285000px;}
.y3e{bottom:224.310000px;}
.y38{bottom:228.285000px;}
.y173{bottom:228.630000px;}
.y141{bottom:229.710000px;}
.y1de{bottom:230.610000px;}
.y198{bottom:230.970000px;}
.y1ba{bottom:231.690000px;}
.y8c{bottom:231.870000px;}
.y72{bottom:233.130000px;}
.y105{bottom:233.310000px;}
.y25{bottom:236.385000px;}
.ydb{bottom:236.910000px;}
.yab{bottom:242.670000px;}
.y3d{bottom:243.210000px;}
.y37{bottom:245.565000px;}
.y172{bottom:246.810000px;}
.y140{bottom:246.990000px;}
.y197{bottom:248.970000px;}
.y1b9{bottom:249.690000px;}
.y8b{bottom:250.050000px;}
.y104{bottom:251.490000px;}
.y71{bottom:252.030000px;}
.y24{bottom:253.665000px;}
.yda{bottom:255.090000px;}
.y36{bottom:262.845000px;}
.y13f{bottom:264.270000px;}
.y171{bottom:264.810000px;}
.y196{bottom:267.150000px;}
.y1dd{bottom:267.870000px;}
.y8a{bottom:268.230000px;}
.y103{bottom:269.670000px;}
.yaa{bottom:270.570000px;}
.y3c{bottom:270.930000px;}
.y23{bottom:270.945000px;}
.yd9{bottom:273.270000px;}
.y70{bottom:275.430000px;}
.y1b8{bottom:276.870000px;}
.y35{bottom:280.125000px;}
.y13e{bottom:281.370000px;}
.y170{bottom:282.990000px;}
.y1dc{bottom:284.250000px;}
.y102{bottom:287.670000px;}
.y22{bottom:288.225000px;}
.ya9{bottom:288.750000px;}
.y3b{bottom:289.650000px;}
.y195{bottom:294.330000px;}
.y6f{bottom:294.510000px;}
.y89{bottom:295.230000px;}
.y34{bottom:297.225000px;}
.y13c{bottom:298.650000px;}
.yd8{bottom:300.450000px;}
.y1db{bottom:300.630000px;}
.y16f{bottom:301.170000px;}
.y3a{bottom:302.445000px;}
.y1b7{bottom:304.770000px;}
.y21{bottom:305.505000px;}
.y101{bottom:305.850000px;}
.y19{bottom:306.030000px;}
.ya8{bottom:306.930000px;}
.y33{bottom:312.165000px;}
.y6e{bottom:313.410000px;}
.y13b{bottom:315.930000px;}
.y16e{bottom:319.170000px;}
.y1da{bottom:321.510000px;}
.y194{bottom:322.050000px;}
.y88{bottom:322.410000px;}
.y20{bottom:322.785000px;}
.y1b6{bottom:322.950000px;}
.y100{bottom:323.850000px;}
.yd7{bottom:328.170000px;}
.y6d{bottom:332.490000px;}
.y13a{bottom:333.210000px;}
.ya7{bottom:334.110000px;}
.y16d{bottom:337.350000px;}
.y1d9{bottom:337.890000px;}
.y1f{bottom:339.885000px;}
.y193{bottom:340.230000px;}
.y87{bottom:340.590000px;}
.y1b5{bottom:341.130000px;}
.yff{bottom:342.030000px;}
.yd6{bottom:346.350000px;}
.y139{bottom:350.490000px;}
.y6c{bottom:351.390000px;}
.y1d8{bottom:354.270000px;}
.y1e{bottom:357.195000px;}
.y192{bottom:358.410000px;}
.y86{bottom:358.590000px;}
.y1b4{bottom:359.130000px;}
.yfe{bottom:360.210000px;}
.ya6{bottom:361.830000px;}
.y16c{bottom:364.350000px;}
.y138{bottom:367.770000px;}
.y6b{bottom:370.470000px;}
.yd5{bottom:373.530000px;}
.y1d{bottom:374.475000px;}
.y1d7{bottom:375.150000px;}
.y191{bottom:376.590000px;}
.y85{bottom:376.770000px;}
.y1b3{bottom:377.310000px;}
.ya5{bottom:380.010000px;}
.y137{bottom:384.870000px;}
.yfd{bottom:387.210000px;}
.y6a{bottom:389.370000px;}
.y16b{bottom:391.530000px;}
.y1c{bottom:391.755000px;}
.y84{bottom:394.770000px;}
.ya4{bottom:398.190000px;}
.yd4{bottom:401.430000px;}
.y136{bottom:402.150000px;}
.y190{bottom:403.770000px;}
.y1b2{bottom:404.490000px;}
.y69{bottom:408.315000px;}
.y1b{bottom:409.035000px;}
.y16a{bottom:409.755000px;}
.y1d6{bottom:412.455000px;}
.yfc{bottom:414.435000px;}
.y135{bottom:419.475000px;}
.y83{bottom:421.995000px;}
.y1a{bottom:423.975000px;}
.ya3{bottom:425.415000px;}
.y169{bottom:427.755000px;}
.yd3{bottom:428.655000px;}
.y1d5{bottom:428.835000px;}
.y18f{bottom:431.535000px;}
.y68{bottom:431.715000px;}
.y1b1{bottom:432.435000px;}
.yfb{bottom:432.615000px;}
.y134{bottom:436.755000px;}
.y168{bottom:445.935000px;}
.y82{bottom:448.995000px;}
.y18e{bottom:449.715000px;}
.yfa{bottom:450.615000px;}
.y67{bottom:450.795000px;}
.ya2{bottom:453.135000px;}
.y133{bottom:454.035000px;}
.yd2{bottom:456.555000px;}
.y167{bottom:464.115000px;}
.y81{bottom:467.175000px;}
.y18d{bottom:467.895000px;}
.y1b0{bottom:468.615000px;}
.yf9{bottom:468.795000px;}
.y66{bottom:469.875000px;}
.y1d4{bottom:470.595000px;}
.ya1{bottom:471.315000px;}
.yd1{bottom:483.735000px;}
.y18c{bottom:486.075000px;}
.yf8{bottom:486.795000px;}
.y1d3{bottom:486.975000px;}
.y130{bottom:488.415000px;}
.y65{bottom:488.775000px;}
.y166{bottom:491.115000px;}
.y80{bottom:494.175000px;}
.ya0{bottom:498.495000px;}
.y18b{bottom:504.075000px;}
.yf7{bottom:504.975000px;}
.y12e{bottom:505.695000px;}
.y64{bottom:507.675000px;}
.y1d2{bottom:507.855000px;}
.yd0{bottom:511.635000px;}
.y1af{bottom:513.975000px;}
.y165{bottom:518.115000px;}
.y7f{bottom:521.355000px;}
.y12d{bottom:522.975000px;}
.yf6{bottom:523.155000px;}
.y1d1{bottom:524.235000px;}
.y9f{bottom:526.395000px;}
.y63{bottom:526.755000px;}
.y18a{bottom:531.255000px;}
.y164{bottom:536.295000px;}
.ycf{bottom:538.815000px;}
.y129{bottom:540.255000px;}
.yf5{bottom:541.155000px;}
.y1ae{bottom:541.695000px;}
.y9e{bottom:544.575000px;}
.y7e{bottom:545.115000px;}
.y62{bottom:549.975000px;}
.y163{bottom:554.475000px;}
.y189{bottom:559.155000px;}
.yf4{bottom:559.335000px;}
.y1ad{bottom:559.875000px;}
.y128{bottom:560.955000px;}
.y1d0{bottom:561.495000px;}
.yce{bottom:566.715000px;}
.y61{bottom:569.235000px;}
.y9d{bottom:571.755000px;}
.y162{bottom:572.655000px;}
.yf3{bottom:577.335000px;}
.y1cf{bottom:577.875000px;}
.y1ac{bottom:578.055000px;}
.y127{bottom:578.955000px;}
.y60{bottom:588.135000px;}
.y161{bottom:590.655000px;}
.ycd{bottom:593.895000px;}
.y188{bottom:595.335000px;}
.yf2{bottom:595.515000px;}
.y1ab{bottom:596.235000px;}
.y9c{bottom:599.655000px;}
.y126{bottom:606.135000px;}
.y5f{bottom:607.035000px;}
.y160{bottom:608.835000px;}
.y1ce{bottom:612.795000px;}
.y187{bottom:613.515000px;}
.y1aa{bottom:614.235000px;}
.ycc{bottom:620.895000px;}
.yf1{bottom:622.515000px;}
.y11{bottom:624.675000px;}
.y5e{bottom:626.115000px;}
.y15f{bottom:626.835000px;}
.y9b{bottom:627.555000px;}
.y125{bottom:630.615000px;}
.ycb{bottom:639.075000px;}
.y186{bottom:640.695000px;}
.y1a9{bottom:641.415000px;}
.y5d{bottom:645.015000px;}
.y9a{bottom:645.735000px;}
.y124{bottom:648.615000px;}
.yf0{bottom:649.695000px;}
.y99{bottom:663.945000px;}
.y5c{bottom:664.125000px;}
.yca{bottom:666.285000px;}
.y123{bottom:666.825000px;}
.yef{bottom:667.905000px;}
.y185{bottom:668.625000px;}
.y1cd{bottom:668.805000px;}
.y1a8{bottom:669.345000px;}
.y15e{bottom:672.045000px;}
.y98{bottom:681.945000px;}
.y5b{bottom:683.025000px;}
.y122{bottom:685.005000px;}
.y184{bottom:686.805000px;}
.y1a7{bottom:687.525000px;}
.yc9{bottom:694.185000px;}
.yee{bottom:695.085000px;}
.y1cc{bottom:696.525000px;}
.y15d{bottom:699.045000px;}
.y5a{bottom:701.925000px;}
.y121{bottom:703.005000px;}
.y183{bottom:704.805000px;}
.y1a6{bottom:705.705000px;}
.y97{bottom:709.125000px;}
.yc8{bottom:712.365000px;}
.y15c{bottom:713.805000px;}
.y1cb{bottom:714.705000px;}
.y59{bottom:721.005000px;}
.y120{bottom:721.185000px;}
.yed{bottom:722.985000px;}
.y1a5{bottom:723.705000px;}
.y15b{bottom:731.085000px;}
.y96{bottom:733.605000px;}
.yc7{bottom:735.945000px;}
.yf{bottom:736.485000px;}
.yc6{bottom:738.285000px;}
.y11f{bottom:739.365000px;}
.y58{bottom:739.905000px;}
.yb0{bottom:740.340000px;}
.yec{bottom:741.165000px;}
.yb2{bottom:741.240000px;}
.y1a4{bottom:741.885000px;}
.yb4{bottom:742.320000px;}
.yc5{bottom:746.205000px;}
.y15a{bottom:748.365000px;}
.y11e{bottom:757.365000px;}
.y57{bottom:758.985000px;}
.yeb{bottom:759.165000px;}
.y1a3{bottom:759.885000px;}
.y159{bottom:765.645000px;}
.y95{bottom:767.445000px;}
.y182{bottom:768.345000px;}
.y1ca{bottom:769.785000px;}
.y11d{bottom:775.545000px;}
.yc4{bottom:777.345000px;}
.y1a2{bottom:778.065000px;}
.ye{bottom:780.945000px;}
.y56{bottom:782.205000px;}
.y158{bottom:782.925000px;}
.y1c9{bottom:787.965000px;}
.y11c{bottom:793.545000px;}
.yea{bottom:795.345000px;}
.yc3{bottom:795.525000px;}
.y181{bottom:796.065000px;}
.y1a1{bottom:796.245000px;}
.yd{bottom:798.045000px;}
.y157{bottom:800.025000px;}
.y55{bottom:801.465000px;}
.y1f4{bottom:805.065000px;}
.y1c8{bottom:805.965000px;}
.y11b{bottom:811.725000px;}
.yc2{bottom:813.705000px;}
.y180{bottom:814.245000px;}
.yc{bottom:815.325000px;}
.y156{bottom:817.305000px;}
.y54{bottom:820.365000px;}
.ye9{bottom:822.525000px;}
.y1c7{bottom:824.145000px;}
.y1f3{bottom:829.365000px;}
.y11a{bottom:829.905000px;}
.yc1{bottom:831.705000px;}
.y17f{bottom:832.425000px;}
.yb{bottom:832.785000px;}
.y155{bottom:834.585000px;}
.y53{bottom:839.265000px;}
.y1c6{bottom:842.325000px;}
.y119{bottom:847.905000px;}
.yc0{bottom:849.885000px;}
.y1f2{bottom:850.245000px;}
.ye8{bottom:850.425000px;}
.ya{bottom:850.965000px;}
.y154{bottom:851.865000px;}
.y52{bottom:858.345000px;}
.y118{bottom:866.085000px;}
.y1f1{bottom:866.625000px;}
.ye7{bottom:868.605000px;}
.y9{bottom:868.965000px;}
.y153{bottom:869.145000px;}
.y1c5{bottom:869.505000px;}
.ybf{bottom:877.065000px;}
.y51{bottom:877.245000px;}
.y1a0{bottom:877.605000px;}
.y1f0{bottom:883.005000px;}
.y117{bottom:884.085000px;}
.y152{bottom:886.425000px;}
.ye6{bottom:886.785000px;}
.y17e{bottom:895.785000px;}
.y50{bottom:896.325000px;}
.y1c4{bottom:897.225000px;}
.y116{bottom:902.310000px;}
.y151{bottom:903.570000px;}
.y1ef{bottom:903.930000px;}
.ybe{bottom:904.830000px;}
.y19f{bottom:905.550000px;}
.y8{bottom:905.730000px;}
.y4f{bottom:915.270000px;}
.y1c3{bottom:915.450000px;}
.y1ee{bottom:920.310000px;}
.y115{bottom:920.490000px;}
.y150{bottom:920.850000px;}
.ybd{bottom:923.010000px;}
.y17d{bottom:923.730000px;}
.y7d{bottom:931.110000px;}
.y1c2{bottom:933.630000px;}
.y4e{bottom:934.170000px;}
.y1ed{bottom:936.690000px;}
.y14f{bottom:938.130000px;}
.y114{bottom:938.490000px;}
.ybc{bottom:941.190000px;}
.y17c{bottom:941.910000px;}
.y7{bottom:944.430000px;}
.y7c{bottom:949.290000px;}
.y1c1{bottom:951.630000px;}
.y4d{bottom:953.250000px;}
.y14e{bottom:955.410000px;}
.y113{bottom:956.670000px;}
.y1ec{bottom:957.570000px;}
.ye5{bottom:959.190000px;}
.y17b{bottom:959.910000px;}
.y6{bottom:965.130000px;}
.y7b{bottom:967.290000px;}
.ybb{bottom:968.370000px;}
.y1c0{bottom:969.810000px;}
.y14d{bottom:972.690000px;}
.y1eb{bottom:973.950000px;}
.y112{bottom:974.850000px;}
.y4c{bottom:976.470000px;}
.y17a{bottom:978.090000px;}
.y7a{bottom:985.470000px;}
.ye4{bottom:986.370000px;}
.y1bf{bottom:987.990000px;}
.y14c{bottom:989.970000px;}
.y1ea{bottom:990.330000px;}
.y111{bottom:992.850000px;}
.y4b{bottom:995.730000px;}
.yba{bottom:996.270000px;}
.y79{bottom:1003.650000px;}
.y5{bottom:1003.830000px;}
.y19e{bottom:1005.270000px;}
.y14b{bottom:1007.070000px;}
.y110{bottom:1011.030000px;}
.y1e9{bottom:1011.210000px;}
.ye3{bottom:1014.270000px;}
.yb9{bottom:1014.450000px;}
.y4a{bottom:1014.630000px;}
.y1be{bottom:1014.990000px;}
.y78{bottom:1021.650000px;}
.y179{bottom:1023.450000px;}
.y14a{bottom:1024.350000px;}
.y1e8{bottom:1027.590000px;}
.y10c{bottom:1029.930000px;}
.y19d{bottom:1033.170000px;}
.y49{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.ye2{bottom:1041.450000px;}
.yb8{bottom:1041.630000px;}
.y94{bottom:1043.070000px;}
.y1e7{bottom:1043.970000px;}
.y77{bottom:1048.830000px;}
.y178{bottom:1051.170000px;}
.y19c{bottom:1051.350000px;}
.y48{bottom:1052.610000px;}
.y149{bottom:1058.910000px;}
.y1e6{bottom:1064.850000px;}
.yb7{bottom:1066.110000px;}
.ye1{bottom:1069.350000px;}
.y93{bottom:1070.250000px;}
.y47{bottom:1071.510000px;}
.yb5{bottom:1074.030000px;}
.y148{bottom:1076.190000px;}
.y76{bottom:1076.910000px;}
.yb6{bottom:1081.050000px;}
.y1e5{bottom:1081.230000px;}
.ye0{bottom:1087.530000px;}
.y92{bottom:1088.430000px;}
.y46{bottom:1090.590000px;}
.y145{bottom:1094.190000px;}
.y1e4{bottom:1097.610000px;}
.ydf{bottom:1105.530000px;}
.y91{bottom:1106.430000px;}
.y147{bottom:1112.190000px;}
.y45{bottom:1113.810000px;}
.y10b{bottom:1115.430000px;}
.y1e3{bottom:1118.490000px;}
.yde{bottom:1132.710000px;}
.y44{bottom:1132.890000px;}
.y90{bottom:1133.430000px;}
.y10a{bottom:1133.610000px;}
.y1e2{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y43{bottom:1169.460000px;}
.y42{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y41{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.h21{height:16.560000px;}
.h23{height:17.100000px;}
.h27{height:17.136000px;}
.h22{height:17.280000px;}
.h25{height:17.316000px;}
.hb{height:17.657227px;}
.h1e{height:18.000000px;}
.h1f{height:18.180000px;}
.h20{height:18.216000px;}
.h15{height:19.080000px;}
.h12{height:19.260000px;}
.h14{height:19.440000px;}
.h26{height:35.280000px;}
.h1c{height:36.180000px;}
.h1a{height:38.228203px;}
.h8{height:40.320000px;}
.h24{height:41.304375px;}
.h28{height:44.240625px;}
.h13{height:47.344922px;}
.h17{height:50.468203px;}
.h29{height:55.824609px;}
.h2a{height:57.324375px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h1d{height:62.153438px;}
.h5{height:62.184375px;}
.h11{height:63.855000px;}
.h2{height:65.010937px;}
.h9{height:66.757500px;}
.hf{height:70.664062px;}
.h4{height:72.562500px;}
.h19{height:75.668203px;}
.h16{height:78.548203px;}
.h18{height:93.864375px;}
.h3{height:96.508125px;}
.h1b{height:103.224375px;}
.ha{height:109.476000px;}
.h10{height:153.341016px;}
.he{height:316.470000px;}
.hd{height:428.115000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wc{width:82.476000px;}
.wd{width:90.180000px;}
.w10{width:90.360000px;}
.wf{width:90.576000px;}
.w1b{width:92.916000px;}
.w11{width:93.816000px;}
.w19{width:94.536000px;}
.w18{width:94.680000px;}
.w1a{width:96.480000px;}
.w12{width:98.280000px;}
.w1c{width:101.160000px;}
.w17{width:101.556000px;}
.w13{width:121.140000px;}
.wa{width:121.896000px;}
.wb{width:122.040000px;}
.we{width:123.300000px;}
.w9{width:138.780000px;}
.w15{width:191.010000px;}
.w16{width:194.070000px;}
.w14{width:196.230000px;}
.w3{width:237.990000px;}
.w8{width:249.300000px;}
.w6{width:249.480000px;}
.w7{width:249.660000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:3.060000px;}
.x7{left:8.100000px;}
.x42{left:9.360000px;}
.x13{left:10.905000px;}
.x41{left:12.240000px;}
.x26{left:13.500000px;}
.x27{left:14.760000px;}
.x40{left:16.920000px;}
.x28{left:18.720000px;}
.x22{left:20.160000px;}
.x25{left:21.420000px;}
.x24{left:23.220000px;}
.x29{left:24.660000px;}
.x23{left:26.640000px;}
.x1c{left:32.805000px;}
.x3c{left:34.740000px;}
.x20{left:36.180000px;}
.x3f{left:37.980000px;}
.x3a{left:39.060000px;}
.x37{left:68.430000px;}
.x39{left:70.065000px;}
.x35{left:71.145000px;}
.x5{left:108.035987px;}
.x2b{left:116.135987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x2a{left:166.889987px;}
.x15{left:172.829987px;}
.xa{left:185.250000px;}
.xc{left:194.609987px;}
.x43{left:201.089987px;}
.x34{left:229.170000px;}
.x2e{left:231.330000px;}
.x1b{left:246.810000px;}
.xf{left:283.754987px;}
.x3{left:314.354987px;}
.x2f{left:321.915000px;}
.x3b{left:330.735000px;}
.x18{left:333.794987px;}
.x19{left:339.374987px;}
.x16{left:350.174987px;}
.x17{left:351.254987px;}
.x14{left:359.280000px;}
.x8{left:360.795000px;}
.x1d{left:368.715000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x1a{left:380.954987px;}
.x30{left:412.275000px;}
.x36{left:425.415000px;}
.x2c{left:428.654987px;}
.x1e{left:490.605000px;}
.x31{left:502.845000px;}
.x3d{left:519.945000px;}
.x32{left:593.205000px;}
.x12{left:600.480000px;}
.x1f{left:612.645000px;}
.x38{left:616.425000px;}
.x33{left:687.030000px;}
.x21{left:695.130000px;}
.x3e{left:709.350000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.xe{left:765.329987px;}
.x4{left:781.349987px;}
.x11{left:850.679987px;}
.x10{left:853.379987px;}
@media print{
.vc{vertical-align:-18.560000pt;}
.v3{vertical-align:-8.320000pt;}
.v1{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.va{vertical-align:5.120000pt;}
.v4{vertical-align:8.320000pt;}
.v7{vertical-align:10.880000pt;}
.vb{vertical-align:18.560000pt;}
.v8{vertical-align:28.160000pt;}
.v2{vertical-align:33.280000pt;}
.v9{vertical-align:36.480000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.305067pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls9{letter-spacing:-0.194667pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.158933pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.046080pt;}
.ls23{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.087040pt;}
.ls10{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.135467pt;}
.ls1e{letter-spacing:0.158720pt;}
.ls1f{letter-spacing:0.158933pt;}
.ls19{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.162987pt;}
.ls1b{letter-spacing:0.184320pt;}
.ls6{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.296960pt;}
.ls18{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:1.440000pt;}
.lsf{letter-spacing:1.856000pt;}
.lsc{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.560000pt;}
.ls22{letter-spacing:16.000000pt;}
.lsd{letter-spacing:154.191360pt;}
.ls11{letter-spacing:159.520000pt;}
.ws5{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.377067pt;}
.wsd{word-spacing:-14.126080pt;}
.ws8{word-spacing:-14.080000pt;}
.wsf{word-spacing:-14.033920pt;}
.wsa{word-spacing:-13.885333pt;}
.ws0{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.640000pt;}
.ws15{word-spacing:-12.615680pt;}
.ws14{word-spacing:-12.320000pt;}
.ws10{word-spacing:-9.438933pt;}
.ws9{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.870400pt;}
.wsc{word-spacing:-8.565333pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-13.440000pt;}
._18{margin-left:-6.432640pt;}
._12{margin-left:-4.048640pt;}
._3{margin-left:-3.027840pt;}
._c{margin-left:-2.071680pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.168640pt;}
._6{width:2.438827pt;}
._5{width:3.505920pt;}
._b{width:4.727680pt;}
._d{width:6.268160pt;}
._a{width:7.384747pt;}
._9{width:8.392960pt;}
._11{width:9.977600pt;}
._2{width:11.527040pt;}
._14{width:12.502400pt;}
._13{width:13.424640pt;}
._10{width:15.457920pt;}
._15{width:16.640000pt;}
._1d{width:17.872000pt;}
._1c{width:23.018667pt;}
._16{width:24.273920pt;}
._17{width:25.700480pt;}
._4{width:27.516160pt;}
._e{width:28.791040pt;}
._8{width:30.278400pt;}
._7{width:31.287680pt;}
._f{width:41.274240pt;}
._19{width:131.200000pt;}
._1a{width:178.026667pt;}
.fs5{font-size:16.000000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsb{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.y12c{bottom:-30.560000pt;}
.y12b{bottom:-14.560000pt;}
.y13d{bottom:-13.760000pt;}
.y132{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:1.600000pt;}
.y131{bottom:2.240000pt;}
.y12f{bottom:2.400000pt;}
.y32{bottom:2.880000pt;}
.y10e{bottom:3.040000pt;}
.y146{bottom:3.520000pt;}
.yb1{bottom:6.973333pt;}
.yb3{bottom:7.133333pt;}
.y10f{bottom:11.040000pt;}
.y10{bottom:12.800000pt;}
.y17{bottom:18.880000pt;}
.y10d{bottom:19.040000pt;}
.y31{bottom:26.080000pt;}
.y16{bottom:34.266667pt;}
.y30{bottom:41.440000pt;}
.y15{bottom:49.626667pt;}
.y2f{bottom:56.800000pt;}
.y14{bottom:64.986667pt;}
.y2e{bottom:72.160000pt;}
.y13{bottom:80.346667pt;}
.y18{bottom:84.826667pt;}
.y2d{bottom:87.520000pt;}
.y12{bottom:93.626667pt;}
.y2c{bottom:102.920000pt;}
.y2b{bottom:118.280000pt;}
.y2a{bottom:133.480000pt;}
.y177{bottom:138.720000pt;}
.y144{bottom:142.906667pt;}
.y109{bottom:143.066667pt;}
.yaf{bottom:143.226667pt;}
.y19b{bottom:148.826667pt;}
.y29{bottom:148.840000pt;}
.y8f{bottom:149.786667pt;}
.y176{bottom:154.906667pt;}
.y75{bottom:156.506667pt;}
.y1e1{bottom:157.306667pt;}
.y1bd{bottom:157.626667pt;}
.y143{bottom:158.106667pt;}
.y108{bottom:159.226667pt;}
.yae{bottom:159.386667pt;}
.ydd{bottom:161.626667pt;}
.y28{bottom:164.200000pt;}
.y40{bottom:165.626667pt;}
.y175{bottom:171.066667pt;}
.y1e0{bottom:171.866667pt;}
.y19a{bottom:172.986667pt;}
.y74{bottom:173.466667pt;}
.y1bc{bottom:173.786667pt;}
.y8e{bottom:173.946667pt;}
.y107{bottom:175.226667pt;}
.yad{bottom:175.546667pt;}
.y27{bottom:179.560000pt;}
.y3f{bottom:182.426667pt;}
.ydc{bottom:185.786667pt;}
.y1df{bottom:186.426667pt;}
.y174{bottom:187.226667pt;}
.y39{bottom:187.560000pt;}
.y142{bottom:188.826667pt;}
.y199{bottom:189.146667pt;}
.y1bb{bottom:189.786667pt;}
.y8d{bottom:190.106667pt;}
.y73{bottom:190.266667pt;}
.y106{bottom:191.386667pt;}
.yac{bottom:191.546667pt;}
.y26{bottom:194.920000pt;}
.y3e{bottom:199.386667pt;}
.y38{bottom:202.920000pt;}
.y173{bottom:203.226667pt;}
.y141{bottom:204.186667pt;}
.y1de{bottom:204.986667pt;}
.y198{bottom:205.306667pt;}
.y1ba{bottom:205.946667pt;}
.y8c{bottom:206.106667pt;}
.y72{bottom:207.226667pt;}
.y105{bottom:207.386667pt;}
.y25{bottom:210.120000pt;}
.ydb{bottom:210.586667pt;}
.yab{bottom:215.706667pt;}
.y3d{bottom:216.186667pt;}
.y37{bottom:218.280000pt;}
.y172{bottom:219.386667pt;}
.y140{bottom:219.546667pt;}
.y197{bottom:221.306667pt;}
.y1b9{bottom:221.946667pt;}
.y8b{bottom:222.266667pt;}
.y104{bottom:223.546667pt;}
.y71{bottom:224.026667pt;}
.y24{bottom:225.480000pt;}
.yda{bottom:226.746667pt;}
.y36{bottom:233.640000pt;}
.y13f{bottom:234.906667pt;}
.y171{bottom:235.386667pt;}
.y196{bottom:237.466667pt;}
.y1dd{bottom:238.106667pt;}
.y8a{bottom:238.426667pt;}
.y103{bottom:239.706667pt;}
.yaa{bottom:240.506667pt;}
.y3c{bottom:240.826667pt;}
.y23{bottom:240.840000pt;}
.yd9{bottom:242.906667pt;}
.y70{bottom:244.826667pt;}
.y1b8{bottom:246.106667pt;}
.y35{bottom:249.000000pt;}
.y13e{bottom:250.106667pt;}
.y170{bottom:251.546667pt;}
.y1dc{bottom:252.666667pt;}
.y102{bottom:255.706667pt;}
.y22{bottom:256.200000pt;}
.ya9{bottom:256.666667pt;}
.y3b{bottom:257.466667pt;}
.y195{bottom:261.626667pt;}
.y6f{bottom:261.786667pt;}
.y89{bottom:262.426667pt;}
.y34{bottom:264.200000pt;}
.y13c{bottom:265.466667pt;}
.yd8{bottom:267.066667pt;}
.y1db{bottom:267.226667pt;}
.y16f{bottom:267.706667pt;}
.y3a{bottom:268.840000pt;}
.y1b7{bottom:270.906667pt;}
.y21{bottom:271.560000pt;}
.y101{bottom:271.866667pt;}
.y19{bottom:272.026667pt;}
.ya8{bottom:272.826667pt;}
.y33{bottom:277.480000pt;}
.y6e{bottom:278.586667pt;}
.y13b{bottom:280.826667pt;}
.y16e{bottom:283.706667pt;}
.y1da{bottom:285.786667pt;}
.y194{bottom:286.266667pt;}
.y88{bottom:286.586667pt;}
.y20{bottom:286.920000pt;}
.y1b6{bottom:287.066667pt;}
.y100{bottom:287.866667pt;}
.yd7{bottom:291.706667pt;}
.y6d{bottom:295.546667pt;}
.y13a{bottom:296.186667pt;}
.ya7{bottom:296.986667pt;}
.y16d{bottom:299.866667pt;}
.y1d9{bottom:300.346667pt;}
.y1f{bottom:302.120000pt;}
.y193{bottom:302.426667pt;}
.y87{bottom:302.746667pt;}
.y1b5{bottom:303.226667pt;}
.yff{bottom:304.026667pt;}
.yd6{bottom:307.866667pt;}
.y139{bottom:311.546667pt;}
.y6c{bottom:312.346667pt;}
.y1d8{bottom:314.906667pt;}
.y1e{bottom:317.506667pt;}
.y192{bottom:318.586667pt;}
.y86{bottom:318.746667pt;}
.y1b4{bottom:319.226667pt;}
.yfe{bottom:320.186667pt;}
.ya6{bottom:321.626667pt;}
.y16c{bottom:323.866667pt;}
.y138{bottom:326.906667pt;}
.y6b{bottom:329.306667pt;}
.yd5{bottom:332.026667pt;}
.y1d{bottom:332.866667pt;}
.y1d7{bottom:333.466667pt;}
.y191{bottom:334.746667pt;}
.y85{bottom:334.906667pt;}
.y1b3{bottom:335.386667pt;}
.ya5{bottom:337.786667pt;}
.y137{bottom:342.106667pt;}
.yfd{bottom:344.186667pt;}
.y6a{bottom:346.106667pt;}
.y16b{bottom:348.026667pt;}
.y1c{bottom:348.226667pt;}
.y84{bottom:350.906667pt;}
.ya4{bottom:353.946667pt;}
.yd4{bottom:356.826667pt;}
.y136{bottom:357.466667pt;}
.y190{bottom:358.906667pt;}
.y1b2{bottom:359.546667pt;}
.y69{bottom:362.946667pt;}
.y1b{bottom:363.586667pt;}
.y16a{bottom:364.226667pt;}
.y1d6{bottom:366.626667pt;}
.yfc{bottom:368.386667pt;}
.y135{bottom:372.866667pt;}
.y83{bottom:375.106667pt;}
.y1a{bottom:376.866667pt;}
.ya3{bottom:378.146667pt;}
.y169{bottom:380.226667pt;}
.yd3{bottom:381.026667pt;}
.y1d5{bottom:381.186667pt;}
.y18f{bottom:383.586667pt;}
.y68{bottom:383.746667pt;}
.y1b1{bottom:384.386667pt;}
.yfb{bottom:384.546667pt;}
.y134{bottom:388.226667pt;}
.y168{bottom:396.386667pt;}
.y82{bottom:399.106667pt;}
.y18e{bottom:399.746667pt;}
.yfa{bottom:400.546667pt;}
.y67{bottom:400.706667pt;}
.ya2{bottom:402.786667pt;}
.y133{bottom:403.586667pt;}
.yd2{bottom:405.826667pt;}
.y167{bottom:412.546667pt;}
.y81{bottom:415.266667pt;}
.y18d{bottom:415.906667pt;}
.y1b0{bottom:416.546667pt;}
.yf9{bottom:416.706667pt;}
.y66{bottom:417.666667pt;}
.y1d4{bottom:418.306667pt;}
.ya1{bottom:418.946667pt;}
.yd1{bottom:429.986667pt;}
.y18c{bottom:432.066667pt;}
.yf8{bottom:432.706667pt;}
.y1d3{bottom:432.866667pt;}
.y130{bottom:434.146667pt;}
.y65{bottom:434.466667pt;}
.y166{bottom:436.546667pt;}
.y80{bottom:439.266667pt;}
.ya0{bottom:443.106667pt;}
.y18b{bottom:448.066667pt;}
.yf7{bottom:448.866667pt;}
.y12e{bottom:449.506667pt;}
.y64{bottom:451.266667pt;}
.y1d2{bottom:451.426667pt;}
.yd0{bottom:454.786667pt;}
.y1af{bottom:456.866667pt;}
.y165{bottom:460.546667pt;}
.y7f{bottom:463.426667pt;}
.y12d{bottom:464.866667pt;}
.yf6{bottom:465.026667pt;}
.y1d1{bottom:465.986667pt;}
.y9f{bottom:467.906667pt;}
.y63{bottom:468.226667pt;}
.y18a{bottom:472.226667pt;}
.y164{bottom:476.706667pt;}
.ycf{bottom:478.946667pt;}
.y129{bottom:480.226667pt;}
.yf5{bottom:481.026667pt;}
.y1ae{bottom:481.506667pt;}
.y9e{bottom:484.066667pt;}
.y7e{bottom:484.546667pt;}
.y62{bottom:488.866667pt;}
.y163{bottom:492.866667pt;}
.y189{bottom:497.026667pt;}
.yf4{bottom:497.186667pt;}
.y1ad{bottom:497.666667pt;}
.y128{bottom:498.626667pt;}
.y1d0{bottom:499.106667pt;}
.yce{bottom:503.746667pt;}
.y61{bottom:505.986667pt;}
.y9d{bottom:508.226667pt;}
.y162{bottom:509.026667pt;}
.yf3{bottom:513.186667pt;}
.y1cf{bottom:513.666667pt;}
.y1ac{bottom:513.826667pt;}
.y127{bottom:514.626667pt;}
.y60{bottom:522.786667pt;}
.y161{bottom:525.026667pt;}
.ycd{bottom:527.906667pt;}
.y188{bottom:529.186667pt;}
.yf2{bottom:529.346667pt;}
.y1ab{bottom:529.986667pt;}
.y9c{bottom:533.026667pt;}
.y126{bottom:538.786667pt;}
.y5f{bottom:539.586667pt;}
.y160{bottom:541.186667pt;}
.y1ce{bottom:544.706667pt;}
.y187{bottom:545.346667pt;}
.y1aa{bottom:545.986667pt;}
.ycc{bottom:551.906667pt;}
.yf1{bottom:553.346667pt;}
.y11{bottom:555.266667pt;}
.y5e{bottom:556.546667pt;}
.y15f{bottom:557.186667pt;}
.y9b{bottom:557.826667pt;}
.y125{bottom:560.546667pt;}
.ycb{bottom:568.066667pt;}
.y186{bottom:569.506667pt;}
.y1a9{bottom:570.146667pt;}
.y5d{bottom:573.346667pt;}
.y9a{bottom:573.986667pt;}
.y124{bottom:576.546667pt;}
.yf0{bottom:577.506667pt;}
.y99{bottom:590.173333pt;}
.y5c{bottom:590.333333pt;}
.yca{bottom:592.253333pt;}
.y123{bottom:592.733333pt;}
.yef{bottom:593.693333pt;}
.y185{bottom:594.333333pt;}
.y1cd{bottom:594.493333pt;}
.y1a8{bottom:594.973333pt;}
.y15e{bottom:597.373333pt;}
.y98{bottom:606.173333pt;}
.y5b{bottom:607.133333pt;}
.y122{bottom:608.893333pt;}
.y184{bottom:610.493333pt;}
.y1a7{bottom:611.133333pt;}
.yc9{bottom:617.053333pt;}
.yee{bottom:617.853333pt;}
.y1cc{bottom:619.133333pt;}
.y15d{bottom:621.373333pt;}
.y5a{bottom:623.933333pt;}
.y121{bottom:624.893333pt;}
.y183{bottom:626.493333pt;}
.y1a6{bottom:627.293333pt;}
.y97{bottom:630.333333pt;}
.yc8{bottom:633.213333pt;}
.y15c{bottom:634.493333pt;}
.y1cb{bottom:635.293333pt;}
.y59{bottom:640.893333pt;}
.y120{bottom:641.053333pt;}
.yed{bottom:642.653333pt;}
.y1a5{bottom:643.293333pt;}
.y15b{bottom:649.853333pt;}
.y96{bottom:652.093333pt;}
.yc7{bottom:654.173333pt;}
.yf{bottom:654.653333pt;}
.yc6{bottom:656.253333pt;}
.y11f{bottom:657.213333pt;}
.y58{bottom:657.693333pt;}
.yb0{bottom:658.080000pt;}
.yec{bottom:658.813333pt;}
.yb2{bottom:658.880000pt;}
.y1a4{bottom:659.453333pt;}
.yb4{bottom:659.840000pt;}
.yc5{bottom:663.293333pt;}
.y15a{bottom:665.213333pt;}
.y11e{bottom:673.213333pt;}
.y57{bottom:674.653333pt;}
.yeb{bottom:674.813333pt;}
.y1a3{bottom:675.453333pt;}
.y159{bottom:680.573333pt;}
.y95{bottom:682.173333pt;}
.y182{bottom:682.973333pt;}
.y1ca{bottom:684.253333pt;}
.y11d{bottom:689.373333pt;}
.yc4{bottom:690.973333pt;}
.y1a2{bottom:691.613333pt;}
.ye{bottom:694.173333pt;}
.y56{bottom:695.293333pt;}
.y158{bottom:695.933333pt;}
.y1c9{bottom:700.413333pt;}
.y11c{bottom:705.373333pt;}
.yea{bottom:706.973333pt;}
.yc3{bottom:707.133333pt;}
.y181{bottom:707.613333pt;}
.y1a1{bottom:707.773333pt;}
.yd{bottom:709.373333pt;}
.y157{bottom:711.133333pt;}
.y55{bottom:712.413333pt;}
.y1f4{bottom:715.613333pt;}
.y1c8{bottom:716.413333pt;}
.y11b{bottom:721.533333pt;}
.yc2{bottom:723.293333pt;}
.y180{bottom:723.773333pt;}
.yc{bottom:724.733333pt;}
.y156{bottom:726.493333pt;}
.y54{bottom:729.213333pt;}
.ye9{bottom:731.133333pt;}
.y1c7{bottom:732.573333pt;}
.y1f3{bottom:737.213333pt;}
.y11a{bottom:737.693333pt;}
.yc1{bottom:739.293333pt;}
.y17f{bottom:739.933333pt;}
.yb{bottom:740.253333pt;}
.y155{bottom:741.853333pt;}
.y53{bottom:746.013333pt;}
.y1c6{bottom:748.733333pt;}
.y119{bottom:753.693333pt;}
.yc0{bottom:755.453333pt;}
.y1f2{bottom:755.773333pt;}
.ye8{bottom:755.933333pt;}
.ya{bottom:756.413333pt;}
.y154{bottom:757.213333pt;}
.y52{bottom:762.973333pt;}
.y118{bottom:769.853333pt;}
.y1f1{bottom:770.333333pt;}
.ye7{bottom:772.093333pt;}
.y9{bottom:772.413333pt;}
.y153{bottom:772.573333pt;}
.y1c5{bottom:772.893333pt;}
.ybf{bottom:779.613333pt;}
.y51{bottom:779.773333pt;}
.y1a0{bottom:780.093333pt;}
.y1f0{bottom:784.893333pt;}
.y117{bottom:785.853333pt;}
.y152{bottom:787.933333pt;}
.ye6{bottom:788.253333pt;}
.y17e{bottom:796.253333pt;}
.y50{bottom:796.733333pt;}
.y1c4{bottom:797.533333pt;}
.y116{bottom:802.053333pt;}
.y151{bottom:803.173333pt;}
.y1ef{bottom:803.493333pt;}
.ybe{bottom:804.293333pt;}
.y19f{bottom:804.933333pt;}
.y8{bottom:805.093333pt;}
.y4f{bottom:813.573333pt;}
.y1c3{bottom:813.733333pt;}
.y1ee{bottom:818.053333pt;}
.y115{bottom:818.213333pt;}
.y150{bottom:818.533333pt;}
.ybd{bottom:820.453333pt;}
.y17d{bottom:821.093333pt;}
.y7d{bottom:827.653333pt;}
.y1c2{bottom:829.893333pt;}
.y4e{bottom:830.373333pt;}
.y1ed{bottom:832.613333pt;}
.y14f{bottom:833.893333pt;}
.y114{bottom:834.213333pt;}
.ybc{bottom:836.613333pt;}
.y17c{bottom:837.253333pt;}
.y7{bottom:839.493333pt;}
.y7c{bottom:843.813333pt;}
.y1c1{bottom:845.893333pt;}
.y4d{bottom:847.333333pt;}
.y14e{bottom:849.253333pt;}
.y113{bottom:850.373333pt;}
.y1ec{bottom:851.173333pt;}
.ye5{bottom:852.613333pt;}
.y17b{bottom:853.253333pt;}
.y6{bottom:857.893333pt;}
.y7b{bottom:859.813333pt;}
.ybb{bottom:860.773333pt;}
.y1c0{bottom:862.053333pt;}
.y14d{bottom:864.613333pt;}
.y1eb{bottom:865.733333pt;}
.y112{bottom:866.533333pt;}
.y4c{bottom:867.973333pt;}
.y17a{bottom:869.413333pt;}
.y7a{bottom:875.973333pt;}
.ye4{bottom:876.773333pt;}
.y1bf{bottom:878.213333pt;}
.y14c{bottom:879.973333pt;}
.y1ea{bottom:880.293333pt;}
.y111{bottom:882.533333pt;}
.y4b{bottom:885.093333pt;}
.yba{bottom:885.573333pt;}
.y79{bottom:892.133333pt;}
.y5{bottom:892.293333pt;}
.y19e{bottom:893.573333pt;}
.y14b{bottom:895.173333pt;}
.y110{bottom:898.693333pt;}
.y1e9{bottom:898.853333pt;}
.ye3{bottom:901.573333pt;}
.yb9{bottom:901.733333pt;}
.y4a{bottom:901.893333pt;}
.y1be{bottom:902.213333pt;}
.y78{bottom:908.133333pt;}
.y179{bottom:909.733333pt;}
.y14a{bottom:910.533333pt;}
.y1e8{bottom:913.413333pt;}
.y10c{bottom:915.493333pt;}
.y19d{bottom:918.373333pt;}
.y49{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.ye2{bottom:925.733333pt;}
.yb8{bottom:925.893333pt;}
.y94{bottom:927.173333pt;}
.y1e7{bottom:927.973333pt;}
.y77{bottom:932.293333pt;}
.y178{bottom:934.373333pt;}
.y19c{bottom:934.533333pt;}
.y48{bottom:935.653333pt;}
.y149{bottom:941.253333pt;}
.y1e6{bottom:946.533333pt;}
.yb7{bottom:947.653333pt;}
.ye1{bottom:950.533333pt;}
.y93{bottom:951.333333pt;}
.y47{bottom:952.453333pt;}
.yb5{bottom:954.693333pt;}
.y148{bottom:956.613333pt;}
.y76{bottom:957.253333pt;}
.yb6{bottom:960.933333pt;}
.y1e5{bottom:961.093333pt;}
.ye0{bottom:966.693333pt;}
.y92{bottom:967.493333pt;}
.y46{bottom:969.413333pt;}
.y145{bottom:972.613333pt;}
.y1e4{bottom:975.653333pt;}
.ydf{bottom:982.693333pt;}
.y91{bottom:983.493333pt;}
.y147{bottom:988.613333pt;}
.y45{bottom:990.053333pt;}
.y10b{bottom:991.493333pt;}
.y1e3{bottom:994.213333pt;}
.yde{bottom:1006.853333pt;}
.y44{bottom:1007.013333pt;}
.y90{bottom:1007.493333pt;}
.y10a{bottom:1007.653333pt;}
.y1e2{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y43{bottom:1039.520000pt;}
.y42{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y41{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.h21{height:14.720000pt;}
.h23{height:15.200000pt;}
.h27{height:15.232000pt;}
.h22{height:15.360000pt;}
.h25{height:15.392000pt;}
.hb{height:15.695312pt;}
.h1e{height:16.000000pt;}
.h1f{height:16.160000pt;}
.h20{height:16.192000pt;}
.h15{height:16.960000pt;}
.h12{height:17.120000pt;}
.h14{height:17.280000pt;}
.h26{height:31.360000pt;}
.h1c{height:32.160000pt;}
.h1a{height:33.980625pt;}
.h8{height:35.840000pt;}
.h24{height:36.715000pt;}
.h28{height:39.325000pt;}
.h13{height:42.084375pt;}
.h17{height:44.860625pt;}
.h29{height:49.621875pt;}
.h2a{height:50.955000pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h1d{height:55.247500pt;}
.h5{height:55.275000pt;}
.h11{height:56.760000pt;}
.h2{height:57.787500pt;}
.h9{height:59.340000pt;}
.hf{height:62.812500pt;}
.h4{height:64.500000pt;}
.h19{height:67.260625pt;}
.h16{height:69.820625pt;}
.h18{height:83.435000pt;}
.h3{height:85.785000pt;}
.h1b{height:91.755000pt;}
.ha{height:97.312000pt;}
.h10{height:136.303125pt;}
.he{height:281.306667pt;}
.hd{height:380.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wc{width:73.312000pt;}
.wd{width:80.160000pt;}
.w10{width:80.320000pt;}
.wf{width:80.512000pt;}
.w1b{width:82.592000pt;}
.w11{width:83.392000pt;}
.w19{width:84.032000pt;}
.w18{width:84.160000pt;}
.w1a{width:85.760000pt;}
.w12{width:87.360000pt;}
.w1c{width:89.920000pt;}
.w17{width:90.272000pt;}
.w13{width:107.680000pt;}
.wa{width:108.352000pt;}
.wb{width:108.480000pt;}
.we{width:109.600000pt;}
.w9{width:123.360000pt;}
.w15{width:169.786667pt;}
.w16{width:172.506667pt;}
.w14{width:174.426667pt;}
.w3{width:211.546667pt;}
.w8{width:221.600000pt;}
.w6{width:221.760000pt;}
.w7{width:221.920000pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:2.720000pt;}
.x7{left:7.200000pt;}
.x42{left:8.320000pt;}
.x13{left:9.693333pt;}
.x41{left:10.880000pt;}
.x26{left:12.000000pt;}
.x27{left:13.120000pt;}
.x40{left:15.040000pt;}
.x28{left:16.640000pt;}
.x22{left:17.920000pt;}
.x25{left:19.040000pt;}
.x24{left:20.640000pt;}
.x29{left:21.920000pt;}
.x23{left:23.680000pt;}
.x1c{left:29.160000pt;}
.x3c{left:30.880000pt;}
.x20{left:32.160000pt;}
.x3f{left:33.760000pt;}
.x3a{left:34.720000pt;}
.x37{left:60.826667pt;}
.x39{left:62.280000pt;}
.x35{left:63.240000pt;}
.x5{left:96.031988pt;}
.x2b{left:103.231988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x2a{left:148.346655pt;}
.x15{left:153.626655pt;}
.xa{left:164.666667pt;}
.xc{left:172.986655pt;}
.x43{left:178.746655pt;}
.x34{left:203.706667pt;}
.x2e{left:205.626667pt;}
.x1b{left:219.386667pt;}
.xf{left:252.226655pt;}
.x3{left:279.426655pt;}
.x2f{left:286.146667pt;}
.x3b{left:293.986667pt;}
.x18{left:296.706655pt;}
.x19{left:301.666655pt;}
.x16{left:311.266655pt;}
.x17{left:312.226655pt;}
.x14{left:319.360000pt;}
.x8{left:320.706667pt;}
.x1d{left:327.746667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x1a{left:338.626655pt;}
.x30{left:366.466667pt;}
.x36{left:378.146667pt;}
.x2c{left:381.026655pt;}
.x1e{left:436.093333pt;}
.x31{left:446.973333pt;}
.x3d{left:462.173333pt;}
.x32{left:527.293333pt;}
.x12{left:533.760000pt;}
.x1f{left:544.573333pt;}
.x38{left:547.933333pt;}
.x33{left:610.693333pt;}
.x21{left:617.893333pt;}
.x3e{left:630.533333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.xe{left:680.293322pt;}
.x4{left:694.533322pt;}
.x11{left:756.159988pt;}
.x10{left:758.559988pt;}
}




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