
    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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_8c9b631d7a65753873531b80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6228339a7a83268e6572fb60.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ed456ec7a7c50972f001898.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29cceec8dac822e059114ba1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a77759c739204a17dd93e652.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_57cbfe33ca6b6ea0248ae96c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8e672b24e4ffe0c2bf1e733c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9cb61012e611c9695413358a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls16{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.152400px;}
.ls1b{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.089400px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.109440px;}
.ls11{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.152400px;}
.ls13{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.262080px;}
.ls17{letter-spacing:0.262200px;}
.lse{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.414600px;}
.ls14{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.160000px;}
.ls1{letter-spacing:39.881280px;}
.lsd{letter-spacing:59.345280px;}
.ls5{letter-spacing:94.625280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws5{word-spacing:-16.974600px;}
.wsb{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.712400px;}
.ws9{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.450800px;}
.wsf{word-spacing:-16.407600px;}
.ws14{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.145400px;}
.ws15{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.992400px;}
.ws6{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-14.940000px;}
.ws10{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.392000px;}
.wsc{word-spacing:-10.440000px;}
.ws13{word-spacing:-10.350600px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-2.027280px;}
._1{margin-left:-1.015920px;}
._0{width:1.135440px;}
._3{width:2.511840px;}
._2{width:3.567120px;}
._a{width:4.769280px;}
._b{width:5.986560px;}
._10{width:7.021440px;}
._d{width:8.081280px;}
._8{width:9.406080px;}
._9{width:10.863120px;}
._c{width:12.405360px;}
._5{width:13.469040px;}
._4{width:14.506560px;}
._14{width:15.532080px;}
._15{width:17.657280px;}
._e{width:18.719040px;}
._f{width:19.821120px;}
._6{width:21.461760px;}
._7{width:22.742640px;}
._11{width:24.111360px;}
._12{width:25.190160px;}
._16{width:26.877360px;}
._19{width:28.336800px;}
._18{width:29.753040px;}
._1c{width:30.801360px;}
._1a{width:32.921280px;}
._1b{width:33.981120px;}
._13{width:847.596000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs6{font-size:50.848916px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.920429px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.225000px;}
.y107{bottom:3.240000px;}
.y11a{bottom:3.405000px;}
.y10f{bottom:3.420000px;}
.y171{bottom:3.780000px;}
.y176{bottom:3.810000px;}
.ye0{bottom:5.760000px;}
.ye5{bottom:6.120000px;}
.yf0{bottom:6.150000px;}
.ye4{bottom:6.300000px;}
.y109{bottom:10.980000px;}
.y13c{bottom:11.010000px;}
.y129{bottom:11.160000px;}
.y112{bottom:11.505000px;}
.y27{bottom:11.520000px;}
.y28{bottom:12.060000px;}
.ye2{bottom:16.380000px;}
.yee{bottom:16.740000px;}
.y167{bottom:18.705000px;}
.y13b{bottom:18.750000px;}
.y10a{bottom:18.900000px;}
.y117{bottom:19.245000px;}
.y14b{bottom:21.240000px;}
.yf3{bottom:26.640000px;}
.y11f{bottom:26.985000px;}
.y10c{bottom:27.000000px;}
.y111{bottom:27.030000px;}
.y168{bottom:34.365000px;}
.yed{bottom:36.540000px;}
.y4{bottom:56.700000px;}
.ye7{bottom:57.600000px;}
.y29{bottom:57.780000px;}
.y26{bottom:73.260000px;}
.y3{bottom:73.980000px;}
.y88{bottom:110.700000px;}
.y103{bottom:115.740000px;}
.y4c{bottom:119.700000px;}
.y199{bottom:121.140000px;}
.y1c5{bottom:122.760000px;}
.y148{bottom:128.160000px;}
.yca{bottom:134.460000px;}
.y87{bottom:139.140000px;}
.y187{bottom:141.300000px;}
.y102{bottom:144.180000px;}
.y24{bottom:144.360000px;}
.y126{bottom:146.880000px;}
.y91{bottom:148.140000px;}
.y198{bottom:149.760000px;}
.y1c4{bottom:151.200000px;}
.y16f{bottom:152.640000px;}
.y147{bottom:156.600000px;}
.y4b{bottom:157.140000px;}
.y1bb{bottom:160.200000px;}
.yc9{bottom:162.900000px;}
.ydd{bottom:166.320000px;}
.y86{bottom:167.760000px;}
.y186{bottom:169.770000px;}
.ya8{bottom:174.990000px;}
.y90{bottom:176.790000px;}
.y197{bottom:178.230000px;}
.y1b0{bottom:179.670000px;}
.y101{bottom:181.290000px;}
.y23{bottom:181.830000px;}
.y125{bottom:184.350000px;}
.y146{bottom:185.070000px;}
.y4a{bottom:185.790000px;}
.y1ba{bottom:188.670000px;}
.y16e{bottom:190.110000px;}
.y6c{bottom:194.430000px;}
.ydc{bottom:194.790000px;}
.y85{bottom:196.230000px;}
.yc8{bottom:200.370000px;}
.ya7{bottom:203.430000px;}
.y196{bottom:206.670000px;}
.y185{bottom:206.850000px;}
.y1af{bottom:208.110000px;}
.y122{bottom:208.665000px;}
.y22{bottom:210.270000px;}
.y145{bottom:213.690000px;}
.y49{bottom:214.230000px;}
.y16d{bottom:214.425000px;}
.y1c3{bottom:217.110000px;}
.y100{bottom:219.090000px;}
.ydb{bottom:223.230000px;}
.y124{bottom:224.505000px;}
.y84{bottom:224.670000px;}
.y1b9{bottom:226.110000px;}
.yc7{bottom:228.990000px;}
.y16c{bottom:230.445000px;}
.y6b{bottom:232.230000px;}
.yce{bottom:233.670000px;}
.y195{bottom:235.110000px;}
.y1ae{bottom:236.550000px;}
.y21{bottom:238.710000px;}
.y123{bottom:240.525000px;}
.ya6{bottom:240.870000px;}
.y48{bottom:242.670000px;}
.y184{bottom:244.650000px;}
.y1c2{bottom:245.550000px;}
.y16b{bottom:246.285000px;}
.y144{bottom:251.130000px;}
.y19b{bottom:253.110000px;}
.y1b8{bottom:254.550000px;}
.y11e{bottom:256.365000px;}
.yff{bottom:256.710000px;}
.yc6{bottom:257.430000px;}
.yda{bottom:260.670000px;}
.y83{bottom:262.110000px;}
.y16a{bottom:262.125000px;}
.y194{bottom:263.550000px;}
.y20{bottom:267.150000px;}
.ya5{bottom:269.310000px;}
.y6a{bottom:269.670000px;}
.y47{bottom:271.110000px;}
.y121{bottom:272.205000px;}
.y1ad{bottom:273.990000px;}
.y169{bottom:278.145000px;}
.y183{bottom:282.090000px;}
.y1c1{bottom:282.990000px;}
.yfe{bottom:285.150000px;}
.yc5{bottom:285.870000px;}
.y120{bottom:288.225000px;}
.y143{bottom:288.570000px;}
.yd9{bottom:289.290000px;}
.y82{bottom:290.550000px;}
.y193{bottom:291.990000px;}
.y166{bottom:293.985000px;}
.y1f{bottom:295.590000px;}
.ya4{bottom:297.750000px;}
.y69{bottom:298.110000px;}
.y46{bottom:299.550000px;}
.y1ac{bottom:302.430000px;}
.y11b{bottom:304.065000px;}
.y182{bottom:310.530000px;}
.y1c0{bottom:311.430000px;}
.y142{bottom:312.885000px;}
.yfd{bottom:313.590000px;}
.yc4{bottom:314.310000px;}
.yd8{bottom:317.730000px;}
.y81{bottom:318.990000px;}
.y11d{bottom:319.905000px;}
.y1b7{bottom:320.430000px;}
.y1e{bottom:324.030000px;}
.y68{bottom:326.550000px;}
.y45{bottom:327.990000px;}
.y141{bottom:328.725000px;}
.y192{bottom:329.430000px;}
.ya3{bottom:335.190000px;}
.y11c{bottom:335.925000px;}
.y181{bottom:338.970000px;}
.y1ab{bottom:339.870000px;}
.y165{bottom:340.965000px;}
.yfc{bottom:342.030000px;}
.yc3{bottom:342.750000px;}
.y140{bottom:344.565000px;}
.yd7{bottom:346.170000px;}
.y80{bottom:347.430000px;}
.y1b6{bottom:348.870000px;}
.y116{bottom:351.765000px;}
.y1d{bottom:352.470000px;}
.y67{bottom:354.990000px;}
.y44{bottom:356.430000px;}
.y191{bottom:357.870000px;}
.y13f{bottom:360.585000px;}
.y8f{bottom:365.430000px;}
.y180{bottom:367.410000px;}
.y119{bottom:367.605000px;}
.y1aa{bottom:368.310000px;}
.yfb{bottom:370.470000px;}
.yc2{bottom:371.190000px;}
.ya2{bottom:372.630000px;}
.yd6{bottom:374.610000px;}
.y7f{bottom:375.870000px;}
.y13e{bottom:376.425000px;}
.y1b5{bottom:377.310000px;}
.y164{bottom:379.290000px;}
.y1c{bottom:381.090000px;}
.y66{bottom:383.430000px;}
.y118{bottom:383.625000px;}
.y43{bottom:384.870000px;}
.y190{bottom:386.310000px;}
.y13d{bottom:392.265000px;}
.y8e{bottom:393.870000px;}
.y17f{bottom:396.030000px;}
.y1a9{bottom:396.930000px;}
.yfa{bottom:398.910000px;}
.y110{bottom:399.465000px;}
.yc1{bottom:399.630000px;}
.ya1{bottom:401.070000px;}
.y7e{bottom:404.310000px;}
.y1bf{bottom:405.930000px;}
.y13a{bottom:408.285000px;}
.y1b{bottom:409.530000px;}
.y65{bottom:411.870000px;}
.yd5{bottom:412.050000px;}
.y42{bottom:413.355000px;}
.y18f{bottom:414.975000px;}
.y114{bottom:415.335000px;}
.y163{bottom:416.775000px;}
.y8d{bottom:422.355000px;}
.y17e{bottom:424.515000px;}
.yf9{bottom:427.395000px;}
.yc0{bottom:428.115000px;}
.ya0{bottom:429.735000px;}
.y113{bottom:431.355000px;}
.y19a{bottom:432.975000px;}
.y1a8{bottom:434.415000px;}
.y1a{bottom:438.015000px;}
.y139{bottom:439.635000px;}
.y64{bottom:440.355000px;}
.y7d{bottom:441.975000px;}
.y18e{bottom:443.415000px;}
.yd4{bottom:445.575000px;}
.y10b{bottom:447.195000px;}
.y41{bottom:450.975000px;}
.y162{bottom:454.215000px;}
.yf8{bottom:455.835000px;}
.y17d{bottom:461.955000px;}
.y1a7{bottom:462.855000px;}
.y10e{bottom:463.035000px;}
.ybf{bottom:465.555000px;}
.y9f{bottom:468.255000px;}
.y63{bottom:468.975000px;}
.y7c{bottom:470.415000px;}
.y18d{bottom:471.855000px;}
.y19{bottom:475.095000px;}
.y138{bottom:478.155000px;}
.y10d{bottom:479.055000px;}
.y40{bottom:479.415000px;}
.y1b4{bottom:480.855000px;}
.yf7{bottom:484.275000px;}
.y17c{bottom:490.395000px;}
.y1a6{bottom:491.295000px;}
.y161{bottom:491.655000px;}
.y108{bottom:494.895000px;}
.y9e{bottom:496.695000px;}
.y62{bottom:497.415000px;}
.y7b{bottom:498.855000px;}
.y1be{bottom:500.295000px;}
.ybe{bottom:503.175000px;}
.y3f{bottom:507.855000px;}
.y18c{bottom:509.295000px;}
.y18{bottom:512.895000px;}
.y137{bottom:515.595000px;}
.y17b{bottom:518.835000px;}
.y160{bottom:520.275000px;}
.yf6{bottom:521.895000px;}
.y9d{bottom:525.315000px;}
.y61{bottom:525.855000px;}
.y106{bottom:526.395000px;}
.y7a{bottom:527.295000px;}
.y1a5{bottom:528.735000px;}
.ybd{bottom:531.615000px;}
.y3e{bottom:536.295000px;}
.y1bd{bottom:537.735000px;}
.y17{bottom:541.335000px;}
.yf2{bottom:546.555000px;}
.y18b{bottom:546.735000px;}
.y15f{bottom:548.715000px;}
.y136{bottom:553.035000px;}
.y60{bottom:554.295000px;}
.y79{bottom:555.735000px;}
.y17a{bottom:556.275000px;}
.y1a4{bottom:557.175000px;}
.y9c{bottom:563.835000px;}
.y105{bottom:564.375000px;}
.y3d{bottom:564.735000px;}
.y1bc{bottom:566.175000px;}
.yf5{bottom:567.075000px;}
.ybc{bottom:570.135000px;}
.y16{bottom:571.035000px;}
.y1b3{bottom:575.175000px;}
.y5f{bottom:582.735000px;}
.y78{bottom:584.175000px;}
.y1a3{bottom:585.615000px;}
.y15e{bottom:586.155000px;}
.yf4{bottom:587.595000px;}
.y135{bottom:590.475000px;}
.y9b{bottom:592.455000px;}
.y3c{bottom:593.175000px;}
.y179{bottom:593.715000px;}
.ybb{bottom:598.575000px;}
.y15{bottom:600.735000px;}
.y8c{bottom:602.175000px;}
.y1b2{bottom:603.615000px;}
.yec{bottom:608.295000px;}
.y77{bottom:612.615000px;}
.y178{bottom:618.015000px;}
.y134{bottom:618.915000px;}
.y5e{bottom:620.175000px;}
.y3b{bottom:621.615000px;}
.y1a2{bottom:623.055000px;}
.y15d{bottom:623.595000px;}
.yba{bottom:627.195000px;}
.yf1{bottom:628.815000px;}
.y14{bottom:630.435000px;}
.y9a{bottom:630.975000px;}
.y1b1{bottom:632.055000px;}
.y177{bottom:635.655000px;}
.y8b{bottom:639.615000px;}
.y76{bottom:641.055000px;}
.y133{bottom:647.355000px;}
.y15c{bottom:647.895000px;}
.y5d{bottom:648.615000px;}
.yef{bottom:649.515000px;}
.y3a{bottom:650.055000px;}
.y1a1{bottom:651.495000px;}
.y175{bottom:653.295000px;}
.yb9{bottom:655.665000px;}
.ycd{bottom:659.085000px;}
.y99{bottom:659.445000px;}
.y13{bottom:660.165000px;}
.y15b{bottom:666.285000px;}
.y18a{bottom:669.525000px;}
.ye6{bottom:670.065000px;}
.y174{bottom:670.965000px;}
.y132{bottom:675.825000px;}
.y5c{bottom:677.085000px;}
.y39{bottom:678.525000px;}
.yb8{bottom:684.105000px;}
.y15a{bottom:684.645000px;}
.y98{bottom:688.065000px;}
.y173{bottom:688.605000px;}
.y1a0{bottom:689.145000px;}
.y12{bottom:689.865000px;}
.yeb{bottom:690.585000px;}
.ycc{bottom:696.525000px;}
.y189{bottom:698.145000px;}
.y159{bottom:703.005000px;}
.y131{bottom:704.445000px;}
.y5b{bottom:705.525000px;}
.y172{bottom:706.245000px;}
.y38{bottom:707.145000px;}
.yea{bottom:711.285000px;}
.yb7{bottom:712.545000px;}
.y19f{bottom:717.585000px;}
.y11{bottom:719.565000px;}
.y158{bottom:721.365000px;}
.y170{bottom:723.885000px;}
.y97{bottom:726.585000px;}
.ye9{bottom:731.805000px;}
.y5a{bottom:734.145000px;}
.y37{bottom:735.585000px;}
.y157{bottom:739.725000px;}
.y130{bottom:741.885000px;}
.y10{bottom:749.265000px;}
.yb6{bottom:751.245000px;}
.ye8{bottom:752.325000px;}
.y96{bottom:755.025000px;}
.y156{bottom:758.085000px;}
.y59{bottom:762.585000px;}
.y75{bottom:764.025000px;}
.y36{bottom:773.025000px;}
.y155{bottom:776.625000px;}
.yf{bottom:778.965000px;}
.y12f{bottom:779.325000px;}
.yb5{bottom:779.685000px;}
.y95{bottom:783.465000px;}
.y58{bottom:791.025000px;}
.y19d{bottom:792.105000px;}
.y74{bottom:792.465000px;}
.ye1{bottom:793.545000px;}
.y154{bottom:794.985000px;}
.y35{bottom:801.465000px;}
.y12e{bottom:803.985000px;}
.yb4{bottom:808.125000px;}
.ye{bottom:808.665000px;}
.y94{bottom:811.905000px;}
.y153{bottom:813.345000px;}
.ye3{bottom:814.065000px;}
.y57{bottom:819.465000px;}
.y12d{bottom:820.185000px;}
.y188{bottom:820.905000px;}
.y34{bottom:829.905000px;}
.yd3{bottom:831.345000px;}
.y152{bottom:831.705000px;}
.ydf{bottom:834.765000px;}
.yb3{bottom:836.565000px;}
.yd{bottom:838.365000px;}
.y56{bottom:847.905000px;}
.y93{bottom:849.345000px;}
.y151{bottom:850.065000px;}
.y12c{bottom:852.765000px;}
.y33{bottom:858.345000px;}
.yc{bottom:867.345000px;}
.y150{bottom:868.425000px;}
.yd2{bottom:868.785000px;}
.y12b{bottom:869.145000px;}
.yb2{bottom:875.265000px;}
.y55{bottom:876.345000px;}
.yde{bottom:877.785000px;}
.yb{bottom:884.625000px;}
.y12a{bottom:885.345000px;}
.y32{bottom:886.785000px;}
.y19c{bottom:895.785000px;}
.y128{bottom:901.590000px;}
.ya{bottom:901.770000px;}
.yb1{bottom:903.750000px;}
.y54{bottom:904.830000px;}
.y14f{bottom:905.190000px;}
.yd1{bottom:905.910000px;}
.y19e{bottom:906.270000px;}
.y73{bottom:915.270000px;}
.y9{bottom:919.050000px;}
.y14e{bottom:923.550000px;}
.y92{bottom:923.910000px;}
.y31{bottom:924.270000px;}
.yb0{bottom:932.190000px;}
.y53{bottom:933.270000px;}
.y127{bottom:933.450000px;}
.y8{bottom:936.330000px;}
.y14d{bottom:941.910000px;}
.y8a{bottom:942.270000px;}
.y72{bottom:943.710000px;}
.y30{bottom:952.710000px;}
.y14c{bottom:960.270000px;}
.yaf{bottom:960.630000px;}
.y52{bottom:961.710000px;}
.y89{bottom:970.710000px;}
.y71{bottom:972.330000px;}
.y7{bottom:973.230000px;}
.y2f{bottom:981.330000px;}
.y14a{bottom:983.670000px;}
.yae{bottom:989.070000px;}
.ycb{bottom:990.330000px;}
.y51{bottom:999.330000px;}
.y70{bottom:1000.770000px;}
.y2e{bottom:1009.770000px;}
.y6{bottom:1013.190000px;}
.y104{bottom:1018.770000px;}
.yad{bottom:1026.510000px;}
.y50{bottom:1027.770000px;}
.y6f{bottom:1029.210000px;}
.y149{bottom:1034.790000px;}
.y2d{bottom:1038.210000px;}
.yd0{bottom:1047.210000px;}
.y5{bottom:1053.150000px;}
.yac{bottom:1054.950000px;}
.y4f{bottom:1056.210000px;}
.y2c{bottom:1066.650000px;}
.ycf{bottom:1075.650000px;}
.yab{bottom:1083.390000px;}
.y2{bottom:1083.570000px;}
.y4e{bottom:1084.650000px;}
.y1{bottom:1099.230000px;}
.y2b{bottom:1103.730000px;}
.y6e{bottom:1104.090000px;}
.yaa{bottom:1111.830000px;}
.y4d{bottom:1113.090000px;}
.ya9{bottom:1140.450000px;}
.y6d{bottom:1141.170000px;}
.y2a{bottom:1141.560000px;}
.y25{bottom:1194.840000px;}
.h19{height:15.465000px;}
.h21{height:15.480000px;}
.h1f{height:15.501000px;}
.h20{height:15.502500px;}
.h1d{height:15.645000px;}
.h22{height:15.660000px;}
.h2f{height:17.265000px;}
.h2c{height:17.280000px;}
.h2e{height:17.310000px;}
.h24{height:17.985000px;}
.h28{height:18.000000px;}
.h27{height:18.022500px;}
.h29{height:18.030000px;}
.h15{height:19.785000px;}
.he{height:19.800000px;}
.h14{height:19.830000px;}
.h17{height:19.965000px;}
.h11{height:19.980000px;}
.h26{height:23.025000px;}
.h9{height:26.998500px;}
.h23{height:30.981000px;}
.h1b{height:31.125000px;}
.h2d{height:37.664944px;}
.h10{height:40.500000px;}
.h2b{height:42.162251px;}
.h2{height:45.184219px;}
.h2a{height:46.605000px;}
.h1c{height:47.325000px;}
.h1e{height:47.361000px;}
.h25{height:50.745000px;}
.h1a{height:52.998047px;}
.h3{height:58.651172px;}
.hc{height:59.383125px;}
.hf{height:60.226875px;}
.h16{height:61.005000px;}
.h13{height:61.050000px;}
.h8{height:64.978594px;}
.h6{height:65.010937px;}
.hb{height:66.078281px;}
.h7{height:66.757500px;}
.hd{height:68.084282px;}
.ha{height:68.956875px;}
.h5{height:70.664062px;}
.h30{height:71.204766px;}
.h18{height:71.225156px;}
.h4{height:72.562500px;}
.h12{height:122.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:34.401000px;}
.w21{width:34.549500px;}
.w12{width:76.860000px;}
.w7{width:79.221000px;}
.w14{width:82.245000px;}
.w25{width:85.161000px;}
.w5{width:87.120000px;}
.w1c{width:87.825000px;}
.w2a{width:90.756000px;}
.w13{width:90.936000px;}
.wc{width:91.836000px;}
.w1f{width:95.220000px;}
.w2c{width:95.385000px;}
.w1a{width:95.400000px;}
.w1e{width:95.430000px;}
.w26{width:95.745000px;}
.w27{width:95.790000px;}
.w24{width:95.796000px;}
.w1b{width:97.236000px;}
.w17{width:97.920000px;}
.wb{width:101.700000px;}
.w2b{width:102.981000px;}
.w16{width:105.510000px;}
.w22{width:106.221000px;}
.w1d{width:107.661000px;}
.w15{width:108.201000px;}
.w23{width:117.000000px;}
.we{width:119.685000px;}
.wf{width:124.950000px;}
.w9{width:127.069500px;}
.w2f{width:129.081000px;}
.wd{width:138.801000px;}
.w6{width:163.470000px;}
.w11{width:179.299500px;}
.w19{width:197.173500px;}
.w3{width:202.530000px;}
.w29{width:248.959500px;}
.w2e{width:265.890000px;}
.w4{width:331.275000px;}
.w2d{width:395.175000px;}
.w2{width:472.770000px;}
.w20{width:632.295000px;}
.w28{width:717.255000px;}
.w8{width:739.935000px;}
.w10{width:745.335000px;}
.w18{width:777.778500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:5.209500px;}
.x26{left:6.480000px;}
.x1a{left:7.740000px;}
.x39{left:8.985000px;}
.x50{left:10.245000px;}
.x66{left:12.810000px;}
.x4c{left:13.860000px;}
.x24{left:15.465000px;}
.x2b{left:16.905000px;}
.x5a{left:18.540000px;}
.x2e{left:19.980000px;}
.x46{left:22.485000px;}
.x3e{left:24.480000px;}
.x4e{left:25.740000px;}
.x32{left:27.570000px;}
.x52{left:29.010000px;}
.x47{left:30.420000px;}
.x31{left:32.250000px;}
.x2f{left:34.380000px;}
.x29{left:35.460000px;}
.x42{left:37.605000px;}
.x5e{left:39.960000px;}
.x27{left:41.400000px;}
.x2c{left:43.005000px;}
.x45{left:45.000000px;}
.x48{left:46.620000px;}
.x1d{left:48.990000px;}
.x55{left:51.510000px;}
.x1e{left:56.550000px;}
.x34{left:59.400000px;}
.x1f{left:63.930000px;}
.x49{left:68.221500px;}
.x38{left:69.330000px;}
.x76{left:70.380000px;}
.x19{left:74.340000px;}
.x37{left:75.990000px;}
.x36{left:77.580000px;}
.x3a{left:82.830000px;}
.x3b{left:84.466500px;}
.x21{left:87.166500px;}
.x6e{left:91.080000px;}
.x35{left:96.465000px;}
.x5f{left:98.506500px;}
.x75{left:106.920000px;}
.x6a{left:110.143500px;}
.x10{left:119.566500px;}
.x61{left:122.563500px;}
.x2{left:127.656000px;}
.x6f{left:130.860000px;}
.x68{left:133.903500px;}
.x5{left:137.196000px;}
.x3{left:138.636000px;}
.x56{left:140.986500px;}
.x6b{left:145.828500px;}
.x69{left:147.088500px;}
.x73{left:148.350000px;}
.x67{left:151.048500px;}
.x71{left:152.490000px;}
.x14{left:154.650000px;}
.x6c{left:158.968500px;}
.x74{left:160.230000px;}
.x72{left:164.370000px;}
.x16{left:170.130000px;}
.x77{left:173.010000px;}
.x58{left:175.905000px;}
.x13{left:177.870000px;}
.x15{left:181.650000px;}
.x23{left:214.425000px;}
.x57{left:222.328500px;}
.x25{left:249.015000px;}
.x6d{left:259.635000px;}
.x3d{left:264.495000px;}
.x4b{left:265.575000px;}
.x3c{left:276.508500px;}
.x59{left:282.495000px;}
.x60{left:283.528500px;}
.x22{left:290.188500px;}
.x18{left:291.495000px;}
.xe{left:295.635000px;}
.x4a{left:297.253500px;}
.x9{left:302.655000px;}
.x3f{left:342.075000px;}
.x62{left:347.655000px;}
.x28{left:350.895000px;}
.x4d{left:361.335000px;}
.x20{left:367.275000px;}
.xc{left:375.195000px;}
.x1b{left:379.335000px;}
.xf{left:386.895000px;}
.xa{left:388.155000px;}
.x8{left:393.375000px;}
.x5b{left:399.855000px;}
.xd{left:408.345000px;}
.xb{left:412.845000px;}
.x40{left:433.740000px;}
.x63{left:438.780000px;}
.x2a{left:443.100000px;}
.x4{left:457.125000px;}
.x4f{left:458.940000px;}
.x11{left:464.683500px;}
.x5c{left:496.020000px;}
.x41{left:516.720000px;}
.x64{left:521.400000px;}
.x70{left:525.720000px;}
.x1c{left:543.540000px;}
.x51{left:547.140000px;}
.x2d{left:582.090000px;}
.x12{left:592.350000px;}
.x43{left:625.650000px;}
.x53{left:654.990000px;}
.x7{left:668.490000px;}
.x6{left:671.370000px;}
.x5d{left:677.490000px;}
.x30{left:702.150000px;}
.x65{left:720.330000px;}
.x44{left:731.880000px;}
.x54{left:750.780000px;}
.x17{left:783.180000px;}
.x1{left:786.780000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.135467pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.079467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.097280pt;}
.ls11{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.135467pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.232960pt;}
.ls17{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.368533pt;}
.ls14{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1{letter-spacing:35.450027pt;}
.lsd{letter-spacing:52.751360pt;}
.ls5{letter-spacing:84.111360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws5{word-spacing:-15.088533pt;}
.wsb{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.855467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.622933pt;}
.wsf{word-spacing:-14.584533pt;}
.ws14{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.351467pt;}
.ws15{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.215467pt;}
.ws6{word-spacing:-14.176000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.112000pt;}
.ws11{word-spacing:-11.904000pt;}
.wsc{word-spacing:-9.280000pt;}
.ws13{word-spacing:-9.200533pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-1.802027pt;}
._1{margin-left:-0.903040pt;}
._0{width:1.009280pt;}
._3{width:2.232747pt;}
._2{width:3.170773pt;}
._a{width:4.239360pt;}
._b{width:5.321387pt;}
._10{width:6.241280pt;}
._d{width:7.183360pt;}
._8{width:8.360960pt;}
._9{width:9.656107pt;}
._c{width:11.026987pt;}
._5{width:11.972480pt;}
._4{width:12.894720pt;}
._14{width:13.806293pt;}
._15{width:15.695360pt;}
._e{width:16.639147pt;}
._f{width:17.618773pt;}
._6{width:19.077120pt;}
._7{width:20.215680pt;}
._11{width:21.432320pt;}
._12{width:22.391253pt;}
._16{width:23.890987pt;}
._19{width:25.188267pt;}
._18{width:26.447147pt;}
._1c{width:27.378987pt;}
._1a{width:29.263360pt;}
._1b{width:30.205440pt;}
._13{width:753.418667pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:45.199037pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.595937pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:2.866667pt;}
.y107{bottom:2.880000pt;}
.y11a{bottom:3.026667pt;}
.y10f{bottom:3.040000pt;}
.y171{bottom:3.360000pt;}
.y176{bottom:3.386667pt;}
.ye0{bottom:5.120000pt;}
.ye5{bottom:5.440000pt;}
.yf0{bottom:5.466667pt;}
.ye4{bottom:5.600000pt;}
.y109{bottom:9.760000pt;}
.y13c{bottom:9.786667pt;}
.y129{bottom:9.920000pt;}
.y112{bottom:10.226667pt;}
.y27{bottom:10.240000pt;}
.y28{bottom:10.720000pt;}
.ye2{bottom:14.560000pt;}
.yee{bottom:14.880000pt;}
.y167{bottom:16.626667pt;}
.y13b{bottom:16.666667pt;}
.y10a{bottom:16.800000pt;}
.y117{bottom:17.106667pt;}
.y14b{bottom:18.880000pt;}
.yf3{bottom:23.680000pt;}
.y11f{bottom:23.986667pt;}
.y10c{bottom:24.000000pt;}
.y111{bottom:24.026667pt;}
.y168{bottom:30.546667pt;}
.yed{bottom:32.480000pt;}
.y4{bottom:50.400000pt;}
.ye7{bottom:51.200000pt;}
.y29{bottom:51.360000pt;}
.y26{bottom:65.120000pt;}
.y3{bottom:65.760000pt;}
.y88{bottom:98.400000pt;}
.y103{bottom:102.880000pt;}
.y4c{bottom:106.400000pt;}
.y199{bottom:107.680000pt;}
.y1c5{bottom:109.120000pt;}
.y148{bottom:113.920000pt;}
.yca{bottom:119.520000pt;}
.y87{bottom:123.680000pt;}
.y187{bottom:125.600000pt;}
.y102{bottom:128.160000pt;}
.y24{bottom:128.320000pt;}
.y126{bottom:130.560000pt;}
.y91{bottom:131.680000pt;}
.y198{bottom:133.120000pt;}
.y1c4{bottom:134.400000pt;}
.y16f{bottom:135.680000pt;}
.y147{bottom:139.200000pt;}
.y4b{bottom:139.680000pt;}
.y1bb{bottom:142.400000pt;}
.yc9{bottom:144.800000pt;}
.ydd{bottom:147.840000pt;}
.y86{bottom:149.120000pt;}
.y186{bottom:150.906667pt;}
.ya8{bottom:155.546667pt;}
.y90{bottom:157.146667pt;}
.y197{bottom:158.426667pt;}
.y1b0{bottom:159.706667pt;}
.y101{bottom:161.146667pt;}
.y23{bottom:161.626667pt;}
.y125{bottom:163.866667pt;}
.y146{bottom:164.506667pt;}
.y4a{bottom:165.146667pt;}
.y1ba{bottom:167.706667pt;}
.y16e{bottom:168.986667pt;}
.y6c{bottom:172.826667pt;}
.ydc{bottom:173.146667pt;}
.y85{bottom:174.426667pt;}
.yc8{bottom:178.106667pt;}
.ya7{bottom:180.826667pt;}
.y196{bottom:183.706667pt;}
.y185{bottom:183.866667pt;}
.y1af{bottom:184.986667pt;}
.y122{bottom:185.480000pt;}
.y22{bottom:186.906667pt;}
.y145{bottom:189.946667pt;}
.y49{bottom:190.426667pt;}
.y16d{bottom:190.600000pt;}
.y1c3{bottom:192.986667pt;}
.y100{bottom:194.746667pt;}
.ydb{bottom:198.426667pt;}
.y124{bottom:199.560000pt;}
.y84{bottom:199.706667pt;}
.y1b9{bottom:200.986667pt;}
.yc7{bottom:203.546667pt;}
.y16c{bottom:204.840000pt;}
.y6b{bottom:206.426667pt;}
.yce{bottom:207.706667pt;}
.y195{bottom:208.986667pt;}
.y1ae{bottom:210.266667pt;}
.y21{bottom:212.186667pt;}
.y123{bottom:213.800000pt;}
.ya6{bottom:214.106667pt;}
.y48{bottom:215.706667pt;}
.y184{bottom:217.466667pt;}
.y1c2{bottom:218.266667pt;}
.y16b{bottom:218.920000pt;}
.y144{bottom:223.226667pt;}
.y19b{bottom:224.986667pt;}
.y1b8{bottom:226.266667pt;}
.y11e{bottom:227.880000pt;}
.yff{bottom:228.186667pt;}
.yc6{bottom:228.826667pt;}
.yda{bottom:231.706667pt;}
.y83{bottom:232.986667pt;}
.y16a{bottom:233.000000pt;}
.y194{bottom:234.266667pt;}
.y20{bottom:237.466667pt;}
.ya5{bottom:239.386667pt;}
.y6a{bottom:239.706667pt;}
.y47{bottom:240.986667pt;}
.y121{bottom:241.960000pt;}
.y1ad{bottom:243.546667pt;}
.y169{bottom:247.240000pt;}
.y183{bottom:250.746667pt;}
.y1c1{bottom:251.546667pt;}
.yfe{bottom:253.466667pt;}
.yc5{bottom:254.106667pt;}
.y120{bottom:256.200000pt;}
.y143{bottom:256.506667pt;}
.yd9{bottom:257.146667pt;}
.y82{bottom:258.266667pt;}
.y193{bottom:259.546667pt;}
.y166{bottom:261.320000pt;}
.y1f{bottom:262.746667pt;}
.ya4{bottom:264.666667pt;}
.y69{bottom:264.986667pt;}
.y46{bottom:266.266667pt;}
.y1ac{bottom:268.826667pt;}
.y11b{bottom:270.280000pt;}
.y182{bottom:276.026667pt;}
.y1c0{bottom:276.826667pt;}
.y142{bottom:278.120000pt;}
.yfd{bottom:278.746667pt;}
.yc4{bottom:279.386667pt;}
.yd8{bottom:282.426667pt;}
.y81{bottom:283.546667pt;}
.y11d{bottom:284.360000pt;}
.y1b7{bottom:284.826667pt;}
.y1e{bottom:288.026667pt;}
.y68{bottom:290.266667pt;}
.y45{bottom:291.546667pt;}
.y141{bottom:292.200000pt;}
.y192{bottom:292.826667pt;}
.ya3{bottom:297.946667pt;}
.y11c{bottom:298.600000pt;}
.y181{bottom:301.306667pt;}
.y1ab{bottom:302.106667pt;}
.y165{bottom:303.080000pt;}
.yfc{bottom:304.026667pt;}
.yc3{bottom:304.666667pt;}
.y140{bottom:306.280000pt;}
.yd7{bottom:307.706667pt;}
.y80{bottom:308.826667pt;}
.y1b6{bottom:310.106667pt;}
.y116{bottom:312.680000pt;}
.y1d{bottom:313.306667pt;}
.y67{bottom:315.546667pt;}
.y44{bottom:316.826667pt;}
.y191{bottom:318.106667pt;}
.y13f{bottom:320.520000pt;}
.y8f{bottom:324.826667pt;}
.y180{bottom:326.586667pt;}
.y119{bottom:326.760000pt;}
.y1aa{bottom:327.386667pt;}
.yfb{bottom:329.306667pt;}
.yc2{bottom:329.946667pt;}
.ya2{bottom:331.226667pt;}
.yd6{bottom:332.986667pt;}
.y7f{bottom:334.106667pt;}
.y13e{bottom:334.600000pt;}
.y1b5{bottom:335.386667pt;}
.y164{bottom:337.146667pt;}
.y1c{bottom:338.746667pt;}
.y66{bottom:340.826667pt;}
.y118{bottom:341.000000pt;}
.y43{bottom:342.106667pt;}
.y190{bottom:343.386667pt;}
.y13d{bottom:348.680000pt;}
.y8e{bottom:350.106667pt;}
.y17f{bottom:352.026667pt;}
.y1a9{bottom:352.826667pt;}
.yfa{bottom:354.586667pt;}
.y110{bottom:355.080000pt;}
.yc1{bottom:355.226667pt;}
.ya1{bottom:356.506667pt;}
.y7e{bottom:359.386667pt;}
.y1bf{bottom:360.826667pt;}
.y13a{bottom:362.920000pt;}
.y1b{bottom:364.026667pt;}
.y65{bottom:366.106667pt;}
.yd5{bottom:366.266667pt;}
.y42{bottom:367.426667pt;}
.y18f{bottom:368.866667pt;}
.y114{bottom:369.186667pt;}
.y163{bottom:370.466667pt;}
.y8d{bottom:375.426667pt;}
.y17e{bottom:377.346667pt;}
.yf9{bottom:379.906667pt;}
.yc0{bottom:380.546667pt;}
.ya0{bottom:381.986667pt;}
.y113{bottom:383.426667pt;}
.y19a{bottom:384.866667pt;}
.y1a8{bottom:386.146667pt;}
.y1a{bottom:389.346667pt;}
.y139{bottom:390.786667pt;}
.y64{bottom:391.426667pt;}
.y7d{bottom:392.866667pt;}
.y18e{bottom:394.146667pt;}
.yd4{bottom:396.066667pt;}
.y10b{bottom:397.506667pt;}
.y41{bottom:400.866667pt;}
.y162{bottom:403.746667pt;}
.yf8{bottom:405.186667pt;}
.y17d{bottom:410.626667pt;}
.y1a7{bottom:411.426667pt;}
.y10e{bottom:411.586667pt;}
.ybf{bottom:413.826667pt;}
.y9f{bottom:416.226667pt;}
.y63{bottom:416.866667pt;}
.y7c{bottom:418.146667pt;}
.y18d{bottom:419.426667pt;}
.y19{bottom:422.306667pt;}
.y138{bottom:425.026667pt;}
.y10d{bottom:425.826667pt;}
.y40{bottom:426.146667pt;}
.y1b4{bottom:427.426667pt;}
.yf7{bottom:430.466667pt;}
.y17c{bottom:435.906667pt;}
.y1a6{bottom:436.706667pt;}
.y161{bottom:437.026667pt;}
.y108{bottom:439.906667pt;}
.y9e{bottom:441.506667pt;}
.y62{bottom:442.146667pt;}
.y7b{bottom:443.426667pt;}
.y1be{bottom:444.706667pt;}
.ybe{bottom:447.266667pt;}
.y3f{bottom:451.426667pt;}
.y18c{bottom:452.706667pt;}
.y18{bottom:455.906667pt;}
.y137{bottom:458.306667pt;}
.y17b{bottom:461.186667pt;}
.y160{bottom:462.466667pt;}
.yf6{bottom:463.906667pt;}
.y9d{bottom:466.946667pt;}
.y61{bottom:467.426667pt;}
.y106{bottom:467.906667pt;}
.y7a{bottom:468.706667pt;}
.y1a5{bottom:469.986667pt;}
.ybd{bottom:472.546667pt;}
.y3e{bottom:476.706667pt;}
.y1bd{bottom:477.986667pt;}
.y17{bottom:481.186667pt;}
.yf2{bottom:485.826667pt;}
.y18b{bottom:485.986667pt;}
.y15f{bottom:487.746667pt;}
.y136{bottom:491.586667pt;}
.y60{bottom:492.706667pt;}
.y79{bottom:493.986667pt;}
.y17a{bottom:494.466667pt;}
.y1a4{bottom:495.266667pt;}
.y9c{bottom:501.186667pt;}
.y105{bottom:501.666667pt;}
.y3d{bottom:501.986667pt;}
.y1bc{bottom:503.266667pt;}
.yf5{bottom:504.066667pt;}
.ybc{bottom:506.786667pt;}
.y16{bottom:507.586667pt;}
.y1b3{bottom:511.266667pt;}
.y5f{bottom:517.986667pt;}
.y78{bottom:519.266667pt;}
.y1a3{bottom:520.546667pt;}
.y15e{bottom:521.026667pt;}
.yf4{bottom:522.306667pt;}
.y135{bottom:524.866667pt;}
.y9b{bottom:526.626667pt;}
.y3c{bottom:527.266667pt;}
.y179{bottom:527.746667pt;}
.ybb{bottom:532.066667pt;}
.y15{bottom:533.986667pt;}
.y8c{bottom:535.266667pt;}
.y1b2{bottom:536.546667pt;}
.yec{bottom:540.706667pt;}
.y77{bottom:544.546667pt;}
.y178{bottom:549.346667pt;}
.y134{bottom:550.146667pt;}
.y5e{bottom:551.266667pt;}
.y3b{bottom:552.546667pt;}
.y1a2{bottom:553.826667pt;}
.y15d{bottom:554.306667pt;}
.yba{bottom:557.506667pt;}
.yf1{bottom:558.946667pt;}
.y14{bottom:560.386667pt;}
.y9a{bottom:560.866667pt;}
.y1b1{bottom:561.826667pt;}
.y177{bottom:565.026667pt;}
.y8b{bottom:568.546667pt;}
.y76{bottom:569.826667pt;}
.y133{bottom:575.426667pt;}
.y15c{bottom:575.906667pt;}
.y5d{bottom:576.546667pt;}
.yef{bottom:577.346667pt;}
.y3a{bottom:577.826667pt;}
.y1a1{bottom:579.106667pt;}
.y175{bottom:580.706667pt;}
.yb9{bottom:582.813333pt;}
.ycd{bottom:585.853333pt;}
.y99{bottom:586.173333pt;}
.y13{bottom:586.813333pt;}
.y15b{bottom:592.253333pt;}
.y18a{bottom:595.133333pt;}
.ye6{bottom:595.613333pt;}
.y174{bottom:596.413333pt;}
.y132{bottom:600.733333pt;}
.y5c{bottom:601.853333pt;}
.y39{bottom:603.133333pt;}
.yb8{bottom:608.093333pt;}
.y15a{bottom:608.573333pt;}
.y98{bottom:611.613333pt;}
.y173{bottom:612.093333pt;}
.y1a0{bottom:612.573333pt;}
.y12{bottom:613.213333pt;}
.yeb{bottom:613.853333pt;}
.ycc{bottom:619.133333pt;}
.y189{bottom:620.573333pt;}
.y159{bottom:624.893333pt;}
.y131{bottom:626.173333pt;}
.y5b{bottom:627.133333pt;}
.y172{bottom:627.773333pt;}
.y38{bottom:628.573333pt;}
.yea{bottom:632.253333pt;}
.yb7{bottom:633.373333pt;}
.y19f{bottom:637.853333pt;}
.y11{bottom:639.613333pt;}
.y158{bottom:641.213333pt;}
.y170{bottom:643.453333pt;}
.y97{bottom:645.853333pt;}
.ye9{bottom:650.493333pt;}
.y5a{bottom:652.573333pt;}
.y37{bottom:653.853333pt;}
.y157{bottom:657.533333pt;}
.y130{bottom:659.453333pt;}
.y10{bottom:666.013333pt;}
.yb6{bottom:667.773333pt;}
.ye8{bottom:668.733333pt;}
.y96{bottom:671.133333pt;}
.y156{bottom:673.853333pt;}
.y59{bottom:677.853333pt;}
.y75{bottom:679.133333pt;}
.y36{bottom:687.133333pt;}
.y155{bottom:690.333333pt;}
.yf{bottom:692.413333pt;}
.y12f{bottom:692.733333pt;}
.yb5{bottom:693.053333pt;}
.y95{bottom:696.413333pt;}
.y58{bottom:703.133333pt;}
.y19d{bottom:704.093333pt;}
.y74{bottom:704.413333pt;}
.ye1{bottom:705.373333pt;}
.y154{bottom:706.653333pt;}
.y35{bottom:712.413333pt;}
.y12e{bottom:714.653333pt;}
.yb4{bottom:718.333333pt;}
.ye{bottom:718.813333pt;}
.y94{bottom:721.693333pt;}
.y153{bottom:722.973333pt;}
.ye3{bottom:723.613333pt;}
.y57{bottom:728.413333pt;}
.y12d{bottom:729.053333pt;}
.y188{bottom:729.693333pt;}
.y34{bottom:737.693333pt;}
.yd3{bottom:738.973333pt;}
.y152{bottom:739.293333pt;}
.ydf{bottom:742.013333pt;}
.yb3{bottom:743.613333pt;}
.yd{bottom:745.213333pt;}
.y56{bottom:753.693333pt;}
.y93{bottom:754.973333pt;}
.y151{bottom:755.613333pt;}
.y12c{bottom:758.013333pt;}
.y33{bottom:762.973333pt;}
.yc{bottom:770.973333pt;}
.y150{bottom:771.933333pt;}
.yd2{bottom:772.253333pt;}
.y12b{bottom:772.573333pt;}
.yb2{bottom:778.013333pt;}
.y55{bottom:778.973333pt;}
.yde{bottom:780.253333pt;}
.yb{bottom:786.333333pt;}
.y12a{bottom:786.973333pt;}
.y32{bottom:788.253333pt;}
.y19c{bottom:796.253333pt;}
.y128{bottom:801.413333pt;}
.ya{bottom:801.573333pt;}
.yb1{bottom:803.333333pt;}
.y54{bottom:804.293333pt;}
.y14f{bottom:804.613333pt;}
.yd1{bottom:805.253333pt;}
.y19e{bottom:805.573333pt;}
.y73{bottom:813.573333pt;}
.y9{bottom:816.933333pt;}
.y14e{bottom:820.933333pt;}
.y92{bottom:821.253333pt;}
.y31{bottom:821.573333pt;}
.yb0{bottom:828.613333pt;}
.y53{bottom:829.573333pt;}
.y127{bottom:829.733333pt;}
.y8{bottom:832.293333pt;}
.y14d{bottom:837.253333pt;}
.y8a{bottom:837.573333pt;}
.y72{bottom:838.853333pt;}
.y30{bottom:846.853333pt;}
.y14c{bottom:853.573333pt;}
.yaf{bottom:853.893333pt;}
.y52{bottom:854.853333pt;}
.y89{bottom:862.853333pt;}
.y71{bottom:864.293333pt;}
.y7{bottom:865.093333pt;}
.y2f{bottom:872.293333pt;}
.y14a{bottom:874.373333pt;}
.yae{bottom:879.173333pt;}
.ycb{bottom:880.293333pt;}
.y51{bottom:888.293333pt;}
.y70{bottom:889.573333pt;}
.y2e{bottom:897.573333pt;}
.y6{bottom:900.613333pt;}
.y104{bottom:905.573333pt;}
.yad{bottom:912.453333pt;}
.y50{bottom:913.573333pt;}
.y6f{bottom:914.853333pt;}
.y149{bottom:919.813333pt;}
.y2d{bottom:922.853333pt;}
.yd0{bottom:930.853333pt;}
.y5{bottom:936.133333pt;}
.yac{bottom:937.733333pt;}
.y4f{bottom:938.853333pt;}
.y2c{bottom:948.133333pt;}
.ycf{bottom:956.133333pt;}
.yab{bottom:963.013333pt;}
.y2{bottom:963.173333pt;}
.y4e{bottom:964.133333pt;}
.y1{bottom:977.093333pt;}
.y2b{bottom:981.093333pt;}
.y6e{bottom:981.413333pt;}
.yaa{bottom:988.293333pt;}
.y4d{bottom:989.413333pt;}
.ya9{bottom:1013.733333pt;}
.y6d{bottom:1014.373333pt;}
.y2a{bottom:1014.720000pt;}
.y25{bottom:1062.080000pt;}
.h19{height:13.746667pt;}
.h21{height:13.760000pt;}
.h1f{height:13.778667pt;}
.h20{height:13.780000pt;}
.h1d{height:13.906667pt;}
.h22{height:13.920000pt;}
.h2f{height:15.346667pt;}
.h2c{height:15.360000pt;}
.h2e{height:15.386667pt;}
.h24{height:15.986667pt;}
.h28{height:16.000000pt;}
.h27{height:16.020000pt;}
.h29{height:16.026667pt;}
.h15{height:17.586667pt;}
.he{height:17.600000pt;}
.h14{height:17.626667pt;}
.h17{height:17.746667pt;}
.h11{height:17.760000pt;}
.h26{height:20.466667pt;}
.h9{height:23.998667pt;}
.h23{height:27.538667pt;}
.h1b{height:27.666667pt;}
.h2d{height:33.479951pt;}
.h10{height:36.000000pt;}
.h2b{height:37.477557pt;}
.h2{height:40.163750pt;}
.h2a{height:41.426667pt;}
.h1c{height:42.066667pt;}
.h1e{height:42.098667pt;}
.h25{height:45.106667pt;}
.h1a{height:47.109375pt;}
.h3{height:52.134375pt;}
.hc{height:52.785000pt;}
.hf{height:53.535000pt;}
.h16{height:54.226667pt;}
.h13{height:54.266667pt;}
.h8{height:57.758750pt;}
.h6{height:57.787500pt;}
.hb{height:58.736250pt;}
.h7{height:59.340000pt;}
.hd{height:60.519362pt;}
.ha{height:61.295000pt;}
.h5{height:62.812500pt;}
.h30{height:63.293125pt;}
.h18{height:63.311250pt;}
.h4{height:64.500000pt;}
.h12{height:109.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:30.578667pt;}
.w21{width:30.710667pt;}
.w12{width:68.320000pt;}
.w7{width:70.418667pt;}
.w14{width:73.106667pt;}
.w25{width:75.698667pt;}
.w5{width:77.440000pt;}
.w1c{width:78.066667pt;}
.w2a{width:80.672000pt;}
.w13{width:80.832000pt;}
.wc{width:81.632000pt;}
.w1f{width:84.640000pt;}
.w2c{width:84.786667pt;}
.w1a{width:84.800000pt;}
.w1e{width:84.826667pt;}
.w26{width:85.106667pt;}
.w27{width:85.146667pt;}
.w24{width:85.152000pt;}
.w1b{width:86.432000pt;}
.w17{width:87.040000pt;}
.wb{width:90.400000pt;}
.w2b{width:91.538667pt;}
.w16{width:93.786667pt;}
.w22{width:94.418667pt;}
.w1d{width:95.698667pt;}
.w15{width:96.178667pt;}
.w23{width:104.000000pt;}
.we{width:106.386667pt;}
.wf{width:111.066667pt;}
.w9{width:112.950667pt;}
.w2f{width:114.738667pt;}
.wd{width:123.378667pt;}
.w6{width:145.306667pt;}
.w11{width:159.377333pt;}
.w19{width:175.265333pt;}
.w3{width:180.026667pt;}
.w29{width:221.297333pt;}
.w2e{width:236.346667pt;}
.w4{width:294.466667pt;}
.w2d{width:351.266667pt;}
.w2{width:420.240000pt;}
.w20{width:562.040000pt;}
.w28{width:637.560000pt;}
.w8{width:657.720000pt;}
.w10{width:662.520000pt;}
.w18{width:691.358667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:4.630667pt;}
.x26{left:5.760000pt;}
.x1a{left:6.880000pt;}
.x39{left:7.986667pt;}
.x50{left:9.106667pt;}
.x66{left:11.386667pt;}
.x4c{left:12.320000pt;}
.x24{left:13.746667pt;}
.x2b{left:15.026667pt;}
.x5a{left:16.480000pt;}
.x2e{left:17.760000pt;}
.x46{left:19.986667pt;}
.x3e{left:21.760000pt;}
.x4e{left:22.880000pt;}
.x32{left:24.506667pt;}
.x52{left:25.786667pt;}
.x47{left:27.040000pt;}
.x31{left:28.666667pt;}
.x2f{left:30.560000pt;}
.x29{left:31.520000pt;}
.x42{left:33.426667pt;}
.x5e{left:35.520000pt;}
.x27{left:36.800000pt;}
.x2c{left:38.226667pt;}
.x45{left:40.000000pt;}
.x48{left:41.440000pt;}
.x1d{left:43.546667pt;}
.x55{left:45.786667pt;}
.x1e{left:50.266667pt;}
.x34{left:52.800000pt;}
.x1f{left:56.826667pt;}
.x49{left:60.641333pt;}
.x38{left:61.626667pt;}
.x76{left:62.560000pt;}
.x19{left:66.080000pt;}
.x37{left:67.546667pt;}
.x36{left:68.960000pt;}
.x3a{left:73.626667pt;}
.x3b{left:75.081333pt;}
.x21{left:77.481333pt;}
.x6e{left:80.960000pt;}
.x35{left:85.746667pt;}
.x5f{left:87.561333pt;}
.x75{left:95.040000pt;}
.x6a{left:97.905333pt;}
.x10{left:106.281333pt;}
.x61{left:108.945333pt;}
.x2{left:113.472000pt;}
.x6f{left:116.320000pt;}
.x68{left:119.025333pt;}
.x5{left:121.952000pt;}
.x3{left:123.232000pt;}
.x56{left:125.321333pt;}
.x6b{left:129.625333pt;}
.x69{left:130.745333pt;}
.x73{left:131.866667pt;}
.x67{left:134.265333pt;}
.x71{left:135.546667pt;}
.x14{left:137.466667pt;}
.x6c{left:141.305333pt;}
.x74{left:142.426667pt;}
.x72{left:146.106667pt;}
.x16{left:151.226667pt;}
.x77{left:153.786667pt;}
.x58{left:156.360000pt;}
.x13{left:158.106667pt;}
.x15{left:161.466667pt;}
.x23{left:190.600000pt;}
.x57{left:197.625333pt;}
.x25{left:221.346667pt;}
.x6d{left:230.786667pt;}
.x3d{left:235.106667pt;}
.x4b{left:236.066667pt;}
.x3c{left:245.785333pt;}
.x59{left:251.106667pt;}
.x60{left:252.025333pt;}
.x22{left:257.945333pt;}
.x18{left:259.106667pt;}
.xe{left:262.786667pt;}
.x4a{left:264.225333pt;}
.x9{left:269.026667pt;}
.x3f{left:304.066667pt;}
.x62{left:309.026667pt;}
.x28{left:311.906667pt;}
.x4d{left:321.186667pt;}
.x20{left:326.466667pt;}
.xc{left:333.506667pt;}
.x1b{left:337.186667pt;}
.xf{left:343.906667pt;}
.xa{left:345.026667pt;}
.x8{left:349.666667pt;}
.x5b{left:355.426667pt;}
.xd{left:362.973333pt;}
.xb{left:366.973333pt;}
.x40{left:385.546667pt;}
.x63{left:390.026667pt;}
.x2a{left:393.866667pt;}
.x4{left:406.333333pt;}
.x4f{left:407.946667pt;}
.x11{left:413.052000pt;}
.x5c{left:440.906667pt;}
.x41{left:459.306667pt;}
.x64{left:463.466667pt;}
.x70{left:467.306667pt;}
.x1c{left:483.146667pt;}
.x51{left:486.346667pt;}
.x2d{left:517.413333pt;}
.x12{left:526.533333pt;}
.x43{left:556.133333pt;}
.x53{left:582.213333pt;}
.x7{left:594.213333pt;}
.x6{left:596.773333pt;}
.x5d{left:602.213333pt;}
.x30{left:624.133333pt;}
.x65{left:640.293333pt;}
.x44{left:650.560000pt;}
.x54{left:667.360000pt;}
.x17{left:696.160000pt;}
.x1{left:699.360000pt;}
}




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