
    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_45d89c548bb5935e37e2ffae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_476aeed5e528d5296c3a33d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_6eb452c2def48ac0750b6644.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_fe8cde13aa607211c6bd95b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_971ec0cfd987e09a3d283080.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c99d3982ec832adf02ddea0b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_7be5a39e285a732fc265d507.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c39f1f4b5b7b956c2b483611.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6d4836564fe14f73b70bbb0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_3181e40b439125510c9d354b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_51e88b9ce191a42959ad74ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a438e24105640ed255365229.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.119520px;}
.ls12{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:2.340000px;}
.ls17{letter-spacing:46.026720px;}
.ls13{letter-spacing:46.206720px;}
.ls2{letter-spacing:714.780000px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.wse{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.059520px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.wsd{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-6.690240px;}
._19{margin-left:-5.483520px;}
._7{margin-left:-4.320000px;}
._3{margin-left:-2.448000px;}
._1{margin-left:-1.229760px;}
._0{width:1.075680px;}
._12{width:2.368560px;}
._17{width:3.800400px;}
._16{width:5.207040px;}
._1a{width:6.408000px;}
._4{width:7.560000px;}
._8{width:8.820000px;}
._9{width:10.332000px;}
._1c{width:12.150000px;}
._1d{width:13.176000px;}
._1e{width:14.202000px;}
._e{width:15.264000px;}
._2{width:16.997760px;}
._24{width:19.091520px;}
._a{width:20.160000px;}
._b{width:21.388320px;}
._13{width:22.893840px;}
._1b{width:24.316560px;}
._11{width:25.776000px;}
._1f{width:28.512000px;}
._15{width:29.957760px;}
._14{width:30.965760px;}
._20{width:33.984000px;}
._21{width:35.064000px;}
._23{width:36.089280px;}
._22{width:37.296000px;}
._28{width:43.505280px;}
._27{width:47.509200px;}
._5{width:54.504000px;}
._6{width:55.660320px;}
._c{width:59.688000px;}
._d{width:61.704000px;}
._26{width:80.078400px;}
._10{width:94.248000px;}
._f{width:95.688000px;}
._25{width:847.004160px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs6{font-size:33.120000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:3.600000px;}
.y13f{bottom:3.780000px;}
.y160{bottom:3.825000px;}
.y3a{bottom:5.040000px;}
.y74{bottom:5.220000px;}
.y163{bottom:6.300000px;}
.y1ab{bottom:6.345000px;}
.y139{bottom:6.480000px;}
.y165{bottom:6.660000px;}
.y13b{bottom:6.840000px;}
.y150{bottom:12.240000px;}
.y13d{bottom:12.420000px;}
.y40{bottom:14.940000px;}
.y7{bottom:15.300000px;}
.y141{bottom:20.880000px;}
.y18a{bottom:20.910000px;}
.y13e{bottom:21.060000px;}
.y15f{bottom:21.105000px;}
.y154{bottom:29.520000px;}
.y145{bottom:29.700000px;}
.y3f{bottom:32.040000px;}
.y6{bottom:33.300000px;}
.y142{bottom:38.160000px;}
.y182{bottom:38.205000px;}
.y144{bottom:38.340000px;}
.y15e{bottom:38.385000px;}
.y41{bottom:42.876000px;}
.y3d{bottom:44.136000px;}
.y153{bottom:46.800000px;}
.y17b{bottom:46.980000px;}
.y3e{bottom:49.320000px;}
.y14d{bottom:55.440000px;}
.y15d{bottom:55.485000px;}
.y19f{bottom:55.620000px;}
.y4{bottom:60.480000px;}
.y148{bottom:64.080000px;}
.y158{bottom:64.125000px;}
.y14c{bottom:72.720000px;}
.y176{bottom:72.750000px;}
.y15c{bottom:72.765000px;}
.y19e{bottom:72.945000px;}
.y3{bottom:80.316000px;}
.y178{bottom:81.390000px;}
.y14b{bottom:89.820000px;}
.y17a{bottom:90.000000px;}
.y170{bottom:90.030000px;}
.y15b{bottom:90.045000px;}
.y177{bottom:98.670000px;}
.y1a1{bottom:98.685000px;}
.y14a{bottom:107.100000px;}
.y179{bottom:107.280000px;}
.y175{bottom:107.310000px;}
.y15a{bottom:107.325000px;}
.y1a0{bottom:115.965000px;}
.y149{bottom:124.380000px;}
.y174{bottom:124.590000px;}
.y159{bottom:124.605000px;}
.y72{bottom:141.336000px;}
.y173{bottom:141.870000px;}
.y19d{bottom:141.885000px;}
.y94{bottom:145.836000px;}
.y71{bottom:156.990000px;}
.yab{bottom:158.250000px;}
.y172{bottom:158.970000px;}
.y19c{bottom:159.165000px;}
.yee{bottom:161.490000px;}
.y10a{bottom:164.370000px;}
.yd1{bottom:168.150000px;}
.y70{bottom:172.470000px;}
.y107{bottom:173.730000px;}
.y171{bottom:176.250000px;}
.y19b{bottom:176.265000px;}
.y121{bottom:176.970000px;}
.yaa{bottom:182.550000px;}
.ybd{bottom:183.630000px;}
.y6f{bottom:187.950000px;}
.y109{bottom:188.130000px;}
.y120{bottom:189.390000px;}
.y1a2{bottom:191.190000px;}
.yd0{bottom:192.090000px;}
.y19a{bottom:193.545000px;}
.y6e{bottom:203.430000px;}
.ya8{bottom:206.310000px;}
.ybc{bottom:207.390000px;}
.yed{bottom:207.930000px;}
.y198{bottom:208.290000px;}
.y199{bottom:210.825000px;}
.y106{bottom:211.890000px;}
.ya9{bottom:213.150000px;}
.ycf{bottom:215.850000px;}
.y6d{bottom:219.090000px;}
.yec{bottom:220.350000px;}
.y93{bottom:223.590000px;}
.ya7{bottom:230.250000px;}
.ybb{bottom:231.150000px;}
.y6c{bottom:234.570000px;}
.y105{bottom:235.830000px;}
.yff{bottom:239.070000px;}
.yce{bottom:239.610000px;}
.y11f{bottom:244.110000px;}
.y6b{bottom:250.050000px;}
.y161{bottom:252.570000px;}
.ya6{bottom:254.010000px;}
.yba{bottom:255.090000px;}
.y104{bottom:259.590000px;}
.yeb{bottom:262.650000px;}
.ycd{bottom:263.370000px;}
.y6a{bottom:265.530000px;}
.y11e{bottom:267.870000px;}
.y157{bottom:269.670000px;}
.yfe{bottom:270.030000px;}
.ya5{bottom:277.815000px;}
.yb9{bottom:278.895000px;}
.y69{bottom:281.235000px;}
.yfd{bottom:282.495000px;}
.y103{bottom:283.395000px;}
.yea{bottom:286.455000px;}
.ycc{bottom:287.355000px;}
.y68{bottom:296.715000px;}
.y1c1{bottom:298.695000px;}
.y92{bottom:301.215000px;}
.ya4{bottom:301.575000px;}
.yb8{bottom:302.655000px;}
.y11d{bottom:306.795000px;}
.yfb{bottom:307.155000px;}
.ye9{bottom:310.395000px;}
.ycb{bottom:311.115000px;}
.y67{bottom:312.195000px;}
.y91{bottom:313.635000px;}
.yfc{bottom:313.995000px;}
.y1c0{bottom:320.115000px;}
.ya3{bottom:325.515000px;}
.yb7{bottom:326.415000px;}
.y66{bottom:327.675000px;}
.y11c{bottom:330.555000px;}
.yfa{bottom:331.095000px;}
.ye8{bottom:334.155000px;}
.yca{bottom:334.875000px;}
.y1bf{bottom:336.315000px;}
.y17d{bottom:338.295000px;}
.y65{bottom:343.155000px;}
.ya2{bottom:349.275000px;}
.yb6{bottom:350.355000px;}
.y11b{bottom:354.315000px;}
.yf9{bottom:354.855000px;}
.y17c{bottom:355.395000px;}
.ye7{bottom:357.915000px;}
.yc9{bottom:358.635000px;}
.y64{bottom:358.815000px;}
.y1be{bottom:359.535000px;}
.y18f{bottom:363.675000px;}
.ya1{bottom:373.035000px;}
.yb5{bottom:374.115000px;}
.y63{bottom:374.295000px;}
.y11a{bottom:378.075000px;}
.yf8{bottom:378.615000px;}
.y18e{bottom:380.955000px;}
.ye6{bottom:381.315000px;}
.yc8{bottom:382.395000px;}
.y1bd{bottom:382.755000px;}
.y62{bottom:389.775000px;}
.ya0{bottom:396.795000px;}
.yb4{bottom:397.875000px;}
.yf7{bottom:402.375000px;}
.ye5{bottom:405.075000px;}
.y61{bottom:405.255000px;}
.y1bc{bottom:406.155000px;}
.yc7{bottom:406.335000px;}
.y156{bottom:408.495000px;}
.y60{bottom:409.755000px;}
.y18d{bottom:416.055000px;}
.y119{bottom:416.955000px;}
.y9f{bottom:420.735000px;}
.yb3{bottom:421.635000px;}
.y5f{bottom:422.175000px;}
.yf6{bottom:426.135000px;}
.ye4{bottom:429.375000px;}
.yc6{bottom:430.095000px;}
.y197{bottom:433.335000px;}
.y118{bottom:440.715000px;}
.y155{bottom:443.775000px;}
.y9e{bottom:444.495000px;}
.yb2{bottom:445.575000px;}
.yf5{bottom:450.075000px;}
.y1bb{bottom:452.595000px;}
.ye3{bottom:453.135000px;}
.yc5{bottom:453.855000px;}
.y5d{bottom:457.995000px;}
.y117{bottom:464.475000px;}
.y5e{bottom:464.835000px;}
.y38{bottom:468.075000px;}
.y9d{bottom:468.255000px;}
.y18c{bottom:468.615000px;}
.yb1{bottom:469.335000px;}
.yf3{bottom:473.835000px;}
.y1ba{bottom:475.815000px;}
.ye2{bottom:476.895000px;}
.yc4{bottom:477.615000px;}
.y152{bottom:479.055000px;}
.yf4{bottom:480.675000px;}
.y5c{bottom:481.755000px;}
.y116{bottom:488.415000px;}
.y37{bottom:491.835000px;}
.y9c{bottom:492.015000px;}
.yb0{bottom:493.095000px;}
.yf2{bottom:497.595000px;}
.y1b9{bottom:499.035000px;}
.y16f{bottom:500.115000px;}
.ye1{bottom:500.295000px;}
.yc3{bottom:501.555000px;}
.y18b{bottom:503.895000px;}
.y5b{bottom:505.515000px;}
.y36{bottom:515.595000px;}
.y9b{bottom:515.955000px;}
.ye0{bottom:521.175000px;}
.yf1{bottom:521.355000px;}
.y1b8{bottom:522.255000px;}
.yc2{bottom:524.055000px;}
.y135{bottom:526.575000px;}
.y115{bottom:527.115000px;}
.y5a{bottom:529.455000px;}
.yaf{bottom:532.515000px;}
.y189{bottom:539.175000px;}
.y35{bottom:539.355000px;}
.y9a{bottom:539.715000px;}
.yc1{bottom:540.795000px;}
.ydf{bottom:544.935000px;}
.yf0{bottom:545.295000px;}
.y1b7{bottom:545.655000px;}
.y90{bottom:547.275000px;}
.y134{bottom:550.515000px;}
.y114{bottom:550.875000px;}
.y59{bottom:553.215000px;}
.y196{bottom:556.485000px;}
.y99{bottom:562.245000px;}
.y34{bottom:563.115000px;}
.y151{bottom:566.025000px;}
.y1b6{bottom:568.905000px;}
.yde{bottom:569.085000px;}
.y8f{bottom:571.065000px;}
.y133{bottom:574.305000px;}
.y188{bottom:574.485000px;}
.y113{bottom:574.845000px;}
.y58{bottom:577.005000px;}
.y98{bottom:578.985000px;}
.y33{bottom:587.055000px;}
.y1b5{bottom:592.125000px;}
.ydd{bottom:592.845000px;}
.y8d{bottom:594.825000px;}
.y132{bottom:598.065000px;}
.y112{bottom:598.605000px;}
.y57{bottom:600.765000px;}
.y8e{bottom:601.665000px;}
.y187{bottom:609.585000px;}
.y32{bottom:610.845000px;}
.y1b4{bottom:615.345000px;}
.ydc{bottom:616.605000px;}
.y8c{bottom:618.585000px;}
.y111{bottom:622.365000px;}
.y56{bottom:624.525000px;}
.y31{bottom:634.605000px;}
.y131{bottom:636.945000px;}
.y1b3{bottom:638.565000px;}
.ydb{bottom:640.545000px;}
.y8b{bottom:642.525000px;}
.y55{bottom:648.465000px;}
.y14f{bottom:653.685000px;}
.y30{bottom:658.365000px;}
.y130{bottom:660.705000px;}
.y110{bottom:661.245000px;}
.y1b2{bottom:661.785000px;}
.y186{bottom:662.145000px;}
.yda{bottom:664.305000px;}
.y8a{bottom:666.285000px;}
.yef{bottom:671.145000px;}
.y54{bottom:672.225000px;}
.y147{bottom:677.085000px;}
.y2f{bottom:682.305000px;}
.y12f{bottom:684.465000px;}
.y10f{bottom:685.005000px;}
.y108{bottom:687.705000px;}
.yd9{bottom:688.065000px;}
.y89{bottom:690.045000px;}
.y16e{bottom:690.585000px;}
.y102{bottom:694.905000px;}
.y53{bottom:695.985000px;}
.y27{bottom:700.305000px;}
.y2e{bottom:706.065000px;}
.y1b1{bottom:707.505000px;}
.y12e{bottom:708.225000px;}
.y10e{bottom:708.765000px;}
.yd8{bottom:711.825000px;}
.y88{bottom:713.805000px;}
.y185{bottom:714.705000px;}
.y26{bottom:719.205000px;}
.y52{bottom:719.745000px;}
.y16d{bottom:725.865000px;}
.y1b0{bottom:728.385000px;}
.y2d{bottom:729.825000px;}
.y195{bottom:731.085000px;}
.y12d{bottom:732.165000px;}
.y101{bottom:735.405000px;}
.yd7{bottom:735.765000px;}
.y87{bottom:737.745000px;}
.y25{bottom:738.105000px;}
.y51{bottom:743.685000px;}
.y1af{bottom:745.305000px;}
.y10d{bottom:747.645000px;}
.y16c{bottom:749.085000px;}
.y2c{bottom:753.585000px;}
.y24{bottom:757.185000px;}
.y100{bottom:759.165000px;}
.yd6{bottom:759.525000px;}
.y86{bottom:761.505000px;}
.y194{bottom:766.365000px;}
.y184{bottom:767.085000px;}
.y50{bottom:767.445000px;}
.y1ae{bottom:768.705000px;}
.y12c{bottom:770.865000px;}
.y23{bottom:775.905000px;}
.y2b{bottom:777.525000px;}
.yd5{bottom:783.285000px;}
.y16b{bottom:784.365000px;}
.y85{bottom:785.265000px;}
.y10c{bottom:786.345000px;}
.y4f{bottom:791.205000px;}
.y1ad{bottom:791.925000px;}
.y22{bottom:793.005000px;}
.y12b{bottom:794.625000px;}
.y2a{bottom:801.285000px;}
.y193{bottom:801.645000px;}
.y183{bottom:802.365000px;}
.yd4{bottom:807.045000px;}
.y10b{bottom:807.225000px;}
.y84{bottom:808.665000px;}
.y21{bottom:812.445000px;}
.y4e{bottom:814.965000px;}
.y1ac{bottom:815.145000px;}
.y146{bottom:815.685000px;}
.y12a{bottom:818.565000px;}
.yae{bottom:819.285000px;}
.y16a{bottom:819.645000px;}
.y29{bottom:825.045000px;}
.yc0{bottom:829.545000px;}
.yd3{bottom:830.985000px;}
.y20{bottom:831.345000px;}
.y83{bottom:832.425000px;}
.y181{bottom:837.645000px;}
.y1aa{bottom:838.365000px;}
.y4d{bottom:838.950000px;}
.yad{bottom:841.830000px;}
.y129{bottom:842.370000px;}
.y28{bottom:848.445000px;}
.y97{bottom:849.750000px;}
.y1f{bottom:850.245000px;}
.y143{bottom:851.010000px;}
.ybf{bottom:852.090000px;}
.y192{bottom:854.250000px;}
.y81{bottom:854.790000px;}
.y169{bottom:854.970000px;}
.yac{bottom:858.750000px;}
.y82{bottom:861.630000px;}
.y4c{bottom:862.710000px;}
.ybe{bottom:869.010000px;}
.y96{bottom:872.430000px;}
.y80{bottom:878.550000px;}
.y128{bottom:881.070000px;}
.y1a9{bottom:884.850000px;}
.y4b{bottom:886.470000px;}
.y17{bottom:888.810000px;}
.y95{bottom:889.170000px;}
.y180{bottom:890.250000px;}
.y7f{bottom:902.310000px;}
.y140{bottom:903.570000px;}
.y127{bottom:905.010000px;}
.y191{bottom:906.630000px;}
.y16{bottom:907.710000px;}
.y1a8{bottom:908.250000px;}
.y4a{bottom:910.230000px;}
.y168{bottom:924.630000px;}
.y7e{bottom:926.070000px;}
.y15{bottom:926.790000px;}
.y1a7{bottom:931.470000px;}
.y49{bottom:934.170000px;}
.y190{bottom:941.910000px;}
.y17f{bottom:942.630000px;}
.y126{bottom:943.710000px;}
.y14{bottom:945.690000px;}
.y7d{bottom:950.010000px;}
.y1a6{bottom:954.690000px;}
.y13c{bottom:955.950000px;}
.y48{bottom:957.930000px;}
.y1e{bottom:959.190000px;}
.y13{bottom:964.770000px;}
.y125{bottom:967.650000px;}
.y7c{bottom:973.770000px;}
.y167{bottom:977.190000px;}
.y1a5{bottom:977.910000px;}
.y47{bottom:981.690000px;}
.y12{bottom:983.670000px;}
.y13a{bottom:991.230000px;}
.y124{bottom:991.410000px;}
.y5{bottom:992.670000px;}
.y17e{bottom:995.190000px;}
.y1d{bottom:995.370000px;}
.y7b{bottom:997.530000px;}
.y1a4{bottom:1001.130000px;}
.yd2{bottom:1004.370000px;}
.y11{bottom:1005.450000px;}
.y1c{bottom:1005.990000px;}
.y166{bottom:1012.470000px;}
.y138{bottom:1014.450000px;}
.y7a{bottom:1021.290000px;}
.y1a3{bottom:1024.350000px;}
.y1b{bottom:1025.970000px;}
.y10{bottom:1027.230000px;}
.y46{bottom:1029.390000px;}
.y123{bottom:1030.110000px;}
.y78{bottom:1045.230000px;}
.yf{bottom:1046.850000px;}
.y164{bottom:1047.750000px;}
.y1a{bottom:1049.190000px;}
.y79{bottom:1052.070000px;}
.y45{bottom:1053.150000px;}
.y122{bottom:1054.050000px;}
.y137{bottom:1057.110000px;}
.ye{bottom:1067.730000px;}
.y77{bottom:1068.990000px;}
.y162{bottom:1070.970000px;}
.y44{bottom:1076.910000px;}
.y136{bottom:1077.990000px;}
.y19{bottom:1081.050000px;}
.yd{bottom:1082.850000px;}
.y76{bottom:1092.750000px;}
.y43{bottom:1096.890000px;}
.yc{bottom:1097.790000px;}
.yb{bottom:1112.730000px;}
.y42{bottom:1116.330000px;}
.y75{bottom:1116.510000px;}
.ya{bottom:1127.850000px;}
.y18{bottom:1141.200000px;}
.y9{bottom:1142.820000px;}
.y3c{bottom:1155.420000px;}
.y8{bottom:1157.760000px;}
.y73{bottom:1170.720000px;}
.y39{bottom:1171.980000px;}
.y3b{bottom:1174.860000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h12{height:5.163750px;}
.hf{height:19.440000px;}
.h17{height:19.620000px;}
.h1a{height:22.500000px;}
.h2a{height:22.536000px;}
.hd{height:29.691562px;}
.h15{height:32.273438px;}
.h20{height:34.380000px;}
.h27{height:34.416000px;}
.h1b{height:34.560000px;}
.h1e{height:34.596000px;}
.h19{height:34.855313px;}
.h14{height:43.246406px;}
.hb{height:43.273477px;}
.h8{height:44.860781px;}
.h4{height:47.700000px;}
.h5{height:47.965781px;}
.h16{height:48.410156px;}
.h10{height:50.229844px;}
.h1c{height:51.660000px;}
.h26{height:51.696000px;}
.h1d{height:51.840000px;}
.h13{height:52.136719px;}
.h3{height:52.581797px;}
.h2{height:53.573906px;}
.h6{height:59.383125px;}
.h11{height:62.820000px;}
.h18{height:63.949219px;}
.hc{height:64.546875px;}
.h23{height:68.940000px;}
.h9{height:69.341836px;}
.ha{height:74.034141px;}
.h7{height:75.519844px;}
.h21{height:86.256000px;}
.h28{height:103.500000px;}
.h25{height:120.780000px;}
.h1f{height:137.880000px;}
.h22{height:138.096000px;}
.h24{height:189.750000px;}
.h29{height:224.310000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w14{width:52.200000px;}
.w27{width:52.380000px;}
.we{width:52.560000px;}
.w1d{width:63.360000px;}
.w19{width:73.440000px;}
.w23{width:73.656000px;}
.w28{width:75.996000px;}
.w1e{width:83.700000px;}
.w15{width:84.420000px;}
.wf{width:95.040000px;}
.w21{width:106.236000px;}
.w12{width:114.156000px;}
.w18{width:126.756000px;}
.w1c{width:127.476000px;}
.w1f{width:130.896000px;}
.w2a{width:148.716000px;}
.w25{width:149.040000px;}
.w16{width:153.930000px;}
.w10{width:158.250000px;}
.w1a{width:158.790000px;}
.w3{width:163.290000px;}
.wc{width:201.450000px;}
.w8{width:201.630000px;}
.w17{width:206.130000px;}
.w1b{width:210.810000px;}
.w11{width:214.230000px;}
.w24{width:221.070000px;}
.w20{width:249.870000px;}
.w29{width:251.490000px;}
.w9{width:435.495000px;}
.w22{width:498.675000px;}
.w26{width:530.925000px;}
.w6{width:623.085000px;}
.wb{width:623.265000px;}
.w13{width:626.325000px;}
.wd{width:637.125000px;}
.wa{width:892.979973px;}
.w7{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4d{left:4.860000px;}
.x46{left:6.300000px;}
.x15{left:8.100000px;}
.x5f{left:11.700000px;}
.x17{left:13.140000px;}
.x61{left:14.220000px;}
.x22{left:15.840000px;}
.x59{left:16.920000px;}
.x4f{left:18.720000px;}
.x4c{left:22.494000px;}
.x65{left:24.114000px;}
.x6{left:25.559987px;}
.x47{left:27.540000px;}
.x4e{left:31.905000px;}
.x7{left:34.019987px;}
.x10{left:36.179987px;}
.x5{left:37.620000px;}
.x20{left:40.134000px;}
.x18{left:42.120000px;}
.x66{left:45.765000px;}
.x57{left:47.520000px;}
.x6a{left:53.640000px;}
.x5d{left:56.160000px;}
.x55{left:59.220000px;}
.x5b{left:61.560000px;}
.x4a{left:63.210000px;}
.x6e{left:68.760000px;}
.x62{left:81.000000px;}
.x23{left:95.940000px;}
.x5c{left:97.950000px;}
.x67{left:110.205000px;}
.x64{left:117.390000px;}
.x6c{left:124.065000px;}
.x14{left:127.655987px;}
.x1e{left:129.276000px;}
.x1d{left:132.155987px;}
.x50{left:133.416000px;}
.x40{left:136.655987px;}
.x2a{left:138.275987px;}
.x36{left:142.235987px;}
.x12{left:143.676000px;}
.x2c{left:152.129987px;}
.x2e{left:155.009987px;}
.x33{left:165.629987px;}
.x32{left:167.249987px;}
.x19{left:180.749987px;}
.x52{left:186.330000px;}
.x51{left:190.659000px;}
.x60{left:192.090000px;}
.x26{left:196.409973px;}
.x27{left:202.529987px;}
.x58{left:205.419000px;}
.x5e{left:208.659000px;}
.x11{left:224.129987px;}
.x1{left:227.729987px;}
.x6d{left:234.210000px;}
.x44{left:237.629973px;}
.xf{left:239.609987px;}
.x45{left:247.349987px;}
.x68{left:250.410000px;}
.xe{left:260.849987px;}
.x8{left:269.309987px;}
.x53{left:271.470000px;}
.x48{left:277.050000px;}
.x2{left:280.874987px;}
.x9{left:282.674987px;}
.x2f{left:305.174973px;}
.x30{left:311.294987px;}
.x69{left:324.975000px;}
.xa{left:328.574987px;}
.x16{left:330.015000px;}
.x1c{left:343.694987px;}
.x3e{left:347.114973px;}
.x3f{left:359.354987px;}
.x39{left:406.694973px;}
.x3c{left:408.674973px;}
.x3a{left:412.814987px;}
.x3d{left:414.794987px;}
.xb{left:418.754987px;}
.x5a{left:420.555000px;}
.x54{left:426.135000px;}
.x3b{left:434.054973px;}
.x49{left:436.035000px;}
.xd{left:439.274987px;}
.x13{left:473.109000px;}
.x28{left:510.404973px;}
.x29{left:516.524987px;}
.xc{left:519.584987px;}
.x41{left:523.004987px;}
.x24{left:535.784973px;}
.x25{left:541.904987px;}
.x6b{left:546.765000px;}
.x42{left:550.544973px;}
.x43{left:562.784987px;}
.x21{left:564.045000px;}
.x56{left:632.985000px;}
.x2b{left:635.504987px;}
.x2d{left:637.844987px;}
.x4b{left:650.985000px;}
.x31{left:656.924987px;}
.x63{left:658.905000px;}
.x4{left:664.349987px;}
.x3{left:667.589987px;}
.x35{left:692.384987px;}
.x34{left:695.444987px;}
.x1a{left:729.869973px;}
.x1b{left:735.989987px;}
.x1f{left:750.569987px;}
.x37{left:755.249973px;}
.x38{left:761.369987px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.106240pt;}
.ls12{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls17{letter-spacing:40.912640pt;}
.ls13{letter-spacing:41.072640pt;}
.ls2{letter-spacing:635.360000pt;}
.ws9{word-spacing:-58.880000pt;}
.wse{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.386240pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-5.946880pt;}
._19{margin-left:-4.874240pt;}
._7{margin-left:-3.840000pt;}
._3{margin-left:-2.176000pt;}
._1{margin-left:-1.093120pt;}
._0{width:0.956160pt;}
._12{width:2.105387pt;}
._17{width:3.378133pt;}
._16{width:4.628480pt;}
._1a{width:5.696000pt;}
._4{width:6.720000pt;}
._8{width:7.840000pt;}
._9{width:9.184000pt;}
._1c{width:10.800000pt;}
._1d{width:11.712000pt;}
._1e{width:12.624000pt;}
._e{width:13.568000pt;}
._2{width:15.109120pt;}
._24{width:16.970240pt;}
._a{width:17.920000pt;}
._b{width:19.011840pt;}
._13{width:20.350080pt;}
._1b{width:21.614720pt;}
._11{width:22.912000pt;}
._1f{width:25.344000pt;}
._15{width:26.629120pt;}
._14{width:27.525120pt;}
._20{width:30.208000pt;}
._21{width:31.168000pt;}
._23{width:32.079360pt;}
._22{width:33.152000pt;}
._28{width:38.671360pt;}
._27{width:42.230400pt;}
._5{width:48.448000pt;}
._6{width:49.475840pt;}
._c{width:53.056000pt;}
._d{width:54.848000pt;}
._26{width:71.180800pt;}
._10{width:83.776000pt;}
._f{width:85.056000pt;}
._25{width:752.892587pt;}
.fs9{font-size:5.120000pt;}
.fs6{font-size:29.440000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:3.200000pt;}
.y13f{bottom:3.360000pt;}
.y160{bottom:3.400000pt;}
.y3a{bottom:4.480000pt;}
.y74{bottom:4.640000pt;}
.y163{bottom:5.600000pt;}
.y1ab{bottom:5.640000pt;}
.y139{bottom:5.760000pt;}
.y165{bottom:5.920000pt;}
.y13b{bottom:6.080000pt;}
.y150{bottom:10.880000pt;}
.y13d{bottom:11.040000pt;}
.y40{bottom:13.280000pt;}
.y7{bottom:13.600000pt;}
.y141{bottom:18.560000pt;}
.y18a{bottom:18.586667pt;}
.y13e{bottom:18.720000pt;}
.y15f{bottom:18.760000pt;}
.y154{bottom:26.240000pt;}
.y145{bottom:26.400000pt;}
.y3f{bottom:28.480000pt;}
.y6{bottom:29.600000pt;}
.y142{bottom:33.920000pt;}
.y182{bottom:33.960000pt;}
.y144{bottom:34.080000pt;}
.y15e{bottom:34.120000pt;}
.y41{bottom:38.112000pt;}
.y3d{bottom:39.232000pt;}
.y153{bottom:41.600000pt;}
.y17b{bottom:41.760000pt;}
.y3e{bottom:43.840000pt;}
.y14d{bottom:49.280000pt;}
.y15d{bottom:49.320000pt;}
.y19f{bottom:49.440000pt;}
.y4{bottom:53.760000pt;}
.y148{bottom:56.960000pt;}
.y158{bottom:57.000000pt;}
.y14c{bottom:64.640000pt;}
.y176{bottom:64.666667pt;}
.y15c{bottom:64.680000pt;}
.y19e{bottom:64.840000pt;}
.y3{bottom:71.392000pt;}
.y178{bottom:72.346667pt;}
.y14b{bottom:79.840000pt;}
.y17a{bottom:80.000000pt;}
.y170{bottom:80.026667pt;}
.y15b{bottom:80.040000pt;}
.y177{bottom:87.706667pt;}
.y1a1{bottom:87.720000pt;}
.y14a{bottom:95.200000pt;}
.y179{bottom:95.360000pt;}
.y175{bottom:95.386667pt;}
.y15a{bottom:95.400000pt;}
.y1a0{bottom:103.080000pt;}
.y149{bottom:110.560000pt;}
.y174{bottom:110.746667pt;}
.y159{bottom:110.760000pt;}
.y72{bottom:125.632000pt;}
.y173{bottom:126.106667pt;}
.y19d{bottom:126.120000pt;}
.y94{bottom:129.632000pt;}
.y71{bottom:139.546667pt;}
.yab{bottom:140.666667pt;}
.y172{bottom:141.306667pt;}
.y19c{bottom:141.480000pt;}
.yee{bottom:143.546667pt;}
.y10a{bottom:146.106667pt;}
.yd1{bottom:149.466667pt;}
.y70{bottom:153.306667pt;}
.y107{bottom:154.426667pt;}
.y171{bottom:156.666667pt;}
.y19b{bottom:156.680000pt;}
.y121{bottom:157.306667pt;}
.yaa{bottom:162.266667pt;}
.ybd{bottom:163.226667pt;}
.y6f{bottom:167.066667pt;}
.y109{bottom:167.226667pt;}
.y120{bottom:168.346667pt;}
.y1a2{bottom:169.946667pt;}
.yd0{bottom:170.746667pt;}
.y19a{bottom:172.040000pt;}
.y6e{bottom:180.826667pt;}
.ya8{bottom:183.386667pt;}
.ybc{bottom:184.346667pt;}
.yed{bottom:184.826667pt;}
.y198{bottom:185.146667pt;}
.y199{bottom:187.400000pt;}
.y106{bottom:188.346667pt;}
.ya9{bottom:189.466667pt;}
.ycf{bottom:191.866667pt;}
.y6d{bottom:194.746667pt;}
.yec{bottom:195.866667pt;}
.y93{bottom:198.746667pt;}
.ya7{bottom:204.666667pt;}
.ybb{bottom:205.466667pt;}
.y6c{bottom:208.506667pt;}
.y105{bottom:209.626667pt;}
.yff{bottom:212.506667pt;}
.yce{bottom:212.986667pt;}
.y11f{bottom:216.986667pt;}
.y6b{bottom:222.266667pt;}
.y161{bottom:224.506667pt;}
.ya6{bottom:225.786667pt;}
.yba{bottom:226.746667pt;}
.y104{bottom:230.746667pt;}
.yeb{bottom:233.466667pt;}
.ycd{bottom:234.106667pt;}
.y6a{bottom:236.026667pt;}
.y11e{bottom:238.106667pt;}
.y157{bottom:239.706667pt;}
.yfe{bottom:240.026667pt;}
.ya5{bottom:246.946667pt;}
.yb9{bottom:247.906667pt;}
.y69{bottom:249.986667pt;}
.yfd{bottom:251.106667pt;}
.y103{bottom:251.906667pt;}
.yea{bottom:254.626667pt;}
.ycc{bottom:255.426667pt;}
.y68{bottom:263.746667pt;}
.y1c1{bottom:265.506667pt;}
.y92{bottom:267.746667pt;}
.ya4{bottom:268.066667pt;}
.yb8{bottom:269.026667pt;}
.y11d{bottom:272.706667pt;}
.yfb{bottom:273.026667pt;}
.ye9{bottom:275.906667pt;}
.ycb{bottom:276.546667pt;}
.y67{bottom:277.506667pt;}
.y91{bottom:278.786667pt;}
.yfc{bottom:279.106667pt;}
.y1c0{bottom:284.546667pt;}
.ya3{bottom:289.346667pt;}
.yb7{bottom:290.146667pt;}
.y66{bottom:291.266667pt;}
.y11c{bottom:293.826667pt;}
.yfa{bottom:294.306667pt;}
.ye8{bottom:297.026667pt;}
.yca{bottom:297.666667pt;}
.y1bf{bottom:298.946667pt;}
.y17d{bottom:300.706667pt;}
.y65{bottom:305.026667pt;}
.ya2{bottom:310.466667pt;}
.yb6{bottom:311.426667pt;}
.y11b{bottom:314.946667pt;}
.yf9{bottom:315.426667pt;}
.y17c{bottom:315.906667pt;}
.ye7{bottom:318.146667pt;}
.yc9{bottom:318.786667pt;}
.y64{bottom:318.946667pt;}
.y1be{bottom:319.586667pt;}
.y18f{bottom:323.266667pt;}
.ya1{bottom:331.586667pt;}
.yb5{bottom:332.546667pt;}
.y63{bottom:332.706667pt;}
.y11a{bottom:336.066667pt;}
.yf8{bottom:336.546667pt;}
.y18e{bottom:338.626667pt;}
.ye6{bottom:338.946667pt;}
.yc8{bottom:339.906667pt;}
.y1bd{bottom:340.226667pt;}
.y62{bottom:346.466667pt;}
.ya0{bottom:352.706667pt;}
.yb4{bottom:353.666667pt;}
.yf7{bottom:357.666667pt;}
.ye5{bottom:360.066667pt;}
.y61{bottom:360.226667pt;}
.y1bc{bottom:361.026667pt;}
.yc7{bottom:361.186667pt;}
.y156{bottom:363.106667pt;}
.y60{bottom:364.226667pt;}
.y18d{bottom:369.826667pt;}
.y119{bottom:370.626667pt;}
.y9f{bottom:373.986667pt;}
.yb3{bottom:374.786667pt;}
.y5f{bottom:375.266667pt;}
.yf6{bottom:378.786667pt;}
.ye4{bottom:381.666667pt;}
.yc6{bottom:382.306667pt;}
.y197{bottom:385.186667pt;}
.y118{bottom:391.746667pt;}
.y155{bottom:394.466667pt;}
.y9e{bottom:395.106667pt;}
.yb2{bottom:396.066667pt;}
.yf5{bottom:400.066667pt;}
.y1bb{bottom:402.306667pt;}
.ye3{bottom:402.786667pt;}
.yc5{bottom:403.426667pt;}
.y5d{bottom:407.106667pt;}
.y117{bottom:412.866667pt;}
.y5e{bottom:413.186667pt;}
.y38{bottom:416.066667pt;}
.y9d{bottom:416.226667pt;}
.y18c{bottom:416.546667pt;}
.yb1{bottom:417.186667pt;}
.yf3{bottom:421.186667pt;}
.y1ba{bottom:422.946667pt;}
.ye2{bottom:423.906667pt;}
.yc4{bottom:424.546667pt;}
.y152{bottom:425.826667pt;}
.yf4{bottom:427.266667pt;}
.y5c{bottom:428.226667pt;}
.y116{bottom:434.146667pt;}
.y37{bottom:437.186667pt;}
.y9c{bottom:437.346667pt;}
.yb0{bottom:438.306667pt;}
.yf2{bottom:442.306667pt;}
.y1b9{bottom:443.586667pt;}
.y16f{bottom:444.546667pt;}
.ye1{bottom:444.706667pt;}
.yc3{bottom:445.826667pt;}
.y18b{bottom:447.906667pt;}
.y5b{bottom:449.346667pt;}
.y36{bottom:458.306667pt;}
.y9b{bottom:458.626667pt;}
.ye0{bottom:463.266667pt;}
.yf1{bottom:463.426667pt;}
.y1b8{bottom:464.226667pt;}
.yc2{bottom:465.826667pt;}
.y135{bottom:468.066667pt;}
.y115{bottom:468.546667pt;}
.y5a{bottom:470.626667pt;}
.yaf{bottom:473.346667pt;}
.y189{bottom:479.266667pt;}
.y35{bottom:479.426667pt;}
.y9a{bottom:479.746667pt;}
.yc1{bottom:480.706667pt;}
.ydf{bottom:484.386667pt;}
.yf0{bottom:484.706667pt;}
.y1b7{bottom:485.026667pt;}
.y90{bottom:486.466667pt;}
.y134{bottom:489.346667pt;}
.y114{bottom:489.666667pt;}
.y59{bottom:491.746667pt;}
.y196{bottom:494.653333pt;}
.y99{bottom:499.773333pt;}
.y34{bottom:500.546667pt;}
.y151{bottom:503.133333pt;}
.y1b6{bottom:505.693333pt;}
.yde{bottom:505.853333pt;}
.y8f{bottom:507.613333pt;}
.y133{bottom:510.493333pt;}
.y188{bottom:510.653333pt;}
.y113{bottom:510.973333pt;}
.y58{bottom:512.893333pt;}
.y98{bottom:514.653333pt;}
.y33{bottom:521.826667pt;}
.y1b5{bottom:526.333333pt;}
.ydd{bottom:526.973333pt;}
.y8d{bottom:528.733333pt;}
.y132{bottom:531.613333pt;}
.y112{bottom:532.093333pt;}
.y57{bottom:534.013333pt;}
.y8e{bottom:534.813333pt;}
.y187{bottom:541.853333pt;}
.y32{bottom:542.973333pt;}
.y1b4{bottom:546.973333pt;}
.ydc{bottom:548.093333pt;}
.y8c{bottom:549.853333pt;}
.y111{bottom:553.213333pt;}
.y56{bottom:555.133333pt;}
.y31{bottom:564.093333pt;}
.y131{bottom:566.173333pt;}
.y1b3{bottom:567.613333pt;}
.ydb{bottom:569.373333pt;}
.y8b{bottom:571.133333pt;}
.y55{bottom:576.413333pt;}
.y14f{bottom:581.053333pt;}
.y30{bottom:585.213333pt;}
.y130{bottom:587.293333pt;}
.y110{bottom:587.773333pt;}
.y1b2{bottom:588.253333pt;}
.y186{bottom:588.573333pt;}
.yda{bottom:590.493333pt;}
.y8a{bottom:592.253333pt;}
.yef{bottom:596.573333pt;}
.y54{bottom:597.533333pt;}
.y147{bottom:601.853333pt;}
.y2f{bottom:606.493333pt;}
.y12f{bottom:608.413333pt;}
.y10f{bottom:608.893333pt;}
.y108{bottom:611.293333pt;}
.yd9{bottom:611.613333pt;}
.y89{bottom:613.373333pt;}
.y16e{bottom:613.853333pt;}
.y102{bottom:617.693333pt;}
.y53{bottom:618.653333pt;}
.y27{bottom:622.493333pt;}
.y2e{bottom:627.613333pt;}
.y1b1{bottom:628.893333pt;}
.y12e{bottom:629.533333pt;}
.y10e{bottom:630.013333pt;}
.yd8{bottom:632.733333pt;}
.y88{bottom:634.493333pt;}
.y185{bottom:635.293333pt;}
.y26{bottom:639.293333pt;}
.y52{bottom:639.773333pt;}
.y16d{bottom:645.213333pt;}
.y1b0{bottom:647.453333pt;}
.y2d{bottom:648.733333pt;}
.y195{bottom:649.853333pt;}
.y12d{bottom:650.813333pt;}
.y101{bottom:653.693333pt;}
.yd7{bottom:654.013333pt;}
.y87{bottom:655.773333pt;}
.y25{bottom:656.093333pt;}
.y51{bottom:661.053333pt;}
.y1af{bottom:662.493333pt;}
.y10d{bottom:664.573333pt;}
.y16c{bottom:665.853333pt;}
.y2c{bottom:669.853333pt;}
.y24{bottom:673.053333pt;}
.y100{bottom:674.813333pt;}
.yd6{bottom:675.133333pt;}
.y86{bottom:676.893333pt;}
.y194{bottom:681.213333pt;}
.y184{bottom:681.853333pt;}
.y50{bottom:682.173333pt;}
.y1ae{bottom:683.293333pt;}
.y12c{bottom:685.213333pt;}
.y23{bottom:689.693333pt;}
.y2b{bottom:691.133333pt;}
.yd5{bottom:696.253333pt;}
.y16b{bottom:697.213333pt;}
.y85{bottom:698.013333pt;}
.y10c{bottom:698.973333pt;}
.y4f{bottom:703.293333pt;}
.y1ad{bottom:703.933333pt;}
.y22{bottom:704.893333pt;}
.y12b{bottom:706.333333pt;}
.y2a{bottom:712.253333pt;}
.y193{bottom:712.573333pt;}
.y183{bottom:713.213333pt;}
.yd4{bottom:717.373333pt;}
.y10b{bottom:717.533333pt;}
.y84{bottom:718.813333pt;}
.y21{bottom:722.173333pt;}
.y4e{bottom:724.413333pt;}
.y1ac{bottom:724.573333pt;}
.y146{bottom:725.053333pt;}
.y12a{bottom:727.613333pt;}
.yae{bottom:728.253333pt;}
.y16a{bottom:728.573333pt;}
.y29{bottom:733.373333pt;}
.yc0{bottom:737.373333pt;}
.yd3{bottom:738.653333pt;}
.y20{bottom:738.973333pt;}
.y83{bottom:739.933333pt;}
.y181{bottom:744.573333pt;}
.y1aa{bottom:745.213333pt;}
.y4d{bottom:745.733333pt;}
.yad{bottom:748.293333pt;}
.y129{bottom:748.773333pt;}
.y28{bottom:754.173333pt;}
.y97{bottom:755.333333pt;}
.y1f{bottom:755.773333pt;}
.y143{bottom:756.453333pt;}
.ybf{bottom:757.413333pt;}
.y192{bottom:759.333333pt;}
.y81{bottom:759.813333pt;}
.y169{bottom:759.973333pt;}
.yac{bottom:763.333333pt;}
.y82{bottom:765.893333pt;}
.y4c{bottom:766.853333pt;}
.ybe{bottom:772.453333pt;}
.y96{bottom:775.493333pt;}
.y80{bottom:780.933333pt;}
.y128{bottom:783.173333pt;}
.y1a9{bottom:786.533333pt;}
.y4b{bottom:787.973333pt;}
.y17{bottom:790.053333pt;}
.y95{bottom:790.373333pt;}
.y180{bottom:791.333333pt;}
.y7f{bottom:802.053333pt;}
.y140{bottom:803.173333pt;}
.y127{bottom:804.453333pt;}
.y191{bottom:805.893333pt;}
.y16{bottom:806.853333pt;}
.y1a8{bottom:807.333333pt;}
.y4a{bottom:809.093333pt;}
.y168{bottom:821.893333pt;}
.y7e{bottom:823.173333pt;}
.y15{bottom:823.813333pt;}
.y1a7{bottom:827.973333pt;}
.y49{bottom:830.373333pt;}
.y190{bottom:837.253333pt;}
.y17f{bottom:837.893333pt;}
.y126{bottom:838.853333pt;}
.y14{bottom:840.613333pt;}
.y7d{bottom:844.453333pt;}
.y1a6{bottom:848.613333pt;}
.y13c{bottom:849.733333pt;}
.y48{bottom:851.493333pt;}
.y1e{bottom:852.613333pt;}
.y13{bottom:857.573333pt;}
.y125{bottom:860.133333pt;}
.y7c{bottom:865.573333pt;}
.y167{bottom:868.613333pt;}
.y1a5{bottom:869.253333pt;}
.y47{bottom:872.613333pt;}
.y12{bottom:874.373333pt;}
.y13a{bottom:881.093333pt;}
.y124{bottom:881.253333pt;}
.y5{bottom:882.373333pt;}
.y17e{bottom:884.613333pt;}
.y1d{bottom:884.773333pt;}
.y7b{bottom:886.693333pt;}
.y1a4{bottom:889.893333pt;}
.yd2{bottom:892.773333pt;}
.y11{bottom:893.733333pt;}
.y1c{bottom:894.213333pt;}
.y166{bottom:899.973333pt;}
.y138{bottom:901.733333pt;}
.y7a{bottom:907.813333pt;}
.y1a3{bottom:910.533333pt;}
.y1b{bottom:911.973333pt;}
.y10{bottom:913.093333pt;}
.y46{bottom:915.013333pt;}
.y123{bottom:915.653333pt;}
.y78{bottom:929.093333pt;}
.yf{bottom:930.533333pt;}
.y164{bottom:931.333333pt;}
.y1a{bottom:932.613333pt;}
.y79{bottom:935.173333pt;}
.y45{bottom:936.133333pt;}
.y122{bottom:936.933333pt;}
.y137{bottom:939.653333pt;}
.ye{bottom:949.093333pt;}
.y77{bottom:950.213333pt;}
.y162{bottom:951.973333pt;}
.y44{bottom:957.253333pt;}
.y136{bottom:958.213333pt;}
.y19{bottom:960.933333pt;}
.yd{bottom:962.533333pt;}
.y76{bottom:971.333333pt;}
.y43{bottom:975.013333pt;}
.yc{bottom:975.813333pt;}
.yb{bottom:989.093333pt;}
.y42{bottom:992.293333pt;}
.y75{bottom:992.453333pt;}
.ya{bottom:1002.533333pt;}
.y18{bottom:1014.400000pt;}
.y9{bottom:1015.840000pt;}
.y3c{bottom:1027.040000pt;}
.y8{bottom:1029.120000pt;}
.y73{bottom:1040.640000pt;}
.y39{bottom:1041.760000pt;}
.y3b{bottom:1044.320000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h12{height:4.590000pt;}
.hf{height:17.280000pt;}
.h17{height:17.440000pt;}
.h1a{height:20.000000pt;}
.h2a{height:20.032000pt;}
.hd{height:26.392500pt;}
.h15{height:28.687500pt;}
.h20{height:30.560000pt;}
.h27{height:30.592000pt;}
.h1b{height:30.720000pt;}
.h1e{height:30.752000pt;}
.h19{height:30.982500pt;}
.h14{height:38.441250pt;}
.hb{height:38.465312pt;}
.h8{height:39.876250pt;}
.h4{height:42.400000pt;}
.h5{height:42.636250pt;}
.h16{height:43.031250pt;}
.h10{height:44.648750pt;}
.h1c{height:45.920000pt;}
.h26{height:45.952000pt;}
.h1d{height:46.080000pt;}
.h13{height:46.343750pt;}
.h3{height:46.739375pt;}
.h2{height:47.621250pt;}
.h6{height:52.785000pt;}
.h11{height:55.840000pt;}
.h18{height:56.843750pt;}
.hc{height:57.375000pt;}
.h23{height:61.280000pt;}
.h9{height:61.637188pt;}
.ha{height:65.808125pt;}
.h7{height:67.128750pt;}
.h21{height:76.672000pt;}
.h28{height:92.000000pt;}
.h25{height:107.360000pt;}
.h1f{height:122.560000pt;}
.h22{height:122.752000pt;}
.h24{height:168.666667pt;}
.h29{height:199.386667pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w14{width:46.400000pt;}
.w27{width:46.560000pt;}
.we{width:46.720000pt;}
.w1d{width:56.320000pt;}
.w19{width:65.280000pt;}
.w23{width:65.472000pt;}
.w28{width:67.552000pt;}
.w1e{width:74.400000pt;}
.w15{width:75.040000pt;}
.wf{width:84.480000pt;}
.w21{width:94.432000pt;}
.w12{width:101.472000pt;}
.w18{width:112.672000pt;}
.w1c{width:113.312000pt;}
.w1f{width:116.352000pt;}
.w2a{width:132.192000pt;}
.w25{width:132.480000pt;}
.w16{width:136.826667pt;}
.w10{width:140.666667pt;}
.w1a{width:141.146667pt;}
.w3{width:145.146667pt;}
.wc{width:179.066667pt;}
.w8{width:179.226667pt;}
.w17{width:183.226667pt;}
.w1b{width:187.386667pt;}
.w11{width:190.426667pt;}
.w24{width:196.506667pt;}
.w20{width:222.106667pt;}
.w29{width:223.546667pt;}
.w9{width:387.106667pt;}
.w22{width:443.266667pt;}
.w26{width:471.933333pt;}
.w6{width:553.853333pt;}
.wb{width:554.013333pt;}
.w13{width:556.733333pt;}
.wd{width:566.333333pt;}
.wa{width:793.759976pt;}
.w7{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4d{left:4.320000pt;}
.x46{left:5.600000pt;}
.x15{left:7.200000pt;}
.x5f{left:10.400000pt;}
.x17{left:11.680000pt;}
.x61{left:12.640000pt;}
.x22{left:14.080000pt;}
.x59{left:15.040000pt;}
.x4f{left:16.640000pt;}
.x4c{left:19.994667pt;}
.x65{left:21.434667pt;}
.x6{left:22.719988pt;}
.x47{left:24.480000pt;}
.x4e{left:28.360000pt;}
.x7{left:30.239988pt;}
.x10{left:32.159988pt;}
.x5{left:33.440000pt;}
.x20{left:35.674667pt;}
.x18{left:37.440000pt;}
.x66{left:40.680000pt;}
.x57{left:42.240000pt;}
.x6a{left:47.680000pt;}
.x5d{left:49.920000pt;}
.x55{left:52.640000pt;}
.x5b{left:54.720000pt;}
.x4a{left:56.186667pt;}
.x6e{left:61.120000pt;}
.x62{left:72.000000pt;}
.x23{left:85.280000pt;}
.x5c{left:87.066667pt;}
.x67{left:97.960000pt;}
.x64{left:104.346667pt;}
.x6c{left:110.280000pt;}
.x14{left:113.471988pt;}
.x1e{left:114.912000pt;}
.x1d{left:117.471988pt;}
.x50{left:118.592000pt;}
.x40{left:121.471988pt;}
.x2a{left:122.911988pt;}
.x36{left:126.431988pt;}
.x12{left:127.712000pt;}
.x2c{left:135.226655pt;}
.x2e{left:137.786655pt;}
.x33{left:147.226655pt;}
.x32{left:148.666655pt;}
.x19{left:160.666655pt;}
.x52{left:165.626667pt;}
.x51{left:169.474667pt;}
.x60{left:170.746667pt;}
.x26{left:174.586643pt;}
.x27{left:180.026655pt;}
.x58{left:182.594667pt;}
.x5e{left:185.474667pt;}
.x11{left:199.226655pt;}
.x1{left:202.426655pt;}
.x6d{left:208.186667pt;}
.x44{left:211.226643pt;}
.xf{left:212.986655pt;}
.x45{left:219.866655pt;}
.x68{left:222.586667pt;}
.xe{left:231.866655pt;}
.x8{left:239.386655pt;}
.x53{left:241.306667pt;}
.x48{left:246.266667pt;}
.x2{left:249.666655pt;}
.x9{left:251.266655pt;}
.x2f{left:271.266643pt;}
.x30{left:276.706655pt;}
.x69{left:288.866667pt;}
.xa{left:292.066655pt;}
.x16{left:293.346667pt;}
.x1c{left:305.506655pt;}
.x3e{left:308.546643pt;}
.x3f{left:319.426655pt;}
.x39{left:361.506643pt;}
.x3c{left:363.266643pt;}
.x3a{left:366.946655pt;}
.x3d{left:368.706655pt;}
.xb{left:372.226655pt;}
.x5a{left:373.826667pt;}
.x54{left:378.786667pt;}
.x3b{left:385.826643pt;}
.x49{left:387.586667pt;}
.xd{left:390.466655pt;}
.x13{left:420.541333pt;}
.x28{left:453.693310pt;}
.x29{left:459.133322pt;}
.xc{left:461.853321pt;}
.x41{left:464.893322pt;}
.x24{left:476.253310pt;}
.x25{left:481.693322pt;}
.x6b{left:486.013333pt;}
.x42{left:489.373310pt;}
.x43{left:500.253322pt;}
.x21{left:501.373333pt;}
.x56{left:562.653333pt;}
.x2b{left:564.893322pt;}
.x2d{left:566.973322pt;}
.x4b{left:578.653333pt;}
.x31{left:583.933322pt;}
.x63{left:585.693333pt;}
.x4{left:590.533321pt;}
.x3{left:593.413321pt;}
.x35{left:615.453322pt;}
.x34{left:618.173322pt;}
.x1a{left:648.773310pt;}
.x1b{left:654.213322pt;}
.x1f{left:667.173322pt;}
.x37{left:671.333310pt;}
.x38{left:676.773322pt;}
}




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