
    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_d2851cfeecb233ea28f542e5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.173340;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_c25d1fe45e2a070bdfcbd000.woff')format("woff");}.ff2{font-family:ff2;line-height:0.766602;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_88f43cf2fad7199e171c04b6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_c8d3823e79e78b0d03897659.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_04ee639512d1d2a43db7765d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_630df012eb604335645a6278.woff')format("woff");}.ff6{font-family:ff6;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e64dca404d2da09b284447ce.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_03d4d15b6c035b966ffb0a8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.278000px;}
.ls11{letter-spacing:-1.242000px;}
.ls27{letter-spacing:-1.122000px;}
.ls1e{letter-spacing:-1.068000px;}
.ls25{letter-spacing:-0.942000px;}
.ls32{letter-spacing:-0.714000px;}
.ls18{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.558000px;}
.ls10{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.501000px;}
.ls12{letter-spacing:-0.402600px;}
.ls23{letter-spacing:-0.396000px;}
.ls17{letter-spacing:-0.348600px;}
.ls2c{letter-spacing:-0.334200px;}
.ls24{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.262800px;}
.ls20{letter-spacing:-0.224400px;}
.lse{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.085200px;}
.ls14{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.054000px;}
.ls2a{letter-spacing:0.063600px;}
.ls1f{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.118200px;}
.ls21{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.145440px;}
.ls0{letter-spacing:0.156960px;}
.ls28{letter-spacing:0.199200px;}
.ls1{letter-spacing:0.218880px;}
.ls30{letter-spacing:0.223800px;}
.ls4{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.317520px;}
.ls6{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.342000px;}
.ls39{letter-spacing:0.417600px;}
.ls29{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.726000px;}
.ls3e{letter-spacing:0.732000px;}
.lsa{letter-spacing:0.774000px;}
.ls26{letter-spacing:1.027440px;}
.ls2f{letter-spacing:1.374480px;}
.ls2d{letter-spacing:1.446000px;}
.ls2e{letter-spacing:1.452000px;}
.ls3d{letter-spacing:1.476000px;}
.ls3b{letter-spacing:1.554000px;}
.ls31{letter-spacing:1.800000px;}
.ls35{letter-spacing:1.919520px;}
.ls36{letter-spacing:2.068560px;}
.ls3c{letter-spacing:2.166000px;}
.ls38{letter-spacing:2.514240px;}
.ls37{letter-spacing:2.680560px;}
.ls1c{letter-spacing:9.011520px;}
.ls19{letter-spacing:53.651520px;}
.ls3a{letter-spacing:334.986480px;}
.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;}
}
.ws15{word-spacing:-18.780480px;}
.ws10{word-spacing:-18.492480px;}
.wse{word-spacing:-18.466680px;}
.wsb{word-spacing:-18.371520px;}
.wsd{word-spacing:-18.348480px;}
.ws1c{word-spacing:-18.107520px;}
.ws16{word-spacing:-18.060480px;}
.ws18{word-spacing:-18.014280px;}
.ws19{word-spacing:-18.005520px;}
.wsf{word-spacing:-17.847480px;}
.wsc{word-spacing:-17.664480px;}
.ws1e{word-spacing:-17.285520px;}
.ws1b{word-spacing:-16.777320px;}
.ws1d{word-spacing:-16.566480px;}
.ws13{word-spacing:-16.553520px;}
.ws1a{word-spacing:-16.290720px;}
.ws4{word-spacing:-15.282000px;}
.ws1{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.066000px;}
.ws3{word-spacing:-14.958000px;}
.wsa{word-spacing:-14.886000px;}
.ws12{word-spacing:-14.670000px;}
.ws11{word-spacing:-14.562000px;}
.ws14{word-spacing:-13.561680px;}
.ws17{word-spacing:-13.426080px;}
.ws6{word-spacing:-13.362480px;}
.ws7{word-spacing:-13.277280px;}
.ws0{word-spacing:-12.204000px;}
.ws9{word-spacing:-10.902240px;}
.ws2{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._2{width:1.032000px;}
._7{width:2.419200px;}
._b{width:4.195200px;}
._10{width:6.048000px;}
._11{width:7.358400px;}
._15{width:8.511600px;}
._3{width:9.696000px;}
._26{width:10.705920px;}
._4{width:11.718000px;}
._c{width:12.750000px;}
._a{width:13.878000px;}
._12{width:14.884080px;}
._f{width:16.362000px;}
._34{width:17.832960px;}
._d{width:18.846000px;}
._e{width:20.142000px;}
._6{width:21.627600px;}
._5{width:22.836000px;}
._21{width:24.792960px;}
._1a{width:26.037360px;}
._1b{width:27.205920px;}
._1{width:28.242000px;}
._23{width:29.548080px;}
._22{width:30.669120px;}
._19{width:32.513760px;}
._18{width:33.721200px;}
._4c{width:34.744560px;}
._16{width:35.835840px;}
._17{width:37.028160px;}
._29{width:39.068400px;}
._27{width:40.671360px;}
._28{width:41.934960px;}
._2b{width:43.366560px;}
._1c{width:44.584560px;}
._1f{width:45.634320px;}
._30{width:46.831440px;}
._31{width:48.558960px;}
._24{width:49.853280px;}
._1e{width:51.188400px;}
._1d{width:52.202160px;}
._2c{width:53.256960px;}
._20{width:54.581760px;}
._32{width:56.147520px;}
._2d{width:58.031280px;}
._2f{width:60.742080px;}
._2e{width:61.934400px;}
._25{width:65.776320px;}
._49{width:67.272720px;}
._48{width:70.200480px;}
._2a{width:79.951680px;}
._14{width:87.106800px;}
._13{width:88.437600px;}
._47{width:91.340880px;}
._45{width:92.356560px;}
._46{width:93.638160px;}
._39{width:103.472160px;}
._37{width:104.759280px;}
._38{width:106.586640px;}
._3f{width:111.988800px;}
._9{width:113.499600px;}
._8{width:114.534000px;}
._3e{width:132.607440px;}
._35{width:135.714960px;}
._36{width:184.465200px;}
._4a{width:220.197120px;}
._42{width:237.497520px;}
._44{width:264.766560px;}
._43{width:265.823760px;}
._3d{width:296.020080px;}
._3c{width:297.228960px;}
._3b{width:298.466640px;}
._33{width:335.439600px;}
._3a{width:336.625680px;}
._41{width:438.337200px;}
._40{width:439.616400px;}
._4b{width:1586.474880px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:30.240000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:2.505000px;}
.yed{bottom:2.520000px;}
.yf7{bottom:2.685000px;}
.ye5{bottom:2.700000px;}
.yaf{bottom:3.045000px;}
.yb9{bottom:3.046500px;}
.ybb{bottom:3.052500px;}
.ya6{bottom:3.060000px;}
.yd0{bottom:3.240000px;}
.ya7{bottom:9.000000px;}
.yff{bottom:10.425000px;}
.y10c{bottom:10.426500px;}
.yf9{bottom:17.265000px;}
.yec{bottom:17.280000px;}
.yea{bottom:17.310000px;}
.yf6{bottom:17.445000px;}
.ye4{bottom:17.460000px;}
.y10e{bottom:17.490000px;}
.yb1{bottom:19.605000px;}
.ycf{bottom:21.630000px;}
.yf5{bottom:32.025000px;}
.ye7{bottom:32.040000px;}
.ye9{bottom:32.070000px;}
.yef{bottom:32.220000px;}
.yfd{bottom:46.785000px;}
.y38{bottom:56.340000px;}
.yfc{bottom:61.545000px;}
.y37{bottom:71.280000px;}
.y46{bottom:74.340000px;}
.y36{bottom:87.840000px;}
.y32{bottom:108.756000px;}
.y35{bottom:111.456000px;}
.y31{bottom:111.816000px;}
.y130{bottom:120.096000px;}
.yba{bottom:124.603500px;}
.y30{bottom:130.356000px;}
.y68{bottom:131.796000px;}
.y2f{bottom:133.416000px;}
.y178{bottom:135.216000px;}
.y8a{bottom:138.276000px;}
.y1ab{bottom:138.636000px;}
.ya1{bottom:141.156000px;}
.y101{bottom:142.056000px;}
.y10b{bottom:146.743500px;}
.yb8{bottom:147.103500px;}
.y12f{bottom:150.510000px;}
.y2e{bottom:151.950000px;}
.y177{bottom:156.990000px;}
.ye0{bottom:158.610000px;}
.y67{bottom:162.210000px;}
.y145{bottom:163.650000px;}
.y2d{bottom:166.530000px;}
.y89{bottom:168.690000px;}
.y10a{bottom:169.245000px;}
.yb7{bottom:169.605000px;}
.ya0{bottom:171.390000px;}
.y100{bottom:172.470000px;}
.y176{bottom:175.350000px;}
.y12e{bottom:180.750000px;}
.y2c{bottom:181.290000px;}
.y1aa{bottom:182.010000px;}
.y144{bottom:183.630000px;}
.y2b{bottom:184.350000px;}
.ydf{bottom:188.850000px;}
.yfe{bottom:189.945000px;}
.yb6{bottom:192.105000px;}
.y66{bottom:192.630000px;}
.y175{bottom:193.710000px;}
.y109{bottom:198.765000px;}
.y88{bottom:198.930000px;}
.y1a9{bottom:200.550000px;}
.y9f{bottom:201.810000px;}
.y143{bottom:201.990000px;}
.y174{bottom:209.010000px;}
.y12d{bottom:211.170000px;}
.yfb{bottom:212.445000px;}
.yb5{bottom:214.605000px;}
.y2a{bottom:215.670000px;}
.yde{bottom:219.270000px;}
.y142{bottom:220.350000px;}
.y108{bottom:221.265000px;}
.y65{bottom:222.870000px;}
.y1a8{bottom:223.950000px;}
.y87{bottom:229.350000px;}
.y9e{bottom:232.050000px;}
.y173{bottom:233.670000px;}
.yb4{bottom:237.105000px;}
.y141{bottom:238.890000px;}
.y12c{bottom:241.410000px;}
.y1a7{bottom:242.310000px;}
.y29{bottom:248.430000px;}
.ydd{bottom:249.510000px;}
.y107{bottom:250.605000px;}
.y172{bottom:252.030000px;}
.y64{bottom:253.290000px;}
.y140{bottom:257.250000px;}
.yb3{bottom:259.605000px;}
.y86{bottom:259.770000px;}
.y1a6{bottom:260.670000px;}
.y9d{bottom:262.470000px;}
.y28{bottom:267.510000px;}
.y171{bottom:270.570000px;}
.y12b{bottom:271.830000px;}
.y13f{bottom:275.610000px;}
.y1a5{bottom:279.030000px;}
.ydc{bottom:279.930000px;}
.y106{bottom:280.125000px;}
.yb2{bottom:282.105000px;}
.y63{bottom:283.530000px;}
.y27{bottom:284.070000px;}
.yf8{bottom:286.065000px;}
.y170{bottom:288.930000px;}
.y85{bottom:290.010000px;}
.y9c{bottom:292.890000px;}
.y13e{bottom:293.970000px;}
.y1a4{bottom:297.390000px;}
.y26{bottom:300.630000px;}
.y12a{bottom:302.250000px;}
.y105{bottom:303.345000px;}
.yb0{bottom:304.605000px;}
.y16f{bottom:307.470000px;}
.ydb{bottom:310.350000px;}
.y13d{bottom:312.330000px;}
.y62{bottom:313.950000px;}
.yf4{bottom:315.405000px;}
.y1a3{bottom:315.930000px;}
.y25{bottom:317.190000px;}
.y84{bottom:320.430000px;}
.y9b{bottom:323.130000px;}
.y16e{bottom:325.830000px;}
.y13c{bottom:330.690000px;}
.y129{bottom:332.490000px;}
.y24{bottom:334.290000px;}
.yae{bottom:337.725000px;}
.yda{bottom:340.590000px;}
.y61{bottom:344.370000px;}
.y13b{bottom:349.230000px;}
.y83{bottom:350.670000px;}
.y23{bottom:350.850000px;}
.y104{bottom:351.210000px;}
.y1a2{bottom:352.830000px;}
.y9a{bottom:353.550000px;}
.yf3{bottom:359.535000px;}
.yad{bottom:360.255000px;}
.y16d{bottom:362.775000px;}
.y128{bottom:362.955000px;}
.y13a{bottom:367.635000px;}
.y103{bottom:367.815000px;}
.y22{bottom:368.175000px;}
.yd9{bottom:371.055000px;}
.y1a1{bottom:371.235000px;}
.y60{bottom:374.655000px;}
.y82{bottom:381.135000px;}
.y16c{bottom:381.315000px;}
.y99{bottom:381.675000px;}
.yac{bottom:382.755000px;}
.y102{bottom:384.375000px;}
.y21{bottom:385.455000px;}
.y139{bottom:385.995000px;}
.y1a0{bottom:386.535000px;}
.yf2{bottom:389.055000px;}
.y127{bottom:393.195000px;}
.yd8{bottom:401.295000px;}
.y16b{bottom:401.655000px;}
.y20{bottom:402.555000px;}
.y138{bottom:404.535000px;}
.y5f{bottom:405.075000px;}
.yab{bottom:405.255000px;}
.y19f{bottom:407.955000px;}
.y98{bottom:408.675000px;}
.y81{bottom:411.555000px;}
.y1f{bottom:419.835000px;}
.y16a{bottom:420.015000px;}
.y126{bottom:423.615000px;}
.y137{bottom:424.875000px;}
.y19e{bottom:426.315000px;}
.yaa{bottom:427.755000px;}
.yd7{bottom:431.715000px;}
.yf1{bottom:433.155000px;}
.y5e{bottom:435.315000px;}
.y1e{bottom:436.935000px;}
.y97{bottom:439.095000px;}
.y80{bottom:441.795000px;}
.y136{bottom:443.235000px;}
.y19d{bottom:444.675000px;}
.ya9{bottom:450.255000px;}
.y125{bottom:453.855000px;}
.y1d{bottom:454.215000px;}
.y169{bottom:456.735000px;}
.y135{bottom:461.595000px;}
.yd6{bottom:461.955000px;}
.y19c{bottom:463.215000px;}
.y5d{bottom:465.735000px;}
.y96{bottom:469.335000px;}
.y1c{bottom:471.495000px;}
.y7f{bottom:472.215000px;}
.ya8{bottom:472.755000px;}
.y168{bottom:475.095000px;}
.yf0{bottom:477.255000px;}
.y134{bottom:479.955000px;}
.y19b{bottom:481.575000px;}
.y124{bottom:484.275000px;}
.y1b{bottom:488.595000px;}
.yd5{bottom:492.375000px;}
.y167{bottom:493.635000px;}
.y5c{bottom:495.975000px;}
.y133{bottom:498.495000px;}
.y95{bottom:499.755000px;}
.y19a{bottom:499.935000px;}
.y7e{bottom:502.455000px;}
.y1a{bottom:505.875000px;}
.yd4{bottom:509.835000px;}
.y166{bottom:511.995000px;}
.y123{bottom:514.695000px;}
.y199{bottom:518.295000px;}
.yee{bottom:521.355000px;}
.ya5{bottom:522.255000px;}
.y19{bottom:522.975000px;}
.y5b{bottom:526.395000px;}
.y132{bottom:528.555000px;}
.y94{bottom:530.175000px;}
.y165{bottom:530.355000px;}
.yd3{bottom:532.335000px;}
.y7d{bottom:532.875000px;}
.y198{bottom:536.835000px;}
.ya4{bottom:538.815000px;}
.y18{bottom:540.255000px;}
.y122{bottom:544.935000px;}
.y164{bottom:548.715000px;}
.yd2{bottom:554.835000px;}
.y5a{bottom:556.815000px;}
.y197{bottom:557.175000px;}
.y17{bottom:557.355000px;}
.y93{bottom:560.415000px;}
.y131{bottom:561.495000px;}
.y7c{bottom:563.115000px;}
.ya3{bottom:563.655000px;}
.yeb{bottom:565.635000px;}
.y163{bottom:567.075000px;}
.y16{bottom:573.915000px;}
.y121{bottom:575.355000px;}
.y196{bottom:575.535000px;}
.yd1{bottom:577.335000px;}
.y162{bottom:585.615000px;}
.y59{bottom:587.055000px;}
.y15{bottom:590.475000px;}
.y92{bottom:590.835000px;}
.y7b{bottom:593.535000px;}
.y195{bottom:594.075000px;}
.yce{bottom:600.555000px;}
.y161{bottom:603.975000px;}
.y120{bottom:605.595000px;}
.y14{bottom:609.195000px;}
.y194{bottom:609.375000px;}
.ye8{bottom:609.735000px;}
.y58{bottom:617.505000px;}
.y91{bottom:621.105000px;}
.y160{bottom:622.365000px;}
.y7a{bottom:623.985000px;}
.y13{bottom:625.965000px;}
.y193{bottom:634.065000px;}
.y11f{bottom:636.045000px;}
.y15f{bottom:640.725000px;}
.ycd{bottom:641.265000px;}
.y12{bottom:642.525000px;}
.y57{bottom:647.745000px;}
.y90{bottom:651.525000px;}
.y192{bottom:652.425000px;}
.ye6{bottom:653.865000px;}
.y79{bottom:654.225000px;}
.ycc{bottom:657.825000px;}
.y15e{bottom:659.085000px;}
.y11{bottom:659.625000px;}
.y11e{bottom:666.465000px;}
.y191{bottom:670.785000px;}
.y10{bottom:676.905000px;}
.y15d{bottom:677.445000px;}
.y56{bottom:678.165000px;}
.y8f{bottom:681.765000px;}
.y78{bottom:684.645000px;}
.ycb{bottom:684.825000px;}
.y190{bottom:689.325000px;}
.yf{bottom:694.005000px;}
.y15c{bottom:695.985000px;}
.y11d{bottom:696.705000px;}
.ye3{bottom:698.685000px;}
.y55{bottom:708.585000px;}
.ye{bottom:711.285000px;}
.y18f{bottom:711.465000px;}
.y8e{bottom:712.185000px;}
.y15b{bottom:714.345000px;}
.y77{bottom:714.885000px;}
.yca{bottom:715.245000px;}
.y11c{bottom:727.125000px;}
.yd{bottom:727.845000px;}
.y18e{bottom:729.825000px;}
.ye2{bottom:731.985000px;}
.y15a{bottom:732.705000px;}
.y54{bottom:738.825000px;}
.y8d{bottom:742.605000px;}
.yc{bottom:744.405000px;}
.y76{bottom:745.305000px;}
.yc9{bottom:745.665000px;}
.y18d{bottom:748.185000px;}
.ye1{bottom:748.545000px;}
.y11b{bottom:757.365000px;}
.y159{bottom:757.545000px;}
.yb{bottom:761.505000px;}
.y18c{bottom:766.725000px;}
.y8c{bottom:772.845000px;}
.y75{bottom:775.725000px;}
.y53{bottom:775.905000px;}
.y18b{bottom:785.085000px;}
.y11a{bottom:787.785000px;}
.y9{bottom:793.185000px;}
.y158{bottom:794.445000px;}
.ya{bottom:800.025000px;}
.y52{bottom:803.265000px;}
.y18a{bottom:803.445000px;}
.y8b{bottom:804.345000px;}
.y74{bottom:805.965000px;}
.yc8{bottom:806.325000px;}
.y119{bottom:818.025000px;}
.y157{bottom:819.285000px;}
.y189{bottom:821.805000px;}
.y7{bottom:827.745000px;}
.y8{bottom:832.965000px;}
.y51{bottom:833.505000px;}
.y73{bottom:836.385000px;}
.yc7{bottom:836.565000px;}
.y156{bottom:837.645000px;}
.y188{bottom:840.165000px;}
.y118{bottom:848.445000px;}
.y187{bottom:858.525000px;}
.y155{bottom:862.485000px;}
.y50{bottom:863.925000px;}
.y72{bottom:866.625000px;}
.yc6{bottom:866.985000px;}
.y6{bottom:867.525000px;}
.y186{bottom:877.110000px;}
.y117{bottom:878.910000px;}
.y154{bottom:881.070000px;}
.y4f{bottom:894.390000px;}
.y71{bottom:897.090000px;}
.yc5{bottom:897.270000px;}
.y153{bottom:899.430000px;}
.y185{bottom:901.950000px;}
.y5{bottom:907.170000px;}
.y116{bottom:909.150000px;}
.y152{bottom:917.790000px;}
.y184{bottom:920.310000px;}
.y4e{bottom:924.630000px;}
.ya2{bottom:925.710000px;}
.y70{bottom:927.330000px;}
.yc4{bottom:927.690000px;}
.y151{bottom:936.150000px;}
.y183{bottom:938.670000px;}
.y115{bottom:939.570000px;}
.y4{bottom:945.690000px;}
.y43{bottom:952.710000px;}
.y182{bottom:953.970000px;}
.y150{bottom:954.510000px;}
.y4d{bottom:955.050000px;}
.y6f{bottom:957.750000px;}
.yc3{bottom:958.110000px;}
.y114{bottom:969.810000px;}
.y42{bottom:971.790000px;}
.y14f{bottom:973.590000px;}
.y1b1{bottom:975.210000px;}
.y181{bottom:975.570000px;}
.y3{bottom:984.210000px;}
.y4c{bottom:985.290000px;}
.y6e{bottom:988.170000px;}
.yc2{bottom:988.350000px;}
.y41{bottom:990.870000px;}
.y14e{bottom:991.950000px;}
.y1b0{bottom:993.570000px;}
.y180{bottom:993.930000px;}
.y113{bottom:1000.230000px;}
.y40{bottom:1009.770000px;}
.y14d{bottom:1010.310000px;}
.y1af{bottom:1011.930000px;}
.y17f{bottom:1012.290000px;}
.y4b{bottom:1015.710000px;}
.y6d{bottom:1018.410000px;}
.yc1{bottom:1018.770000px;}
.y2{bottom:1022.910000px;}
.y14c{bottom:1028.670000px;}
.y3f{bottom:1028.850000px;}
.y1ae{bottom:1030.290000px;}
.y112{bottom:1030.650000px;}
.y17e{bottom:1030.830000px;}
.y4a{bottom:1046.130000px;}
.y14b{bottom:1047.210000px;}
.y3e{bottom:1047.930000px;}
.y6c{bottom:1048.830000px;}
.yc0{bottom:1049.010000px;}
.y17d{bottom:1049.190000px;}
.y1{bottom:1055.310000px;}
.y111{bottom:1062.150000px;}
.y14a{bottom:1065.570000px;}
.ybf{bottom:1066.650000px;}
.y3d{bottom:1067.010000px;}
.y1ad{bottom:1067.190000px;}
.y17c{bottom:1067.730000px;}
.y49{bottom:1076.370000px;}
.y6b{bottom:1079.070000px;}
.y149{bottom:1083.930000px;}
.y1ac{bottom:1085.550000px;}
.y3c{bottom:1085.910000px;}
.y17b{bottom:1086.090000px;}
.ybe{bottom:1089.150000px;}
.y110{bottom:1092.750000px;}
.y148{bottom:1102.470000px;}
.y17a{bottom:1104.450000px;}
.y3b{bottom:1104.990000px;}
.y48{bottom:1106.790000px;}
.y6a{bottom:1109.490000px;}
.y10f{bottom:1111.110000px;}
.ybd{bottom:1111.650000px;}
.y147{bottom:1120.830000px;}
.y179{bottom:1122.810000px;}
.y3a{bottom:1124.070000px;}
.y10d{bottom:1127.130000px;}
.ybc{bottom:1134.180000px;}
.y47{bottom:1138.320000px;}
.y69{bottom:1139.940000px;}
.y146{bottom:1141.380000px;}
.y39{bottom:1143.180000px;}
.y45{bottom:1177.560000px;}
.y34{bottom:1179.720000px;}
.y44{bottom:1196.100000px;}
.y33{bottom:1196.280000px;}
.h11{height:22.485000px;}
.h14{height:22.492500px;}
.h15{height:22.500000px;}
.h12{height:22.521000px;}
.h16{height:22.530000px;}
.ha{height:27.980859px;}
.h1f{height:29.325000px;}
.h1d{height:29.505000px;}
.h18{height:29.520000px;}
.h21{height:29.550000px;}
.h13{height:33.105000px;}
.he{height:35.520469px;}
.h7{height:35.806641px;}
.h17{height:36.930000px;}
.h1b{height:44.085000px;}
.h19{height:44.100000px;}
.h1e{height:44.121000px;}
.h1a{height:44.130000px;}
.h1c{height:44.265000px;}
.hb{height:44.636133px;}
.hd{height:46.567617px;}
.h22{height:46.629141px;}
.h9{height:49.965820px;}
.h5{height:52.127930px;}
.h8{height:53.709961px;}
.hc{height:55.295508px;}
.hf{height:61.291406px;}
.h10{height:63.943594px;}
.h2{height:69.503906px;}
.h6{height:71.613281px;}
.h20{height:73.605000px;}
.h3{height:81.319570px;}
.h4{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:53.265000px;}
.w14{width:63.741000px;}
.wa{width:65.880000px;}
.w15{width:74.325000px;}
.wd{width:76.701000px;}
.w4{width:84.945000px;}
.w10{width:84.981000px;}
.w12{width:84.996000px;}
.w5{width:90.381000px;}
.w13{width:95.745000px;}
.w11{width:95.760000px;}
.wb{width:99.396000px;}
.wc{width:110.865000px;}
.w8{width:127.461000px;}
.we{width:127.609500px;}
.w7{width:138.276000px;}
.w9{width:276.499500px;}
.w6{width:372.079500px;}
.w3{width:462.484500px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:5.385000px;}
.x1d{left:8.985000px;}
.x55{left:10.069500px;}
.x3a{left:11.160000px;}
.x2e{left:12.409500px;}
.x4e{left:14.205000px;}
.x53{left:16.185000px;}
.x56{left:18.345000px;}
.x57{left:19.440000px;}
.x2d{left:20.509500px;}
.x58{left:21.589500px;}
.x40{left:23.610000px;}
.x50{left:24.690000px;}
.x25{left:25.909500px;}
.x3d{left:26.985000px;}
.x4a{left:28.260000px;}
.x51{left:30.060000px;}
.x22{left:31.125000px;}
.x41{left:33.120000px;}
.x28{left:34.905000px;}
.x59{left:36.345000px;}
.x52{left:37.605000px;}
.x3c{left:39.090000px;}
.x3f{left:40.665000px;}
.x1f{left:42.465000px;}
.x20{left:45.030000px;}
.x54{left:47.503500px;}
.x35{left:49.125000px;}
.x32{left:50.205000px;}
.x42{left:55.605000px;}
.x34{left:58.890000px;}
.x30{left:60.330000px;}
.x2b{left:61.363500px;}
.x46{left:63.883500px;}
.x37{left:78.643500px;}
.x45{left:106.246500px;}
.x36{left:110.143500px;}
.x33{left:112.123500px;}
.x38{left:115.183500px;}
.x18{left:122.446500px;}
.xf{left:127.656000px;}
.x11{left:131.796000px;}
.x2{left:137.916000px;}
.x43{left:139.536000px;}
.x5{left:169.050000px;}
.x3{left:170.130000px;}
.x1e{left:173.863500px;}
.x6{left:174.990000px;}
.x2c{left:178.363500px;}
.x15{left:180.750000px;}
.x24{left:201.988500px;}
.x21{left:204.868500px;}
.x27{left:206.488500px;}
.x26{left:208.828500px;}
.x2a{left:211.348500px;}
.x23{left:213.148500px;}
.x29{left:221.788500px;}
.x19{left:231.148500px;}
.x47{left:233.865000px;}
.xa{left:235.830000px;}
.x39{left:241.230000px;}
.x5a{left:264.270000px;}
.x48{left:287.145000px;}
.x16{left:295.770000px;}
.x44{left:303.375000px;}
.x7{left:316.335000px;}
.x10{left:343.695000px;}
.x49{left:372.135000px;}
.x4{left:404.715000px;}
.x12{left:432.435000px;}
.x13{left:442.335000px;}
.x17{left:446.475000px;}
.x4b{left:467.895000px;}
.x3b{left:470.055000px;}
.xb{left:478.873125px;}
.xc{left:483.375000px;}
.x14{left:492.375000px;}
.x2f{left:494.535000px;}
.x4c{left:552.900000px;}
.x8{left:569.263125px;}
.x9{left:576.825000px;}
.x1a{left:584.940000px;}
.x31{left:632.820000px;}
.x4d{left:648.660000px;}
.xd{left:652.603125px;}
.xe{left:657.105000px;}
.x1c{left:669.900000px;}
.x3e{left:680.340000px;}
.x4f{left:712.410000px;}
.x1{left:763.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.136000pt;}
.ls11{letter-spacing:-1.104000pt;}
.ls27{letter-spacing:-0.997333pt;}
.ls1e{letter-spacing:-0.949333pt;}
.ls25{letter-spacing:-0.837333pt;}
.ls32{letter-spacing:-0.634667pt;}
.ls18{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.496000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.445333pt;}
.ls12{letter-spacing:-0.357867pt;}
.ls23{letter-spacing:-0.352000pt;}
.ls17{letter-spacing:-0.309867pt;}
.ls2c{letter-spacing:-0.297067pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.233600pt;}
.ls20{letter-spacing:-0.199467pt;}
.lse{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.075733pt;}
.ls14{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.048000pt;}
.ls2a{letter-spacing:0.056533pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.105067pt;}
.ls21{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.129280pt;}
.ls0{letter-spacing:0.139520pt;}
.ls28{letter-spacing:0.177067pt;}
.ls1{letter-spacing:0.194560pt;}
.ls30{letter-spacing:0.198933pt;}
.ls4{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.282240pt;}
.ls6{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.304000pt;}
.ls39{letter-spacing:0.371200pt;}
.ls29{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.645333pt;}
.ls3e{letter-spacing:0.650667pt;}
.lsa{letter-spacing:0.688000pt;}
.ls26{letter-spacing:0.913280pt;}
.ls2f{letter-spacing:1.221760pt;}
.ls2d{letter-spacing:1.285333pt;}
.ls2e{letter-spacing:1.290667pt;}
.ls3d{letter-spacing:1.312000pt;}
.ls3b{letter-spacing:1.381333pt;}
.ls31{letter-spacing:1.600000pt;}
.ls35{letter-spacing:1.706240pt;}
.ls36{letter-spacing:1.838720pt;}
.ls3c{letter-spacing:1.925333pt;}
.ls38{letter-spacing:2.234880pt;}
.ls37{letter-spacing:2.382720pt;}
.ls1c{letter-spacing:8.010240pt;}
.ls19{letter-spacing:47.690240pt;}
.ls3a{letter-spacing:297.765760pt;}
.ws15{word-spacing:-16.693760pt;}
.ws10{word-spacing:-16.437760pt;}
.wse{word-spacing:-16.414827pt;}
.wsb{word-spacing:-16.330240pt;}
.wsd{word-spacing:-16.309760pt;}
.ws1c{word-spacing:-16.095573pt;}
.ws16{word-spacing:-16.053760pt;}
.ws18{word-spacing:-16.012693pt;}
.ws19{word-spacing:-16.004907pt;}
.wsf{word-spacing:-15.864427pt;}
.wsc{word-spacing:-15.701760pt;}
.ws1e{word-spacing:-15.364907pt;}
.ws1b{word-spacing:-14.913173pt;}
.ws1d{word-spacing:-14.725760pt;}
.ws13{word-spacing:-14.714240pt;}
.ws1a{word-spacing:-14.480640pt;}
.ws4{word-spacing:-13.584000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.392000pt;}
.ws3{word-spacing:-13.296000pt;}
.wsa{word-spacing:-13.232000pt;}
.ws12{word-spacing:-13.040000pt;}
.ws11{word-spacing:-12.944000pt;}
.ws14{word-spacing:-12.054827pt;}
.ws17{word-spacing:-11.934293pt;}
.ws6{word-spacing:-11.877760pt;}
.ws7{word-spacing:-11.802027pt;}
.ws0{word-spacing:-10.848000pt;}
.ws9{word-spacing:-9.690880pt;}
.ws2{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._2{width:0.917333pt;}
._7{width:2.150400pt;}
._b{width:3.729067pt;}
._10{width:5.376000pt;}
._11{width:6.540800pt;}
._15{width:7.565867pt;}
._3{width:8.618667pt;}
._26{width:9.516373pt;}
._4{width:10.416000pt;}
._c{width:11.333333pt;}
._a{width:12.336000pt;}
._12{width:13.230293pt;}
._f{width:14.544000pt;}
._34{width:15.851520pt;}
._d{width:16.752000pt;}
._e{width:17.904000pt;}
._6{width:19.224533pt;}
._5{width:20.298667pt;}
._21{width:22.038187pt;}
._1a{width:23.144320pt;}
._1b{width:24.183040pt;}
._1{width:25.104000pt;}
._23{width:26.264960pt;}
._22{width:27.261440pt;}
._19{width:28.901120pt;}
._18{width:29.974400pt;}
._4c{width:30.884053pt;}
._16{width:31.854080pt;}
._17{width:32.913920pt;}
._29{width:34.727467pt;}
._27{width:36.152320pt;}
._28{width:37.275520pt;}
._2b{width:38.548053pt;}
._1c{width:39.630720pt;}
._1f{width:40.563840pt;}
._30{width:41.627947pt;}
._31{width:43.163520pt;}
._24{width:44.314027pt;}
._1e{width:45.500800pt;}
._1d{width:46.401920pt;}
._2c{width:47.339520pt;}
._20{width:48.517120pt;}
._32{width:49.908907pt;}
._2d{width:51.583360pt;}
._2f{width:53.992960pt;}
._2e{width:55.052800pt;}
._25{width:58.467840pt;}
._49{width:59.797973pt;}
._48{width:62.400427pt;}
._2a{width:71.068160pt;}
._14{width:77.428267pt;}
._13{width:78.611200pt;}
._47{width:81.191893pt;}
._45{width:82.094720pt;}
._46{width:83.233920pt;}
._39{width:91.975253pt;}
._37{width:93.119360pt;}
._38{width:94.743680pt;}
._3f{width:99.545600pt;}
._9{width:100.888533pt;}
._8{width:101.808000pt;}
._3e{width:117.873280pt;}
._35{width:120.635520pt;}
._36{width:163.969067pt;}
._4a{width:195.730773pt;}
._42{width:211.108907pt;}
._44{width:235.348053pt;}
._43{width:236.287787pt;}
._3d{width:263.128960pt;}
._3c{width:264.203520pt;}
._3b{width:265.303680pt;}
._33{width:298.168533pt;}
._3a{width:299.222827pt;}
._41{width:389.633067pt;}
._40{width:390.770133pt;}
._4b{width:1410.199893pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:2.226667pt;}
.yed{bottom:2.240000pt;}
.yf7{bottom:2.386667pt;}
.ye5{bottom:2.400000pt;}
.yaf{bottom:2.706667pt;}
.yb9{bottom:2.708000pt;}
.ybb{bottom:2.713333pt;}
.ya6{bottom:2.720000pt;}
.yd0{bottom:2.880000pt;}
.ya7{bottom:8.000000pt;}
.yff{bottom:9.266667pt;}
.y10c{bottom:9.268000pt;}
.yf9{bottom:15.346667pt;}
.yec{bottom:15.360000pt;}
.yea{bottom:15.386667pt;}
.yf6{bottom:15.506667pt;}
.ye4{bottom:15.520000pt;}
.y10e{bottom:15.546667pt;}
.yb1{bottom:17.426667pt;}
.ycf{bottom:19.226667pt;}
.yf5{bottom:28.466667pt;}
.ye7{bottom:28.480000pt;}
.ye9{bottom:28.506667pt;}
.yef{bottom:28.640000pt;}
.yfd{bottom:41.586667pt;}
.y38{bottom:50.080000pt;}
.yfc{bottom:54.706667pt;}
.y37{bottom:63.360000pt;}
.y46{bottom:66.080000pt;}
.y36{bottom:78.080000pt;}
.y32{bottom:96.672000pt;}
.y35{bottom:99.072000pt;}
.y31{bottom:99.392000pt;}
.y130{bottom:106.752000pt;}
.yba{bottom:110.758667pt;}
.y30{bottom:115.872000pt;}
.y68{bottom:117.152000pt;}
.y2f{bottom:118.592000pt;}
.y178{bottom:120.192000pt;}
.y8a{bottom:122.912000pt;}
.y1ab{bottom:123.232000pt;}
.ya1{bottom:125.472000pt;}
.y101{bottom:126.272000pt;}
.y10b{bottom:130.438667pt;}
.yb8{bottom:130.758667pt;}
.y12f{bottom:133.786667pt;}
.y2e{bottom:135.066667pt;}
.y177{bottom:139.546667pt;}
.ye0{bottom:140.986667pt;}
.y67{bottom:144.186667pt;}
.y145{bottom:145.466667pt;}
.y2d{bottom:148.026667pt;}
.y89{bottom:149.946667pt;}
.y10a{bottom:150.440000pt;}
.yb7{bottom:150.760000pt;}
.ya0{bottom:152.346667pt;}
.y100{bottom:153.306667pt;}
.y176{bottom:155.866667pt;}
.y12e{bottom:160.666667pt;}
.y2c{bottom:161.146667pt;}
.y1aa{bottom:161.786667pt;}
.y144{bottom:163.226667pt;}
.y2b{bottom:163.866667pt;}
.ydf{bottom:167.866667pt;}
.yfe{bottom:168.840000pt;}
.yb6{bottom:170.760000pt;}
.y66{bottom:171.226667pt;}
.y175{bottom:172.186667pt;}
.y109{bottom:176.680000pt;}
.y88{bottom:176.826667pt;}
.y1a9{bottom:178.266667pt;}
.y9f{bottom:179.386667pt;}
.y143{bottom:179.546667pt;}
.y174{bottom:185.786667pt;}
.y12d{bottom:187.706667pt;}
.yfb{bottom:188.840000pt;}
.yb5{bottom:190.760000pt;}
.y2a{bottom:191.706667pt;}
.yde{bottom:194.906667pt;}
.y142{bottom:195.866667pt;}
.y108{bottom:196.680000pt;}
.y65{bottom:198.106667pt;}
.y1a8{bottom:199.066667pt;}
.y87{bottom:203.866667pt;}
.y9e{bottom:206.266667pt;}
.y173{bottom:207.706667pt;}
.yb4{bottom:210.760000pt;}
.y141{bottom:212.346667pt;}
.y12c{bottom:214.586667pt;}
.y1a7{bottom:215.386667pt;}
.y29{bottom:220.826667pt;}
.ydd{bottom:221.786667pt;}
.y107{bottom:222.760000pt;}
.y172{bottom:224.026667pt;}
.y64{bottom:225.146667pt;}
.y140{bottom:228.666667pt;}
.yb3{bottom:230.760000pt;}
.y86{bottom:230.906667pt;}
.y1a6{bottom:231.706667pt;}
.y9d{bottom:233.306667pt;}
.y28{bottom:237.786667pt;}
.y171{bottom:240.506667pt;}
.y12b{bottom:241.626667pt;}
.y13f{bottom:244.986667pt;}
.y1a5{bottom:248.026667pt;}
.ydc{bottom:248.826667pt;}
.y106{bottom:249.000000pt;}
.yb2{bottom:250.760000pt;}
.y63{bottom:252.026667pt;}
.y27{bottom:252.506667pt;}
.yf8{bottom:254.280000pt;}
.y170{bottom:256.826667pt;}
.y85{bottom:257.786667pt;}
.y9c{bottom:260.346667pt;}
.y13e{bottom:261.306667pt;}
.y1a4{bottom:264.346667pt;}
.y26{bottom:267.226667pt;}
.y12a{bottom:268.666667pt;}
.y105{bottom:269.640000pt;}
.yb0{bottom:270.760000pt;}
.y16f{bottom:273.306667pt;}
.ydb{bottom:275.866667pt;}
.y13d{bottom:277.626667pt;}
.y62{bottom:279.066667pt;}
.yf4{bottom:280.360000pt;}
.y1a3{bottom:280.826667pt;}
.y25{bottom:281.946667pt;}
.y84{bottom:284.826667pt;}
.y9b{bottom:287.226667pt;}
.y16e{bottom:289.626667pt;}
.y13c{bottom:293.946667pt;}
.y129{bottom:295.546667pt;}
.y24{bottom:297.146667pt;}
.yae{bottom:300.200000pt;}
.yda{bottom:302.746667pt;}
.y61{bottom:306.106667pt;}
.y13b{bottom:310.426667pt;}
.y83{bottom:311.706667pt;}
.y23{bottom:311.866667pt;}
.y104{bottom:312.186667pt;}
.y1a2{bottom:313.626667pt;}
.y9a{bottom:314.266667pt;}
.yf3{bottom:319.586667pt;}
.yad{bottom:320.226667pt;}
.y16d{bottom:322.466667pt;}
.y128{bottom:322.626667pt;}
.y13a{bottom:326.786667pt;}
.y103{bottom:326.946667pt;}
.y22{bottom:327.266667pt;}
.yd9{bottom:329.826667pt;}
.y1a1{bottom:329.986667pt;}
.y60{bottom:333.026667pt;}
.y82{bottom:338.786667pt;}
.y16c{bottom:338.946667pt;}
.y99{bottom:339.266667pt;}
.yac{bottom:340.226667pt;}
.y102{bottom:341.666667pt;}
.y21{bottom:342.626667pt;}
.y139{bottom:343.106667pt;}
.y1a0{bottom:343.586667pt;}
.yf2{bottom:345.826667pt;}
.y127{bottom:349.506667pt;}
.yd8{bottom:356.706667pt;}
.y16b{bottom:357.026667pt;}
.y20{bottom:357.826667pt;}
.y138{bottom:359.586667pt;}
.y5f{bottom:360.066667pt;}
.yab{bottom:360.226667pt;}
.y19f{bottom:362.626667pt;}
.y98{bottom:363.266667pt;}
.y81{bottom:365.826667pt;}
.y1f{bottom:373.186667pt;}
.y16a{bottom:373.346667pt;}
.y126{bottom:376.546667pt;}
.y137{bottom:377.666667pt;}
.y19e{bottom:378.946667pt;}
.yaa{bottom:380.226667pt;}
.yd7{bottom:383.746667pt;}
.yf1{bottom:385.026667pt;}
.y5e{bottom:386.946667pt;}
.y1e{bottom:388.386667pt;}
.y97{bottom:390.306667pt;}
.y80{bottom:392.706667pt;}
.y136{bottom:393.986667pt;}
.y19d{bottom:395.266667pt;}
.ya9{bottom:400.226667pt;}
.y125{bottom:403.426667pt;}
.y1d{bottom:403.746667pt;}
.y169{bottom:405.986667pt;}
.y135{bottom:410.306667pt;}
.yd6{bottom:410.626667pt;}
.y19c{bottom:411.746667pt;}
.y5d{bottom:413.986667pt;}
.y96{bottom:417.186667pt;}
.y1c{bottom:419.106667pt;}
.y7f{bottom:419.746667pt;}
.ya8{bottom:420.226667pt;}
.y168{bottom:422.306667pt;}
.yf0{bottom:424.226667pt;}
.y134{bottom:426.626667pt;}
.y19b{bottom:428.066667pt;}
.y124{bottom:430.466667pt;}
.y1b{bottom:434.306667pt;}
.yd5{bottom:437.666667pt;}
.y167{bottom:438.786667pt;}
.y5c{bottom:440.866667pt;}
.y133{bottom:443.106667pt;}
.y95{bottom:444.226667pt;}
.y19a{bottom:444.386667pt;}
.y7e{bottom:446.626667pt;}
.y1a{bottom:449.666667pt;}
.yd4{bottom:453.186667pt;}
.y166{bottom:455.106667pt;}
.y123{bottom:457.506667pt;}
.y199{bottom:460.706667pt;}
.yee{bottom:463.426667pt;}
.ya5{bottom:464.226667pt;}
.y19{bottom:464.866667pt;}
.y5b{bottom:467.906667pt;}
.y132{bottom:469.826667pt;}
.y94{bottom:471.266667pt;}
.y165{bottom:471.426667pt;}
.yd3{bottom:473.186667pt;}
.y7d{bottom:473.666667pt;}
.y198{bottom:477.186667pt;}
.ya4{bottom:478.946667pt;}
.y18{bottom:480.226667pt;}
.y122{bottom:484.386667pt;}
.y164{bottom:487.746667pt;}
.yd2{bottom:493.186667pt;}
.y5a{bottom:494.946667pt;}
.y197{bottom:495.266667pt;}
.y17{bottom:495.426667pt;}
.y93{bottom:498.146667pt;}
.y131{bottom:499.106667pt;}
.y7c{bottom:500.546667pt;}
.ya3{bottom:501.026667pt;}
.yeb{bottom:502.786667pt;}
.y163{bottom:504.066667pt;}
.y16{bottom:510.146667pt;}
.y121{bottom:511.426667pt;}
.y196{bottom:511.586667pt;}
.yd1{bottom:513.186667pt;}
.y162{bottom:520.546667pt;}
.y59{bottom:521.826667pt;}
.y15{bottom:524.866667pt;}
.y92{bottom:525.186667pt;}
.y7b{bottom:527.586667pt;}
.y195{bottom:528.066667pt;}
.yce{bottom:533.826667pt;}
.y161{bottom:536.866667pt;}
.y120{bottom:538.306667pt;}
.y14{bottom:541.506667pt;}
.y194{bottom:541.666667pt;}
.ye8{bottom:541.986667pt;}
.y58{bottom:548.893333pt;}
.y91{bottom:552.093333pt;}
.y160{bottom:553.213333pt;}
.y7a{bottom:554.653333pt;}
.y13{bottom:556.413333pt;}
.y193{bottom:563.613333pt;}
.y11f{bottom:565.373333pt;}
.y15f{bottom:569.533333pt;}
.ycd{bottom:570.013333pt;}
.y12{bottom:571.133333pt;}
.y57{bottom:575.773333pt;}
.y90{bottom:579.133333pt;}
.y192{bottom:579.933333pt;}
.ye6{bottom:581.213333pt;}
.y79{bottom:581.533333pt;}
.ycc{bottom:584.733333pt;}
.y15e{bottom:585.853333pt;}
.y11{bottom:586.333333pt;}
.y11e{bottom:592.413333pt;}
.y191{bottom:596.253333pt;}
.y10{bottom:601.693333pt;}
.y15d{bottom:602.173333pt;}
.y56{bottom:602.813333pt;}
.y8f{bottom:606.013333pt;}
.y78{bottom:608.573333pt;}
.ycb{bottom:608.733333pt;}
.y190{bottom:612.733333pt;}
.yf{bottom:616.893333pt;}
.y15c{bottom:618.653333pt;}
.y11d{bottom:619.293333pt;}
.ye3{bottom:621.053333pt;}
.y55{bottom:629.853333pt;}
.ye{bottom:632.253333pt;}
.y18f{bottom:632.413333pt;}
.y8e{bottom:633.053333pt;}
.y15b{bottom:634.973333pt;}
.y77{bottom:635.453333pt;}
.yca{bottom:635.773333pt;}
.y11c{bottom:646.333333pt;}
.yd{bottom:646.973333pt;}
.y18e{bottom:648.733333pt;}
.ye2{bottom:650.653333pt;}
.y15a{bottom:651.293333pt;}
.y54{bottom:656.733333pt;}
.y8d{bottom:660.093333pt;}
.yc{bottom:661.693333pt;}
.y76{bottom:662.493333pt;}
.yc9{bottom:662.813333pt;}
.y18d{bottom:665.053333pt;}
.ye1{bottom:665.373333pt;}
.y11b{bottom:673.213333pt;}
.y159{bottom:673.373333pt;}
.yb{bottom:676.893333pt;}
.y18c{bottom:681.533333pt;}
.y8c{bottom:686.973333pt;}
.y75{bottom:689.533333pt;}
.y53{bottom:689.693333pt;}
.y18b{bottom:697.853333pt;}
.y11a{bottom:700.253333pt;}
.y9{bottom:705.053333pt;}
.y158{bottom:706.173333pt;}
.ya{bottom:711.133333pt;}
.y52{bottom:714.013333pt;}
.y18a{bottom:714.173333pt;}
.y8b{bottom:714.973333pt;}
.y74{bottom:716.413333pt;}
.yc8{bottom:716.733333pt;}
.y119{bottom:727.133333pt;}
.y157{bottom:728.253333pt;}
.y189{bottom:730.493333pt;}
.y7{bottom:735.773333pt;}
.y8{bottom:740.413333pt;}
.y51{bottom:740.893333pt;}
.y73{bottom:743.453333pt;}
.yc7{bottom:743.613333pt;}
.y156{bottom:744.573333pt;}
.y188{bottom:746.813333pt;}
.y118{bottom:754.173333pt;}
.y187{bottom:763.133333pt;}
.y155{bottom:766.653333pt;}
.y50{bottom:767.933333pt;}
.y72{bottom:770.333333pt;}
.yc6{bottom:770.653333pt;}
.y6{bottom:771.133333pt;}
.y186{bottom:779.653333pt;}
.y117{bottom:781.253333pt;}
.y154{bottom:783.173333pt;}
.y4f{bottom:795.013333pt;}
.y71{bottom:797.413333pt;}
.yc5{bottom:797.573333pt;}
.y153{bottom:799.493333pt;}
.y185{bottom:801.733333pt;}
.y5{bottom:806.373333pt;}
.y116{bottom:808.133333pt;}
.y152{bottom:815.813333pt;}
.y184{bottom:818.053333pt;}
.y4e{bottom:821.893333pt;}
.ya2{bottom:822.853333pt;}
.y70{bottom:824.293333pt;}
.yc4{bottom:824.613333pt;}
.y151{bottom:832.133333pt;}
.y183{bottom:834.373333pt;}
.y115{bottom:835.173333pt;}
.y4{bottom:840.613333pt;}
.y43{bottom:846.853333pt;}
.y182{bottom:847.973333pt;}
.y150{bottom:848.453333pt;}
.y4d{bottom:848.933333pt;}
.y6f{bottom:851.333333pt;}
.yc3{bottom:851.653333pt;}
.y114{bottom:862.053333pt;}
.y42{bottom:863.813333pt;}
.y14f{bottom:865.413333pt;}
.y1b1{bottom:866.853333pt;}
.y181{bottom:867.173333pt;}
.y3{bottom:874.853333pt;}
.y4c{bottom:875.813333pt;}
.y6e{bottom:878.373333pt;}
.yc2{bottom:878.533333pt;}
.y41{bottom:880.773333pt;}
.y14e{bottom:881.733333pt;}
.y1b0{bottom:883.173333pt;}
.y180{bottom:883.493333pt;}
.y113{bottom:889.093333pt;}
.y40{bottom:897.573333pt;}
.y14d{bottom:898.053333pt;}
.y1af{bottom:899.493333pt;}
.y17f{bottom:899.813333pt;}
.y4b{bottom:902.853333pt;}
.y6d{bottom:905.253333pt;}
.yc1{bottom:905.573333pt;}
.y2{bottom:909.253333pt;}
.y14c{bottom:914.373333pt;}
.y3f{bottom:914.533333pt;}
.y1ae{bottom:915.813333pt;}
.y112{bottom:916.133333pt;}
.y17e{bottom:916.293333pt;}
.y4a{bottom:929.893333pt;}
.y14b{bottom:930.853333pt;}
.y3e{bottom:931.493333pt;}
.y6c{bottom:932.293333pt;}
.yc0{bottom:932.453333pt;}
.y17d{bottom:932.613333pt;}
.y1{bottom:938.053333pt;}
.y111{bottom:944.133333pt;}
.y14a{bottom:947.173333pt;}
.ybf{bottom:948.133333pt;}
.y3d{bottom:948.453333pt;}
.y1ad{bottom:948.613333pt;}
.y17c{bottom:949.093333pt;}
.y49{bottom:956.773333pt;}
.y6b{bottom:959.173333pt;}
.y149{bottom:963.493333pt;}
.y1ac{bottom:964.933333pt;}
.y3c{bottom:965.253333pt;}
.y17b{bottom:965.413333pt;}
.ybe{bottom:968.133333pt;}
.y110{bottom:971.333333pt;}
.y148{bottom:979.973333pt;}
.y17a{bottom:981.733333pt;}
.y3b{bottom:982.213333pt;}
.y48{bottom:983.813333pt;}
.y6a{bottom:986.213333pt;}
.y10f{bottom:987.653333pt;}
.ybd{bottom:988.133333pt;}
.y147{bottom:996.293333pt;}
.y179{bottom:998.053333pt;}
.y3a{bottom:999.173333pt;}
.y10d{bottom:1001.893333pt;}
.ybc{bottom:1008.160000pt;}
.y47{bottom:1011.840000pt;}
.y69{bottom:1013.280000pt;}
.y146{bottom:1014.560000pt;}
.y39{bottom:1016.160000pt;}
.y45{bottom:1046.720000pt;}
.y34{bottom:1048.640000pt;}
.y44{bottom:1063.200000pt;}
.y33{bottom:1063.360000pt;}
.h11{height:19.986667pt;}
.h14{height:19.993333pt;}
.h15{height:20.000000pt;}
.h12{height:20.018667pt;}
.h16{height:20.026667pt;}
.ha{height:24.871875pt;}
.h1f{height:26.066667pt;}
.h1d{height:26.226667pt;}
.h18{height:26.240000pt;}
.h21{height:26.266667pt;}
.h13{height:29.426667pt;}
.he{height:31.573750pt;}
.h7{height:31.828125pt;}
.h17{height:32.826667pt;}
.h1b{height:39.186667pt;}
.h19{height:39.200000pt;}
.h1e{height:39.218667pt;}
.h1a{height:39.226667pt;}
.h1c{height:39.346667pt;}
.hb{height:39.676562pt;}
.hd{height:41.393437pt;}
.h22{height:41.448125pt;}
.h9{height:44.414062pt;}
.h5{height:46.335938pt;}
.h8{height:47.742188pt;}
.hc{height:49.151563pt;}
.hf{height:54.481250pt;}
.h10{height:56.838750pt;}
.h2{height:61.781250pt;}
.h6{height:63.656250pt;}
.h20{height:65.426667pt;}
.h3{height:72.284062pt;}
.h4{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:47.346667pt;}
.w14{width:56.658667pt;}
.wa{width:58.560000pt;}
.w15{width:66.066667pt;}
.wd{width:68.178667pt;}
.w4{width:75.506667pt;}
.w10{width:75.538667pt;}
.w12{width:75.552000pt;}
.w5{width:80.338667pt;}
.w13{width:85.106667pt;}
.w11{width:85.120000pt;}
.wb{width:88.352000pt;}
.wc{width:98.546667pt;}
.w8{width:113.298667pt;}
.we{width:113.430667pt;}
.w7{width:122.912000pt;}
.w9{width:245.777333pt;}
.w6{width:330.737333pt;}
.w3{width:411.097333pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:4.786667pt;}
.x1d{left:7.986667pt;}
.x55{left:8.950667pt;}
.x3a{left:9.920000pt;}
.x2e{left:11.030667pt;}
.x4e{left:12.626667pt;}
.x53{left:14.386667pt;}
.x56{left:16.306667pt;}
.x57{left:17.280000pt;}
.x2d{left:18.230667pt;}
.x58{left:19.190667pt;}
.x40{left:20.986667pt;}
.x50{left:21.946667pt;}
.x25{left:23.030667pt;}
.x3d{left:23.986667pt;}
.x4a{left:25.120000pt;}
.x51{left:26.720000pt;}
.x22{left:27.666667pt;}
.x41{left:29.440000pt;}
.x28{left:31.026667pt;}
.x59{left:32.306667pt;}
.x52{left:33.426667pt;}
.x3c{left:34.746667pt;}
.x3f{left:36.146667pt;}
.x1f{left:37.746667pt;}
.x20{left:40.026667pt;}
.x54{left:42.225333pt;}
.x35{left:43.666667pt;}
.x32{left:44.626667pt;}
.x42{left:49.426667pt;}
.x34{left:52.346667pt;}
.x30{left:53.626667pt;}
.x2b{left:54.545333pt;}
.x46{left:56.785333pt;}
.x37{left:69.905333pt;}
.x45{left:94.441333pt;}
.x36{left:97.905333pt;}
.x33{left:99.665333pt;}
.x38{left:102.385333pt;}
.x18{left:108.841333pt;}
.xf{left:113.472000pt;}
.x11{left:117.152000pt;}
.x2{left:122.592000pt;}
.x43{left:124.032000pt;}
.x5{left:150.266667pt;}
.x3{left:151.226667pt;}
.x1e{left:154.545333pt;}
.x6{left:155.546667pt;}
.x2c{left:158.545333pt;}
.x15{left:160.666667pt;}
.x24{left:179.545333pt;}
.x21{left:182.105333pt;}
.x27{left:183.545333pt;}
.x26{left:185.625333pt;}
.x2a{left:187.865333pt;}
.x23{left:189.465333pt;}
.x29{left:197.145333pt;}
.x19{left:205.465333pt;}
.x47{left:207.880000pt;}
.xa{left:209.626667pt;}
.x39{left:214.426667pt;}
.x5a{left:234.906667pt;}
.x48{left:255.240000pt;}
.x16{left:262.906667pt;}
.x44{left:269.666667pt;}
.x7{left:281.186667pt;}
.x10{left:305.506667pt;}
.x49{left:330.786667pt;}
.x4{left:359.746667pt;}
.x12{left:384.386667pt;}
.x13{left:393.186667pt;}
.x17{left:396.866667pt;}
.x4b{left:415.906667pt;}
.x3b{left:417.826667pt;}
.xb{left:425.665000pt;}
.xc{left:429.666667pt;}
.x14{left:437.666667pt;}
.x2f{left:439.586667pt;}
.x4c{left:491.466667pt;}
.x8{left:506.011667pt;}
.x9{left:512.733333pt;}
.x1a{left:519.946667pt;}
.x31{left:562.506667pt;}
.x4d{left:576.586667pt;}
.xd{left:580.091667pt;}
.xe{left:584.093333pt;}
.x1c{left:595.466667pt;}
.x3e{left:604.746667pt;}
.x4f{left:633.253333pt;}
.x1{left:678.533333pt;}
}




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