
    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_12cee95e9c9f03c72a33421c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_71d41f8933f8889e8ba2cb0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_8bd9e48b1feb3579df6dbfec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5c0cdd94aa64e80d382851bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_8e16aa36c0466161bcbd4685.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_202373bccba10f530e9f212d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_bf472cb144d546950c976ceb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_6ba6a6abb19328000f9eb113.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-31.980000px;}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-14.400000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.v6{vertical-align:31.980000px;}
.ls5{letter-spacing:-1.842000px;}
.ls7{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsc{letter-spacing:-0.486600px;}
.ls4{letter-spacing:-0.403200px;}
.ls14{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.213120px;}
.ls0{letter-spacing:0.345600px;}
.ls17{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.507000px;}
.ls2{letter-spacing:0.720000px;}
.lsa{letter-spacing:3.600000px;}
.ls19{letter-spacing:13.265280px;}
.ls9{letter-spacing:15.120000px;}
.ls12{letter-spacing:71.038560px;}
.lse{letter-spacing:72.478560px;}
.lsf{letter-spacing:79.678560px;}
.lsb{letter-spacing:81.250560px;}
.ls8{letter-spacing:82.690560px;}
.ls10{letter-spacing:395.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-60.480000px;}
.ws12{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.627000px;}
.wsf{word-spacing:-15.606600px;}
.ws10{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.633400px;}
.wsa{word-spacing:-13.716000px;}
.ws9{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.182000px;}
.ws0{word-spacing:-12.614400px;}
.ws1{word-spacing:-11.175600px;}
.ws3{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:78.684480px;}
.wse{word-spacing:231.840000px;}
.wsd{word-spacing:259.200000px;}
.ws8{word-spacing:354.360000px;}
._d{margin-left:-3.990720px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._9{width:3.321120px;}
._a{width:4.750080px;}
._11{width:5.987520px;}
._f{width:7.257600px;}
._10{width:9.201600px;}
._b{width:10.886400px;}
._c{width:12.216960px;}
._e{width:13.668480px;}
._14{width:17.020800px;}
._15{width:18.256320px;}
._8{width:20.086080px;}
._13{width:23.163840px;}
._12{width:24.675840px;}
._17{width:55.396800px;}
._1a{width:77.825280px;}
._18{width:83.197440px;}
._1b{width:123.560640px;}
._16{width:153.792000px;}
._19{width:173.098560px;}
._5{width:393.960000px;}
._7{width:565.476000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(68,84,106);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs9{font-size:54.864000px;}
.fs2{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fsa{font-size:60.624000px;}
.fsb{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y36{bottom:3.240000px;}
.y87{bottom:5.760000px;}
.y92{bottom:5.790000px;}
.y8a{bottom:5.805000px;}
.y8f{bottom:6.120000px;}
.y131{bottom:6.480000px;}
.y132{bottom:7.200000px;}
.y163{bottom:10.005000px;}
.yc4{bottom:12.270000px;}
.y11c{bottom:13.710000px;}
.y1b5{bottom:16.605000px;}
.y35{bottom:20.514000px;}
.y151{bottom:21.165000px;}
.y111{bottom:21.390000px;}
.y1ba{bottom:25.560000px;}
.y174{bottom:25.920000px;}
.yba{bottom:27.330000px;}
.ybe{bottom:28.155000px;}
.yea{bottom:28.590000px;}
.y11a{bottom:36.900000px;}
.y14f{bottom:41.370000px;}
.y10f{bottom:41.580000px;}
.ybc{bottom:43.350000px;}
.ye{bottom:43.560000px;}
.y15d{bottom:43.635000px;}
.ye8{bottom:48.750000px;}
.y119{bottom:52.410000px;}
.y12c{bottom:52.920000px;}
.y34{bottom:55.794000px;}
.y10e{bottom:57.090000px;}
.y144{bottom:57.210000px;}
.y15c{bottom:59.145000px;}
.y1b7{bottom:61.230000px;}
.y1bd{bottom:61.245000px;}
.yd8{bottom:63.000000px;}
.ye7{bottom:64.260000px;}
.y141{bottom:64.770000px;}
.y116{bottom:67.965000px;}
.ybf{bottom:68.145000px;}
.yc{bottom:68.400000px;}
.y103{bottom:72.930000px;}
.y145{bottom:73.950000px;}
.y15b{bottom:74.670000px;}
.ye6{bottom:79.770000px;}
.yff{bottom:80.610000px;}
.y13f{bottom:81.510000px;}
.y11b{bottom:83.880000px;}
.y162{bottom:86.325000px;}
.y104{bottom:89.895000px;}
.y156{bottom:90.210000px;}
.y146{bottom:90.690000px;}
.y167{bottom:90.750000px;}
.y33{bottom:91.119000px;}
.ybb{bottom:91.365000px;}
.ya{bottom:94.716000px;}
.ye1{bottom:95.325000px;}
.yfe{bottom:97.560000px;}
.y11f{bottom:99.510000px;}
.yc5{bottom:103.575000px;}
.y157{bottom:105.300000px;}
.y154{bottom:106.350000px;}
.y105{bottom:106.815000px;}
.y147{bottom:107.385000px;}
.y117{bottom:107.970000px;}
.yc0{bottom:108.150000px;}
.y32{bottom:108.399000px;}
.yed{bottom:112.860000px;}
.y166{bottom:114.585000px;}
.y114{bottom:115.350000px;}
.y150{bottom:116.310000px;}
.ye9{bottom:117.930000px;}
.ye2{bottom:118.725000px;}
.y15f{bottom:119.160000px;}
.y158{bottom:120.390000px;}
.y11e{bottom:123.330000px;}
.yb8{bottom:123.375000px;}
.y106{bottom:123.765000px;}
.y148{bottom:124.125000px;}
.y31{bottom:125.679000px;}
.y153{bottom:130.140000px;}
.y100{bottom:131.430000px;}
.yb6{bottom:131.796000px;}
.yc7{bottom:131.970000px;}
.y18{bottom:132.516000px;}
.y110{bottom:133.230000px;}
.y85{bottom:135.396000px;}
.y159{bottom:135.465000px;}
.yec{bottom:136.650000px;}
.y113{bottom:139.170000px;}
.y107{bottom:140.730000px;}
.y149{bottom:140.865000px;}
.ye3{bottom:142.125000px;}
.y30{bottom:142.959000px;}
.y128{bottom:145.116000px;}
.y15e{bottom:146.310000px;}
.y13d{bottom:147.636000px;}
.y118{bottom:147.960000px;}
.yc1{bottom:148.170000px;}
.y15a{bottom:150.555000px;}
.yb5{bottom:151.590000px;}
.y160{bottom:153.690000px;}
.y84{bottom:155.550000px;}
.y140{bottom:156.780000px;}
.y14a{bottom:157.575000px;}
.y108{bottom:157.650000px;}
.y1b3{bottom:158.790000px;}
.y2f{bottom:160.239000px;}
.y13c{bottom:164.190000px;}
.y127{bottom:165.270000px;}
.ye4{bottom:165.495000px;}
.y155{bottom:165.600000px;}
.yb9{bottom:171.390000px;}
.y14b{bottom:174.315000px;}
.y109{bottom:174.600000px;}
.y83{bottom:175.350000px;}
.y2e{bottom:177.519000px;}
.y1b2{bottom:178.590000px;}
.y161{bottom:180.825000px;}
.yfd{bottom:182.265000px;}
.yb4{bottom:186.510000px;}
.ybd{bottom:187.380000px;}
.yc2{bottom:188.175000px;}
.y69{bottom:188.670000px;}
.ye5{bottom:188.895000px;}
.y14c{bottom:191.055000px;}
.y10a{bottom:191.520000px;}
.y2d{bottom:194.829000px;}
.y82{bottom:195.150000px;}
.y1b1{bottom:198.435000px;}
.y142{bottom:198.615000px;}
.y126{bottom:199.875000px;}
.yb3{bottom:203.115000px;}
.yb7{bottom:204.840000px;}
.y14d{bottom:207.750000px;}
.y10b{bottom:208.470000px;}
.y68{bottom:208.515000px;}
.y189{bottom:211.035000px;}
.y2c{bottom:212.109000px;}
.y81{bottom:214.995000px;}
.y143{bottom:215.355000px;}
.y101{bottom:216.150000px;}
.y125{bottom:216.435000px;}
.y1b0{bottom:218.235000px;}
.y165{bottom:223.530000px;}
.y14e{bottom:224.490000px;}
.y10c{bottom:225.390000px;}
.yc3{bottom:228.210000px;}
.y67{bottom:228.675000px;}
.y2b{bottom:229.029000px;}
.y188{bottom:230.835000px;}
.y102{bottom:233.070000px;}
.y80{bottom:234.795000px;}
.ydf{bottom:236.595000px;}
.y11d{bottom:236.805000px;}
.y1af{bottom:238.035000px;}
.y164{bottom:240.810000px;}
.y10d{bottom:242.355000px;}
.y2a{bottom:246.309000px;}
.y66{bottom:248.475000px;}
.y152{bottom:250.530000px;}
.yc6{bottom:254.190000px;}
.y7f{bottom:256.395000px;}
.y1ae{bottom:258.195000px;}
.yeb{bottom:263.340000px;}
.y29{bottom:263.589000px;}
.y112{bottom:268.350000px;}
.y187{bottom:268.635000px;}
.y65{bottom:270.075000px;}
.yde{bottom:276.195000px;}
.y28{bottom:289.869000px;}
.y1ad{bottom:292.755000px;}
.y7e{bottom:294.195000px;}
.yfb{bottom:294.915000px;}
.ydd{bottom:295.995000px;}
.y64{bottom:304.995000px;}
.y186{bottom:306.435000px;}
.y7d{bottom:314.355000px;}
.y27{bottom:316.149000px;}
.y1ac{bottom:321.555000px;}
.yd7{bottom:330.945000px;}
.yfa{bottom:332.745000px;}
.y63{bottom:333.825000px;}
.y7c{bottom:334.185000px;}
.y1ab{bottom:341.745000px;}
.y185{bottom:344.265000px;}
.y26{bottom:351.474000px;}
.yf9{bottom:352.545000px;}
.y62{bottom:353.625000px;}
.ydc{bottom:353.985000px;}
.y7b{bottom:355.785000px;}
.y1aa{bottom:361.545000px;}
.yab{bottom:362.625000px;}
.y25{bottom:368.754000px;}
.yf8{bottom:372.345000px;}
.y61{bottom:373.425000px;}
.ydb{bottom:376.665000px;}
.y1a9{bottom:381.345000px;}
.y184{bottom:382.065000px;}
.yaa{bottom:382.785000px;}
.y24{bottom:386.034000px;}
.y7a{bottom:387.465000px;}
.y60{bottom:393.225000px;}
.yda{bottom:399.705000px;}
.y1a8{bottom:401.145000px;}
.ya9{bottom:402.585000px;}
.y23{bottom:403.314000px;}
.yf7{bottom:407.265000px;}
.y79{bottom:407.625000px;}
.y5f{bottom:413.025000px;}
.y183{bottom:420.225000px;}
.y22{bottom:420.594000px;}
.y1a7{bottom:420.945000px;}
.ya8{bottom:422.385000px;}
.yf6{bottom:423.825000px;}
.y115{bottom:425.160000px;}
.y78{bottom:427.785000px;}
.y5e{bottom:433.185000px;}
.y21{bottom:437.874000px;}
.y182{bottom:440.025000px;}
.y1a6{bottom:440.745000px;}
.ya7{bottom:442.185000px;}
.yd9{bottom:445.425000px;}
.y77{bottom:447.945000px;}
.y5d{bottom:453.030000px;}
.y13b{bottom:453.390000px;}
.y20{bottom:455.184000px;}
.y1a5{bottom:460.590000px;}
.ya6{bottom:462.030000px;}
.y76{bottom:468.150000px;}
.y1f{bottom:472.104000px;}
.y181{bottom:472.110000px;}
.y5c{bottom:472.830000px;}
.y1a4{bottom:480.390000px;}
.ya5{bottom:481.830000px;}
.y1dc{bottom:482.190000px;}
.y75{bottom:488.310000px;}
.y1e{bottom:489.384000px;}
.y13a{bottom:491.190000px;}
.y5b{bottom:492.630000px;}
.y180{bottom:494.790000px;}
.yd6{bottom:496.950000px;}
.y1a3{bottom:500.190000px;}
.y1db{bottom:501.990000px;}
.y1d{bottom:506.664000px;}
.yb2{bottom:508.110000px;}
.y74{bottom:509.910000px;}
.y139{bottom:510.990000px;}
.y5a{bottom:512.430000px;}
.y17f{bottom:514.590000px;}
.ya4{bottom:516.750000px;}
.y1a2{bottom:519.990000px;}
.y1da{bottom:523.230000px;}
.y1c{bottom:523.944000px;}
.yb1{bottom:530.070000px;}
.y59{bottom:532.230000px;}
.y17e{bottom:534.390000px;}
.yd5{bottom:534.750000px;}
.y73{bottom:538.710000px;}
.y1a1{bottom:540.150000px;}
.y1b{bottom:541.224000px;}
.y1d9{bottom:543.030000px;}
.y138{bottom:545.910000px;}
.y58{bottom:552.030000px;}
.ya3{bottom:552.390000px;}
.y17d{bottom:557.430000px;}
.y1a{bottom:558.504000px;}
.y72{bottom:558.510000px;}
.y1a0{bottom:559.950000px;}
.y137{bottom:562.110000px;}
.y13e{bottom:563.400000px;}
.y1d8{bottom:564.270000px;}
.yd4{bottom:566.430000px;}
.yb0{bottom:567.870000px;}
.y57{bottom:571.830000px;}
.y71{bottom:578.700000px;}
.y19f{bottom:579.780000px;}
.y1d7{bottom:584.100000px;}
.y19{bottom:584.814000px;}
.y17c{bottom:585.900000px;}
.yd3{bottom:586.260000px;}
.ya2{bottom:587.340000px;}
.yaf{bottom:587.700000px;}
.y56{bottom:591.660000px;}
.y70{bottom:598.500000px;}
.y19e{bottom:599.580000px;}
.y1d6{bottom:605.340000px;}
.yd2{bottom:606.060000px;}
.y55{bottom:611.460000px;}
.ya1{bottom:616.140000px;}
.y17b{bottom:617.940000px;}
.y6f{bottom:618.300000px;}
.y19d{bottom:619.380000px;}
.yae{bottom:622.620000px;}
.y1d5{bottom:625.140000px;}
.yd1{bottom:625.860000px;}
.y54{bottom:631.620000px;}
.ya0{bottom:635.940000px;}
.y6e{bottom:638.100000px;}
.y124{bottom:639.180000px;}
.y17a{bottom:640.980000px;}
.y1d4{bottom:644.940000px;}
.yd0{bottom:646.020000px;}
.y53{bottom:651.420000px;}
.y9f{bottom:655.740000px;}
.y123{bottom:658.980000px;}
.yad{bottom:659.340000px;}
.y179{bottom:660.780000px;}
.y1d3{bottom:664.740000px;}
.ycf{bottom:665.820000px;}
.y52{bottom:671.220000px;}
.y6d{bottom:673.380000px;}
.yac{bottom:674.820000px;}
.y9e{bottom:675.540000px;}
.y19c{bottom:678.780000px;}
.y122{bottom:679.140000px;}
.y178{bottom:680.580000px;}
.yce{bottom:685.620000px;}
.y1d2{bottom:685.980000px;}
.y6c{bottom:690.660000px;}
.y51{bottom:691.020000px;}
.yf5{bottom:693.180000px;}
.y9d{bottom:695.340000px;}
.y177{bottom:703.290000px;}
.y1d1{bottom:705.810000px;}
.y6b{bottom:707.970000px;}
.y50{bottom:710.850000px;}
.y121{bottom:713.730000px;}
.y9c{bottom:715.170000px;}
.ycd{bottom:720.570000px;}
.y6a{bottom:724.530000px;}
.y1d0{bottom:725.610000px;}
.y120{bottom:730.290000px;}
.y4f{bottom:730.650000px;}
.yf4{bottom:731.010000px;}
.y176{bottom:732.090000px;}
.y9b{bottom:734.970000px;}
.ycc{bottom:737.130000px;}
.ye0{bottom:738.720000px;}
.y17{bottom:745.770000px;}
.y1cf{bottom:747.210000px;}
.y19b{bottom:748.650000px;}
.y4e{bottom:750.450000px;}
.yf3{bottom:750.810000px;}
.y175{bottom:751.890000px;}
.y9a{bottom:756.930000px;}
.y16{bottom:765.930000px;}
.y1ce{bottom:767.010000px;}
.y19a{bottom:768.450000px;}
.y4d{bottom:770.250000px;}
.yf2{bottom:770.610000px;}
.y15{bottom:779.970000px;}
.y1cd{bottom:786.810000px;}
.y199{bottom:788.250000px;}
.y173{bottom:788.610000px;}
.y1c2{bottom:788.970000px;}
.y4c{bottom:790.050000px;}
.yf1{bottom:790.410000px;}
.y14{bottom:793.650000px;}
.y99{bottom:794.730000px;}
.y198{bottom:808.050000px;}
.y4b{bottom:809.850000px;}
.yf0{bottom:810.210000px;}
.y1bc{bottom:812.010000px;}
.y13{bottom:813.450000px;}
.y98{bottom:814.530000px;}
.y1cc{bottom:826.050000px;}
.y197{bottom:827.895000px;}
.y172{bottom:828.615000px;}
.y4a{bottom:830.055000px;}
.y12{bottom:832.575000px;}
.y97{bottom:834.375000px;}
.y1c1{bottom:834.735000px;}
.y1cb{bottom:843.375000px;}
.yef{bottom:845.175000px;}
.y196{bottom:847.695000px;}
.y171{bottom:848.415000px;}
.y49{bottom:849.855000px;}
.y96{bottom:854.175000px;}
.y1c0{bottom:857.775000px;}
.y11{bottom:860.295000px;}
.yee{bottom:861.735000px;}
.yfc{bottom:862.920000px;}
.y1ca{bottom:863.175000px;}
.y136{bottom:864.975000px;}
.y195{bottom:867.855000px;}
.y95{bottom:868.935000px;}
.y48{bottom:869.655000px;}
.y170{bottom:871.095000px;}
.y1c9{bottom:882.975000px;}
.y135{bottom:884.775000px;}
.y10{bottom:887.655000px;}
.y47{bottom:889.455000px;}
.y16f{bottom:899.895000px;}
.y1bf{bottom:900.255000px;}
.y1c8{bottom:903.495000px;}
.y134{bottom:904.575000px;}
.y194{bottom:907.455000px;}
.y46{bottom:909.255000px;}
.y94{bottom:910.335000px;}
.yf{bottom:915.375000px;}
.y1c7{bottom:922.935000px;}
.y1be{bottom:923.295000px;}
.y133{bottom:924.375000px;}
.y193{bottom:927.255000px;}
.y45{bottom:929.055000px;}
.y93{bottom:930.855000px;}
.y16e{bottom:937.695000px;}
.y9{bottom:941.295000px;}
.y1b6{bottom:943.095000px;}
.y192{bottom:947.055000px;}
.y44{bottom:948.855000px;}
.y91{bottom:951.375000px;}
.y16d{bottom:957.525000px;}
.y8{bottom:958.245000px;}
.y12b{bottom:959.325000px;}
.y1c6{bottom:963.285000px;}
.y1bb{bottom:965.805000px;}
.y191{bottom:966.885000px;}
.y43{bottom:968.685000px;}
.y90{bottom:971.925000px;}
.y7{bottom:972.285000px;}
.y16c{bottom:979.125000px;}
.y1c5{bottom:983.085000px;}
.y130{bottom:983.805000px;}
.y190{bottom:986.685000px;}
.y42{bottom:988.485000px;}
.y1b9{bottom:988.845000px;}
.y8e{bottom:992.445000px;}
.y1c4{bottom:1003.245000px;}
.y18f{bottom:1006.485000px;}
.y12f{bottom:1006.845000px;}
.y41{bottom:1008.285000px;}
.y8d{bottom:1013.325000px;}
.y16b{bottom:1014.405000px;}
.y1c3{bottom:1023.045000px;}
.y18e{bottom:1026.285000px;}
.y6{bottom:1027.005000px;}
.y40{bottom:1028.445000px;}
.y12e{bottom:1029.885000px;}
.y1b8{bottom:1031.325000px;}
.y8c{bottom:1033.845000px;}
.y16a{bottom:1043.205000px;}
.y18d{bottom:1046.085000px;}
.y3f{bottom:1048.245000px;}
.ycb{bottom:1051.125000px;}
.y5{bottom:1052.565000px;}
.y12d{bottom:1053.285000px;}
.y8b{bottom:1054.365000px;}
.y169{bottom:1063.005000px;}
.y18c{bottom:1066.245000px;}
.y3e{bottom:1068.045000px;}
.yca{bottom:1070.925000px;}
.y4{bottom:1072.725000px;}
.y89{bottom:1074.885000px;}
.y12a{bottom:1075.965000px;}
.y1b4{bottom:1077.045000px;}
.y168{bottom:1082.850000px;}
.y18b{bottom:1086.090000px;}
.y3d{bottom:1087.890000px;}
.y3{bottom:1094.010000px;}
.y88{bottom:1095.450000px;}
.yc9{bottom:1103.010000px;}
.y129{bottom:1104.810000px;}
.y3c{bottom:1107.690000px;}
.y2{bottom:1114.530000px;}
.y86{bottom:1116.330000px;}
.y18a{bottom:1120.650000px;}
.yc8{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y3b{bottom:1142.610000px;}
.y3a{bottom:1166.370000px;}
.y39{bottom:1180.410000px;}
.y38{bottom:1201.290000px;}
.y37{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h9{height:15.516000px;}
.h12{height:19.800000px;}
.h13{height:19.836000px;}
.h14{height:20.160000px;}
.h1e{height:21.240000px;}
.hd{height:27.296016px;}
.h23{height:30.636000px;}
.h25{height:39.600000px;}
.h22{height:39.996000px;}
.h5{height:39.997969px;}
.h2{height:43.794844px;}
.h1c{height:43.899117px;}
.h10{height:44.031094px;}
.h8{height:48.013594px;}
.h17{height:48.139945px;}
.h3{height:52.136719px;}
.hc{height:52.633828px;}
.h6{height:53.067656px;}
.h21{height:55.714922px;}
.h4{height:57.290625px;}
.h26{height:58.121719px;}
.h11{height:60.155156px;}
.ha{height:69.863203px;}
.hf{height:70.522734px;}
.h20{height:72.319945px;}
.h27{height:73.283906px;}
.hb{height:78.205078px;}
.h16{height:79.993594px;}
.h1d{height:113.760000px;}
.h24{height:131.076000px;}
.h18{height:134.316000px;}
.h1b{height:262.080000px;}
.h1f{height:275.760000px;}
.h15{height:279.720000px;}
.h19{height:288.720000px;}
.h1a{height:293.760000px;}
.he{height:607.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:57.996000px;}
.w11{width:63.396000px;}
.w22{width:72.720000px;}
.w1d{width:72.756000px;}
.w23{width:73.440000px;}
.w1e{width:73.476000px;}
.wd{width:75.636000px;}
.w19{width:80.316000px;}
.w27{width:82.836000px;}
.w18{width:83.556000px;}
.wa{width:84.276000px;}
.w2c{width:93.996000px;}
.w9{width:95.076000px;}
.w2b{width:111.312000px;}
.w16{width:120.996000px;}
.wc{width:121.392000px;}
.we{width:157.710000px;}
.w2d{width:158.115000px;}
.w15{width:163.875000px;}
.w17{width:166.350000px;}
.wf{width:168.195000px;}
.w8{width:169.275000px;}
.w1c{width:179.355000px;}
.w2e{width:198.435000px;}
.w21{width:201.705000px;}
.w26{width:220.425000px;}
.w28{width:285.225000px;}
.w1f{width:293.145000px;}
.w24{width:303.990000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w2a{width:356.910000px;}
.w13{width:513.360000px;}
.w14{width:519.840000px;}
.w1b{width:527.400000px;}
.w12{width:548.640000px;}
.w2f{width:569.775000px;}
.wb{width:579.960000px;}
.w1a{width:586.440000px;}
.w20{width:627.735000px;}
.w25{width:660.885000px;}
.w29{width:670.245000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x28{left:4.680000px;}
.x17{left:7.560000px;}
.x9{left:8.640000px;}
.x64{left:27.432000px;}
.x24{left:31.500000px;}
.x35{left:34.092000px;}
.x22{left:38.916000px;}
.x2c{left:41.508000px;}
.x21{left:45.645000px;}
.x2b{left:48.240000px;}
.x5d{left:58.470000px;}
.x5c{left:65.235000px;}
.x65{left:67.035000px;}
.x41{left:79.920000px;}
.x2d{left:82.875000px;}
.x2e{left:83.910000px;}
.x40{left:87.045000px;}
.x59{left:88.920000px;}
.x1b{left:90.180000px;}
.x23{left:92.370000px;}
.x4a{left:95.610000px;}
.x1e{left:97.125000px;}
.x7{left:106.235987px;}
.x13{left:107.675987px;}
.xc{left:108.755987px;}
.x72{left:111.275987px;}
.x6b{left:116.316000px;}
.x50{left:118.230000px;}
.xb{left:119.555987px;}
.x3c{left:121.035000px;}
.x37{left:125.430000px;}
.x15{left:133.271987px;}
.x3a{left:137.591987px;}
.x25{left:141.870000px;}
.x4f{left:142.950000px;}
.xd{left:148.751987px;}
.x63{left:150.810000px;}
.x2f{left:154.290000px;}
.x30{left:155.625000px;}
.x71{left:160.274987px;}
.x31{left:162.000000px;}
.x5f{left:164.415000px;}
.x2a{left:165.675000px;}
.x42{left:167.295000px;}
.x5e{left:169.845000px;}
.x43{left:171.975000px;}
.xf{left:180.794987px;}
.x12{left:187.994987px;}
.x55{left:191.235000px;}
.x4b{left:196.890000px;}
.x4c{left:199.110000px;}
.x62{left:200.190000px;}
.x36{left:205.350000px;}
.x3d{left:209.955000px;}
.x32{left:217.110000px;}
.x48{left:222.510000px;}
.x27{left:231.945000px;}
.x60{left:235.950000px;}
.x5a{left:246.750000px;}
.x45{left:248.295000px;}
.x2{left:254.264987px;}
.x44{left:257.685000px;}
.x70{left:265.065000px;}
.x6{left:274.064987px;}
.x16{left:276.945000px;}
.x67{left:289.905000px;}
.x4d{left:291.210000px;}
.x34{left:295.920000px;}
.x3e{left:299.010000px;}
.x1c{left:301.575000px;}
.x4e{left:302.655000px;}
.xa{left:304.350000px;}
.x1f{left:308.550000px;}
.x33{left:311.190000px;}
.x69{left:322.710000px;}
.x61{left:324.150000px;}
.x6c{left:331.350000px;}
.x46{left:334.185000px;}
.x47{left:338.685000px;}
.xe{left:339.984000px;}
.x5{left:363.389987px;}
.x18{left:372.750000px;}
.x4{left:379.949987px;}
.x14{left:381.389987px;}
.x3f{left:388.080000px;}
.x54{left:396.900000px;}
.x3{left:398.339987px;}
.x20{left:407.265000px;}
.x1d{left:414.255000px;}
.x6d{left:415.620000px;}
.x58{left:434.235000px;}
.x68{left:439.380000px;}
.x8{left:446.579987px;}
.x10{left:447.660000px;}
.x6e{left:466.740000px;}
.x29{left:468.540000px;}
.x6a{left:471.780000px;}
.x49{left:475.485000px;}
.x51{left:481.785000px;}
.x66{left:489.270000px;}
.x38{left:510.660000px;}
.x26{left:542.010000px;}
.x5b{left:548.310000px;}
.x6f{left:579.855000px;}
.x53{left:596.774987px;}
.x52{left:601.454987px;}
.x39{left:621.614987px;}
.x3b{left:628.454987px;}
.x57{left:634.934987px;}
.x19{left:655.454987px;}
.x1a{left:686.804987px;}
.x56{left:693.644987px;}
.x11{left:745.844987px;}
.x1{left:786.929987px;}
@media print{
.v5{vertical-align:-28.426667pt;}
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-12.800000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.v6{vertical-align:28.426667pt;}
.ls5{letter-spacing:-1.637333pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls4{letter-spacing:-0.358400pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.189440pt;}
.ls0{letter-spacing:0.307200pt;}
.ls17{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.450667pt;}
.ls2{letter-spacing:0.640000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls19{letter-spacing:11.791360pt;}
.ls9{letter-spacing:13.440000pt;}
.ls12{letter-spacing:63.145387pt;}
.lse{letter-spacing:64.425387pt;}
.lsf{letter-spacing:70.825387pt;}
.lsb{letter-spacing:72.222720pt;}
.ls8{letter-spacing:73.502720pt;}
.ls10{letter-spacing:351.520000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws12{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.890667pt;}
.wsf{word-spacing:-13.872533pt;}
.ws10{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.007467pt;}
.wsa{word-spacing:-12.192000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws0{word-spacing:-11.212800pt;}
.ws1{word-spacing:-9.933867pt;}
.ws3{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:69.941760pt;}
.wse{word-spacing:206.080000pt;}
.wsd{word-spacing:230.400000pt;}
.ws8{word-spacing:314.986667pt;}
._d{margin-left:-3.547307pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._9{width:2.952107pt;}
._a{width:4.222293pt;}
._11{width:5.322240pt;}
._f{width:6.451200pt;}
._10{width:8.179200pt;}
._b{width:9.676800pt;}
._c{width:10.859520pt;}
._e{width:12.149760pt;}
._14{width:15.129600pt;}
._15{width:16.227840pt;}
._8{width:17.854293pt;}
._13{width:20.590080pt;}
._12{width:21.934080pt;}
._17{width:49.241600pt;}
._1a{width:69.178027pt;}
._18{width:73.953280pt;}
._1b{width:109.831680pt;}
._16{width:136.704000pt;}
._19{width:153.865387pt;}
._5{width:350.186667pt;}
._7{width:502.645333pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs9{font-size:48.768000pt;}
.fs2{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fsa{font-size:53.888000pt;}
.fsb{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y36{bottom:2.880000pt;}
.y87{bottom:5.120000pt;}
.y92{bottom:5.146667pt;}
.y8a{bottom:5.160000pt;}
.y8f{bottom:5.440000pt;}
.y131{bottom:5.760000pt;}
.y132{bottom:6.400000pt;}
.y163{bottom:8.893333pt;}
.yc4{bottom:10.906667pt;}
.y11c{bottom:12.186667pt;}
.y1b5{bottom:14.760000pt;}
.y35{bottom:18.234667pt;}
.y151{bottom:18.813333pt;}
.y111{bottom:19.013333pt;}
.y1ba{bottom:22.720000pt;}
.y174{bottom:23.040000pt;}
.yba{bottom:24.293333pt;}
.ybe{bottom:25.026667pt;}
.yea{bottom:25.413333pt;}
.y11a{bottom:32.800000pt;}
.y14f{bottom:36.773333pt;}
.y10f{bottom:36.960000pt;}
.ybc{bottom:38.533333pt;}
.ye{bottom:38.720000pt;}
.y15d{bottom:38.786667pt;}
.ye8{bottom:43.333333pt;}
.y119{bottom:46.586667pt;}
.y12c{bottom:47.040000pt;}
.y34{bottom:49.594667pt;}
.y10e{bottom:50.746667pt;}
.y144{bottom:50.853333pt;}
.y15c{bottom:52.573333pt;}
.y1b7{bottom:54.426667pt;}
.y1bd{bottom:54.440000pt;}
.yd8{bottom:56.000000pt;}
.ye7{bottom:57.120000pt;}
.y141{bottom:57.573333pt;}
.y116{bottom:60.413333pt;}
.ybf{bottom:60.573333pt;}
.yc{bottom:60.800000pt;}
.y103{bottom:64.826667pt;}
.y145{bottom:65.733333pt;}
.y15b{bottom:66.373333pt;}
.ye6{bottom:70.906667pt;}
.yff{bottom:71.653333pt;}
.y13f{bottom:72.453333pt;}
.y11b{bottom:74.560000pt;}
.y162{bottom:76.733333pt;}
.y104{bottom:79.906667pt;}
.y156{bottom:80.186667pt;}
.y146{bottom:80.613333pt;}
.y167{bottom:80.666667pt;}
.y33{bottom:80.994667pt;}
.ybb{bottom:81.213333pt;}
.ya{bottom:84.192000pt;}
.ye1{bottom:84.733333pt;}
.yfe{bottom:86.720000pt;}
.y11f{bottom:88.453333pt;}
.yc5{bottom:92.066667pt;}
.y157{bottom:93.600000pt;}
.y154{bottom:94.533333pt;}
.y105{bottom:94.946667pt;}
.y147{bottom:95.453333pt;}
.y117{bottom:95.973333pt;}
.yc0{bottom:96.133333pt;}
.y32{bottom:96.354667pt;}
.yed{bottom:100.320000pt;}
.y166{bottom:101.853333pt;}
.y114{bottom:102.533333pt;}
.y150{bottom:103.386667pt;}
.ye9{bottom:104.826667pt;}
.ye2{bottom:105.533333pt;}
.y15f{bottom:105.920000pt;}
.y158{bottom:107.013333pt;}
.y11e{bottom:109.626667pt;}
.yb8{bottom:109.666667pt;}
.y106{bottom:110.013333pt;}
.y148{bottom:110.333333pt;}
.y31{bottom:111.714667pt;}
.y153{bottom:115.680000pt;}
.y100{bottom:116.826667pt;}
.yb6{bottom:117.152000pt;}
.yc7{bottom:117.306667pt;}
.y18{bottom:117.792000pt;}
.y110{bottom:118.426667pt;}
.y85{bottom:120.352000pt;}
.y159{bottom:120.413333pt;}
.yec{bottom:121.466667pt;}
.y113{bottom:123.706667pt;}
.y107{bottom:125.093333pt;}
.y149{bottom:125.213333pt;}
.ye3{bottom:126.333333pt;}
.y30{bottom:127.074667pt;}
.y128{bottom:128.992000pt;}
.y15e{bottom:130.053333pt;}
.y13d{bottom:131.232000pt;}
.y118{bottom:131.520000pt;}
.yc1{bottom:131.706667pt;}
.y15a{bottom:133.826667pt;}
.yb5{bottom:134.746667pt;}
.y160{bottom:136.613333pt;}
.y84{bottom:138.266667pt;}
.y140{bottom:139.360000pt;}
.y14a{bottom:140.066667pt;}
.y108{bottom:140.133333pt;}
.y1b3{bottom:141.146667pt;}
.y2f{bottom:142.434667pt;}
.y13c{bottom:145.946667pt;}
.y127{bottom:146.906667pt;}
.ye4{bottom:147.106667pt;}
.y155{bottom:147.200000pt;}
.yb9{bottom:152.346667pt;}
.y14b{bottom:154.946667pt;}
.y109{bottom:155.200000pt;}
.y83{bottom:155.866667pt;}
.y2e{bottom:157.794667pt;}
.y1b2{bottom:158.746667pt;}
.y161{bottom:160.733333pt;}
.yfd{bottom:162.013333pt;}
.yb4{bottom:165.786667pt;}
.ybd{bottom:166.560000pt;}
.yc2{bottom:167.266667pt;}
.y69{bottom:167.706667pt;}
.ye5{bottom:167.906667pt;}
.y14c{bottom:169.826667pt;}
.y10a{bottom:170.240000pt;}
.y2d{bottom:173.181333pt;}
.y82{bottom:173.466667pt;}
.y1b1{bottom:176.386667pt;}
.y142{bottom:176.546667pt;}
.y126{bottom:177.666667pt;}
.yb3{bottom:180.546667pt;}
.yb7{bottom:182.080000pt;}
.y14d{bottom:184.666667pt;}
.y10b{bottom:185.306667pt;}
.y68{bottom:185.346667pt;}
.y189{bottom:187.586667pt;}
.y2c{bottom:188.541333pt;}
.y81{bottom:191.106667pt;}
.y143{bottom:191.426667pt;}
.y101{bottom:192.133333pt;}
.y125{bottom:192.386667pt;}
.y1b0{bottom:193.986667pt;}
.y165{bottom:198.693333pt;}
.y14e{bottom:199.546667pt;}
.y10c{bottom:200.346667pt;}
.yc3{bottom:202.853333pt;}
.y67{bottom:203.266667pt;}
.y2b{bottom:203.581333pt;}
.y188{bottom:205.186667pt;}
.y102{bottom:207.173333pt;}
.y80{bottom:208.706667pt;}
.ydf{bottom:210.306667pt;}
.y11d{bottom:210.493333pt;}
.y1af{bottom:211.586667pt;}
.y164{bottom:214.053333pt;}
.y10d{bottom:215.426667pt;}
.y2a{bottom:218.941333pt;}
.y66{bottom:220.866667pt;}
.y152{bottom:222.693333pt;}
.yc6{bottom:225.946667pt;}
.y7f{bottom:227.906667pt;}
.y1ae{bottom:229.506667pt;}
.yeb{bottom:234.080000pt;}
.y29{bottom:234.301333pt;}
.y112{bottom:238.533333pt;}
.y187{bottom:238.786667pt;}
.y65{bottom:240.066667pt;}
.yde{bottom:245.506667pt;}
.y28{bottom:257.661333pt;}
.y1ad{bottom:260.226667pt;}
.y7e{bottom:261.506667pt;}
.yfb{bottom:262.146667pt;}
.ydd{bottom:263.106667pt;}
.y64{bottom:271.106667pt;}
.y186{bottom:272.386667pt;}
.y7d{bottom:279.426667pt;}
.y27{bottom:281.021333pt;}
.y1ac{bottom:285.826667pt;}
.yd7{bottom:294.173333pt;}
.yfa{bottom:295.773333pt;}
.y63{bottom:296.733333pt;}
.y7c{bottom:297.053333pt;}
.y1ab{bottom:303.773333pt;}
.y185{bottom:306.013333pt;}
.y26{bottom:312.421333pt;}
.yf9{bottom:313.373333pt;}
.y62{bottom:314.333333pt;}
.ydc{bottom:314.653333pt;}
.y7b{bottom:316.253333pt;}
.y1aa{bottom:321.373333pt;}
.yab{bottom:322.333333pt;}
.y25{bottom:327.781333pt;}
.yf8{bottom:330.973333pt;}
.y61{bottom:331.933333pt;}
.ydb{bottom:334.813333pt;}
.y1a9{bottom:338.973333pt;}
.y184{bottom:339.613333pt;}
.yaa{bottom:340.253333pt;}
.y24{bottom:343.141333pt;}
.y7a{bottom:344.413333pt;}
.y60{bottom:349.533333pt;}
.yda{bottom:355.293333pt;}
.y1a8{bottom:356.573333pt;}
.ya9{bottom:357.853333pt;}
.y23{bottom:358.501333pt;}
.yf7{bottom:362.013333pt;}
.y79{bottom:362.333333pt;}
.y5f{bottom:367.133333pt;}
.y183{bottom:373.533333pt;}
.y22{bottom:373.861333pt;}
.y1a7{bottom:374.173333pt;}
.ya8{bottom:375.453333pt;}
.yf6{bottom:376.733333pt;}
.y115{bottom:377.920000pt;}
.y78{bottom:380.253333pt;}
.y5e{bottom:385.053333pt;}
.y21{bottom:389.221333pt;}
.y182{bottom:391.133333pt;}
.y1a6{bottom:391.773333pt;}
.ya7{bottom:393.053333pt;}
.yd9{bottom:395.933333pt;}
.y77{bottom:398.173333pt;}
.y5d{bottom:402.693333pt;}
.y13b{bottom:403.013333pt;}
.y20{bottom:404.608000pt;}
.y1a5{bottom:409.413333pt;}
.ya6{bottom:410.693333pt;}
.y76{bottom:416.133333pt;}
.y1f{bottom:419.648000pt;}
.y181{bottom:419.653333pt;}
.y5c{bottom:420.293333pt;}
.y1a4{bottom:427.013333pt;}
.ya5{bottom:428.293333pt;}
.y1dc{bottom:428.613333pt;}
.y75{bottom:434.053333pt;}
.y1e{bottom:435.008000pt;}
.y13a{bottom:436.613333pt;}
.y5b{bottom:437.893333pt;}
.y180{bottom:439.813333pt;}
.yd6{bottom:441.733333pt;}
.y1a3{bottom:444.613333pt;}
.y1db{bottom:446.213333pt;}
.y1d{bottom:450.368000pt;}
.yb2{bottom:451.653333pt;}
.y74{bottom:453.253333pt;}
.y139{bottom:454.213333pt;}
.y5a{bottom:455.493333pt;}
.y17f{bottom:457.413333pt;}
.ya4{bottom:459.333333pt;}
.y1a2{bottom:462.213333pt;}
.y1da{bottom:465.093333pt;}
.y1c{bottom:465.728000pt;}
.yb1{bottom:471.173333pt;}
.y59{bottom:473.093333pt;}
.y17e{bottom:475.013333pt;}
.yd5{bottom:475.333333pt;}
.y73{bottom:478.853333pt;}
.y1a1{bottom:480.133333pt;}
.y1b{bottom:481.088000pt;}
.y1d9{bottom:482.693333pt;}
.y138{bottom:485.253333pt;}
.y58{bottom:490.693333pt;}
.ya3{bottom:491.013333pt;}
.y17d{bottom:495.493333pt;}
.y1a{bottom:496.448000pt;}
.y72{bottom:496.453333pt;}
.y1a0{bottom:497.733333pt;}
.y137{bottom:499.653333pt;}
.y13e{bottom:500.800000pt;}
.y1d8{bottom:501.573333pt;}
.yd4{bottom:503.493333pt;}
.yb0{bottom:504.773333pt;}
.y57{bottom:508.293333pt;}
.y71{bottom:514.400000pt;}
.y19f{bottom:515.360000pt;}
.y1d7{bottom:519.200000pt;}
.y19{bottom:519.834667pt;}
.y17c{bottom:520.800000pt;}
.yd3{bottom:521.120000pt;}
.ya2{bottom:522.080000pt;}
.yaf{bottom:522.400000pt;}
.y56{bottom:525.920000pt;}
.y70{bottom:532.000000pt;}
.y19e{bottom:532.960000pt;}
.y1d6{bottom:538.080000pt;}
.yd2{bottom:538.720000pt;}
.y55{bottom:543.520000pt;}
.ya1{bottom:547.680000pt;}
.y17b{bottom:549.280000pt;}
.y6f{bottom:549.600000pt;}
.y19d{bottom:550.560000pt;}
.yae{bottom:553.440000pt;}
.y1d5{bottom:555.680000pt;}
.yd1{bottom:556.320000pt;}
.y54{bottom:561.440000pt;}
.ya0{bottom:565.280000pt;}
.y6e{bottom:567.200000pt;}
.y124{bottom:568.160000pt;}
.y17a{bottom:569.760000pt;}
.y1d4{bottom:573.280000pt;}
.yd0{bottom:574.240000pt;}
.y53{bottom:579.040000pt;}
.y9f{bottom:582.880000pt;}
.y123{bottom:585.760000pt;}
.yad{bottom:586.080000pt;}
.y179{bottom:587.360000pt;}
.y1d3{bottom:590.880000pt;}
.ycf{bottom:591.840000pt;}
.y52{bottom:596.640000pt;}
.y6d{bottom:598.560000pt;}
.yac{bottom:599.840000pt;}
.y9e{bottom:600.480000pt;}
.y19c{bottom:603.360000pt;}
.y122{bottom:603.680000pt;}
.y178{bottom:604.960000pt;}
.yce{bottom:609.440000pt;}
.y1d2{bottom:609.760000pt;}
.y6c{bottom:613.920000pt;}
.y51{bottom:614.240000pt;}
.yf5{bottom:616.160000pt;}
.y9d{bottom:618.080000pt;}
.y177{bottom:625.146667pt;}
.y1d1{bottom:627.386667pt;}
.y6b{bottom:629.306667pt;}
.y50{bottom:631.866667pt;}
.y121{bottom:634.426667pt;}
.y9c{bottom:635.706667pt;}
.ycd{bottom:640.506667pt;}
.y6a{bottom:644.026667pt;}
.y1d0{bottom:644.986667pt;}
.y120{bottom:649.146667pt;}
.y4f{bottom:649.466667pt;}
.yf4{bottom:649.786667pt;}
.y176{bottom:650.746667pt;}
.y9b{bottom:653.306667pt;}
.ycc{bottom:655.226667pt;}
.ye0{bottom:656.640000pt;}
.y17{bottom:662.906667pt;}
.y1cf{bottom:664.186667pt;}
.y19b{bottom:665.466667pt;}
.y4e{bottom:667.066667pt;}
.yf3{bottom:667.386667pt;}
.y175{bottom:668.346667pt;}
.y9a{bottom:672.826667pt;}
.y16{bottom:680.826667pt;}
.y1ce{bottom:681.786667pt;}
.y19a{bottom:683.066667pt;}
.y4d{bottom:684.666667pt;}
.yf2{bottom:684.986667pt;}
.y15{bottom:693.306667pt;}
.y1cd{bottom:699.386667pt;}
.y199{bottom:700.666667pt;}
.y173{bottom:700.986667pt;}
.y1c2{bottom:701.306667pt;}
.y4c{bottom:702.266667pt;}
.yf1{bottom:702.586667pt;}
.y14{bottom:705.466667pt;}
.y99{bottom:706.426667pt;}
.y198{bottom:718.266667pt;}
.y4b{bottom:719.866667pt;}
.yf0{bottom:720.186667pt;}
.y1bc{bottom:721.786667pt;}
.y13{bottom:723.066667pt;}
.y98{bottom:724.026667pt;}
.y1cc{bottom:734.266667pt;}
.y197{bottom:735.906667pt;}
.y172{bottom:736.546667pt;}
.y4a{bottom:737.826667pt;}
.y12{bottom:740.066667pt;}
.y97{bottom:741.666667pt;}
.y1c1{bottom:741.986667pt;}
.y1cb{bottom:749.666667pt;}
.yef{bottom:751.266667pt;}
.y196{bottom:753.506667pt;}
.y171{bottom:754.146667pt;}
.y49{bottom:755.426667pt;}
.y96{bottom:759.266667pt;}
.y1c0{bottom:762.466667pt;}
.y11{bottom:764.706667pt;}
.yee{bottom:765.986667pt;}
.yfc{bottom:767.040000pt;}
.y1ca{bottom:767.266667pt;}
.y136{bottom:768.866667pt;}
.y195{bottom:771.426667pt;}
.y95{bottom:772.386667pt;}
.y48{bottom:773.026667pt;}
.y170{bottom:774.306667pt;}
.y1c9{bottom:784.866667pt;}
.y135{bottom:786.466667pt;}
.y10{bottom:789.026667pt;}
.y47{bottom:790.626667pt;}
.y16f{bottom:799.906667pt;}
.y1bf{bottom:800.226667pt;}
.y1c8{bottom:803.106667pt;}
.y134{bottom:804.066667pt;}
.y194{bottom:806.626667pt;}
.y46{bottom:808.226667pt;}
.y94{bottom:809.186667pt;}
.yf{bottom:813.666667pt;}
.y1c7{bottom:820.386667pt;}
.y1be{bottom:820.706667pt;}
.y133{bottom:821.666667pt;}
.y193{bottom:824.226667pt;}
.y45{bottom:825.826667pt;}
.y93{bottom:827.426667pt;}
.y16e{bottom:833.506667pt;}
.y9{bottom:836.706667pt;}
.y1b6{bottom:838.306667pt;}
.y192{bottom:841.826667pt;}
.y44{bottom:843.426667pt;}
.y91{bottom:845.666667pt;}
.y16d{bottom:851.133333pt;}
.y8{bottom:851.773333pt;}
.y12b{bottom:852.733333pt;}
.y1c6{bottom:856.253333pt;}
.y1bb{bottom:858.493333pt;}
.y191{bottom:859.453333pt;}
.y43{bottom:861.053333pt;}
.y90{bottom:863.933333pt;}
.y7{bottom:864.253333pt;}
.y16c{bottom:870.333333pt;}
.y1c5{bottom:873.853333pt;}
.y130{bottom:874.493333pt;}
.y190{bottom:877.053333pt;}
.y42{bottom:878.653333pt;}
.y1b9{bottom:878.973333pt;}
.y8e{bottom:882.173333pt;}
.y1c4{bottom:891.773333pt;}
.y18f{bottom:894.653333pt;}
.y12f{bottom:894.973333pt;}
.y41{bottom:896.253333pt;}
.y8d{bottom:900.733333pt;}
.y16b{bottom:901.693333pt;}
.y1c3{bottom:909.373333pt;}
.y18e{bottom:912.253333pt;}
.y6{bottom:912.893333pt;}
.y40{bottom:914.173333pt;}
.y12e{bottom:915.453333pt;}
.y1b8{bottom:916.733333pt;}
.y8c{bottom:918.973333pt;}
.y16a{bottom:927.293333pt;}
.y18d{bottom:929.853333pt;}
.y3f{bottom:931.773333pt;}
.ycb{bottom:934.333333pt;}
.y5{bottom:935.613333pt;}
.y12d{bottom:936.253333pt;}
.y8b{bottom:937.213333pt;}
.y169{bottom:944.893333pt;}
.y18c{bottom:947.773333pt;}
.y3e{bottom:949.373333pt;}
.yca{bottom:951.933333pt;}
.y4{bottom:953.533333pt;}
.y89{bottom:955.453333pt;}
.y12a{bottom:956.413333pt;}
.y1b4{bottom:957.373333pt;}
.y168{bottom:962.533333pt;}
.y18b{bottom:965.413333pt;}
.y3d{bottom:967.013333pt;}
.y3{bottom:972.453333pt;}
.y88{bottom:973.733333pt;}
.yc9{bottom:980.453333pt;}
.y129{bottom:982.053333pt;}
.y3c{bottom:984.613333pt;}
.y2{bottom:990.693333pt;}
.y86{bottom:992.293333pt;}
.y18a{bottom:996.133333pt;}
.yc8{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y3b{bottom:1015.653333pt;}
.y3a{bottom:1036.773333pt;}
.y39{bottom:1049.253333pt;}
.y38{bottom:1067.813333pt;}
.y37{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h9{height:13.792000pt;}
.h12{height:17.600000pt;}
.h13{height:17.632000pt;}
.h14{height:17.920000pt;}
.h1e{height:18.880000pt;}
.hd{height:24.263125pt;}
.h23{height:27.232000pt;}
.h25{height:35.200000pt;}
.h22{height:35.552000pt;}
.h5{height:35.553750pt;}
.h2{height:38.928750pt;}
.h1c{height:39.021437pt;}
.h10{height:39.138750pt;}
.h8{height:42.678750pt;}
.h17{height:42.791062pt;}
.h3{height:46.343750pt;}
.hc{height:46.785625pt;}
.h6{height:47.171250pt;}
.h21{height:49.524375pt;}
.h4{height:50.925000pt;}
.h26{height:51.663750pt;}
.h11{height:53.471250pt;}
.ha{height:62.100625pt;}
.hf{height:62.686875pt;}
.h20{height:64.284396pt;}
.h27{height:65.141250pt;}
.hb{height:69.515625pt;}
.h16{height:71.105417pt;}
.h1d{height:101.120000pt;}
.h24{height:116.512000pt;}
.h18{height:119.392000pt;}
.h1b{height:232.960000pt;}
.h1f{height:245.120000pt;}
.h15{height:248.640000pt;}
.h19{height:256.640000pt;}
.h1a{height:261.120000pt;}
.he{height:540.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:51.552000pt;}
.w11{width:56.352000pt;}
.w22{width:64.640000pt;}
.w1d{width:64.672000pt;}
.w23{width:65.280000pt;}
.w1e{width:65.312000pt;}
.wd{width:67.232000pt;}
.w19{width:71.392000pt;}
.w27{width:73.632000pt;}
.w18{width:74.272000pt;}
.wa{width:74.912000pt;}
.w2c{width:83.552000pt;}
.w9{width:84.512000pt;}
.w2b{width:98.944000pt;}
.w16{width:107.552000pt;}
.wc{width:107.904000pt;}
.we{width:140.186667pt;}
.w2d{width:140.546667pt;}
.w15{width:145.666667pt;}
.w17{width:147.866667pt;}
.wf{width:149.506667pt;}
.w8{width:150.466667pt;}
.w1c{width:159.426667pt;}
.w2e{width:176.386667pt;}
.w21{width:179.293333pt;}
.w26{width:195.933333pt;}
.w28{width:253.533333pt;}
.w1f{width:260.573333pt;}
.w24{width:270.213333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w2a{width:317.253333pt;}
.w13{width:456.320000pt;}
.w14{width:462.080000pt;}
.w1b{width:468.800000pt;}
.w12{width:487.680000pt;}
.w2f{width:506.466667pt;}
.wb{width:515.520000pt;}
.w1a{width:521.280000pt;}
.w20{width:557.986667pt;}
.w25{width:587.453333pt;}
.w29{width:595.773333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x28{left:4.160000pt;}
.x17{left:6.720000pt;}
.x9{left:7.680000pt;}
.x64{left:24.384000pt;}
.x24{left:28.000000pt;}
.x35{left:30.304000pt;}
.x22{left:34.592000pt;}
.x2c{left:36.896000pt;}
.x21{left:40.573333pt;}
.x2b{left:42.880000pt;}
.x5d{left:51.973333pt;}
.x5c{left:57.986667pt;}
.x65{left:59.586667pt;}
.x41{left:71.040000pt;}
.x2d{left:73.666667pt;}
.x2e{left:74.586667pt;}
.x40{left:77.373333pt;}
.x59{left:79.040000pt;}
.x1b{left:80.160000pt;}
.x23{left:82.106667pt;}
.x4a{left:84.986667pt;}
.x1e{left:86.333333pt;}
.x7{left:94.431988pt;}
.x13{left:95.711988pt;}
.xc{left:96.671988pt;}
.x72{left:98.911988pt;}
.x6b{left:103.392000pt;}
.x50{left:105.093333pt;}
.xb{left:106.271988pt;}
.x3c{left:107.586667pt;}
.x37{left:111.493333pt;}
.x15{left:118.463988pt;}
.x3a{left:122.303988pt;}
.x25{left:126.106667pt;}
.x4f{left:127.066667pt;}
.xd{left:132.223988pt;}
.x63{left:134.053333pt;}
.x2f{left:137.146667pt;}
.x30{left:138.333333pt;}
.x71{left:142.466655pt;}
.x31{left:144.000000pt;}
.x5f{left:146.146667pt;}
.x2a{left:147.266667pt;}
.x42{left:148.706667pt;}
.x5e{left:150.973333pt;}
.x43{left:152.866667pt;}
.xf{left:160.706655pt;}
.x12{left:167.106655pt;}
.x55{left:169.986667pt;}
.x4b{left:175.013333pt;}
.x4c{left:176.986667pt;}
.x62{left:177.946667pt;}
.x36{left:182.533333pt;}
.x3d{left:186.626667pt;}
.x32{left:192.986667pt;}
.x48{left:197.786667pt;}
.x27{left:206.173333pt;}
.x60{left:209.733333pt;}
.x5a{left:219.333333pt;}
.x45{left:220.706667pt;}
.x2{left:226.013322pt;}
.x44{left:229.053333pt;}
.x70{left:235.613333pt;}
.x6{left:243.613322pt;}
.x16{left:246.173333pt;}
.x67{left:257.693333pt;}
.x4d{left:258.853333pt;}
.x34{left:263.040000pt;}
.x3e{left:265.786667pt;}
.x1c{left:268.066667pt;}
.x4e{left:269.026667pt;}
.xa{left:270.533333pt;}
.x1f{left:274.266667pt;}
.x33{left:276.613333pt;}
.x69{left:286.853333pt;}
.x61{left:288.133333pt;}
.x6c{left:294.533333pt;}
.x46{left:297.053333pt;}
.x47{left:301.053333pt;}
.xe{left:302.208000pt;}
.x5{left:323.013322pt;}
.x18{left:331.333333pt;}
.x4{left:337.733322pt;}
.x14{left:339.013322pt;}
.x3f{left:344.960000pt;}
.x54{left:352.800000pt;}
.x3{left:354.079988pt;}
.x20{left:362.013333pt;}
.x1d{left:368.226667pt;}
.x6d{left:369.440000pt;}
.x58{left:385.986667pt;}
.x68{left:390.560000pt;}
.x8{left:396.959988pt;}
.x10{left:397.920000pt;}
.x6e{left:414.880000pt;}
.x29{left:416.480000pt;}
.x6a{left:419.360000pt;}
.x49{left:422.653333pt;}
.x51{left:428.253333pt;}
.x66{left:434.906667pt;}
.x38{left:453.920000pt;}
.x26{left:481.786667pt;}
.x5b{left:487.386667pt;}
.x6f{left:515.426667pt;}
.x53{left:530.466655pt;}
.x52{left:534.626655pt;}
.x39{left:552.546655pt;}
.x3b{left:558.626655pt;}
.x57{left:564.386655pt;}
.x19{left:582.626655pt;}
.x1a{left:610.493322pt;}
.x56{left:616.573322pt;}
.x11{left:662.973322pt;}
.x1{left:699.493322pt;}
}




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