
    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_11863037692198564c269daf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_304249693ffa8f7bd8710128.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a19fbc437ee834736f3a9894.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_ac5cf5e3d51c3bd76b70db67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_552a7bd019f90d87eb0fae26.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v9{vertical-align:-22.320000px;}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v8{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:33.840000px;}
.v7{vertical-align:40.320000px;}
.v4{vertical-align:46.080000px;}
.ls30{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.774000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.ls39{letter-spacing:-0.157800px;}
.lsc{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.ls34{letter-spacing:0.038880px;}
.ls1c{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.135600px;}
.ls2f{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.195000px;}
.ls10{letter-spacing:0.195120px;}
.ls32{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.206400px;}
.ls31{letter-spacing:0.209400px;}
.ls35{letter-spacing:0.249000px;}
.ls36{letter-spacing:0.255600px;}
.ls6{letter-spacing:0.259800px;}
.ls38{letter-spacing:0.263400px;}
.ls21{letter-spacing:0.298800px;}
.ls33{letter-spacing:0.301200px;}
.ls1d{letter-spacing:0.328800px;}
.ls1{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.558720px;}
.ls23{letter-spacing:0.709200px;}
.ls16{letter-spacing:1.151280px;}
.ls2d{letter-spacing:2.355120px;}
.ls26{letter-spacing:2.366640px;}
.ls14{letter-spacing:2.391840px;}
.ls29{letter-spacing:2.460960px;}
.ls28{letter-spacing:2.475120px;}
.ls13{letter-spacing:2.635200px;}
.ls19{letter-spacing:2.868480px;}
.ls24{letter-spacing:13.491360px;}
.ls27{letter-spacing:15.420960px;}
.ls11{letter-spacing:15.595200px;}
.ls2b{letter-spacing:15.600960px;}
.ls2c{letter-spacing:16.140960px;}
.ls18{letter-spacing:16.315200px;}
.ls25{letter-spacing:16.320960px;}
.lsa{letter-spacing:16.506720px;}
.lse{letter-spacing:16.959600px;}
.lsf{letter-spacing:17.279280px;}
.ls17{letter-spacing:20.148480px;}
.ls15{letter-spacing:36.900000px;}
.ls1b{letter-spacing:38.106720px;}
.ls20{letter-spacing:38.250720px;}
.ls0{letter-spacing:46.026720px;}
.ls22{letter-spacing:79.290720px;}
.ls1a{letter-spacing:127.579680px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws21{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.093600px;}
.ws11{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.476000px;}
.ws1f{word-spacing:-13.410600px;}
.ws1c{word-spacing:-13.402800px;}
.ws1b{word-spacing:-13.396200px;}
.ws14{word-spacing:-13.356600px;}
.ws16{word-spacing:-13.353600px;}
.ws17{word-spacing:-13.345200px;}
.ws1e{word-spacing:-13.342200px;}
.ws1a{word-spacing:-13.186080px;}
.wsa{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.ws20{word-spacing:-12.989400px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.488400px;}
.ws13{word-spacing:-9.187200px;}
.ws19{word-spacing:-0.200160px;}
.wsb{word-spacing:-0.187920px;}
.ws5{word-spacing:0.000000px;}
.ws12{word-spacing:0.519840px;}
.ws9{word-spacing:0.532080px;}
.ws1d{word-spacing:0.639840px;}
.ws15{word-spacing:0.699840px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1167.096960px;}
._e{margin-left:-3.488160px;}
._8{margin-left:-2.420640px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.482320px;}
._9{width:3.569280px;}
._7{width:4.588560px;}
._17{width:6.141600px;}
._14{width:7.589520px;}
._a{width:8.642400px;}
._b{width:9.665040px;}
._c{width:10.842720px;}
._f{width:11.929200px;}
._11{width:13.505760px;}
._33{width:14.627040px;}
._d{width:16.135200px;}
._10{width:17.151120px;}
._19{width:18.637680px;}
._12{width:19.646640px;}
._18{width:20.666160px;}
._22{width:21.698880px;}
._21{width:23.642160px;}
._25{width:24.680880px;}
._16{width:26.294400px;}
._15{width:27.489600px;}
._1d{width:28.496640px;}
._1e{width:30.019440px;}
._1c{width:31.314240px;}
._23{width:32.449680px;}
._27{width:33.562320px;}
._26{width:34.959600px;}
._24{width:36.729600px;}
._2b{width:38.687520px;}
._2c{width:39.847920px;}
._29{width:40.972560px;}
._2d{width:42.728400px;}
._30{width:44.139840px;}
._13{width:45.298080px;}
._28{width:46.748400px;}
._1a{width:47.785200px;}
._1b{width:48.943440px;}
._32{width:50.175600px;}
._3b{width:55.135680px;}
._38{width:56.496000px;}
._2e{width:58.123680px;}
._3a{width:60.238080px;}
._3d{width:61.313760px;}
._20{width:65.303760px;}
._1f{width:66.512880px;}
._3f{width:74.019840px;}
._2f{width:75.357360px;}
._36{width:84.238800px;}
._35{width:87.727680px;}
._40{width:91.649040px;}
._3c{width:109.958400px;}
._37{width:112.326000px;}
._34{width:115.254240px;}
._39{width:126.060720px;}
._3e{width:165.953520px;}
._31{width:249.796800px;}
._2a{width:1662.936000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y19b{bottom:2.520000px;}
.y8a{bottom:2.700000px;}
.y89{bottom:4.860000px;}
.y7{bottom:5.760000px;}
.yc9{bottom:5.940000px;}
.y111{bottom:7.020000px;}
.y102{bottom:7.200000px;}
.y105{bottom:7.230000px;}
.y196{bottom:7.920000px;}
.y191{bottom:9.180000px;}
.y11f{bottom:10.800000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y192{bottom:12.600000px;}
.y195{bottom:14.580000px;}
.y8f{bottom:15.480000px;}
.yc6{bottom:15.660000px;}
.y13b{bottom:15.840000px;}
.y8c{bottom:16.920000px;}
.y18c{bottom:17.100000px;}
.y90{bottom:17.460000px;}
.y100{bottom:18.360000px;}
.y18f{bottom:20.700000px;}
.y19a{bottom:21.600000px;}
.y18d{bottom:23.760000px;}
.yc7{bottom:25.560000px;}
.y13c{bottom:25.740000px;}
.y198{bottom:30.960000px;}
.ya{bottom:36.180000px;}
.y19e{bottom:39.090000px;}
.y6{bottom:52.920000px;}
.y1a1{bottom:80.280000px;}
.yc4{bottom:82.260000px;}
.yd3{bottom:83.340000px;}
.y39{bottom:83.880000px;}
.y15e{bottom:85.500000px;}
.y139{bottom:90.360000px;}
.y71{bottom:90.720000px;}
.y9f{bottom:95.040000px;}
.y1a0{bottom:100.080000px;}
.y87{bottom:100.620000px;}
.yc3{bottom:102.060000px;}
.yd2{bottom:103.320000px;}
.y38{bottom:103.680000px;}
.y107{bottom:104.760000px;}
.y15d{bottom:105.840000px;}
.y138{bottom:110.160000px;}
.y70{bottom:110.520000px;}
.y9e{bottom:114.840000px;}
.y19f{bottom:119.880000px;}
.yc2{bottom:121.860000px;}
.yd1{bottom:123.120000px;}
.y37{bottom:123.660000px;}
.y15c{bottom:126.180000px;}
.y106{bottom:127.260000px;}
.y137{bottom:129.960000px;}
.y6f{bottom:130.320000px;}
.y9d{bottom:131.400000px;}
.y86{bottom:132.480000px;}
.y19d{bottom:133.920000px;}
.yc1{bottom:141.660000px;}
.yd0{bottom:142.920000px;}
.y36{bottom:143.460000px;}
.y15b{bottom:146.520000px;}
.y104{bottom:149.760000px;}
.y136{bottom:149.940000px;}
.y6e{bottom:150.300000px;}
.yc0{bottom:158.250000px;}
.ycf{bottom:162.750000px;}
.y35{bottom:163.290000px;}
.y85{bottom:164.190000px;}
.y15a{bottom:167.070000px;}
.y135{bottom:169.770000px;}
.y6d{bottom:170.130000px;}
.y103{bottom:172.290000px;}
.yce{bottom:182.550000px;}
.y34{bottom:183.090000px;}
.y199{bottom:187.050000px;}
.y159{bottom:187.410000px;}
.y134{bottom:189.570000px;}
.y6c{bottom:189.930000px;}
.y101{bottom:194.790000px;}
.y84{bottom:196.050000px;}
.ycd{bottom:202.530000px;}
.y33{bottom:202.890000px;}
.y158{bottom:207.570000px;}
.y19c{bottom:208.980000px;}
.y133{bottom:209.370000px;}
.y6b{bottom:209.730000px;}
.yff{bottom:218.010000px;}
.ycc{bottom:222.330000px;}
.y32{bottom:222.870000px;}
.y157{bottom:227.370000px;}
.y83{bottom:227.910000px;}
.y132{bottom:229.170000px;}
.y6a{bottom:229.530000px;}
.ycb{bottom:242.130000px;}
.y31{bottom:242.670000px;}
.y156{bottom:247.170000px;}
.y131{bottom:249.150000px;}
.y69{bottom:249.510000px;}
.y82{bottom:259.770000px;}
.yca{bottom:261.930000px;}
.y30{bottom:262.470000px;}
.y155{bottom:266.970000px;}
.y130{bottom:268.950000px;}
.y68{bottom:269.310000px;}
.yfe{bottom:269.670000px;}
.yc8{bottom:281.730000px;}
.y18a{bottom:281.910000px;}
.y2f{bottom:282.270000px;}
.y154{bottom:286.950000px;}
.y12f{bottom:288.750000px;}
.y67{bottom:289.110000px;}
.yfd{bottom:289.470000px;}
.y81{bottom:291.630000px;}
.y189{bottom:301.890000px;}
.y2e{bottom:302.070000px;}
.yc5{bottom:302.430000px;}
.y153{bottom:306.750000px;}
.y12e{bottom:308.550000px;}
.y66{bottom:308.910000px;}
.yfc{bottom:309.270000px;}
.y188{bottom:321.690000px;}
.y2d{bottom:322.050000px;}
.y80{bottom:323.490000px;}
.y152{bottom:326.550000px;}
.y12d{bottom:328.350000px;}
.y65{bottom:328.710000px;}
.yfb{bottom:329.070000px;}
.y9c{bottom:337.530000px;}
.y187{bottom:341.490000px;}
.y2c{bottom:341.850000px;}
.y151{bottom:346.350000px;}
.y12c{bottom:348.330000px;}
.y64{bottom:348.690000px;}
.yfa{bottom:348.870000px;}
.y7f{bottom:355.350000px;}
.y9b{bottom:357.330000px;}
.y186{bottom:361.290000px;}
.y2b{bottom:361.650000px;}
.y150{bottom:366.150000px;}
.y12b{bottom:368.130000px;}
.y63{bottom:368.490000px;}
.yf9{bottom:368.850000px;}
.y9a{bottom:377.130000px;}
.y185{bottom:381.090000px;}
.y2a{bottom:381.450000px;}
.y14f{bottom:385.950000px;}
.y7e{bottom:387.210000px;}
.y62{bottom:388.290000px;}
.yf8{bottom:388.650000px;}
.y99{bottom:396.930000px;}
.y184{bottom:401.115000px;}
.y29{bottom:401.295000px;}
.ybf{bottom:401.475000px;}
.y12a{bottom:402.735000px;}
.y14e{bottom:405.975000px;}
.y61{bottom:408.135000px;}
.yf7{bottom:408.495000px;}
.y197{bottom:410.115000px;}
.y98{bottom:416.955000px;}
.y7d{bottom:418.935000px;}
.y183{bottom:420.915000px;}
.y28{bottom:421.275000px;}
.y129{bottom:425.235000px;}
.y14d{bottom:425.775000px;}
.y60{bottom:427.935000px;}
.yf6{bottom:428.295000px;}
.y97{bottom:436.755000px;}
.y7c{bottom:438.915000px;}
.y182{bottom:440.715000px;}
.y27{bottom:441.075000px;}
.yb2{bottom:441.255000px;}
.y14c{bottom:445.575000px;}
.y128{bottom:447.735000px;}
.y5f{bottom:447.915000px;}
.yf5{bottom:448.095000px;}
.y194{bottom:455.115000px;}
.y96{bottom:456.555000px;}
.yb1{bottom:458.175000px;}
.y7b{bottom:458.715000px;}
.y181{bottom:460.515000px;}
.y26{bottom:460.875000px;}
.y14b{bottom:465.375000px;}
.y5e{bottom:467.715000px;}
.yf4{bottom:468.075000px;}
.yb0{bottom:468.255000px;}
.y127{bottom:470.235000px;}
.y95{bottom:476.355000px;}
.y7a{bottom:478.515000px;}
.y180{bottom:480.315000px;}
.y25{bottom:480.675000px;}
.y14a{bottom:485.175000px;}
.y5d{bottom:487.515000px;}
.yf3{bottom:487.875000px;}
.y126{bottom:492.735000px;}
.y94{bottom:496.155000px;}
.yaf{bottom:498.135000px;}
.y79{bottom:498.315000px;}
.y17f{bottom:500.295000px;}
.y24{bottom:500.475000px;}
.y149{bottom:505.155000px;}
.y5c{bottom:507.315000px;}
.yf2{bottom:507.675000px;}
.y125{bottom:515.235000px;}
.y93{bottom:516.135000px;}
.yae{bottom:517.935000px;}
.y78{bottom:518.115000px;}
.y17e{bottom:520.095000px;}
.y23{bottom:520.275000px;}
.y148{bottom:524.955000px;}
.y5b{bottom:527.115000px;}
.yf1{bottom:527.475000px;}
.y92{bottom:535.935000px;}
.y124{bottom:537.735000px;}
.yad{bottom:537.915000px;}
.y77{bottom:538.095000px;}
.y147{bottom:539.715000px;}
.y17d{bottom:539.895000px;}
.y22{bottom:540.255000px;}
.y5a{bottom:547.095000px;}
.yf0{bottom:547.275000px;}
.y76{bottom:557.895000px;}
.y17c{bottom:559.695000px;}
.y123{bottom:560.235000px;}
.y21{bottom:562.215000px;}
.y59{bottom:566.895000px;}
.yef{bottom:567.255000px;}
.yac{bottom:567.975000px;}
.y75{bottom:577.695000px;}
.y91{bottom:578.775000px;}
.y146{bottom:579.315000px;}
.y17b{bottom:579.495000px;}
.y20{bottom:582.195000px;}
.y122{bottom:582.735000px;}
.y58{bottom:586.695000px;}
.yee{bottom:587.055000px;}
.y74{bottom:597.495000px;}
.y8e{bottom:598.575000px;}
.y145{bottom:599.295000px;}
.y17a{bottom:599.475000px;}
.y1f{bottom:601.995000px;}
.y121{bottom:605.235000px;}
.y57{bottom:606.495000px;}
.yed{bottom:606.855000px;}
.y73{bottom:617.295000px;}
.y179{bottom:619.275000px;}
.y1e{bottom:621.795000px;}
.y56{bottom:626.295000px;}
.yec{bottom:626.655000px;}
.y120{bottom:627.735000px;}
.y72{bottom:637.275000px;}
.y144{bottom:638.895000px;}
.y178{bottom:639.075000px;}
.y1d{bottom:641.595000px;}
.y55{bottom:646.275000px;}
.yeb{bottom:646.455000px;}
.y11e{bottom:650.985000px;}
.yab{bottom:657.105000px;}
.y143{bottom:658.725000px;}
.y177{bottom:658.905000px;}
.y1c{bottom:661.425000px;}
.y54{bottom:666.105000px;}
.yea{bottom:666.465000px;}
.y193{bottom:670.065000px;}
.yaa{bottom:676.905000px;}
.y142{bottom:678.525000px;}
.y176{bottom:678.705000px;}
.y1b{bottom:681.405000px;}
.y53{bottom:685.905000px;}
.ye9{bottom:686.265000px;}
.y11d{bottom:687.165000px;}
.y190{bottom:691.305000px;}
.ya9{bottom:696.705000px;}
.y141{bottom:698.505000px;}
.y175{bottom:698.685000px;}
.y1a{bottom:701.205000px;}
.y52{bottom:705.705000px;}
.ye8{bottom:706.065000px;}
.y11c{bottom:706.965000px;}
.ya8{bottom:716.505000px;}
.y140{bottom:718.305000px;}
.y174{bottom:718.485000px;}
.y19{bottom:721.005000px;}
.y11b{bottom:721.905000px;}
.y51{bottom:725.505000px;}
.ye7{bottom:725.865000px;}
.ya7{bottom:736.485000px;}
.y13f{bottom:738.105000px;}
.y173{bottom:738.285000px;}
.y18{bottom:740.805000px;}
.y11a{bottom:744.405000px;}
.y50{bottom:745.485000px;}
.ye6{bottom:745.665000px;}
.ya6{bottom:756.285000px;}
.y13e{bottom:757.905000px;}
.y172{bottom:758.085000px;}
.y17{bottom:760.605000px;}
.y4f{bottom:765.285000px;}
.ye5{bottom:765.645000px;}
.y119{bottom:766.905000px;}
.ya5{bottom:776.085000px;}
.y171{bottom:777.885000px;}
.y16{bottom:780.585000px;}
.y4e{bottom:785.085000px;}
.ye4{bottom:785.445000px;}
.y118{bottom:789.405000px;}
.ya4{bottom:795.885000px;}
.y13d{bottom:797.685000px;}
.y170{bottom:797.865000px;}
.y15{bottom:800.385000px;}
.y4d{bottom:804.885000px;}
.ye3{bottom:805.245000px;}
.y117{bottom:811.905000px;}
.ya3{bottom:815.685000px;}
.y16f{bottom:817.665000px;}
.y14{bottom:820.185000px;}
.y4c{bottom:824.685000px;}
.ye2{bottom:825.045000px;}
.y116{bottom:834.405000px;}
.ya2{bottom:835.665000px;}
.y16e{bottom:837.645000px;}
.y13a{bottom:838.005000px;}
.y13{bottom:839.985000px;}
.y8d{bottom:842.685000px;}
.y4b{bottom:844.665000px;}
.ye1{bottom:844.845000px;}
.ya1{bottom:855.465000px;}
.y8b{bottom:856.725000px;}
.y115{bottom:856.905000px;}
.y16d{bottom:858.165000px;}
.y12{bottom:862.125000px;}
.y4a{bottom:864.465000px;}
.ye0{bottom:864.825000px;}
.ya0{bottom:875.265000px;}
.y16c{bottom:878.325000px;}
.y114{bottom:879.405000px;}
.y49{bottom:884.265000px;}
.ydf{bottom:884.625000px;}
.y11{bottom:887.145000px;}
.y88{bottom:887.685000px;}
.ybe{bottom:895.065000px;}
.y16b{bottom:898.710000px;}
.y113{bottom:901.950000px;}
.y48{bottom:904.110000px;}
.yde{bottom:904.470000px;}
.y18e{bottom:906.450000px;}
.y10{bottom:906.990000px;}
.ybd{bottom:914.910000px;}
.y16a{bottom:918.870000px;}
.yf{bottom:922.110000px;}
.y47{bottom:923.910000px;}
.y112{bottom:924.450000px;}
.ybc{bottom:934.890000px;}
.y169{bottom:939.030000px;}
.y18b{bottom:941.190000px;}
.y46{bottom:943.890000px;}
.ye{bottom:944.070000px;}
.y110{bottom:946.950000px;}
.ybb{bottom:954.690000px;}
.ydd{bottom:957.030000px;}
.y168{bottom:959.370000px;}
.y45{bottom:963.690000px;}
.yd{bottom:965.850000px;}
.y10f{bottom:970.170000px;}
.yba{bottom:974.490000px;}
.ydc{bottom:977.010000px;}
.y167{bottom:979.530000px;}
.y44{bottom:983.490000px;}
.yc{bottom:990.690000px;}
.yb9{bottom:994.290000px;}
.ydb{bottom:996.810000px;}
.y166{bottom:999.870000px;}
.y43{bottom:1003.290000px;}
.y10e{bottom:1008.330000px;}
.yb8{bottom:1014.090000px;}
.yda{bottom:1016.610000px;}
.y165{bottom:1020.210000px;}
.yb{bottom:1022.550000px;}
.y42{bottom:1023.090000px;}
.y10d{bottom:1028.130000px;}
.yb7{bottom:1034.070000px;}
.yd9{bottom:1036.410000px;}
.y164{bottom:1040.550000px;}
.y10c{bottom:1042.890000px;}
.y41{bottom:1043.070000px;}
.y5{bottom:1050.630000px;}
.yb6{bottom:1053.870000px;}
.yd8{bottom:1056.210000px;}
.y163{bottom:1060.890000px;}
.y40{bottom:1062.870000px;}
.y10b{bottom:1065.390000px;}
.yb5{bottom:1073.670000px;}
.yd7{bottom:1076.190000px;}
.y162{bottom:1081.050000px;}
.y4{bottom:1081.950000px;}
.y3f{bottom:1082.670000px;}
.y10a{bottom:1087.890000px;}
.yb4{bottom:1093.470000px;}
.yd6{bottom:1095.990000px;}
.y161{bottom:1101.390000px;}
.y3e{bottom:1102.470000px;}
.y109{bottom:1110.390000px;}
.y3{bottom:1112.730000px;}
.yb3{bottom:1113.270000px;}
.yd5{bottom:1115.790000px;}
.y160{bottom:1121.550000px;}
.y3d{bottom:1122.270000px;}
.y108{bottom:1132.890000px;}
.yd4{bottom:1135.590000px;}
.y15f{bottom:1142.070000px;}
.y3c{bottom:1142.250000px;}
.y2{bottom:1143.690000px;}
.y3b{bottom:1171.620000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.400000px;}
.h12{height:19.800000px;}
.h18{height:19.836000px;}
.h17{height:19.980000px;}
.h5{height:21.240000px;}
.h1a{height:22.500000px;}
.h1b{height:22.536000px;}
.ha{height:27.166641px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h1d{height:29.700000px;}
.h10{height:30.960000px;}
.h1c{height:31.680000px;}
.h22{height:34.740000px;}
.h16{height:39.600000px;}
.h1e{height:39.780000px;}
.h4{height:41.756133px;}
.hb{height:42.164648px;}
.hc{height:43.506914px;}
.h19{height:45.000000px;}
.hd{height:46.283906px;}
.h3{height:46.736719px;}
.h8{height:50.308594px;}
.h14{height:50.364141px;}
.h25{height:53.136000px;}
.h9{height:53.224453px;}
.h1f{height:57.514219px;}
.h20{height:57.634219px;}
.he{height:59.439023px;}
.h2{height:67.565039px;}
.h15{height:90.684141px;}
.h13{height:96.444141px;}
.h23{height:214.950000px;}
.h21{height:215.130000px;}
.h24{height:223.050000px;}
.hf{height:236.730000px;}
.h11{height:238.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.w19{width:70.740000px;}
.w17{width:79.380000px;}
.w14{width:79.740000px;}
.w1a{width:81.036000px;}
.wf{width:86.220000px;}
.w18{width:97.056000px;}
.wa{width:101.340000px;}
.w16{width:103.500000px;}
.w1b{width:116.640000px;}
.wb{width:121.536000px;}
.w12{width:123.300000px;}
.w1e{width:127.476000px;}
.w10{width:127.656000px;}
.w11{width:135.036000px;}
.w1c{width:139.716000px;}
.w1d{width:152.490000px;}
.wc{width:155.190000px;}
.wd{width:168.870000px;}
.w9{width:195.735000px;}
.w15{width:218.910000px;}
.we{width:236.190000px;}
.w13{width:242.670000px;}
.w21{width:259.275000px;}
.w1f{width:266.115000px;}
.w20{width:274.890000px;}
.w6{width:337.575000px;}
.w7{width:357.735000px;}
.w5{width:364.215000px;}
.w8{width:405.105000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x3a{left:63.719987px;}
.x16{left:65.160000px;}
.x24{left:75.240000px;}
.x52{left:80.999987px;}
.x41{left:85.355987px;}
.x23{left:86.435987px;}
.x9{left:88.775987px;}
.x29{left:92.376000px;}
.x3f{left:93.455987px;}
.x43{left:99.575987px;}
.xe{left:101.375987px;}
.xc{left:104.255987px;}
.x53{left:108.035987px;}
.x22{left:111.995987px;}
.x2f{left:114.336000px;}
.x4{left:120.636000px;}
.x47{left:129.095987px;}
.x46{left:132.695987px;}
.xa{left:146.015987px;}
.x3d{left:147.635987px;}
.x34{left:151.050000px;}
.x1c{left:158.969987px;}
.x1f{left:163.289987px;}
.x3c{left:170.309987px;}
.x3b{left:171.749987px;}
.x51{left:174.629987px;}
.xf{left:178.049987px;}
.x42{left:193.349987px;}
.x45{left:194.789987px;}
.x40{left:201.449987px;}
.x44{left:207.569987px;}
.x35{left:221.790000px;}
.x20{left:227.189987px;}
.x48{left:237.089987px;}
.x4d{left:238.215000px;}
.x1d{left:241.049987px;}
.x4e{left:244.110000px;}
.x4a{left:246.450000px;}
.x49{left:248.835000px;}
.x4f{left:251.175000px;}
.x3e{left:255.629987px;}
.x4c{left:257.835000px;}
.x50{left:266.610000px;}
.x25{left:270.975000px;}
.x1e{left:275.834987px;}
.x8{left:286.239000px;}
.x7{left:291.279000px;}
.x1b{left:297.074987px;}
.x17{left:299.235000px;}
.x36{left:302.835000px;}
.x15{left:308.235000px;}
.x13{left:320.475000px;}
.x19{left:325.335000px;}
.x2a{left:328.575000px;}
.x30{left:333.255000px;}
.x2e{left:335.055000px;}
.x26{left:372.315000px;}
.xd{left:389.954987px;}
.x11{left:398.414987px;}
.x6{left:413.349000px;}
.x2b{left:414.795000px;}
.x14{left:418.215000px;}
.x37{left:419.475000px;}
.x18{left:422.895000px;}
.x5{left:426.849000px;}
.x31{left:436.755000px;}
.xb{left:446.504987px;}
.x10{left:473.504987px;}
.x27{left:493.845000px;}
.x12{left:500.504987px;}
.x54{left:527.504987px;}
.x2c{left:542.445000px;}
.x38{left:559.185000px;}
.x32{left:564.405000px;}
.x4b{left:595.005000px;}
.x28{left:649.050000px;}
.x2d{left:677.490000px;}
.x1a{left:690.089987px;}
.x21{left:692.969987px;}
.x33{left:699.450000px;}
.x39{left:711.690000px;}
@media print{
.v9{vertical-align:-19.840000pt;}
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v8{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:30.080000pt;}
.v7{vertical-align:35.840000pt;}
.v4{vertical-align:40.960000pt;}
.ls30{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls39{letter-spacing:-0.140267pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.ls34{letter-spacing:0.034560pt;}
.ls1c{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls2f{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.173333pt;}
.ls10{letter-spacing:0.173440pt;}
.ls32{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls31{letter-spacing:0.186133pt;}
.ls35{letter-spacing:0.221333pt;}
.ls36{letter-spacing:0.227200pt;}
.ls6{letter-spacing:0.230933pt;}
.ls38{letter-spacing:0.234133pt;}
.ls21{letter-spacing:0.265600pt;}
.ls33{letter-spacing:0.267733pt;}
.ls1d{letter-spacing:0.292267pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.496640pt;}
.ls23{letter-spacing:0.630400pt;}
.ls16{letter-spacing:1.023360pt;}
.ls2d{letter-spacing:2.093440pt;}
.ls26{letter-spacing:2.103680pt;}
.ls14{letter-spacing:2.126080pt;}
.ls29{letter-spacing:2.187520pt;}
.ls28{letter-spacing:2.200107pt;}
.ls13{letter-spacing:2.342400pt;}
.ls19{letter-spacing:2.549760pt;}
.ls24{letter-spacing:11.992320pt;}
.ls27{letter-spacing:13.707520pt;}
.ls11{letter-spacing:13.862400pt;}
.ls2b{letter-spacing:13.867520pt;}
.ls2c{letter-spacing:14.347520pt;}
.ls18{letter-spacing:14.502400pt;}
.ls25{letter-spacing:14.507520pt;}
.lsa{letter-spacing:14.672640pt;}
.lse{letter-spacing:15.075200pt;}
.lsf{letter-spacing:15.359360pt;}
.ls17{letter-spacing:17.909760pt;}
.ls15{letter-spacing:32.800000pt;}
.ls1b{letter-spacing:33.872640pt;}
.ls20{letter-spacing:34.000640pt;}
.ls0{letter-spacing:40.912640pt;}
.ls22{letter-spacing:70.480640pt;}
.ls1a{letter-spacing:113.404160pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws21{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.416533pt;}
.ws11{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.978667pt;}
.ws1f{word-spacing:-11.920533pt;}
.ws1c{word-spacing:-11.913600pt;}
.ws1b{word-spacing:-11.907733pt;}
.ws14{word-spacing:-11.872533pt;}
.ws16{word-spacing:-11.869867pt;}
.ws17{word-spacing:-11.862400pt;}
.ws1e{word-spacing:-11.859733pt;}
.ws1a{word-spacing:-11.720960pt;}
.wsa{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.ws20{word-spacing:-11.546133pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.434133pt;}
.ws13{word-spacing:-8.166400pt;}
.ws19{word-spacing:-0.177920pt;}
.wsb{word-spacing:-0.167040pt;}
.ws5{word-spacing:0.000000pt;}
.ws12{word-spacing:0.462080pt;}
.ws9{word-spacing:0.472960pt;}
.ws1d{word-spacing:0.568747pt;}
.ws15{word-spacing:0.622080pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1037.419520pt;}
._e{margin-left:-3.100587pt;}
._8{margin-left:-2.151680pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.206507pt;}
._9{width:3.172693pt;}
._7{width:4.078720pt;}
._17{width:5.459200pt;}
._14{width:6.746240pt;}
._a{width:7.682133pt;}
._b{width:8.591147pt;}
._c{width:9.637973pt;}
._f{width:10.603733pt;}
._11{width:12.005120pt;}
._33{width:13.001813pt;}
._d{width:14.342400pt;}
._10{width:15.245440pt;}
._19{width:16.566827pt;}
._12{width:17.463680pt;}
._18{width:18.369920pt;}
._22{width:19.287893pt;}
._21{width:21.015253pt;}
._25{width:21.938560pt;}
._16{width:23.372800pt;}
._15{width:24.435200pt;}
._1d{width:25.330347pt;}
._1e{width:26.683947pt;}
._1c{width:27.834880pt;}
._23{width:28.844160pt;}
._27{width:29.833173pt;}
._26{width:31.075200pt;}
._24{width:32.648533pt;}
._2b{width:34.388907pt;}
._2c{width:35.420373pt;}
._29{width:36.420053pt;}
._2d{width:37.980800pt;}
._30{width:39.235413pt;}
._13{width:40.264960pt;}
._28{width:41.554133pt;}
._1a{width:42.475733pt;}
._1b{width:43.505280pt;}
._32{width:44.600533pt;}
._3b{width:49.009493pt;}
._38{width:50.218667pt;}
._2e{width:51.665493pt;}
._3a{width:53.544960pt;}
._3d{width:54.501120pt;}
._20{width:58.047787pt;}
._1f{width:59.122560pt;}
._3f{width:65.795413pt;}
._2f{width:66.984320pt;}
._36{width:74.878933pt;}
._35{width:77.980160pt;}
._40{width:81.465813pt;}
._3c{width:97.740800pt;}
._37{width:99.845333pt;}
._34{width:102.448213pt;}
._39{width:112.053973pt;}
._3e{width:147.514240pt;}
._31{width:222.041600pt;}
._2a{width:1478.165333pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:2.240000pt;}
.y8a{bottom:2.400000pt;}
.y89{bottom:4.320000pt;}
.y7{bottom:5.120000pt;}
.yc9{bottom:5.280000pt;}
.y111{bottom:6.240000pt;}
.y102{bottom:6.400000pt;}
.y105{bottom:6.426667pt;}
.y196{bottom:7.040000pt;}
.y191{bottom:8.160000pt;}
.y11f{bottom:9.600000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y192{bottom:11.200000pt;}
.y195{bottom:12.960000pt;}
.y8f{bottom:13.760000pt;}
.yc6{bottom:13.920000pt;}
.y13b{bottom:14.080000pt;}
.y8c{bottom:15.040000pt;}
.y18c{bottom:15.200000pt;}
.y90{bottom:15.520000pt;}
.y100{bottom:16.320000pt;}
.y18f{bottom:18.400000pt;}
.y19a{bottom:19.200000pt;}
.y18d{bottom:21.120000pt;}
.yc7{bottom:22.720000pt;}
.y13c{bottom:22.880000pt;}
.y198{bottom:27.520000pt;}
.ya{bottom:32.160000pt;}
.y19e{bottom:34.746667pt;}
.y6{bottom:47.040000pt;}
.y1a1{bottom:71.360000pt;}
.yc4{bottom:73.120000pt;}
.yd3{bottom:74.080000pt;}
.y39{bottom:74.560000pt;}
.y15e{bottom:76.000000pt;}
.y139{bottom:80.320000pt;}
.y71{bottom:80.640000pt;}
.y9f{bottom:84.480000pt;}
.y1a0{bottom:88.960000pt;}
.y87{bottom:89.440000pt;}
.yc3{bottom:90.720000pt;}
.yd2{bottom:91.840000pt;}
.y38{bottom:92.160000pt;}
.y107{bottom:93.120000pt;}
.y15d{bottom:94.080000pt;}
.y138{bottom:97.920000pt;}
.y70{bottom:98.240000pt;}
.y9e{bottom:102.080000pt;}
.y19f{bottom:106.560000pt;}
.yc2{bottom:108.320000pt;}
.yd1{bottom:109.440000pt;}
.y37{bottom:109.920000pt;}
.y15c{bottom:112.160000pt;}
.y106{bottom:113.120000pt;}
.y137{bottom:115.520000pt;}
.y6f{bottom:115.840000pt;}
.y9d{bottom:116.800000pt;}
.y86{bottom:117.760000pt;}
.y19d{bottom:119.040000pt;}
.yc1{bottom:125.920000pt;}
.yd0{bottom:127.040000pt;}
.y36{bottom:127.520000pt;}
.y15b{bottom:130.240000pt;}
.y104{bottom:133.120000pt;}
.y136{bottom:133.280000pt;}
.y6e{bottom:133.600000pt;}
.yc0{bottom:140.666667pt;}
.ycf{bottom:144.666667pt;}
.y35{bottom:145.146667pt;}
.y85{bottom:145.946667pt;}
.y15a{bottom:148.506667pt;}
.y135{bottom:150.906667pt;}
.y6d{bottom:151.226667pt;}
.y103{bottom:153.146667pt;}
.yce{bottom:162.266667pt;}
.y34{bottom:162.746667pt;}
.y199{bottom:166.266667pt;}
.y159{bottom:166.586667pt;}
.y134{bottom:168.506667pt;}
.y6c{bottom:168.826667pt;}
.y101{bottom:173.146667pt;}
.y84{bottom:174.266667pt;}
.ycd{bottom:180.026667pt;}
.y33{bottom:180.346667pt;}
.y158{bottom:184.506667pt;}
.y19c{bottom:185.760000pt;}
.y133{bottom:186.106667pt;}
.y6b{bottom:186.426667pt;}
.yff{bottom:193.786667pt;}
.ycc{bottom:197.626667pt;}
.y32{bottom:198.106667pt;}
.y157{bottom:202.106667pt;}
.y83{bottom:202.586667pt;}
.y132{bottom:203.706667pt;}
.y6a{bottom:204.026667pt;}
.ycb{bottom:215.226667pt;}
.y31{bottom:215.706667pt;}
.y156{bottom:219.706667pt;}
.y131{bottom:221.466667pt;}
.y69{bottom:221.786667pt;}
.y82{bottom:230.906667pt;}
.yca{bottom:232.826667pt;}
.y30{bottom:233.306667pt;}
.y155{bottom:237.306667pt;}
.y130{bottom:239.066667pt;}
.y68{bottom:239.386667pt;}
.yfe{bottom:239.706667pt;}
.yc8{bottom:250.426667pt;}
.y18a{bottom:250.586667pt;}
.y2f{bottom:250.906667pt;}
.y154{bottom:255.066667pt;}
.y12f{bottom:256.666667pt;}
.y67{bottom:256.986667pt;}
.yfd{bottom:257.306667pt;}
.y81{bottom:259.226667pt;}
.y189{bottom:268.346667pt;}
.y2e{bottom:268.506667pt;}
.yc5{bottom:268.826667pt;}
.y153{bottom:272.666667pt;}
.y12e{bottom:274.266667pt;}
.y66{bottom:274.586667pt;}
.yfc{bottom:274.906667pt;}
.y188{bottom:285.946667pt;}
.y2d{bottom:286.266667pt;}
.y80{bottom:287.546667pt;}
.y152{bottom:290.266667pt;}
.y12d{bottom:291.866667pt;}
.y65{bottom:292.186667pt;}
.yfb{bottom:292.506667pt;}
.y9c{bottom:300.026667pt;}
.y187{bottom:303.546667pt;}
.y2c{bottom:303.866667pt;}
.y151{bottom:307.866667pt;}
.y12c{bottom:309.626667pt;}
.y64{bottom:309.946667pt;}
.yfa{bottom:310.106667pt;}
.y7f{bottom:315.866667pt;}
.y9b{bottom:317.626667pt;}
.y186{bottom:321.146667pt;}
.y2b{bottom:321.466667pt;}
.y150{bottom:325.466667pt;}
.y12b{bottom:327.226667pt;}
.y63{bottom:327.546667pt;}
.yf9{bottom:327.866667pt;}
.y9a{bottom:335.226667pt;}
.y185{bottom:338.746667pt;}
.y2a{bottom:339.066667pt;}
.y14f{bottom:343.066667pt;}
.y7e{bottom:344.186667pt;}
.y62{bottom:345.146667pt;}
.yf8{bottom:345.466667pt;}
.y99{bottom:352.826667pt;}
.y184{bottom:356.546667pt;}
.y29{bottom:356.706667pt;}
.ybf{bottom:356.866667pt;}
.y12a{bottom:357.986667pt;}
.y14e{bottom:360.866667pt;}
.y61{bottom:362.786667pt;}
.yf7{bottom:363.106667pt;}
.y197{bottom:364.546667pt;}
.y98{bottom:370.626667pt;}
.y7d{bottom:372.386667pt;}
.y183{bottom:374.146667pt;}
.y28{bottom:374.466667pt;}
.y129{bottom:377.986667pt;}
.y14d{bottom:378.466667pt;}
.y60{bottom:380.386667pt;}
.yf6{bottom:380.706667pt;}
.y97{bottom:388.226667pt;}
.y7c{bottom:390.146667pt;}
.y182{bottom:391.746667pt;}
.y27{bottom:392.066667pt;}
.yb2{bottom:392.226667pt;}
.y14c{bottom:396.066667pt;}
.y128{bottom:397.986667pt;}
.y5f{bottom:398.146667pt;}
.yf5{bottom:398.306667pt;}
.y194{bottom:404.546667pt;}
.y96{bottom:405.826667pt;}
.yb1{bottom:407.266667pt;}
.y7b{bottom:407.746667pt;}
.y181{bottom:409.346667pt;}
.y26{bottom:409.666667pt;}
.y14b{bottom:413.666667pt;}
.y5e{bottom:415.746667pt;}
.yf4{bottom:416.066667pt;}
.yb0{bottom:416.226667pt;}
.y127{bottom:417.986667pt;}
.y95{bottom:423.426667pt;}
.y7a{bottom:425.346667pt;}
.y180{bottom:426.946667pt;}
.y25{bottom:427.266667pt;}
.y14a{bottom:431.266667pt;}
.y5d{bottom:433.346667pt;}
.yf3{bottom:433.666667pt;}
.y126{bottom:437.986667pt;}
.y94{bottom:441.026667pt;}
.yaf{bottom:442.786667pt;}
.y79{bottom:442.946667pt;}
.y17f{bottom:444.706667pt;}
.y24{bottom:444.866667pt;}
.y149{bottom:449.026667pt;}
.y5c{bottom:450.946667pt;}
.yf2{bottom:451.266667pt;}
.y125{bottom:457.986667pt;}
.y93{bottom:458.786667pt;}
.yae{bottom:460.386667pt;}
.y78{bottom:460.546667pt;}
.y17e{bottom:462.306667pt;}
.y23{bottom:462.466667pt;}
.y148{bottom:466.626667pt;}
.y5b{bottom:468.546667pt;}
.yf1{bottom:468.866667pt;}
.y92{bottom:476.386667pt;}
.y124{bottom:477.986667pt;}
.yad{bottom:478.146667pt;}
.y77{bottom:478.306667pt;}
.y147{bottom:479.746667pt;}
.y17d{bottom:479.906667pt;}
.y22{bottom:480.226667pt;}
.y5a{bottom:486.306667pt;}
.yf0{bottom:486.466667pt;}
.y76{bottom:495.906667pt;}
.y17c{bottom:497.506667pt;}
.y123{bottom:497.986667pt;}
.y21{bottom:499.746667pt;}
.y59{bottom:503.906667pt;}
.yef{bottom:504.226667pt;}
.yac{bottom:504.866667pt;}
.y75{bottom:513.506667pt;}
.y91{bottom:514.466667pt;}
.y146{bottom:514.946667pt;}
.y17b{bottom:515.106667pt;}
.y20{bottom:517.506667pt;}
.y122{bottom:517.986667pt;}
.y58{bottom:521.506667pt;}
.yee{bottom:521.826667pt;}
.y74{bottom:531.106667pt;}
.y8e{bottom:532.066667pt;}
.y145{bottom:532.706667pt;}
.y17a{bottom:532.866667pt;}
.y1f{bottom:535.106667pt;}
.y121{bottom:537.986667pt;}
.y57{bottom:539.106667pt;}
.yed{bottom:539.426667pt;}
.y73{bottom:548.706667pt;}
.y179{bottom:550.466667pt;}
.y1e{bottom:552.706667pt;}
.y56{bottom:556.706667pt;}
.yec{bottom:557.026667pt;}
.y120{bottom:557.986667pt;}
.y72{bottom:566.466667pt;}
.y144{bottom:567.906667pt;}
.y178{bottom:568.066667pt;}
.y1d{bottom:570.306667pt;}
.y55{bottom:574.466667pt;}
.yeb{bottom:574.626667pt;}
.y11e{bottom:578.653333pt;}
.yab{bottom:584.093333pt;}
.y143{bottom:585.533333pt;}
.y177{bottom:585.693333pt;}
.y1c{bottom:587.933333pt;}
.y54{bottom:592.093333pt;}
.yea{bottom:592.413333pt;}
.y193{bottom:595.613333pt;}
.yaa{bottom:601.693333pt;}
.y142{bottom:603.133333pt;}
.y176{bottom:603.293333pt;}
.y1b{bottom:605.693333pt;}
.y53{bottom:609.693333pt;}
.ye9{bottom:610.013333pt;}
.y11d{bottom:610.813333pt;}
.y190{bottom:614.493333pt;}
.ya9{bottom:619.293333pt;}
.y141{bottom:620.893333pt;}
.y175{bottom:621.053333pt;}
.y1a{bottom:623.293333pt;}
.y52{bottom:627.293333pt;}
.ye8{bottom:627.613333pt;}
.y11c{bottom:628.413333pt;}
.ya8{bottom:636.893333pt;}
.y140{bottom:638.493333pt;}
.y174{bottom:638.653333pt;}
.y19{bottom:640.893333pt;}
.y11b{bottom:641.693333pt;}
.y51{bottom:644.893333pt;}
.ye7{bottom:645.213333pt;}
.ya7{bottom:654.653333pt;}
.y13f{bottom:656.093333pt;}
.y173{bottom:656.253333pt;}
.y18{bottom:658.493333pt;}
.y11a{bottom:661.693333pt;}
.y50{bottom:662.653333pt;}
.ye6{bottom:662.813333pt;}
.ya6{bottom:672.253333pt;}
.y13e{bottom:673.693333pt;}
.y172{bottom:673.853333pt;}
.y17{bottom:676.093333pt;}
.y4f{bottom:680.253333pt;}
.ye5{bottom:680.573333pt;}
.y119{bottom:681.693333pt;}
.ya5{bottom:689.853333pt;}
.y171{bottom:691.453333pt;}
.y16{bottom:693.853333pt;}
.y4e{bottom:697.853333pt;}
.ye4{bottom:698.173333pt;}
.y118{bottom:701.693333pt;}
.ya4{bottom:707.453333pt;}
.y13d{bottom:709.053333pt;}
.y170{bottom:709.213333pt;}
.y15{bottom:711.453333pt;}
.y4d{bottom:715.453333pt;}
.ye3{bottom:715.773333pt;}
.y117{bottom:721.693333pt;}
.ya3{bottom:725.053333pt;}
.y16f{bottom:726.813333pt;}
.y14{bottom:729.053333pt;}
.y4c{bottom:733.053333pt;}
.ye2{bottom:733.373333pt;}
.y116{bottom:741.693333pt;}
.ya2{bottom:742.813333pt;}
.y16e{bottom:744.573333pt;}
.y13a{bottom:744.893333pt;}
.y13{bottom:746.653333pt;}
.y8d{bottom:749.053333pt;}
.y4b{bottom:750.813333pt;}
.ye1{bottom:750.973333pt;}
.ya1{bottom:760.413333pt;}
.y8b{bottom:761.533333pt;}
.y115{bottom:761.693333pt;}
.y16d{bottom:762.813333pt;}
.y12{bottom:766.333333pt;}
.y4a{bottom:768.413333pt;}
.ye0{bottom:768.733333pt;}
.ya0{bottom:778.013333pt;}
.y16c{bottom:780.733333pt;}
.y114{bottom:781.693333pt;}
.y49{bottom:786.013333pt;}
.ydf{bottom:786.333333pt;}
.y11{bottom:788.573333pt;}
.y88{bottom:789.053333pt;}
.ybe{bottom:795.613333pt;}
.y16b{bottom:798.853333pt;}
.y113{bottom:801.733333pt;}
.y48{bottom:803.653333pt;}
.yde{bottom:803.973333pt;}
.y18e{bottom:805.733333pt;}
.y10{bottom:806.213333pt;}
.ybd{bottom:813.253333pt;}
.y16a{bottom:816.773333pt;}
.yf{bottom:819.653333pt;}
.y47{bottom:821.253333pt;}
.y112{bottom:821.733333pt;}
.ybc{bottom:831.013333pt;}
.y169{bottom:834.693333pt;}
.y18b{bottom:836.613333pt;}
.y46{bottom:839.013333pt;}
.ye{bottom:839.173333pt;}
.y110{bottom:841.733333pt;}
.ybb{bottom:848.613333pt;}
.ydd{bottom:850.693333pt;}
.y168{bottom:852.773333pt;}
.y45{bottom:856.613333pt;}
.yd{bottom:858.533333pt;}
.y10f{bottom:862.373333pt;}
.yba{bottom:866.213333pt;}
.ydc{bottom:868.453333pt;}
.y167{bottom:870.693333pt;}
.y44{bottom:874.213333pt;}
.yc{bottom:880.613333pt;}
.yb9{bottom:883.813333pt;}
.ydb{bottom:886.053333pt;}
.y166{bottom:888.773333pt;}
.y43{bottom:891.813333pt;}
.y10e{bottom:896.293333pt;}
.yb8{bottom:901.413333pt;}
.yda{bottom:903.653333pt;}
.y165{bottom:906.853333pt;}
.yb{bottom:908.933333pt;}
.y42{bottom:909.413333pt;}
.y10d{bottom:913.893333pt;}
.yb7{bottom:919.173333pt;}
.yd9{bottom:921.253333pt;}
.y164{bottom:924.933333pt;}
.y10c{bottom:927.013333pt;}
.y41{bottom:927.173333pt;}
.y5{bottom:933.893333pt;}
.yb6{bottom:936.773333pt;}
.yd8{bottom:938.853333pt;}
.y163{bottom:943.013333pt;}
.y40{bottom:944.773333pt;}
.y10b{bottom:947.013333pt;}
.yb5{bottom:954.373333pt;}
.yd7{bottom:956.613333pt;}
.y162{bottom:960.933333pt;}
.y4{bottom:961.733333pt;}
.y3f{bottom:962.373333pt;}
.y10a{bottom:967.013333pt;}
.yb4{bottom:971.973333pt;}
.yd6{bottom:974.213333pt;}
.y161{bottom:979.013333pt;}
.y3e{bottom:979.973333pt;}
.y109{bottom:987.013333pt;}
.y3{bottom:989.093333pt;}
.yb3{bottom:989.573333pt;}
.yd5{bottom:991.813333pt;}
.y160{bottom:996.933333pt;}
.y3d{bottom:997.573333pt;}
.y108{bottom:1007.013333pt;}
.yd4{bottom:1009.413333pt;}
.y15f{bottom:1015.173333pt;}
.y3c{bottom:1015.333333pt;}
.y2{bottom:1016.613333pt;}
.y3b{bottom:1041.440000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.800000pt;}
.h12{height:17.600000pt;}
.h18{height:17.632000pt;}
.h17{height:17.760000pt;}
.h5{height:18.880000pt;}
.h1a{height:20.000000pt;}
.h1b{height:20.032000pt;}
.ha{height:24.148125pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h1d{height:26.400000pt;}
.h10{height:27.520000pt;}
.h1c{height:28.160000pt;}
.h22{height:30.880000pt;}
.h16{height:35.200000pt;}
.h1e{height:35.360000pt;}
.h4{height:37.116563pt;}
.hb{height:37.479688pt;}
.hc{height:38.672812pt;}
.h19{height:40.000000pt;}
.hd{height:41.141250pt;}
.h3{height:41.543750pt;}
.h8{height:44.718750pt;}
.h14{height:44.768125pt;}
.h25{height:47.232000pt;}
.h9{height:47.310625pt;}
.h1f{height:51.123750pt;}
.h20{height:51.230417pt;}
.he{height:52.834688pt;}
.h2{height:60.057813pt;}
.h15{height:80.608125pt;}
.h13{height:85.728125pt;}
.h23{height:191.066667pt;}
.h21{height:191.226667pt;}
.h24{height:198.266667pt;}
.hf{height:210.426667pt;}
.h11{height:211.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.w19{width:62.880000pt;}
.w17{width:70.560000pt;}
.w14{width:70.880000pt;}
.w1a{width:72.032000pt;}
.wf{width:76.640000pt;}
.w18{width:86.272000pt;}
.wa{width:90.080000pt;}
.w16{width:92.000000pt;}
.w1b{width:103.680000pt;}
.wb{width:108.032000pt;}
.w12{width:109.600000pt;}
.w1e{width:113.312000pt;}
.w10{width:113.472000pt;}
.w11{width:120.032000pt;}
.w1c{width:124.192000pt;}
.w1d{width:135.546667pt;}
.wc{width:137.946667pt;}
.wd{width:150.106667pt;}
.w9{width:173.986667pt;}
.w15{width:194.586667pt;}
.we{width:209.946667pt;}
.w13{width:215.706667pt;}
.w21{width:230.466667pt;}
.w1f{width:236.546667pt;}
.w20{width:244.346667pt;}
.w6{width:300.066667pt;}
.w7{width:317.986667pt;}
.w5{width:323.746667pt;}
.w8{width:360.093333pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x3a{left:56.639988pt;}
.x16{left:57.920000pt;}
.x24{left:66.880000pt;}
.x52{left:71.999988pt;}
.x41{left:75.871988pt;}
.x23{left:76.831988pt;}
.x9{left:78.911988pt;}
.x29{left:82.112000pt;}
.x3f{left:83.071988pt;}
.x43{left:88.511988pt;}
.xe{left:90.111988pt;}
.xc{left:92.671988pt;}
.x53{left:96.031988pt;}
.x22{left:99.551988pt;}
.x2f{left:101.632000pt;}
.x4{left:107.232000pt;}
.x47{left:114.751988pt;}
.x46{left:117.951988pt;}
.xa{left:129.791988pt;}
.x3d{left:131.231988pt;}
.x34{left:134.266667pt;}
.x1c{left:141.306655pt;}
.x1f{left:145.146655pt;}
.x3c{left:151.386655pt;}
.x3b{left:152.666655pt;}
.x51{left:155.226655pt;}
.xf{left:158.266655pt;}
.x42{left:171.866655pt;}
.x45{left:173.146655pt;}
.x40{left:179.066655pt;}
.x44{left:184.506655pt;}
.x35{left:197.146667pt;}
.x20{left:201.946655pt;}
.x48{left:210.746655pt;}
.x4d{left:211.746667pt;}
.x1d{left:214.266655pt;}
.x4e{left:216.986667pt;}
.x4a{left:219.066667pt;}
.x49{left:221.186667pt;}
.x4f{left:223.266667pt;}
.x3e{left:227.226655pt;}
.x4c{left:229.186667pt;}
.x50{left:236.986667pt;}
.x25{left:240.866667pt;}
.x1e{left:245.186655pt;}
.x8{left:254.434667pt;}
.x7{left:258.914667pt;}
.x1b{left:264.066655pt;}
.x17{left:265.986667pt;}
.x36{left:269.186667pt;}
.x15{left:273.986667pt;}
.x13{left:284.866667pt;}
.x19{left:289.186667pt;}
.x2a{left:292.066667pt;}
.x30{left:296.226667pt;}
.x2e{left:297.826667pt;}
.x26{left:330.946667pt;}
.xd{left:346.626655pt;}
.x11{left:354.146655pt;}
.x6{left:367.421333pt;}
.x2b{left:368.706667pt;}
.x14{left:371.746667pt;}
.x37{left:372.866667pt;}
.x18{left:375.906667pt;}
.x5{left:379.421333pt;}
.x31{left:388.226667pt;}
.xb{left:396.893322pt;}
.x10{left:420.893322pt;}
.x27{left:438.973333pt;}
.x12{left:444.893322pt;}
.x54{left:468.893322pt;}
.x2c{left:482.173333pt;}
.x38{left:497.053333pt;}
.x32{left:501.693333pt;}
.x4b{left:528.893333pt;}
.x28{left:576.933333pt;}
.x2d{left:602.213333pt;}
.x1a{left:613.413322pt;}
.x21{left:615.973322pt;}
.x33{left:621.733333pt;}
.x39{left:632.613333pt;}
}




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