
    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_5e46a934f2b91852610c1cf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a2d12a9bdb0436ce3960da97.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd79be28837b950eb231ae95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_23201b54cbb2955f4a56fcc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_c3aa731a90d01caac1558c8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e61f6c1e58caf20e64eda59e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4580dcfadcdc8d95f62c64bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-21.660000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.660000px;}
.lsf{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.lse{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls11{letter-spacing:15.720000px;}
.ls10{letter-spacing:45.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.384000px;}
.ws6{word-spacing:-15.540000px;}
.ws9{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.880000px;}
.wsa{word-spacing:-13.800000px;}
.ws5{word-spacing:-12.900000px;}
.ws0{word-spacing:-11.136000px;}
.ws8{word-spacing:-9.900000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-2.214000px;}
._0{margin-left:-1.056000px;}
._1{width:1.314000px;}
._d{width:2.364000px;}
._9{width:3.408000px;}
._b{width:5.340000px;}
._c{width:7.200000px;}
._6{width:9.000000px;}
._7{width:10.044000px;}
._a{width:11.604000px;}
._5{width:12.792000px;}
._4{width:13.896000px;}
._14{width:15.102000px;}
._10{width:16.740000px;}
._11{width:18.420000px;}
._f{width:20.160000px;}
._e{width:21.336000px;}
._15{width:23.580000px;}
._12{width:48.102000px;}
._13{width:147.852000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.yd7{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.285000px;}
.y3f{bottom:3.300000px;}
.ye2{bottom:3.315000px;}
.y111{bottom:3.330000px;}
.ye0{bottom:3.345000px;}
.yd4{bottom:3.585000px;}
.yb7{bottom:3.600000px;}
.ye7{bottom:3.615000px;}
.y1b0{bottom:3.630000px;}
.yf4{bottom:3.645000px;}
.yf{bottom:3.915000px;}
.y185{bottom:4.500000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y183{bottom:6.300000px;}
.y18f{bottom:6.615000px;}
.y17a{bottom:6.900000px;}
.y17c{bottom:7.200000px;}
.y178{bottom:7.500000px;}
.y18c{bottom:8.415000px;}
.y189{bottom:8.745000px;}
.y18a{bottom:9.000000px;}
.yb9{bottom:9.630000px;}
.yb5{bottom:9.900000px;}
.yb1{bottom:10.800000px;}
.y6c{bottom:11.685000px;}
.y62{bottom:11.700000px;}
.y5f{bottom:11.715000px;}
.y73{bottom:11.730000px;}
.y64{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.yb3{bottom:13.200000px;}
.ycf{bottom:17.100000px;}
.yc5{bottom:20.700000px;}
.y1a2{bottom:20.715000px;}
.y3e{bottom:22.800000px;}
.y177{bottom:24.585000px;}
.yc7{bottom:34.500000px;}
.y3d{bottom:37.500000px;}
.y12b{bottom:37.815000px;}
.y4{bottom:46.800000px;}
.y3c{bottom:54.600000px;}
.y1{bottom:57.037500px;}
.y3b{bottom:72.000000px;}
.y41{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3a{bottom:89.100000px;}
.y39{bottom:106.500000px;}
.yd0{bottom:110.137500px;}
.y30{bottom:119.137500px;}
.y93{bottom:120.037500px;}
.y11e{bottom:121.537500px;}
.y1df{bottom:123.337500px;}
.y38{bottom:123.600000px;}
.y1b3{bottom:123.637500px;}
.y175{bottom:126.337500px;}
.yce{bottom:127.537500px;}
.y5b{bottom:128.737500px;}
.y2f{bottom:136.237500px;}
.y92{bottom:137.437500px;}
.y11d{bottom:138.937500px;}
.y1b2{bottom:140.737500px;}
.y37{bottom:141.000000px;}
.y174{bottom:143.737500px;}
.ycd{bottom:145.537500px;}
.y146{bottom:149.137500px;}
.y5a{bottom:149.437500px;}
.y2e{bottom:153.630000px;}
.y91{bottom:154.545000px;}
.y11c{bottom:156.045000px;}
.y1de{bottom:157.830000px;}
.y1b1{bottom:158.130000px;}
.y36{bottom:158.145000px;}
.y173{bottom:160.830000px;}
.ycc{bottom:162.630000px;}
.y59{bottom:170.145000px;}
.y2d{bottom:170.745000px;}
.y11b{bottom:171.330000px;}
.y90{bottom:171.930000px;}
.y1af{bottom:175.245000px;}
.y35{bottom:175.545000px;}
.y145{bottom:177.345000px;}
.y172{bottom:178.275000px;}
.ycb{bottom:180.675000px;}
.y11a{bottom:188.775000px;}
.y8f{bottom:189.075000px;}
.y58{bottom:190.875000px;}
.y1dd{bottom:192.375000px;}
.y34{bottom:192.645000px;}
.y1ae{bottom:192.675000px;}
.y171{bottom:195.375000px;}
.yca{bottom:198.075000px;}
.y2c{bottom:199.875000px;}
.y144{bottom:205.575000px;}
.y8e{bottom:206.475000px;}
.y119{bottom:206.775000px;}
.y1ad{bottom:209.775000px;}
.y33{bottom:210.045000px;}
.y57{bottom:211.575000px;}
.y170{bottom:212.775000px;}
.yc9{bottom:215.175000px;}
.y2b{bottom:217.275000px;}
.y8d{bottom:223.575000px;}
.y118{bottom:223.875000px;}
.y1dc{bottom:226.875000px;}
.y1ac{bottom:227.175000px;}
.y32{bottom:227.730000px;}
.y16f{bottom:230.475000px;}
.y56{bottom:232.275000px;}
.yc8{bottom:232.575000px;}
.y143{bottom:233.775000px;}
.y2a{bottom:234.675000px;}
.y8c{bottom:240.975000px;}
.y117{bottom:241.275000px;}
.y1ab{bottom:244.275000px;}
.yc6{bottom:249.675000px;}
.y29{bottom:251.775000px;}
.y55{bottom:252.375000px;}
.y8b{bottom:258.075000px;}
.y116{bottom:258.375000px;}
.y1db{bottom:261.375000px;}
.y1aa{bottom:261.675000px;}
.y142{bottom:261.975000px;}
.y16e{bottom:262.275000px;}
.y28{bottom:269.175000px;}
.y54{bottom:269.775000px;}
.y8a{bottom:275.475000px;}
.y115{bottom:275.775000px;}
.y1a9{bottom:278.775000px;}
.y16d{bottom:279.975000px;}
.yc4{bottom:285.675000px;}
.y27{bottom:286.275000px;}
.y53{bottom:286.875000px;}
.y141{bottom:290.175000px;}
.y114{bottom:292.875000px;}
.y89{bottom:293.175000px;}
.y1da{bottom:295.875000px;}
.y1a8{bottom:296.175000px;}
.y16c{bottom:297.075000px;}
.y52{bottom:304.275000px;}
.y113{bottom:310.275000px;}
.y88{bottom:312.675000px;}
.y1a7{bottom:313.275000px;}
.y26{bottom:315.375000px;}
.y140{bottom:318.375000px;}
.y51{bottom:321.375000px;}
.y16b{bottom:326.175000px;}
.y87{bottom:327.075000px;}
.y112{bottom:327.375000px;}
.y1d9{bottom:330.375000px;}
.y1a6{bottom:330.675000px;}
.y25{bottom:332.775000px;}
.yc3{bottom:333.075000px;}
.y50{bottom:338.775000px;}
.y16a{bottom:343.575000px;}
.y86{bottom:344.475000px;}
.y110{bottom:344.775000px;}
.y13f{bottom:346.620000px;}
.y1a5{bottom:347.820000px;}
.y24{bottom:350.205000px;}
.yc2{bottom:353.820000px;}
.y4f{bottom:356.505000px;}
.y169{bottom:361.005000px;}
.y85{bottom:361.605000px;}
.y10f{bottom:361.905000px;}
.y1d8{bottom:364.905000px;}
.y1a4{bottom:365.205000px;}
.y23{bottom:367.320000px;}
.yc1{bottom:373.320000px;}
.y4e{bottom:376.620000px;}
.y84{bottom:378.105000px;}
.y13e{bottom:378.705000px;}
.y10e{bottom:379.320000px;}
.y1a3{bottom:382.320000px;}
.y22{bottom:384.705000px;}
.yc0{bottom:388.005000px;}
.y168{bottom:389.820000px;}
.y4d{bottom:390.420000px;}
.y83{bottom:392.820000px;}
.y13d{bottom:396.120000px;}
.y10d{bottom:396.405000px;}
.y1d7{bottom:399.420000px;}
.y1a1{bottom:401.205000px;}
.y21{bottom:401.820000px;}
.ybf{bottom:405.120000px;}
.y167{bottom:407.505000px;}
.y82{bottom:409.920000px;}
.y13c{bottom:413.505000px;}
.y10c{bottom:413.820000px;}
.y1d6{bottom:416.820000px;}
.y20{bottom:419.205000px;}
.ybe{bottom:422.505000px;}
.y166{bottom:424.620000px;}
.y81{bottom:427.620000px;}
.y10b{bottom:430.905000px;}
.y1d5{bottom:433.920000px;}
.y1f{bottom:436.920000px;}
.ybd{bottom:440.205000px;}
.y165{bottom:442.005000px;}
.y13b{bottom:442.320000px;}
.y1a0{bottom:444.120000px;}
.y80{bottom:447.120000px;}
.y10a{bottom:448.320000px;}
.y1d4{bottom:451.320000px;}
.y1e{bottom:457.005000px;}
.y164{bottom:459.120000px;}
.ybc{bottom:459.705000px;}
.y13a{bottom:460.005000px;}
.y7f{bottom:461.820000px;}
.y19f{bottom:464.820000px;}
.y109{bottom:465.405000px;}
.y1d3{bottom:468.420000px;}
.ybb{bottom:474.120000px;}
.y139{bottom:477.120000px;}
.y7e{bottom:478.920000px;}
.y108{bottom:484.320000px;}
.y1d2{bottom:485.820000px;}
.y163{bottom:488.205000px;}
.yba{bottom:490.320000px;}
.y138{bottom:492.405000px;}
.y19e{bottom:493.620000px;}
.y7d{bottom:496.320000px;}
.y1d1{bottom:502.920000px;}
.y162{bottom:505.605000px;}
.yb8{bottom:509.820000px;}
.y19d{bottom:511.320000px;}
.y7c{bottom:514.050000px;}
.y107{bottom:514.350000px;}
.y1d0{bottom:520.350000px;}
.y161{bottom:523.050000px;}
.y31{bottom:527.550000px;}
.y137{bottom:527.850000px;}
.y19c{bottom:528.450000px;}
.yb6{bottom:533.250000px;}
.y7b{bottom:533.550000px;}
.y106{bottom:535.050000px;}
.y1cf{bottom:537.450000px;}
.y160{bottom:540.150000px;}
.y136{bottom:544.950000px;}
.y19b{bottom:545.850000px;}
.y7a{bottom:547.950000px;}
.yb4{bottom:550.650000px;}
.y1ce{bottom:554.850000px;}
.y105{bottom:555.450000px;}
.y15f{bottom:557.550000px;}
.y135{bottom:562.350000px;}
.y19a{bottom:562.950000px;}
.y79{bottom:565.350000px;}
.y1cd{bottom:571.950000px;}
.y104{bottom:572.550000px;}
.yb2{bottom:574.350000px;}
.y134{bottom:579.450000px;}
.y199{bottom:580.350000px;}
.y78{bottom:582.450000px;}
.y15e{bottom:586.350000px;}
.y103{bottom:587.850000px;}
.y1cc{bottom:589.650000px;}
.y133{bottom:596.850000px;}
.y77{bottom:599.850000px;}
.yb0{bottom:601.350000px;}
.y15d{bottom:604.050000px;}
.y102{bottom:605.250000px;}
.y198{bottom:606.150000px;}
.y1cb{bottom:610.050000px;}
.y76{bottom:616.950000px;}
.y15c{bottom:621.150000px;}
.y101{bottom:623.250000px;}
.y197{bottom:623.850000px;}
.y1ca{bottom:627.150000px;}
.yaf{bottom:628.350000px;}
.y132{bottom:631.350000px;}
.y75{bottom:634.650000px;}
.y15b{bottom:638.550000px;}
.y100{bottom:640.350000px;}
.y196{bottom:640.950000px;}
.y1c9{bottom:644.850000px;}
.y131{bottom:648.450000px;}
.yae{bottom:649.350000px;}
.y74{bottom:655.350000px;}
.y15a{bottom:655.950000px;}
.yff{bottom:657.750000px;}
.y195{bottom:658.350000px;}
.yad{bottom:660.150000px;}
.y1c8{bottom:664.350000px;}
.y130{bottom:665.850000px;}
.y72{bottom:673.050000px;}
.yfe{bottom:674.850000px;}
.y194{bottom:675.450000px;}
.y1c7{bottom:679.050000px;}
.y159{bottom:679.650000px;}
.yac{bottom:680.550000px;}
.y12f{bottom:682.980000px;}
.yfd{bottom:692.280000px;}
.y1c6{bottom:696.195000px;}
.yab{bottom:697.695000px;}
.y71{bottom:699.480000px;}
.y12e{bottom:700.380000px;}
.y193{bottom:701.580000px;}
.y158{bottom:703.980000px;}
.yfc{bottom:709.380000px;}
.y1c5{bottom:713.580000px;}
.yaa{bottom:715.080000px;}
.y12d{bottom:717.480000px;}
.y192{bottom:718.995000px;}
.y70{bottom:726.195000px;}
.yfb{bottom:726.780000px;}
.y1f0{bottom:727.080000px;}
.y157{bottom:727.695000px;}
.y1c4{bottom:731.280000px;}
.ya9{bottom:732.195000px;}
.y12c{bottom:734.880000px;}
.y191{bottom:736.380000px;}
.yfa{bottom:743.880000px;}
.y1ef{bottom:744.495000px;}
.ya8{bottom:749.595000px;}
.y190{bottom:750.795000px;}
.y156{bottom:751.395000px;}
.y6f{bottom:752.880000px;}
.y18e{bottom:754.980000px;}
.yf9{bottom:761.280000px;}
.y1ee{bottom:761.595000px;}
.y1c3{bottom:765.195000px;}
.ya7{bottom:766.695000px;}
.y12a{bottom:770.880000px;}
.y155{bottom:774.780000px;}
.y18d{bottom:775.380000px;}
.yf8{bottom:778.395000px;}
.y1ed{bottom:778.980000px;}
.y6e{bottom:779.580000px;}
.y1c2{bottom:782.580000px;}
.ya6{bottom:784.080000px;}
.yf7{bottom:795.795000px;}
.y1ec{bottom:796.080000px;}
.y18b{bottom:796.380000px;}
.y154{bottom:798.480000px;}
.y1c1{bottom:800.295000px;}
.ya5{bottom:801.195000px;}
.y1d{bottom:802.980000px;}
.y6d{bottom:805.980000px;}
.yf6{bottom:812.895000px;}
.y1eb{bottom:813.495000px;}
.ya4{bottom:818.580000px;}
.y1c{bottom:820.080000px;}
.y1c0{bottom:820.395000px;}
.y153{bottom:822.195000px;}
.yf5{bottom:830.295000px;}
.y1ea{bottom:830.580000px;}
.y6b{bottom:832.695000px;}
.ya3{bottom:835.695000px;}
.y1b{bottom:837.495000px;}
.y1bf{bottom:837.795000px;}
.y129{bottom:839.880000px;}
.y188{bottom:841.380000px;}
.y152{bottom:845.880000px;}
.ydf{bottom:846.480000px;}
.yf3{bottom:847.380000px;}
.y1e9{bottom:847.995000px;}
.ya2{bottom:853.125000px;}
.y1be{bottom:854.925000px;}
.y1a{bottom:857.625000px;}
.y6a{bottom:859.425000px;}
.y128{bottom:860.625000px;}
.y187{bottom:863.925000px;}
.yf2{bottom:864.825000px;}
.y1e8{bottom:865.125000px;}
.y151{bottom:869.325000px;}
.yde{bottom:869.625000px;}
.ya1{bottom:870.225000px;}
.y1bd{bottom:872.325000px;}
.y19{bottom:877.425000px;}
.yf1{bottom:881.925000px;}
.y1e7{bottom:882.525000px;}
.y186{bottom:884.025000px;}
.y69{bottom:886.125000px;}
.ya0{bottom:887.625000px;}
.y1bc{bottom:889.425000px;}
.ydd{bottom:892.425000px;}
.y127{bottom:892.725000px;}
.y150{bottom:893.025000px;}
.y18{bottom:896.025000px;}
.y1e6{bottom:899.625000px;}
.yf0{bottom:900.825000px;}
.y9f{bottom:904.725000px;}
.y184{bottom:905.025000px;}
.y1bb{bottom:906.825000px;}
.y126{bottom:910.125000px;}
.y68{bottom:912.525000px;}
.y4c{bottom:912.825000px;}
.y17{bottom:914.625000px;}
.ydc{bottom:915.525000px;}
.y14f{bottom:916.725000px;}
.y1e5{bottom:917.025000px;}
.y9e{bottom:922.125000px;}
.y182{bottom:923.325000px;}
.y1ba{bottom:923.925000px;}
.yef{bottom:930.825000px;}
.y16{bottom:932.325000px;}
.y1e4{bottom:934.125000px;}
.ydb{bottom:938.625000px;}
.y67{bottom:939.225000px;}
.y14e{bottom:940.425000px;}
.y1b9{bottom:941.325000px;}
.y181{bottom:943.425000px;}
.y4b{bottom:946.725000px;}
.y15{bottom:949.425000px;}
.yee{bottom:951.525000px;}
.y9d{bottom:956.625000px;}
.y1b8{bottom:959.025000px;}
.yda{bottom:961.725000px;}
.y14d{bottom:963.825000px;}
.y4a{bottom:964.125000px;}
.y180{bottom:964.425000px;}
.y66{bottom:965.925000px;}
.y14{bottom:966.225000px;}
.y1e3{bottom:968.625000px;}
.yed{bottom:971.025000px;}
.y9c{bottom:973.725000px;}
.y125{bottom:974.025000px;}
.y49{bottom:981.225000px;}
.y13{bottom:982.125000px;}
.yd9{bottom:984.525000px;}
.y17f{bottom:985.425000px;}
.yec{bottom:985.725000px;}
.y1e2{bottom:986.025000px;}
.y14c{bottom:987.525000px;}
.y1b7{bottom:990.825000px;}
.y9b{bottom:991.125000px;}
.y65{bottom:992.625000px;}
.y48{bottom:998.625000px;}
.y12{bottom:999.825000px;}
.yeb{bottom:1002.825000px;}
.y1e1{bottom:1003.125000px;}
.y17e{bottom:1006.125000px;}
.yd8{bottom:1007.625000px;}
.y9a{bottom:1008.225000px;}
.y124{bottom:1008.525000px;}
.y14b{bottom:1011.225000px;}
.y47{bottom:1015.725000px;}
.y63{bottom:1019.070000px;}
.yea{bottom:1020.255000px;}
.y11{bottom:1020.570000px;}
.y99{bottom:1025.670000px;}
.y17d{bottom:1027.170000px;}
.yd6{bottom:1030.770000px;}
.y46{bottom:1033.170000px;}
.y14a{bottom:1034.955000px;}
.ye9{bottom:1036.755000px;}
.y123{bottom:1037.370000px;}
.y1e0{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y98{bottom:1042.755000px;}
.y1b6{bottom:1043.070000px;}
.y61{bottom:1045.755000px;}
.y17b{bottom:1048.170000px;}
.y45{bottom:1050.870000px;}
.ye8{bottom:1051.170000px;}
.yd5{bottom:1053.870000px;}
.y122{bottom:1055.070000px;}
.y149{bottom:1058.370000px;}
.y97{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.ye6{bottom:1066.455000px;}
.yb{bottom:1068.255000px;}
.y179{bottom:1069.170000px;}
.y44{bottom:1071.570000px;}
.y121{bottom:1072.170000px;}
.y60{bottom:1072.455000px;}
.yd3{bottom:1076.670000px;}
.y96{bottom:1077.255000px;}
.y1b5{bottom:1077.570000px;}
.y148{bottom:1082.955000px;}
.ya{bottom:1083.570000px;}
.ye5{bottom:1083.855000px;}
.y120{bottom:1089.570000px;}
.y176{bottom:1091.370000px;}
.y95{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.y5e{bottom:1099.155000px;}
.yd1{bottom:1100.670000px;}
.ye4{bottom:1101.855000px;}
.y43{bottom:1106.370000px;}
.y11f{bottom:1106.670000px;}
.y94{bottom:1111.755000px;}
.y8{bottom:1115.670000px;}
.y147{bottom:1117.455000px;}
.ye3{bottom:1118.970000px;}
.y1b4{bottom:1123.755000px;}
.y42{bottom:1124.070000px;}
.y5d{bottom:1127.070000px;}
.y7{bottom:1133.670000px;}
.ye1{bottom:1136.355000px;}
.y5c{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h27{height:17.085000px;}
.h1a{height:17.100000px;}
.h28{height:17.137500px;}
.h26{height:17.385000px;}
.h1e{height:17.400000px;}
.h21{height:17.437500px;}
.h36{height:18.300000px;}
.h35{height:20.100000px;}
.h39{height:20.400000px;}
.h31{height:20.685000px;}
.h34{height:20.700000px;}
.h15{height:20.947266px;}
.h32{height:20.985000px;}
.ha{height:21.000000px;}
.h33{height:21.037500px;}
.h19{height:21.166992px;}
.h38{height:22.200000px;}
.h2b{height:22.500000px;}
.h37{height:22.537500px;}
.h24{height:22.800000px;}
.h23{height:23.100000px;}
.h25{height:23.137500px;}
.h2c{height:23.400000px;}
.h1f{height:23.437500px;}
.h2e{height:23.685000px;}
.h1d{height:23.700000px;}
.h2d{height:23.737500px;}
.h22{height:24.000000px;}
.h1b{height:24.600000px;}
.h16{height:25.800000px;}
.h18{height:25.837500px;}
.h17{height:26.100000px;}
.h1c{height:27.000000px;}
.h14{height:33.515625px;}
.h7{height:33.867188px;}
.h20{height:34.500000px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.h30{height:38.400000px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h3b{height:43.681641px;}
.h13{height:44.507812px;}
.h3a{height:49.310391px;}
.h10{height:49.453125px;}
.he{height:50.273438px;}
.h6{height:50.800781px;}
.h29{height:51.600000px;}
.hb{height:51.996094px;}
.h2f{height:54.239063px;}
.h2a{height:54.299062px;}
.hf{height:59.677734px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h11{height:244.545000px;}
.h0{height:1263.000000px;}
.w2b{width:67.237500px;}
.w27{width:69.337500px;}
.w4{width:72.300000px;}
.wb{width:77.400000px;}
.w20{width:78.937500px;}
.w28{width:82.837500px;}
.w1a{width:98.137500px;}
.w21{width:100.537500px;}
.w2a{width:101.100000px;}
.w29{width:101.437500px;}
.w26{width:104.400000px;}
.w24{width:104.437500px;}
.w23{width:105.637500px;}
.w3{width:108.000000px;}
.w30{width:108.037500px;}
.w8{width:108.637500px;}
.w1b{width:110.137500px;}
.w25{width:111.337500px;}
.w1e{width:114.037500px;}
.w22{width:121.237500px;}
.w2d{width:121.537500px;}
.w12{width:121.837500px;}
.w10{width:127.237500px;}
.w19{width:129.037500px;}
.w14{width:131.737500px;}
.w1c{width:133.537500px;}
.w2f{width:135.037500px;}
.w18{width:147.937500px;}
.w2c{width:148.237500px;}
.w2e{width:148.537500px;}
.w1d{width:150.345000px;}
.w11{width:162.375000px;}
.wf{width:165.645000px;}
.w15{width:180.045000px;}
.w1f{width:193.245000px;}
.wa{width:223.575000px;}
.wd{width:223.875000px;}
.w17{width:229.575000px;}
.w9{width:249.075000px;}
.w16{width:249.675000px;}
.w13{width:252.420000px;}
.w6{width:252.975000px;}
.wc{width:437.850000px;}
.we{width:438.150000px;}
.w5{width:483.450000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.800000px;}
.x3f{left:9.000000px;}
.x2{left:10.799998px;}
.x41{left:12.600000px;}
.x39{left:14.100000px;}
.x11{left:16.200000px;}
.x3b{left:17.400000px;}
.x49{left:19.200000px;}
.x58{left:20.385000px;}
.x3{left:22.200000px;}
.x2e{left:23.730000px;}
.x48{left:25.800000px;}
.x4{left:27.600000px;}
.x3c{left:29.100000px;}
.x4c{left:30.300000px;}
.x4a{left:31.800000px;}
.x2c{left:33.330000px;}
.x37{left:34.800000px;}
.x32{left:36.030000px;}
.x3d{left:37.500000px;}
.x4f{left:39.600000px;}
.x2d{left:40.815000px;}
.x22{left:43.800000px;}
.x47{left:45.300000px;}
.x4e{left:47.400000px;}
.x33{left:48.600000px;}
.x46{left:50.700000px;}
.x2b{left:52.200000px;}
.x2a{left:54.600000px;}
.x31{left:56.100000px;}
.x26{left:57.900000px;}
.x24{left:61.215000px;}
.x29{left:65.400000px;}
.x30{left:68.430000px;}
.x4d{left:72.907500px;}
.x2f{left:76.500000px;}
.xc{left:78.337500px;}
.x4b{left:79.492500px;}
.x1{left:81.037487px;}
.x10{left:83.137500px;}
.x27{left:90.315000px;}
.x25{left:97.830000px;}
.x28{left:102.330000px;}
.x5c{left:108.037487px;}
.x1a{left:113.437487px;}
.xf{left:116.445000px;}
.x19{left:136.537487px;}
.xa{left:153.629987px;}
.x20{left:168.645000px;}
.x50{left:185.775000px;}
.x36{left:210.375000px;}
.x56{left:229.575000px;}
.xd{left:241.567500px;}
.x1d{left:246.975000px;}
.x16{left:267.375000px;}
.x40{left:274.575000px;}
.x51{left:297.120000px;}
.x1b{left:304.920000px;}
.x38{left:308.520000px;}
.x13{left:321.119987px;}
.x34{left:331.020000px;}
.x57{left:351.120000px;}
.x42{left:353.520000px;}
.x7{left:363.419987px;}
.x1e{left:374.220000px;}
.x18{left:376.920000px;}
.x1c{left:382.320000px;}
.x5{left:388.619987px;}
.x52{left:401.520000px;}
.x3a{left:418.650000px;}
.x21{left:421.050000px;}
.x15{left:446.549987px;}
.x43{left:454.050000px;}
.x53{left:470.850000px;}
.x59{left:499.650000px;}
.x1f{left:536.595000px;}
.x23{left:552.780000px;}
.x35{left:560.595000px;}
.xe{left:561.780000px;}
.x12{left:568.694987px;}
.x44{left:575.280000px;}
.x9{left:616.379987px;}
.x5a{left:634.695000px;}
.x8{left:648.194987px;}
.x54{left:655.125000px;}
.x6{left:696.524987px;}
.x3e{left:702.525000px;}
.x45{left:704.325000px;}
.x5b{left:742.725000px;}
.x14{left:755.024987px;}
.x55{left:756.225000px;}
.xb{left:812.369987px;}
@media print{
.v3{vertical-align:-19.253333pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.253333pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.lse{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls11{letter-spacing:13.973333pt;}
.ls10{letter-spacing:40.640000pt;}
.ws2{word-spacing:-16.341333pt;}
.ws6{word-spacing:-13.813333pt;}
.ws9{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.226667pt;}
.wsa{word-spacing:-12.266667pt;}
.ws5{word-spacing:-11.466667pt;}
.ws0{word-spacing:-9.898667pt;}
.ws8{word-spacing:-8.800000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-1.968000pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.168000pt;}
._d{width:2.101333pt;}
._9{width:3.029333pt;}
._b{width:4.746667pt;}
._c{width:6.400000pt;}
._6{width:8.000000pt;}
._7{width:8.928000pt;}
._a{width:10.314667pt;}
._5{width:11.370667pt;}
._4{width:12.352000pt;}
._14{width:13.424000pt;}
._10{width:14.880000pt;}
._11{width:16.373333pt;}
._f{width:17.920000pt;}
._e{width:18.965333pt;}
._15{width:20.960000pt;}
._12{width:42.757333pt;}
._13{width:131.424000pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.yd7{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:2.920000pt;}
.y3f{bottom:2.933333pt;}
.ye2{bottom:2.946667pt;}
.y111{bottom:2.960000pt;}
.ye0{bottom:2.973333pt;}
.yd4{bottom:3.186667pt;}
.yb7{bottom:3.200000pt;}
.ye7{bottom:3.213333pt;}
.y1b0{bottom:3.226667pt;}
.yf4{bottom:3.240000pt;}
.yf{bottom:3.480000pt;}
.y185{bottom:4.000000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y183{bottom:5.600000pt;}
.y18f{bottom:5.880000pt;}
.y17a{bottom:6.133333pt;}
.y17c{bottom:6.400000pt;}
.y178{bottom:6.666667pt;}
.y18c{bottom:7.480000pt;}
.y189{bottom:7.773333pt;}
.y18a{bottom:8.000000pt;}
.yb9{bottom:8.560000pt;}
.yb5{bottom:8.800000pt;}
.yb1{bottom:9.600000pt;}
.y6c{bottom:10.386667pt;}
.y62{bottom:10.400000pt;}
.y5f{bottom:10.413333pt;}
.y73{bottom:10.426667pt;}
.y64{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.yb3{bottom:11.733333pt;}
.ycf{bottom:15.200000pt;}
.yc5{bottom:18.400000pt;}
.y1a2{bottom:18.413333pt;}
.y3e{bottom:20.266667pt;}
.y177{bottom:21.853333pt;}
.yc7{bottom:30.666667pt;}
.y3d{bottom:33.333333pt;}
.y12b{bottom:33.613333pt;}
.y4{bottom:41.600000pt;}
.y3c{bottom:48.533333pt;}
.y1{bottom:50.700000pt;}
.y3b{bottom:64.000000pt;}
.y41{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:79.200000pt;}
.y39{bottom:94.666667pt;}
.yd0{bottom:97.900000pt;}
.y30{bottom:105.900000pt;}
.y93{bottom:106.700000pt;}
.y11e{bottom:108.033333pt;}
.y1df{bottom:109.633333pt;}
.y38{bottom:109.866667pt;}
.y1b3{bottom:109.900000pt;}
.y175{bottom:112.300000pt;}
.yce{bottom:113.366667pt;}
.y5b{bottom:114.433333pt;}
.y2f{bottom:121.100000pt;}
.y92{bottom:122.166667pt;}
.y11d{bottom:123.500000pt;}
.y1b2{bottom:125.100000pt;}
.y37{bottom:125.333333pt;}
.y174{bottom:127.766667pt;}
.ycd{bottom:129.366667pt;}
.y146{bottom:132.566667pt;}
.y5a{bottom:132.833333pt;}
.y2e{bottom:136.560000pt;}
.y91{bottom:137.373333pt;}
.y11c{bottom:138.706667pt;}
.y1de{bottom:140.293333pt;}
.y1b1{bottom:140.560000pt;}
.y36{bottom:140.573333pt;}
.y173{bottom:142.960000pt;}
.ycc{bottom:144.560000pt;}
.y59{bottom:151.240000pt;}
.y2d{bottom:151.773333pt;}
.y11b{bottom:152.293333pt;}
.y90{bottom:152.826667pt;}
.y1af{bottom:155.773333pt;}
.y35{bottom:156.040000pt;}
.y145{bottom:157.640000pt;}
.y172{bottom:158.466667pt;}
.ycb{bottom:160.600000pt;}
.y11a{bottom:167.800000pt;}
.y8f{bottom:168.066667pt;}
.y58{bottom:169.666667pt;}
.y1dd{bottom:171.000000pt;}
.y34{bottom:171.240000pt;}
.y1ae{bottom:171.266667pt;}
.y171{bottom:173.666667pt;}
.yca{bottom:176.066667pt;}
.y2c{bottom:177.666667pt;}
.y144{bottom:182.733333pt;}
.y8e{bottom:183.533333pt;}
.y119{bottom:183.800000pt;}
.y1ad{bottom:186.466667pt;}
.y33{bottom:186.706667pt;}
.y57{bottom:188.066667pt;}
.y170{bottom:189.133333pt;}
.yc9{bottom:191.266667pt;}
.y2b{bottom:193.133333pt;}
.y8d{bottom:198.733333pt;}
.y118{bottom:199.000000pt;}
.y1dc{bottom:201.666667pt;}
.y1ac{bottom:201.933333pt;}
.y32{bottom:202.426667pt;}
.y16f{bottom:204.866667pt;}
.y56{bottom:206.466667pt;}
.yc8{bottom:206.733333pt;}
.y143{bottom:207.800000pt;}
.y2a{bottom:208.600000pt;}
.y8c{bottom:214.200000pt;}
.y117{bottom:214.466667pt;}
.y1ab{bottom:217.133333pt;}
.yc6{bottom:221.933333pt;}
.y29{bottom:223.800000pt;}
.y55{bottom:224.333333pt;}
.y8b{bottom:229.400000pt;}
.y116{bottom:229.666667pt;}
.y1db{bottom:232.333333pt;}
.y1aa{bottom:232.600000pt;}
.y142{bottom:232.866667pt;}
.y16e{bottom:233.133333pt;}
.y28{bottom:239.266667pt;}
.y54{bottom:239.800000pt;}
.y8a{bottom:244.866667pt;}
.y115{bottom:245.133333pt;}
.y1a9{bottom:247.800000pt;}
.y16d{bottom:248.866667pt;}
.yc4{bottom:253.933333pt;}
.y27{bottom:254.466667pt;}
.y53{bottom:255.000000pt;}
.y141{bottom:257.933333pt;}
.y114{bottom:260.333333pt;}
.y89{bottom:260.600000pt;}
.y1da{bottom:263.000000pt;}
.y1a8{bottom:263.266667pt;}
.y16c{bottom:264.066667pt;}
.y52{bottom:270.466667pt;}
.y113{bottom:275.800000pt;}
.y88{bottom:277.933333pt;}
.y1a7{bottom:278.466667pt;}
.y26{bottom:280.333333pt;}
.y140{bottom:283.000000pt;}
.y51{bottom:285.666667pt;}
.y16b{bottom:289.933333pt;}
.y87{bottom:290.733333pt;}
.y112{bottom:291.000000pt;}
.y1d9{bottom:293.666667pt;}
.y1a6{bottom:293.933333pt;}
.y25{bottom:295.800000pt;}
.yc3{bottom:296.066667pt;}
.y50{bottom:301.133333pt;}
.y16a{bottom:305.400000pt;}
.y86{bottom:306.200000pt;}
.y110{bottom:306.466667pt;}
.y13f{bottom:308.106667pt;}
.y1a5{bottom:309.173333pt;}
.y24{bottom:311.293333pt;}
.yc2{bottom:314.506667pt;}
.y4f{bottom:316.893333pt;}
.y169{bottom:320.893333pt;}
.y85{bottom:321.426667pt;}
.y10f{bottom:321.693333pt;}
.y1d8{bottom:324.360000pt;}
.y1a4{bottom:324.626667pt;}
.y23{bottom:326.506667pt;}
.yc1{bottom:331.840000pt;}
.y4e{bottom:334.773333pt;}
.y84{bottom:336.093333pt;}
.y13e{bottom:336.626667pt;}
.y10e{bottom:337.173333pt;}
.y1a3{bottom:339.840000pt;}
.y22{bottom:341.960000pt;}
.yc0{bottom:344.893333pt;}
.y168{bottom:346.506667pt;}
.y4d{bottom:347.040000pt;}
.y83{bottom:349.173333pt;}
.y13d{bottom:352.106667pt;}
.y10d{bottom:352.360000pt;}
.y1d7{bottom:355.040000pt;}
.y1a1{bottom:356.626667pt;}
.y21{bottom:357.173333pt;}
.ybf{bottom:360.106667pt;}
.y167{bottom:362.226667pt;}
.y82{bottom:364.373333pt;}
.y13c{bottom:367.560000pt;}
.y10c{bottom:367.840000pt;}
.y1d6{bottom:370.506667pt;}
.y20{bottom:372.626667pt;}
.ybe{bottom:375.560000pt;}
.y166{bottom:377.440000pt;}
.y81{bottom:380.106667pt;}
.y10b{bottom:383.026667pt;}
.y1d5{bottom:385.706667pt;}
.y1f{bottom:388.373333pt;}
.ybd{bottom:391.293333pt;}
.y165{bottom:392.893333pt;}
.y13b{bottom:393.173333pt;}
.y1a0{bottom:394.773333pt;}
.y80{bottom:397.440000pt;}
.y10a{bottom:398.506667pt;}
.y1d4{bottom:401.173333pt;}
.y1e{bottom:406.226667pt;}
.y164{bottom:408.106667pt;}
.ybc{bottom:408.626667pt;}
.y13a{bottom:408.893333pt;}
.y7f{bottom:410.506667pt;}
.y19f{bottom:413.173333pt;}
.y109{bottom:413.693333pt;}
.y1d3{bottom:416.373333pt;}
.ybb{bottom:421.440000pt;}
.y139{bottom:424.106667pt;}
.y7e{bottom:425.706667pt;}
.y108{bottom:430.506667pt;}
.y1d2{bottom:431.840000pt;}
.y163{bottom:433.960000pt;}
.yba{bottom:435.840000pt;}
.y138{bottom:437.693333pt;}
.y19e{bottom:438.773333pt;}
.y7d{bottom:441.173333pt;}
.y1d1{bottom:447.040000pt;}
.y162{bottom:449.426667pt;}
.yb8{bottom:453.173333pt;}
.y19d{bottom:454.506667pt;}
.y7c{bottom:456.933333pt;}
.y107{bottom:457.200000pt;}
.y1d0{bottom:462.533333pt;}
.y161{bottom:464.933333pt;}
.y31{bottom:468.933333pt;}
.y137{bottom:469.200000pt;}
.y19c{bottom:469.733333pt;}
.yb6{bottom:474.000000pt;}
.y7b{bottom:474.266667pt;}
.y106{bottom:475.600000pt;}
.y1cf{bottom:477.733333pt;}
.y160{bottom:480.133333pt;}
.y136{bottom:484.400000pt;}
.y19b{bottom:485.200000pt;}
.y7a{bottom:487.066667pt;}
.yb4{bottom:489.466667pt;}
.y1ce{bottom:493.200000pt;}
.y105{bottom:493.733333pt;}
.y15f{bottom:495.600000pt;}
.y135{bottom:499.866667pt;}
.y19a{bottom:500.400000pt;}
.y79{bottom:502.533333pt;}
.y1cd{bottom:508.400000pt;}
.y104{bottom:508.933333pt;}
.yb2{bottom:510.533333pt;}
.y134{bottom:515.066667pt;}
.y199{bottom:515.866667pt;}
.y78{bottom:517.733333pt;}
.y15e{bottom:521.200000pt;}
.y103{bottom:522.533333pt;}
.y1cc{bottom:524.133333pt;}
.y133{bottom:530.533333pt;}
.y77{bottom:533.200000pt;}
.yb0{bottom:534.533333pt;}
.y15d{bottom:536.933333pt;}
.y102{bottom:538.000000pt;}
.y198{bottom:538.800000pt;}
.y1cb{bottom:542.266667pt;}
.y76{bottom:548.400000pt;}
.y15c{bottom:552.133333pt;}
.y101{bottom:554.000000pt;}
.y197{bottom:554.533333pt;}
.y1ca{bottom:557.466667pt;}
.yaf{bottom:558.533333pt;}
.y132{bottom:561.200000pt;}
.y75{bottom:564.133333pt;}
.y15b{bottom:567.600000pt;}
.y100{bottom:569.200000pt;}
.y196{bottom:569.733333pt;}
.y1c9{bottom:573.200000pt;}
.y131{bottom:576.400000pt;}
.yae{bottom:577.200000pt;}
.y74{bottom:582.533333pt;}
.y15a{bottom:583.066667pt;}
.yff{bottom:584.666667pt;}
.y195{bottom:585.200000pt;}
.yad{bottom:586.800000pt;}
.y1c8{bottom:590.533333pt;}
.y130{bottom:591.866667pt;}
.y72{bottom:598.266667pt;}
.yfe{bottom:599.866667pt;}
.y194{bottom:600.400000pt;}
.y1c7{bottom:603.600000pt;}
.y159{bottom:604.133333pt;}
.yac{bottom:604.933333pt;}
.y12f{bottom:607.093333pt;}
.yfd{bottom:615.360000pt;}
.y1c6{bottom:618.840000pt;}
.yab{bottom:620.173333pt;}
.y71{bottom:621.760000pt;}
.y12e{bottom:622.560000pt;}
.y193{bottom:623.626667pt;}
.y158{bottom:625.760000pt;}
.yfc{bottom:630.560000pt;}
.y1c5{bottom:634.293333pt;}
.yaa{bottom:635.626667pt;}
.y12d{bottom:637.760000pt;}
.y192{bottom:639.106667pt;}
.y70{bottom:645.506667pt;}
.yfb{bottom:646.026667pt;}
.y1f0{bottom:646.293333pt;}
.y157{bottom:646.840000pt;}
.y1c4{bottom:650.026667pt;}
.ya9{bottom:650.840000pt;}
.y12c{bottom:653.226667pt;}
.y191{bottom:654.560000pt;}
.yfa{bottom:661.226667pt;}
.y1ef{bottom:661.773333pt;}
.ya8{bottom:666.306667pt;}
.y190{bottom:667.373333pt;}
.y156{bottom:667.906667pt;}
.y6f{bottom:669.226667pt;}
.y18e{bottom:671.093333pt;}
.yf9{bottom:676.693333pt;}
.y1ee{bottom:676.973333pt;}
.y1c3{bottom:680.173333pt;}
.ya7{bottom:681.506667pt;}
.y12a{bottom:685.226667pt;}
.y155{bottom:688.693333pt;}
.y18d{bottom:689.226667pt;}
.yf8{bottom:691.906667pt;}
.y1ed{bottom:692.426667pt;}
.y6e{bottom:692.960000pt;}
.y1c2{bottom:695.626667pt;}
.ya6{bottom:696.960000pt;}
.yf7{bottom:707.373333pt;}
.y1ec{bottom:707.626667pt;}
.y18b{bottom:707.893333pt;}
.y154{bottom:709.760000pt;}
.y1c1{bottom:711.373333pt;}
.ya5{bottom:712.173333pt;}
.y1d{bottom:713.760000pt;}
.y6d{bottom:716.426667pt;}
.yf6{bottom:722.573333pt;}
.y1eb{bottom:723.106667pt;}
.ya4{bottom:727.626667pt;}
.y1c{bottom:728.960000pt;}
.y1c0{bottom:729.240000pt;}
.y153{bottom:730.840000pt;}
.yf5{bottom:738.040000pt;}
.y1ea{bottom:738.293333pt;}
.y6b{bottom:740.173333pt;}
.ya3{bottom:742.840000pt;}
.y1b{bottom:744.440000pt;}
.y1bf{bottom:744.706667pt;}
.y129{bottom:746.560000pt;}
.y188{bottom:747.893333pt;}
.y152{bottom:751.893333pt;}
.ydf{bottom:752.426667pt;}
.yf3{bottom:753.226667pt;}
.y1e9{bottom:753.773333pt;}
.ya2{bottom:758.333333pt;}
.y1be{bottom:759.933333pt;}
.y1a{bottom:762.333333pt;}
.y6a{bottom:763.933333pt;}
.y128{bottom:765.000000pt;}
.y187{bottom:767.933333pt;}
.yf2{bottom:768.733333pt;}
.y1e8{bottom:769.000000pt;}
.y151{bottom:772.733333pt;}
.yde{bottom:773.000000pt;}
.ya1{bottom:773.533333pt;}
.y1bd{bottom:775.400000pt;}
.y19{bottom:779.933333pt;}
.yf1{bottom:783.933333pt;}
.y1e7{bottom:784.466667pt;}
.y186{bottom:785.800000pt;}
.y69{bottom:787.666667pt;}
.ya0{bottom:789.000000pt;}
.y1bc{bottom:790.600000pt;}
.ydd{bottom:793.266667pt;}
.y127{bottom:793.533333pt;}
.y150{bottom:793.800000pt;}
.y18{bottom:796.466667pt;}
.y1e6{bottom:799.666667pt;}
.yf0{bottom:800.733333pt;}
.y9f{bottom:804.200000pt;}
.y184{bottom:804.466667pt;}
.y1bb{bottom:806.066667pt;}
.y126{bottom:809.000000pt;}
.y68{bottom:811.133333pt;}
.y4c{bottom:811.400000pt;}
.y17{bottom:813.000000pt;}
.ydc{bottom:813.800000pt;}
.y14f{bottom:814.866667pt;}
.y1e5{bottom:815.133333pt;}
.y9e{bottom:819.666667pt;}
.y182{bottom:820.733333pt;}
.y1ba{bottom:821.266667pt;}
.yef{bottom:827.400000pt;}
.y16{bottom:828.733333pt;}
.y1e4{bottom:830.333333pt;}
.ydb{bottom:834.333333pt;}
.y67{bottom:834.866667pt;}
.y14e{bottom:835.933333pt;}
.y1b9{bottom:836.733333pt;}
.y181{bottom:838.600000pt;}
.y4b{bottom:841.533333pt;}
.y15{bottom:843.933333pt;}
.yee{bottom:845.800000pt;}
.y9d{bottom:850.333333pt;}
.y1b8{bottom:852.466667pt;}
.yda{bottom:854.866667pt;}
.y14d{bottom:856.733333pt;}
.y4a{bottom:857.000000pt;}
.y180{bottom:857.266667pt;}
.y66{bottom:858.600000pt;}
.y14{bottom:858.866667pt;}
.y1e3{bottom:861.000000pt;}
.yed{bottom:863.133333pt;}
.y9c{bottom:865.533333pt;}
.y125{bottom:865.800000pt;}
.y49{bottom:872.200000pt;}
.y13{bottom:873.000000pt;}
.yd9{bottom:875.133333pt;}
.y17f{bottom:875.933333pt;}
.yec{bottom:876.200000pt;}
.y1e2{bottom:876.466667pt;}
.y14c{bottom:877.800000pt;}
.y1b7{bottom:880.733333pt;}
.y9b{bottom:881.000000pt;}
.y65{bottom:882.333333pt;}
.y48{bottom:887.666667pt;}
.y12{bottom:888.733333pt;}
.yeb{bottom:891.400000pt;}
.y1e1{bottom:891.666667pt;}
.y17e{bottom:894.333333pt;}
.yd8{bottom:895.666667pt;}
.y9a{bottom:896.200000pt;}
.y124{bottom:896.466667pt;}
.y14b{bottom:898.866667pt;}
.y47{bottom:902.866667pt;}
.y63{bottom:905.840000pt;}
.yea{bottom:906.893333pt;}
.y11{bottom:907.173333pt;}
.y99{bottom:911.706667pt;}
.y17d{bottom:913.040000pt;}
.yd6{bottom:916.240000pt;}
.y46{bottom:918.373333pt;}
.y14a{bottom:919.960000pt;}
.ye9{bottom:921.560000pt;}
.y123{bottom:922.106667pt;}
.y1e0{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y98{bottom:926.893333pt;}
.y1b6{bottom:927.173333pt;}
.y61{bottom:929.560000pt;}
.y17b{bottom:931.706667pt;}
.y45{bottom:934.106667pt;}
.ye8{bottom:934.373333pt;}
.yd5{bottom:936.773333pt;}
.y122{bottom:937.840000pt;}
.y149{bottom:940.773333pt;}
.y97{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.ye6{bottom:947.960000pt;}
.yb{bottom:949.560000pt;}
.y179{bottom:950.373333pt;}
.y44{bottom:952.506667pt;}
.y121{bottom:953.040000pt;}
.y60{bottom:953.293333pt;}
.yd3{bottom:957.040000pt;}
.y96{bottom:957.560000pt;}
.y1b5{bottom:957.840000pt;}
.y148{bottom:962.626667pt;}
.ya{bottom:963.173333pt;}
.ye5{bottom:963.426667pt;}
.y120{bottom:968.506667pt;}
.y176{bottom:970.106667pt;}
.y95{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.y5e{bottom:977.026667pt;}
.yd1{bottom:978.373333pt;}
.ye4{bottom:979.426667pt;}
.y43{bottom:983.440000pt;}
.y11f{bottom:983.706667pt;}
.y94{bottom:988.226667pt;}
.y8{bottom:991.706667pt;}
.y147{bottom:993.293333pt;}
.ye3{bottom:994.640000pt;}
.y1b4{bottom:998.893333pt;}
.y42{bottom:999.173333pt;}
.y5d{bottom:1001.840000pt;}
.y7{bottom:1007.706667pt;}
.ye1{bottom:1010.093333pt;}
.y5c{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h27{height:15.186667pt;}
.h1a{height:15.200000pt;}
.h28{height:15.233333pt;}
.h26{height:15.453333pt;}
.h1e{height:15.466667pt;}
.h21{height:15.500000pt;}
.h36{height:16.266667pt;}
.h35{height:17.866667pt;}
.h39{height:18.133333pt;}
.h31{height:18.386667pt;}
.h34{height:18.400000pt;}
.h15{height:18.619792pt;}
.h32{height:18.653333pt;}
.ha{height:18.666667pt;}
.h33{height:18.700000pt;}
.h19{height:18.815104pt;}
.h38{height:19.733333pt;}
.h2b{height:20.000000pt;}
.h37{height:20.033333pt;}
.h24{height:20.266667pt;}
.h23{height:20.533333pt;}
.h25{height:20.566667pt;}
.h2c{height:20.800000pt;}
.h1f{height:20.833333pt;}
.h2e{height:21.053333pt;}
.h1d{height:21.066667pt;}
.h2d{height:21.100000pt;}
.h22{height:21.333333pt;}
.h1b{height:21.866667pt;}
.h16{height:22.933333pt;}
.h18{height:22.966667pt;}
.h17{height:23.200000pt;}
.h1c{height:24.000000pt;}
.h14{height:29.791667pt;}
.h7{height:30.104167pt;}
.h20{height:30.666667pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.h30{height:34.133333pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h3b{height:38.828125pt;}
.h13{height:39.562500pt;}
.h3a{height:43.831458pt;}
.h10{height:43.958333pt;}
.he{height:44.687500pt;}
.h6{height:45.156250pt;}
.h29{height:45.866667pt;}
.hb{height:46.218750pt;}
.h2f{height:48.212500pt;}
.h2a{height:48.265833pt;}
.hf{height:53.046875pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h11{height:217.373333pt;}
.h0{height:1122.666667pt;}
.w2b{width:59.766667pt;}
.w27{width:61.633333pt;}
.w4{width:64.266667pt;}
.wb{width:68.800000pt;}
.w20{width:70.166667pt;}
.w28{width:73.633333pt;}
.w1a{width:87.233333pt;}
.w21{width:89.366667pt;}
.w2a{width:89.866667pt;}
.w29{width:90.166667pt;}
.w26{width:92.800000pt;}
.w24{width:92.833333pt;}
.w23{width:93.900000pt;}
.w3{width:96.000000pt;}
.w30{width:96.033333pt;}
.w8{width:96.566667pt;}
.w1b{width:97.900000pt;}
.w25{width:98.966667pt;}
.w1e{width:101.366667pt;}
.w22{width:107.766667pt;}
.w2d{width:108.033333pt;}
.w12{width:108.300000pt;}
.w10{width:113.100000pt;}
.w19{width:114.700000pt;}
.w14{width:117.100000pt;}
.w1c{width:118.700000pt;}
.w2f{width:120.033333pt;}
.w18{width:131.500000pt;}
.w2c{width:131.766667pt;}
.w2e{width:132.033333pt;}
.w1d{width:133.640000pt;}
.w11{width:144.333333pt;}
.wf{width:147.240000pt;}
.w15{width:160.040000pt;}
.w1f{width:171.773333pt;}
.wa{width:198.733333pt;}
.wd{width:199.000000pt;}
.w17{width:204.066667pt;}
.w9{width:221.400000pt;}
.w16{width:221.933333pt;}
.w13{width:224.373333pt;}
.w6{width:224.866667pt;}
.wc{width:389.200000pt;}
.we{width:389.466667pt;}
.w5{width:429.733333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.933333pt;}
.x3f{left:8.000000pt;}
.x2{left:9.599999pt;}
.x41{left:11.200000pt;}
.x39{left:12.533333pt;}
.x11{left:14.400000pt;}
.x3b{left:15.466667pt;}
.x49{left:17.066667pt;}
.x58{left:18.120000pt;}
.x3{left:19.733333pt;}
.x2e{left:21.093333pt;}
.x48{left:22.933333pt;}
.x4{left:24.533333pt;}
.x3c{left:25.866667pt;}
.x4c{left:26.933333pt;}
.x4a{left:28.266667pt;}
.x2c{left:29.626667pt;}
.x37{left:30.933333pt;}
.x32{left:32.026667pt;}
.x3d{left:33.333333pt;}
.x4f{left:35.200000pt;}
.x2d{left:36.280000pt;}
.x22{left:38.933333pt;}
.x47{left:40.266667pt;}
.x4e{left:42.133333pt;}
.x33{left:43.200000pt;}
.x46{left:45.066667pt;}
.x2b{left:46.400000pt;}
.x2a{left:48.533333pt;}
.x31{left:49.866667pt;}
.x26{left:51.466667pt;}
.x24{left:54.413333pt;}
.x29{left:58.133333pt;}
.x30{left:60.826667pt;}
.x4d{left:64.806667pt;}
.x2f{left:68.000000pt;}
.xc{left:69.633333pt;}
.x4b{left:70.660000pt;}
.x1{left:72.033322pt;}
.x10{left:73.900000pt;}
.x27{left:80.280000pt;}
.x25{left:86.960000pt;}
.x28{left:90.960000pt;}
.x5c{left:96.033322pt;}
.x1a{left:100.833322pt;}
.xf{left:103.506667pt;}
.x19{left:121.366655pt;}
.xa{left:136.559988pt;}
.x20{left:149.906667pt;}
.x50{left:165.133333pt;}
.x36{left:187.000000pt;}
.x56{left:204.066667pt;}
.xd{left:214.726667pt;}
.x1d{left:219.533333pt;}
.x16{left:237.666667pt;}
.x40{left:244.066667pt;}
.x51{left:264.106667pt;}
.x1b{left:271.040000pt;}
.x38{left:274.240000pt;}
.x13{left:285.439988pt;}
.x34{left:294.240000pt;}
.x57{left:312.106667pt;}
.x42{left:314.240000pt;}
.x7{left:323.039988pt;}
.x1e{left:332.640000pt;}
.x18{left:335.040000pt;}
.x1c{left:339.840000pt;}
.x5{left:345.439988pt;}
.x52{left:356.906667pt;}
.x3a{left:372.133333pt;}
.x21{left:374.266667pt;}
.x15{left:396.933322pt;}
.x43{left:403.600000pt;}
.x53{left:418.533333pt;}
.x59{left:444.133333pt;}
.x1f{left:476.973333pt;}
.x23{left:491.360000pt;}
.x35{left:498.306667pt;}
.xe{left:499.360000pt;}
.x12{left:505.506655pt;}
.x44{left:511.360000pt;}
.x9{left:547.893322pt;}
.x5a{left:564.173333pt;}
.x8{left:576.173322pt;}
.x54{left:582.333333pt;}
.x6{left:619.133322pt;}
.x3e{left:624.466667pt;}
.x45{left:626.066667pt;}
.x5b{left:660.200000pt;}
.x14{left:671.133322pt;}
.x55{left:672.200000pt;}
.xb{left:722.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  