
    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_675ec52bb52b3d7e867625fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_34077a320b64cda1b66d3a86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_4d1caea7aebc305fdcaf9093.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ed91fec2e5a9d36d09cafe9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ab7015dac656a620fa926b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_187a5bceda3e21c77ef7190a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_6af3d293bb1974107e15ffc0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848000;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);}
.v2{vertical-align:-28.552800px;}
.v1{vertical-align:-23.450400px;}
.vc{vertical-align:-7.810200px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.063000px;}
.v8{vertical-align:4.963200px;}
.vb{vertical-align:6.000000px;}
.vd{vertical-align:11.323800px;}
.ve{vertical-align:21.808200px;}
.v3{vertical-align:38.340000px;}
.v4{vertical-align:39.693600px;}
.v7{vertical-align:44.584200px;}
.v6{vertical-align:46.528800px;}
.v5{vertical-align:48.541800px;}
.va{vertical-align:62.718600px;}
.ls1{letter-spacing:-5.184000px;}
.ls4{letter-spacing:-2.664000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.009000px;}
.ls9{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.756000px;}
.ls7{letter-spacing:1.152000px;}
.ls2{letter-spacing:2.100000px;}
.ls3{letter-spacing:4.839600px;}
.lsa{letter-spacing:11.336400px;}
.ls6{letter-spacing:389.397000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-122.580000px;}
.ws0{word-spacing:-36.000000px;}
.wsb6{word-spacing:-21.000000px;}
.wsc2{word-spacing:-19.152000px;}
.wsc3{word-spacing:-18.756000px;}
.wsc4{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.100000px;}
.wsc5{word-spacing:-16.344000px;}
.wsc6{word-spacing:-15.624000px;}
.ws2b{word-spacing:-15.000000px;}
.ws7{word-spacing:-5.256000px;}
.wsc9{word-spacing:-4.824000px;}
.ws1f{word-spacing:-4.248000px;}
.ws5{word-spacing:-3.600000px;}
.ws1b{word-spacing:-3.528000px;}
.ws81{word-spacing:-3.456000px;}
.ws13{word-spacing:-3.384000px;}
.ws3a{word-spacing:-3.312000px;}
.ws55{word-spacing:-3.300000px;}
.ws6f{word-spacing:-3.240000px;}
.ws8b{word-spacing:-3.234000px;}
.ws37{word-spacing:-3.096000px;}
.ws32{word-spacing:-3.024000px;}
.wsad{word-spacing:-2.952000px;}
.ws25{word-spacing:-2.808000px;}
.ws86{word-spacing:-2.736000px;}
.ws3b{word-spacing:-2.592000px;}
.ws7a{word-spacing:-2.508000px;}
.wsb1{word-spacing:-2.448000px;}
.ws9{word-spacing:-2.376000px;}
.ws6{word-spacing:-2.304000px;}
.ws17{word-spacing:-2.232000px;}
.ws45{word-spacing:-2.220000px;}
.ws6b{word-spacing:-2.088000px;}
.ws9d{word-spacing:-2.046000px;}
.ws92{word-spacing:-2.016000px;}
.ws6d{word-spacing:-1.944000px;}
.ws89{word-spacing:-1.800000px;}
.ws20{word-spacing:-1.656000px;}
.ws15{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.512000px;}
.wsb2{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.368000px;}
.ws19{word-spacing:-1.296000px;}
.ws7c{word-spacing:-1.224000px;}
.ws4b{word-spacing:-1.152000px;}
.ws44{word-spacing:-1.080000px;}
.ws31{word-spacing:-1.008000px;}
.wsb{word-spacing:-0.936000px;}
.ws5f{word-spacing:-0.864000px;}
.ws43{word-spacing:-0.792000px;}
.ws65{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.576000px;}
.ws88{word-spacing:-0.504000px;}
.ws8e{word-spacing:-0.462000px;}
.ws38{word-spacing:-0.432000px;}
.ws76{word-spacing:-0.396000px;}
.wsa3{word-spacing:-0.330000px;}
.ws1a{word-spacing:-0.288000px;}
.ws4a{word-spacing:-0.216000px;}
.ws9f{word-spacing:-0.198000px;}
.ws56{word-spacing:-0.144000px;}
.ws8a{word-spacing:-0.132000px;}
.ws49{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws29{word-spacing:0.072000px;}
.ws71{word-spacing:0.144000px;}
.wsc{word-spacing:0.216000px;}
.ws62{word-spacing:0.360000px;}
.ws8d{word-spacing:0.396000px;}
.ws3c{word-spacing:0.432000px;}
.wsa9{word-spacing:0.462000px;}
.ws42{word-spacing:0.504000px;}
.wsa8{word-spacing:0.528000px;}
.ws90{word-spacing:0.576000px;}
.ws53{word-spacing:0.648000px;}
.ws5d{word-spacing:0.792000px;}
.ws8c{word-spacing:0.924000px;}
.ws23{word-spacing:0.936000px;}
.ws1d{word-spacing:1.008000px;}
.wsab{word-spacing:1.056000px;}
.ws3d{word-spacing:1.080000px;}
.wsa{word-spacing:1.152000px;}
.ws18{word-spacing:1.224000px;}
.ws27{word-spacing:1.296000px;}
.wsaa{word-spacing:1.320000px;}
.ws4f{word-spacing:1.368000px;}
.wsac{word-spacing:1.386000px;}
.ws5b{word-spacing:1.440000px;}
.ws10{word-spacing:1.512000px;}
.ws6a{word-spacing:1.584000px;}
.ws95{word-spacing:1.656000px;}
.ws52{word-spacing:1.728000px;}
.ws97{word-spacing:1.800000px;}
.ws33{word-spacing:1.872000px;}
.ws3e{word-spacing:1.944000px;}
.wsc0{word-spacing:2.016000px;}
.ws82{word-spacing:2.088000px;}
.wsa1{word-spacing:2.112000px;}
.wsd{word-spacing:2.160000px;}
.ws12{word-spacing:2.232000px;}
.ws4e{word-spacing:2.304000px;}
.ws77{word-spacing:2.310000px;}
.wsa0{word-spacing:2.376000px;}
.ws3f{word-spacing:2.448000px;}
.wsa5{word-spacing:2.508000px;}
.ws96{word-spacing:2.520000px;}
.ws61{word-spacing:2.592000px;}
.ws1c{word-spacing:2.664000px;}
.ws9a{word-spacing:2.706000px;}
.wsb0{word-spacing:2.736000px;}
.ws46{word-spacing:2.808000px;}
.ws64{word-spacing:2.880000px;}
.ws24{word-spacing:2.952000px;}
.ws4c{word-spacing:3.024000px;}
.wsa2{word-spacing:3.036000px;}
.ws6c{word-spacing:3.096000px;}
.ws54{word-spacing:3.168000px;}
.ws5e{word-spacing:3.312000px;}
.ws48{word-spacing:3.384000px;}
.ws22{word-spacing:3.456000px;}
.wsaf{word-spacing:3.528000px;}
.ws26{word-spacing:3.600000px;}
.ws39{word-spacing:3.744000px;}
.ws5a{word-spacing:3.888000px;}
.ws7b{word-spacing:3.960000px;}
.ws72{word-spacing:4.032000px;}
.ws79{word-spacing:4.092000px;}
.wsf{word-spacing:4.104000px;}
.ws94{word-spacing:4.176000px;}
.ws9e{word-spacing:4.224000px;}
.ws80{word-spacing:4.248000px;}
.ws2e{word-spacing:4.320000px;}
.ws63{word-spacing:4.392000px;}
.ws73{word-spacing:4.422000px;}
.ws28{word-spacing:4.464000px;}
.ws2f{word-spacing:4.536000px;}
.ws5c{word-spacing:4.608000px;}
.ws74{word-spacing:4.686000px;}
.ws7f{word-spacing:4.752000px;}
.ws2c{word-spacing:4.824000px;}
.ws4d{word-spacing:4.896000px;}
.ws6e{word-spacing:4.968000px;}
.ws2{word-spacing:5.184000px;}
.ws7e{word-spacing:5.328000px;}
.ws57{word-spacing:5.400000px;}
.ws36{word-spacing:5.472000px;}
.wse{word-spacing:5.544000px;}
.wsae{word-spacing:5.616000px;}
.ws60{word-spacing:5.760000px;}
.ws67{word-spacing:5.832000px;}
.wscb{word-spacing:5.904000px;}
.ws93{word-spacing:6.192000px;}
.ws70{word-spacing:6.264000px;}
.wsa7{word-spacing:6.468000px;}
.ws69{word-spacing:6.552000px;}
.ws47{word-spacing:6.624000px;}
.ws7d{word-spacing:6.696000px;}
.wsa6{word-spacing:6.732000px;}
.ws98{word-spacing:6.768000px;}
.ws75{word-spacing:6.798000px;}
.ws87{word-spacing:6.840000px;}
.wsc1{word-spacing:6.984000px;}
.wsa4{word-spacing:6.996000px;}
.ws1e{word-spacing:7.056000px;}
.ws59{word-spacing:7.200000px;}
.ws34{word-spacing:7.272000px;}
.ws14{word-spacing:7.344000px;}
.ws16{word-spacing:7.416000px;}
.ws91{word-spacing:7.488000px;}
.ws68{word-spacing:7.560000px;}
.ws8f{word-spacing:7.632000px;}
.ws99{word-spacing:7.722000px;}
.ws84{word-spacing:7.776000px;}
.ws78{word-spacing:7.920000px;}
.ws2d{word-spacing:8.064000px;}
.ws83{word-spacing:8.208000px;}
.ws2a{word-spacing:8.352000px;}
.ws41{word-spacing:8.496000px;}
.ws66{word-spacing:8.568000px;}
.ws40{word-spacing:8.640000px;}
.ws51{word-spacing:9.144000px;}
.ws85{word-spacing:9.504000px;}
.wsca{word-spacing:9.864000px;}
.ws9b{word-spacing:9.900000px;}
.ws9c{word-spacing:10.098000px;}
.ws58{word-spacing:10.800000px;}
.wsc8{word-spacing:11.304000px;}
.ws50{word-spacing:14.112000px;}
.wsc7{word-spacing:17.064000px;}
.wsba{word-spacing:132.820800px;}
.wsbc{word-spacing:145.576800px;}
.wsb8{word-spacing:146.848800px;}
.wsbb{word-spacing:153.180000px;}
.wsb7{word-spacing:165.936000px;}
.wsb9{word-spacing:165.936600px;}
.wsbe{word-spacing:202.540200px;}
.wsbf{word-spacing:330.268200px;}
.wsb4{word-spacing:365.374200px;}
.wsb3{word-spacing:395.676000px;}
.wsb5{word-spacing:406.028400px;}
.wsbd{word-spacing:1988.295000px;}
._1b{margin-left:-576.334200px;}
._20{margin-left:-565.010400px;}
._10{margin-left:-19.504800px;}
._11{margin-left:-17.366400px;}
._8{margin-left:-15.480000px;}
._1{margin-left:-9.914400px;}
._a{margin-left:-8.701200px;}
._e{margin-left:-6.883200px;}
._7{margin-left:-5.432400px;}
._b{margin-left:-3.960000px;}
._d{margin-left:-2.952000px;}
._0{margin-left:-1.933200px;}
._3{width:1.296000px;}
._9{width:2.300400px;}
._5{width:3.412800px;}
._6{width:5.184000px;}
._c{width:6.249600px;}
._4{width:7.344000px;}
._2{width:9.072000px;}
._f{width:10.735200px;}
._22{width:12.661200px;}
._14{width:17.110800px;}
._13{width:18.259200px;}
._21{width:27.176400px;}
._1e{width:222.852000px;}
._17{width:315.615000px;}
._15{width:356.693400px;}
._19{width:363.525600px;}
._1c{width:366.327000px;}
._16{width:373.624200px;}
._18{width:418.926000px;}
._1d{width:421.750200px;}
._12{width:623.805000px;}
._1f{width:746.746200px;}
._1a{width:796.128000px;}
.fc3{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs3{font-size:360.000000px;}
.fs2{font-size:432.000000px;}
.fs6{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y170{bottom:39.322650px;}
.yee{bottom:39.393600px;}
.y1c5{bottom:40.500750px;}
.y34{bottom:40.914150px;}
.y6a{bottom:41.519550px;}
.y1f4{bottom:42.000750px;}
.yea{bottom:46.009050px;}
.y147{bottom:46.862550px;}
.y1b5{bottom:47.860500px;}
.ya4{bottom:48.227550px;}
.y1a1{bottom:50.142900px;}
.y22f{bottom:51.307650px;}
.y23d{bottom:55.883550px;}
.y19f{bottom:56.733450px;}
.y246{bottom:58.009500px;}
.y69{bottom:58.221600px;}
.y166{bottom:59.568150px;}
.y14a{bottom:59.854350px;}
.y158{bottom:59.898750px;}
.y1df{bottom:61.335450px;}
.y152{bottom:61.432950px;}
.y4{bottom:63.351450px;}
.ye9{bottom:64.009050px;}
.y1b4{bottom:64.360500px;}
.y242{bottom:64.685100px;}
.y146{bottom:64.862550px;}
.y10f{bottom:65.142900px;}
.y1a0{bottom:66.642900px;}
.y1a2{bottom:66.885000px;}
.ya3{bottom:69.827550px;}
.y14f{bottom:72.424200px;}
.ye6{bottom:72.513000px;}
.y22e{bottom:72.907650px;}
.y68{bottom:73.221600px;}
.y19e{bottom:73.233450px;}
.y151{bottom:75.020400px;}
.y165{bottom:76.068150px;}
.y149{bottom:76.354350px;}
.y23c{bottom:77.483550px;}
.y157{bottom:77.898750px;}
.y16d{bottom:79.043850px;}
.y245{bottom:79.609500px;}
.y1b3{bottom:80.860500px;}
.y10e{bottom:83.142900px;}
.ycc{bottom:83.932950px;}
.y238{bottom:85.507650px;}
.y3{bottom:85.851450px;}
.y241{bottom:86.285100px;}
.y67{bottom:88.221600px;}
.y14e{bottom:88.924200px;}
.y19d{bottom:89.733450px;}
.ye5{bottom:90.513000px;}
.ya2{bottom:91.427550px;}
.y164{bottom:92.568150px;}
.y148{bottom:92.854350px;}
.y16c{bottom:95.543850px;}
.y156{bottom:95.898750px;}
.y23b{bottom:99.083550px;}
.y244{bottom:101.209500px;}
.y66{bottom:103.221600px;}
.y16f{bottom:103.652700px;}
.ycb{bottom:106.432950px;}
.yab{bottom:106.599600px;}
.y240{bottom:107.885100px;}
.y237{bottom:108.007650px;}
.ye4{bottom:108.513000px;}
.y212{bottom:109.763550px;}
.ya1{bottom:113.027550px;}
.y22d{bottom:116.107650px;}
.y65{bottom:118.221600px;}
.yad{bottom:120.099600px;}
.y23a{bottom:120.683550px;}
.y1f0{bottom:121.161300px;}
.y243{bottom:122.809500px;}
.yaa{bottom:123.099600px;}
.ye3{bottom:126.513000px;}
.yca{bottom:128.932950px;}
.y23f{bottom:129.485100px;}
.y2{bottom:130.851450px;}
.y211{bottom:132.263550px;}
.y16b{bottom:134.543850px;}
.ya0{bottom:134.627550px;}
.y22c{bottom:137.707650px;}
.yac{bottom:138.099600px;}
.y16e{bottom:138.418500px;}
.y132{bottom:139.434300px;}
.yd0{bottom:139.537650px;}
.ya9{bottom:139.599600px;}
.y12b{bottom:147.499800px;}
.yd2{bottom:148.041600px;}
.y10a{bottom:149.307000px;}
.y23e{bottom:151.085100px;}
.yc9{bottom:151.432950px;}
.y1c2{bottom:152.699550px;}
.y236{bottom:153.007650px;}
.y1{bottom:153.351450px;}
.y210{bottom:154.763550px;}
.y131{bottom:155.934300px;}
.ya8{bottom:156.099600px;}
.y9f{bottom:156.227550px;}
.y16a{bottom:157.043850px;}
.ycf{bottom:157.537650px;}
.y22b{bottom:159.307650px;}
.yd1{bottom:166.041600px;}
.y12a{bottom:169.999800px;}
.y109{bottom:171.807000px;}
.y82{bottom:171.961800px;}
.y130{bottom:172.434300px;}
.y1f5{bottom:172.439850px;}
.yc8{bottom:173.932950px;}
.y20f{bottom:177.263550px;}
.y9e{bottom:177.827550px;}
.y1c1{bottom:177.899550px;}
.y1ef{bottom:177.912300px;}
.y1c6{bottom:178.858050px;}
.y169{bottom:179.543850px;}
.y22a{bottom:180.907650px;}
.y81{bottom:186.961800px;}
.y129{bottom:192.499800px;}
.y108{bottom:194.307000px;}
.yc7{bottom:196.432950px;}
.y235{bottom:198.007650px;}
.y9d{bottom:199.427550px;}
.y20e{bottom:199.763550px;}
.y80{bottom:201.961800px;}
.y168{bottom:202.043850px;}
.y229{bottom:202.507650px;}
.y128{bottom:214.999800px;}
.y107{bottom:216.807000px;}
.y7f{bottom:216.961800px;}
.ye8{bottom:218.932950px;}
.y1f3{bottom:220.865250px;}
.y9c{bottom:221.027550px;}
.y20d{bottom:222.263550px;}
.y167{bottom:224.543850px;}
.y18d{bottom:226.132800px;}
.y1ee{bottom:229.276350px;}
.y7e{bottom:231.961800px;}
.y1d4{bottom:233.344350px;}
.yd{bottom:236.348850px;}
.y127{bottom:237.499800px;}
.y106{bottom:239.307000px;}
.yc6{bottom:241.432950px;}
.y1f2{bottom:242.465250px;}
.y5f{bottom:242.622900px;}
.y9b{bottom:242.627550px;}
.y234{bottom:243.007650px;}
.y228{bottom:245.707650px;}
.y1c4{bottom:246.242850px;}
.y18c{bottom:248.632800px;}
.y163{bottom:255.730350px;}
.y126{bottom:259.999800px;}
.yc5{bottom:263.932950px;}
.y9a{bottom:264.227550px;}
.y48{bottom:264.832950px;}
.y5e{bottom:265.122900px;}
.y233{bottom:265.507650px;}
.y20c{bottom:267.263550px;}
.y227{bottom:267.307650px;}
.y18b{bottom:271.132800px;}
.y1c3{bottom:271.442850px;}
.y7d{bottom:273.145500px;}
.yc{bottom:275.348850px;}
.y1e5{bottom:276.626250px;}
.y162{bottom:278.230350px;}
.y125{bottom:282.499800px;}
.y105{bottom:284.307000px;}
.y99{bottom:285.827550px;}
.yc4{bottom:286.432950px;}
.y47{bottom:287.332950px;}
.y5d{bottom:287.622900px;}
.y226{bottom:288.907650px;}
.y1ec{bottom:289.016550px;}
.y20b{bottom:289.763550px;}
.y1eb{bottom:290.079600px;}
.y1ed{bottom:290.583000px;}
.y1d3{bottom:292.911300px;}
.y18a{bottom:293.632800px;}
.y7c{bottom:295.645500px;}
.yb{bottom:297.848850px;}
.y1e4{bottom:298.226250px;}
.y161{bottom:300.730350px;}
.y145{bottom:301.869150px;}
.y124{bottom:304.999800px;}
.y104{bottom:306.807000px;}
.ye2{bottom:308.032950px;}
.yc3{bottom:308.932950px;}
.y46{bottom:309.832950px;}
.y5c{bottom:310.122900px;}
.y225{bottom:310.507650px;}
.y20a{bottom:312.263550px;}
.y189{bottom:316.132800px;}
.y7b{bottom:318.145500px;}
.ya{bottom:320.348850px;}
.y160{bottom:323.230350px;}
.y144{bottom:324.369150px;}
.y123{bottom:327.499800px;}
.y98{bottom:329.027550px;}
.y103{bottom:329.307000px;}
.ye1{bottom:329.632800px;}
.yc2{bottom:331.432950px;}
.y1d6{bottom:331.557600px;}
.y45{bottom:332.332950px;}
.y5b{bottom:332.622900px;}
.y232{bottom:333.007650px;}
.y26{bottom:333.232950px;}
.y1b2{bottom:333.275400px;}
.y209{bottom:334.763550px;}
.y1c0{bottom:337.676850px;}
.y188{bottom:338.632800px;}
.y7a{bottom:340.645500px;}
.y9{bottom:342.848850px;}
.y15f{bottom:345.730350px;}
.y143{bottom:346.869150px;}
.y122{bottom:349.999800px;}
.y97{bottom:350.627550px;}
.ye0{bottom:351.232950px;}
.y102{bottom:351.807000px;}
.yc1{bottom:353.932950px;}
.y17{bottom:354.251850px;}
.y25{bottom:354.832950px;}
.y5a{bottom:355.122900px;}
.y224{bottom:355.507650px;}
.y1b1{bottom:355.775400px;}
.y8{bottom:356.366250px;}
.y1d5{bottom:356.757600px;}
.y208{bottom:357.263550px;}
.y22{bottom:358.557450px;}
.y187{bottom:361.132800px;}
.y1bf{bottom:362.876850px;}
.y79{bottom:363.145500px;}
.y15e{bottom:368.230350px;}
.y96{bottom:372.227550px;}
.y121{bottom:372.499800px;}
.ydf{bottom:372.832950px;}
.y101{bottom:374.307000px;}
.yc0{bottom:376.432950px;}
.y16{bottom:376.751850px;}
.y44{bottom:377.332950px;}
.y59{bottom:377.622900px;}
.y223{bottom:378.007650px;}
.y1b0{bottom:378.275400px;}
.y199{bottom:378.523500px;}
.y207{bottom:379.763550px;}
.y21{bottom:380.157450px;}
.y186{bottom:383.632800px;}
.y78{bottom:385.645500px;}
.y64{bottom:388.103550px;}
.y15d{bottom:390.730350px;}
.y142{bottom:391.869150px;}
.y95{bottom:393.827550px;}
.yde{bottom:394.432950px;}
.y120{bottom:394.999800px;}
.y100{bottom:396.807000px;}
.y1de{bottom:396.943200px;}
.y1d7{bottom:398.006100px;}
.y24{bottom:398.932950px;}
.y15{bottom:399.251850px;}
.y43{bottom:399.832950px;}
.y58{bottom:400.122900px;}
.y222{bottom:400.507650px;}
.y1af{bottom:400.775400px;}
.y198{bottom:401.023500px;}
.y20{bottom:401.757450px;}
.y63{bottom:403.103550px;}
.y185{bottom:406.132800px;}
.y77{bottom:408.145500px;}
.y15c{bottom:413.230350px;}
.y141{bottom:414.369150px;}
.y94{bottom:415.427550px;}
.ydd{bottom:416.032950px;}
.y11f{bottom:417.499800px;}
.y62{bottom:418.103550px;}
.y150{bottom:418.351050px;}
.yff{bottom:419.307000px;}
.y239{bottom:420.471450px;}
.ybf{bottom:421.432950px;}
.y14{bottom:421.751850px;}
.y42{bottom:422.332950px;}
.y231{bottom:423.007650px;}
.y1ae{bottom:423.275400px;}
.y1f{bottom:423.357450px;}
.y197{bottom:423.523500px;}
.y206{bottom:424.763550px;}
.y184{bottom:428.632800px;}
.y76{bottom:430.645500px;}
.y61{bottom:433.103550px;}
.y15b{bottom:435.730350px;}
.y140{bottom:436.869150px;}
.y93{bottom:437.027550px;}
.y10d{bottom:437.243250px;}
.ydc{bottom:437.632800px;}
.yce{bottom:438.144000px;}
.y11e{bottom:439.999800px;}
.yfe{bottom:441.807000px;}
.ybe{bottom:443.932950px;}
.y13{bottom:444.251850px;}
.y41{bottom:444.832950px;}
.y1e{bottom:444.957450px;}
.y57{bottom:445.122900px;}
.y221{bottom:445.507650px;}
.y1ad{bottom:445.775400px;}
.y196{bottom:446.023500px;}
.y1b8{bottom:446.638950px;}
.y205{bottom:447.263550px;}
.y60{bottom:448.103550px;}
.y183{bottom:451.132800px;}
.y75{bottom:453.145500px;}
.y173{bottom:453.938100px;}
.y19c{bottom:454.079850px;}
.ycd{bottom:454.644000px;}
.y1be{bottom:455.060850px;}
.y10c{bottom:455.243250px;}
.y15a{bottom:458.230350px;}
.y92{bottom:458.627550px;}
.y14d{bottom:459.010800px;}
.ydb{bottom:459.232950px;}
.y11d{bottom:462.499800px;}
.y1b7{bottom:463.138950px;}
.yfd{bottom:464.307000px;}
.y7{bottom:464.366250px;}
.ybd{bottom:466.432950px;}
.y1d{bottom:466.557450px;}
.y12{bottom:466.751850px;}
.y40{bottom:467.332950px;}
.y56{bottom:467.622900px;}
.y220{bottom:468.007650px;}
.y1ac{bottom:468.275400px;}
.y195{bottom:468.523500px;}
.y33{bottom:469.158300px;}
.y204{bottom:469.763550px;}
.y172{bottom:470.438100px;}
.ya7{bottom:470.449950px;}
.y19b{bottom:470.579850px;}
.y182{bottom:473.632800px;}
.y14c{bottom:475.510800px;}
.y74{bottom:475.645500px;}
.y1b6{bottom:479.638950px;}
.y91{bottom:480.227550px;}
.y159{bottom:480.730350px;}
.yda{bottom:480.832950px;}
.y13f{bottom:481.869150px;}
.y11c{bottom:484.999800px;}
.y171{bottom:486.938100px;}
.ya6{bottom:486.949950px;}
.y19a{bottom:487.079850px;}
.y1e8{bottom:487.583550px;}
.y1c{bottom:488.157450px;}
.ybc{bottom:488.932950px;}
.y11{bottom:489.251850px;}
.y3f{bottom:489.832950px;}
.y55{bottom:490.122900px;}
.y1ab{bottom:490.775400px;}
.y194{bottom:491.023500px;}
.y155{bottom:491.542350px;}
.y32{bottom:491.658300px;}
.y14b{bottom:492.010800px;}
.y203{bottom:492.263550px;}
.y1e0{bottom:493.429950px;}
.ye7{bottom:494.547900px;}
.y181{bottom:496.132800px;}
.y73{bottom:498.145500px;}
.y90{bottom:501.827550px;}
.yd9{bottom:502.432950px;}
.ya5{bottom:503.449950px;}
.y13e{bottom:504.369150px;}
.y1ca{bottom:507.322650px;}
.y11b{bottom:507.499800px;}
.y154{bottom:508.042350px;}
.yfc{bottom:509.307000px;}
.y1b{bottom:509.757450px;}
.ybb{bottom:511.432950px;}
.y10{bottom:511.751850px;}
.y3e{bottom:512.332950px;}
.y54{bottom:512.622900px;}
.y21f{bottom:513.007650px;}
.y1aa{bottom:513.275400px;}
.y193{bottom:513.523500px;}
.y31{bottom:514.158300px;}
.y202{bottom:514.763550px;}
.y12f{bottom:515.178300px;}
.y180{bottom:518.632800px;}
.y8f{bottom:523.427550px;}
.yd8{bottom:524.032950px;}
.y153{bottom:524.542350px;}
.y13d{bottom:526.869150px;}
.y11a{bottom:529.999800px;}
.y1a{bottom:531.357450px;}
.y12e{bottom:531.678300px;}
.yfb{bottom:531.807000px;}
.yba{bottom:533.932950px;}
.yf{bottom:534.251850px;}
.y3d{bottom:534.832950px;}
.y21e{bottom:535.507650px;}
.y1bd{bottom:535.600500px;}
.y1a9{bottom:535.775400px;}
.y192{bottom:536.023500px;}
.y30{bottom:536.658300px;}
.y201{bottom:537.263550px;}
.y1e7{bottom:538.824750px;}
.yed{bottom:539.119350px;}
.y17f{bottom:541.132800px;}
.y72{bottom:543.145500px;}
.y1c9{bottom:544.566750px;}
.y1d1{bottom:545.590350px;}
.yd7{bottom:545.632800px;}
.y1e3{bottom:546.017550px;}
.y1dd{bottom:546.115950px;}
.y1da{bottom:547.636650px;}
.y12d{bottom:548.178300px;}
.y13c{bottom:549.369150px;}
.y119{bottom:552.499800px;}
.y19{bottom:552.957450px;}
.yfa{bottom:554.307000px;}
.yec{bottom:555.619350px;}
.yb9{bottom:556.432950px;}
.ye{bottom:556.751850px;}
.y3c{bottom:557.332950px;}
.y53{bottom:557.622900px;}
.y21d{bottom:558.007650px;}
.y1a8{bottom:558.275400px;}
.y191{bottom:558.523500px;}
.y2f{bottom:559.158300px;}
.y200{bottom:559.763550px;}
.y1bc{bottom:560.800350px;}
.y17e{bottom:563.632800px;}
.y12c{bottom:564.678300px;}
.y71{bottom:565.645500px;}
.y1c7{bottom:565.787250px;}
.y8e{bottom:566.627550px;}
.yd6{bottom:567.232950px;}
.y13b{bottom:571.869150px;}
.yeb{bottom:572.119350px;}
.y6{bottom:572.366250px;}
.y118{bottom:574.999800px;}
.yf9{bottom:576.807000px;}
.yb8{bottom:578.932950px;}
.y3b{bottom:579.832950px;}
.y52{bottom:580.122900px;}
.y230{bottom:580.507650px;}
.y1a7{bottom:580.775400px;}
.y190{bottom:581.023500px;}
.y2e{bottom:581.658300px;}
.y1ff{bottom:582.263550px;}
.y17d{bottom:586.132800px;}
.y70{bottom:588.145500px;}
.y8d{bottom:588.227550px;}
.yd5{bottom:588.832950px;}
.y13a{bottom:594.369150px;}
.y117{bottom:597.499800px;}
.y1cb{bottom:598.740000px;}
.y1d0{bottom:599.265600px;}
.yf8{bottom:599.307000px;}
.y1d2{bottom:600.260100px;}
.y1dc{bottom:600.260550px;}
.y1e2{bottom:600.865950px;}
.yb7{bottom:601.432950px;}
.y1e6{bottom:602.213100px;}
.y3a{bottom:602.332950px;}
.y51{bottom:602.622900px;}
.y21c{bottom:603.007650px;}
.y1a6{bottom:603.275400px;}
.y18f{bottom:603.523500px;}
.y2d{bottom:604.158300px;}
.y1fe{bottom:604.763550px;}
.y17c{bottom:608.632800px;}
.y8c{bottom:609.827550px;}
.yd4{bottom:610.432950px;}
.y6f{bottom:610.645500px;}
.y139{bottom:616.869150px;}
.y5{bottom:617.957550px;}
.y116{bottom:619.999800px;}
.yf7{bottom:621.807000px;}
.yb6{bottom:623.932950px;}
.y39{bottom:624.832950px;}
.y50{bottom:625.122900px;}
.y21b{bottom:625.507650px;}
.y1a5{bottom:625.775400px;}
.y18e{bottom:626.023500px;}
.y2c{bottom:626.658300px;}
.y1fd{bottom:627.263550px;}
.y17b{bottom:631.132800px;}
.y8b{bottom:631.427550px;}
.yd3{bottom:632.032950px;}
.y6e{bottom:633.145500px;}
.y1bb{bottom:634.514850px;}
.y138{bottom:639.369150px;}
.y115{bottom:642.499800px;}
.yf6{bottom:644.307000px;}
.yb5{bottom:646.432950px;}
.y38{bottom:647.332950px;}
.y4f{bottom:647.622900px;}
.y21a{bottom:648.007650px;}
.y1a4{bottom:648.275400px;}
.y2b{bottom:649.158300px;}
.y1fc{bottom:649.763550px;}
.y1d9{bottom:650.399850px;}
.y8a{bottom:653.027550px;}
.y1c8{bottom:655.590450px;}
.y6d{bottom:655.645500px;}
.y1db{bottom:659.250750px;}
.y1ba{bottom:659.714850px;}
.y137{bottom:661.869150px;}
.y1cf{bottom:662.558850px;}
.y1ea{bottom:663.116550px;}
.y1e9{bottom:663.489000px;}
.y114{bottom:664.999800px;}
.yf5{bottom:666.807000px;}
.yb4{bottom:668.932950px;}
.y37{bottom:669.832950px;}
.y4e{bottom:670.122900px;}
.y219{bottom:670.507650px;}
.y2a{bottom:671.658300px;}
.y1d8{bottom:671.999850px;}
.y1fb{bottom:672.263550px;}
.y89{bottom:674.627550px;}
.y17a{bottom:675.232950px;}
.y6c{bottom:678.145500px;}
.y113{bottom:687.499800px;}
.yf4{bottom:689.307000px;}
.y18{bottom:690.596550px;}
.yb3{bottom:691.432950px;}
.y36{bottom:692.332950px;}
.y218{bottom:693.007650px;}
.y1fa{bottom:694.763550px;}
.y88{bottom:696.227550px;}
.y179{bottom:696.832950px;}
.y6b{bottom:700.645500px;}
.y1cd{bottom:703.280100px;}
.y136{bottom:706.869150px;}
.y112{bottom:709.999800px;}
.yf3{bottom:711.807000px;}
.yb2{bottom:713.932950px;}
.y1f1{bottom:714.548100px;}
.y35{bottom:714.832950px;}
.y4d{bottom:715.122900px;}
.y217{bottom:715.507650px;}
.y29{bottom:716.658300px;}
.y1f9{bottom:717.263550px;}
.y87{bottom:717.827550px;}
.y178{bottom:718.432950px;}
.y1cc{bottom:728.480100px;}
.y135{bottom:729.369150px;}
.y111{bottom:732.499800px;}
.yf2{bottom:734.307000px;}
.yb1{bottom:736.432950px;}
.y4c{bottom:737.622900px;}
.y28{bottom:739.158300px;}
.y86{bottom:739.427550px;}
.y1f8{bottom:739.763550px;}
.y177{bottom:740.032950px;}
.y1b9{bottom:748.882050px;}
.y110{bottom:754.999800px;}
.yb0{bottom:758.932950px;}
.y134{bottom:759.222900px;}
.y4b{bottom:760.122900px;}
.y216{bottom:760.507650px;}
.y85{bottom:761.027550px;}
.y176{bottom:761.632800px;}
.y27{bottom:761.658300px;}
.y1f7{bottom:762.263550px;}
.y1e1{bottom:767.636700px;}
.y1ce{bottom:768.665550px;}
.yf1{bottom:779.307000px;}
.yaf{bottom:781.432950px;}
.y133{bottom:781.722900px;}
.y4a{bottom:782.622900px;}
.y84{bottom:782.627550px;}
.y215{bottom:783.007650px;}
.y175{bottom:783.232950px;}
.y1f6{bottom:784.763550px;}
.yf0{bottom:801.807000px;}
.y10b{bottom:802.706850px;}
.yae{bottom:803.932950px;}
.y174{bottom:804.832800px;}
.y214{bottom:805.507650px;}
.y1a3{bottom:808.103550px;}
.yef{bottom:824.307000px;}
.y83{bottom:825.827550px;}
.y23{bottom:826.432950px;}
.y49{bottom:826.722900px;}
.y213{bottom:828.007650px;}
.h7{height:41.660156px;}
.he{height:41.689453px;}
.h11{height:45.858398px;}
.h10{height:47.381836px;}
.hd{height:48.660000px;}
.hb{height:50.027344px;}
.hc{height:52.646484px;}
.hf{height:57.911133px;}
.ha{height:58.392000px;}
.h19{height:59.976000px;}
.h8{height:63.175781px;}
.h6{height:63.949219px;}
.h1c{height:64.322400px;}
.h18{height:68.912419px;}
.h1d{height:69.715800px;}
.h13{height:74.607422px;}
.h1a{height:77.670422px;}
.h1e{height:80.200200px;}
.h12{height:94.763672px;}
.h3{height:95.923828px;}
.h14{height:114.301022px;}
.h17{height:119.191622px;}
.h16{height:121.136222px;}
.h15{height:123.149222px;}
.h1b{height:127.110600px;}
.h2{height:127.898438px;}
.h5{height:291.960000px;}
.h1f{height:300.164062px;}
.h4{height:350.352000px;}
.h9{height:437.940000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x47{left:59.527500px;}
.x5f{left:67.080750px;}
.x73{left:69.094500px;}
.x60{left:70.157550px;}
.x65{left:71.220450px;}
.x61{left:72.283500px;}
.x59{left:74.409450px;}
.x39{left:96.519750px;}
.x4d{left:176.456700px;}
.x5e{left:199.588650px;}
.x58{left:203.188050px;}
.x56{left:204.407550px;}
.x57{left:207.014850px;}
.x55{left:209.151750px;}
.x54{left:210.550800px;}
.x6f{left:212.244150px;}
.x4c{left:248.740200px;}
.x70{left:303.925650px;}
.x5a{left:316.771650px;}
.x67{left:318.372000px;}
.x6e{left:332.926950px;}
.x66{left:340.556100px;}
.x62{left:341.884800px;}
.x53{left:406.813050px;}
.x5c{left:437.864250px;}
.x5d{left:443.444850px;}
.x5b{left:446.456700px;}
.x6d{left:447.909450px;}
.x74{left:517.836300px;}
.x7c{left:544.427550px;}
.x78{left:552.592650px;}
.x77{left:562.902150px;}
.x46{left:567.637800px;}
.x40{left:569.763750px;}
.x71{left:575.691450px;}
.x75{left:581.425200px;}
.x7a{left:582.585300px;}
.x7b{left:588.909000px;}
.x7{left:598.252050px;}
.x79{left:601.169700px;}
.x76{left:613.417350px;}
.x38{left:620.681100px;}
.x23{left:621.850350px;}
.xa{left:622.913400px;}
.x9{left:626.806350px;}
.x64{left:644.497950px;}
.x68{left:646.299150px;}
.x18{left:651.826800px;}
.x29{left:665.617800px;}
.x3a{left:673.735200px;}
.x3b{left:722.283750px;}
.x3c{left:736.855350px;}
.x21{left:738.567900px;}
.x31{left:739.948650px;}
.x30{left:746.610000px;}
.x19{left:754.000650px;}
.x1a{left:766.916850px;}
.x22{left:772.933200px;}
.x1b{left:774.211800px;}
.x32{left:775.991100px;}
.x63{left:777.005850px;}
.x1c{left:778.163250px;}
.x6c{left:784.488150px;}
.x33{left:787.241100px;}
.x69{left:795.118050px;}
.x2c{left:814.952250px;}
.x15{left:819.617850px;}
.x16{left:822.917400px;}
.x2d{left:826.396350px;}
.x2e{left:832.651350px;}
.x2f{left:836.060700px;}
.x11{left:840.827400px;}
.x43{left:845.149950px;}
.x42{left:848.317800px;}
.x3d{left:851.386650px;}
.x17{left:853.056450px;}
.x14{left:854.153850px;}
.xb{left:855.535200px;}
.x26{left:859.690350px;}
.x44{left:863.453250px;}
.x2a{left:867.228000px;}
.x2b{left:868.459350px;}
.x41{left:869.704500px;}
.x4a{left:871.381650px;}
.x1f{left:875.970450px;}
.x49{left:878.453250px;}
.x27{left:885.057750px;}
.x10{left:886.702200px;}
.xc{left:888.647850px;}
.x28{left:890.078700px;}
.x51{left:891.642750px;}
.x13{left:894.971700px;}
.xe{left:897.177000px;}
.x45{left:899.510400px;}
.x12{left:903.581400px;}
.x4b{left:904.769100px;}
.x50{left:907.975650px;}
.x3{left:909.030900px;}
.x20{left:910.335600px;}
.x48{left:912.012750px;}
.xf{left:913.369650px;}
.x4e{left:918.924600px;}
.xd{left:929.469450px;}
.x5{left:933.684300px;}
.x2{left:938.360100px;}
.x52{left:940.524600px;}
.x4f{left:951.473400px;}
.x3e{left:972.304650px;}
.x3f{left:990.179400px;}
.x34{left:996.597600px;}
.x24{left:1018.836600px;}
.x6b{left:1020.826650px;}
.x6a{left:1024.015800px;}
.x72{left:1029.205950px;}
.x1e{left:1046.611500px;}
.x4{left:1049.849250px;}
.x25{left:1053.201750px;}
.x1d{left:1056.781200px;}
.x35{left:1066.401150px;}
.x36{left:1072.634100px;}
.x37{left:1076.805150px;}
.x6{left:1091.310300px;}
.x8{left:1131.448800px;}
@media print{
.v2{vertical-align:-25.380267pt;}
.v1{vertical-align:-20.844800pt;}
.vc{vertical-align:-6.942400pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.722667pt;}
.v8{vertical-align:4.411733pt;}
.vb{vertical-align:5.333333pt;}
.vd{vertical-align:10.065600pt;}
.ve{vertical-align:19.385067pt;}
.v3{vertical-align:34.080000pt;}
.v4{vertical-align:35.283200pt;}
.v7{vertical-align:39.630400pt;}
.v6{vertical-align:41.358933pt;}
.v5{vertical-align:43.148267pt;}
.va{vertical-align:55.749867pt;}
.ls1{letter-spacing:-4.608000pt;}
.ls4{letter-spacing:-2.368000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.008000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.672000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.866667pt;}
.ls3{letter-spacing:4.301867pt;}
.lsa{letter-spacing:10.076800pt;}
.ls6{letter-spacing:346.130667pt;}
.ws4{word-spacing:-108.960000pt;}
.ws0{word-spacing:-32.000000pt;}
.wsb6{word-spacing:-18.666667pt;}
.wsc2{word-spacing:-17.024000pt;}
.wsc3{word-spacing:-16.672000pt;}
.wsc4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.200000pt;}
.wsc5{word-spacing:-14.528000pt;}
.wsc6{word-spacing:-13.888000pt;}
.ws2b{word-spacing:-13.333333pt;}
.ws7{word-spacing:-4.672000pt;}
.wsc9{word-spacing:-4.288000pt;}
.ws1f{word-spacing:-3.776000pt;}
.ws5{word-spacing:-3.200000pt;}
.ws1b{word-spacing:-3.136000pt;}
.ws81{word-spacing:-3.072000pt;}
.ws13{word-spacing:-3.008000pt;}
.ws3a{word-spacing:-2.944000pt;}
.ws55{word-spacing:-2.933333pt;}
.ws6f{word-spacing:-2.880000pt;}
.ws8b{word-spacing:-2.874667pt;}
.ws37{word-spacing:-2.752000pt;}
.ws32{word-spacing:-2.688000pt;}
.wsad{word-spacing:-2.624000pt;}
.ws25{word-spacing:-2.496000pt;}
.ws86{word-spacing:-2.432000pt;}
.ws3b{word-spacing:-2.304000pt;}
.ws7a{word-spacing:-2.229333pt;}
.wsb1{word-spacing:-2.176000pt;}
.ws9{word-spacing:-2.112000pt;}
.ws6{word-spacing:-2.048000pt;}
.ws17{word-spacing:-1.984000pt;}
.ws45{word-spacing:-1.973333pt;}
.ws6b{word-spacing:-1.856000pt;}
.ws9d{word-spacing:-1.818667pt;}
.ws92{word-spacing:-1.792000pt;}
.ws6d{word-spacing:-1.728000pt;}
.ws89{word-spacing:-1.600000pt;}
.ws20{word-spacing:-1.472000pt;}
.ws15{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.344000pt;}
.wsb2{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.216000pt;}
.ws19{word-spacing:-1.152000pt;}
.ws7c{word-spacing:-1.088000pt;}
.ws4b{word-spacing:-1.024000pt;}
.ws44{word-spacing:-0.960000pt;}
.ws31{word-spacing:-0.896000pt;}
.wsb{word-spacing:-0.832000pt;}
.ws5f{word-spacing:-0.768000pt;}
.ws43{word-spacing:-0.704000pt;}
.ws65{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.512000pt;}
.ws88{word-spacing:-0.448000pt;}
.ws8e{word-spacing:-0.410667pt;}
.ws38{word-spacing:-0.384000pt;}
.ws76{word-spacing:-0.352000pt;}
.wsa3{word-spacing:-0.293333pt;}
.ws1a{word-spacing:-0.256000pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws9f{word-spacing:-0.176000pt;}
.ws56{word-spacing:-0.128000pt;}
.ws8a{word-spacing:-0.117333pt;}
.ws49{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws29{word-spacing:0.064000pt;}
.ws71{word-spacing:0.128000pt;}
.wsc{word-spacing:0.192000pt;}
.ws62{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.352000pt;}
.ws3c{word-spacing:0.384000pt;}
.wsa9{word-spacing:0.410667pt;}
.ws42{word-spacing:0.448000pt;}
.wsa8{word-spacing:0.469333pt;}
.ws90{word-spacing:0.512000pt;}
.ws53{word-spacing:0.576000pt;}
.ws5d{word-spacing:0.704000pt;}
.ws8c{word-spacing:0.821333pt;}
.ws23{word-spacing:0.832000pt;}
.ws1d{word-spacing:0.896000pt;}
.wsab{word-spacing:0.938667pt;}
.ws3d{word-spacing:0.960000pt;}
.wsa{word-spacing:1.024000pt;}
.ws18{word-spacing:1.088000pt;}
.ws27{word-spacing:1.152000pt;}
.wsaa{word-spacing:1.173333pt;}
.ws4f{word-spacing:1.216000pt;}
.wsac{word-spacing:1.232000pt;}
.ws5b{word-spacing:1.280000pt;}
.ws10{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.408000pt;}
.ws95{word-spacing:1.472000pt;}
.ws52{word-spacing:1.536000pt;}
.ws97{word-spacing:1.600000pt;}
.ws33{word-spacing:1.664000pt;}
.ws3e{word-spacing:1.728000pt;}
.wsc0{word-spacing:1.792000pt;}
.ws82{word-spacing:1.856000pt;}
.wsa1{word-spacing:1.877333pt;}
.wsd{word-spacing:1.920000pt;}
.ws12{word-spacing:1.984000pt;}
.ws4e{word-spacing:2.048000pt;}
.ws77{word-spacing:2.053333pt;}
.wsa0{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.176000pt;}
.wsa5{word-spacing:2.229333pt;}
.ws96{word-spacing:2.240000pt;}
.ws61{word-spacing:2.304000pt;}
.ws1c{word-spacing:2.368000pt;}
.ws9a{word-spacing:2.405333pt;}
.wsb0{word-spacing:2.432000pt;}
.ws46{word-spacing:2.496000pt;}
.ws64{word-spacing:2.560000pt;}
.ws24{word-spacing:2.624000pt;}
.ws4c{word-spacing:2.688000pt;}
.wsa2{word-spacing:2.698667pt;}
.ws6c{word-spacing:2.752000pt;}
.ws54{word-spacing:2.816000pt;}
.ws5e{word-spacing:2.944000pt;}
.ws48{word-spacing:3.008000pt;}
.ws22{word-spacing:3.072000pt;}
.wsaf{word-spacing:3.136000pt;}
.ws26{word-spacing:3.200000pt;}
.ws39{word-spacing:3.328000pt;}
.ws5a{word-spacing:3.456000pt;}
.ws7b{word-spacing:3.520000pt;}
.ws72{word-spacing:3.584000pt;}
.ws79{word-spacing:3.637333pt;}
.wsf{word-spacing:3.648000pt;}
.ws94{word-spacing:3.712000pt;}
.ws9e{word-spacing:3.754667pt;}
.ws80{word-spacing:3.776000pt;}
.ws2e{word-spacing:3.840000pt;}
.ws63{word-spacing:3.904000pt;}
.ws73{word-spacing:3.930667pt;}
.ws28{word-spacing:3.968000pt;}
.ws2f{word-spacing:4.032000pt;}
.ws5c{word-spacing:4.096000pt;}
.ws74{word-spacing:4.165333pt;}
.ws7f{word-spacing:4.224000pt;}
.ws2c{word-spacing:4.288000pt;}
.ws4d{word-spacing:4.352000pt;}
.ws6e{word-spacing:4.416000pt;}
.ws2{word-spacing:4.608000pt;}
.ws7e{word-spacing:4.736000pt;}
.ws57{word-spacing:4.800000pt;}
.ws36{word-spacing:4.864000pt;}
.wse{word-spacing:4.928000pt;}
.wsae{word-spacing:4.992000pt;}
.ws60{word-spacing:5.120000pt;}
.ws67{word-spacing:5.184000pt;}
.wscb{word-spacing:5.248000pt;}
.ws93{word-spacing:5.504000pt;}
.ws70{word-spacing:5.568000pt;}
.wsa7{word-spacing:5.749333pt;}
.ws69{word-spacing:5.824000pt;}
.ws47{word-spacing:5.888000pt;}
.ws7d{word-spacing:5.952000pt;}
.wsa6{word-spacing:5.984000pt;}
.ws98{word-spacing:6.016000pt;}
.ws75{word-spacing:6.042667pt;}
.ws87{word-spacing:6.080000pt;}
.wsc1{word-spacing:6.208000pt;}
.wsa4{word-spacing:6.218667pt;}
.ws1e{word-spacing:6.272000pt;}
.ws59{word-spacing:6.400000pt;}
.ws34{word-spacing:6.464000pt;}
.ws14{word-spacing:6.528000pt;}
.ws16{word-spacing:6.592000pt;}
.ws91{word-spacing:6.656000pt;}
.ws68{word-spacing:6.720000pt;}
.ws8f{word-spacing:6.784000pt;}
.ws99{word-spacing:6.864000pt;}
.ws84{word-spacing:6.912000pt;}
.ws78{word-spacing:7.040000pt;}
.ws2d{word-spacing:7.168000pt;}
.ws83{word-spacing:7.296000pt;}
.ws2a{word-spacing:7.424000pt;}
.ws41{word-spacing:7.552000pt;}
.ws66{word-spacing:7.616000pt;}
.ws40{word-spacing:7.680000pt;}
.ws51{word-spacing:8.128000pt;}
.ws85{word-spacing:8.448000pt;}
.wsca{word-spacing:8.768000pt;}
.ws9b{word-spacing:8.800000pt;}
.ws9c{word-spacing:8.976000pt;}
.ws58{word-spacing:9.600000pt;}
.wsc8{word-spacing:10.048000pt;}
.ws50{word-spacing:12.544000pt;}
.wsc7{word-spacing:15.168000pt;}
.wsba{word-spacing:118.062933pt;}
.wsbc{word-spacing:129.401600pt;}
.wsb8{word-spacing:130.532267pt;}
.wsbb{word-spacing:136.160000pt;}
.wsb7{word-spacing:147.498667pt;}
.wsb9{word-spacing:147.499200pt;}
.wsbe{word-spacing:180.035733pt;}
.wsbf{word-spacing:293.571733pt;}
.wsb4{word-spacing:324.777067pt;}
.wsb3{word-spacing:351.712000pt;}
.wsb5{word-spacing:360.914133pt;}
.wsbd{word-spacing:1767.373333pt;}
._1b{margin-left:-512.297067pt;}
._20{margin-left:-502.231467pt;}
._10{margin-left:-17.337600pt;}
._11{margin-left:-15.436800pt;}
._8{margin-left:-13.760000pt;}
._1{margin-left:-8.812800pt;}
._a{margin-left:-7.734400pt;}
._e{margin-left:-6.118400pt;}
._7{margin-left:-4.828800pt;}
._b{margin-left:-3.520000pt;}
._d{margin-left:-2.624000pt;}
._0{margin-left:-1.718400pt;}
._3{width:1.152000pt;}
._9{width:2.044800pt;}
._5{width:3.033600pt;}
._6{width:4.608000pt;}
._c{width:5.555200pt;}
._4{width:6.528000pt;}
._2{width:8.064000pt;}
._f{width:9.542400pt;}
._22{width:11.254400pt;}
._14{width:15.209600pt;}
._13{width:16.230400pt;}
._21{width:24.156800pt;}
._1e{width:198.090667pt;}
._17{width:280.546667pt;}
._15{width:317.060800pt;}
._19{width:323.133867pt;}
._1c{width:325.624000pt;}
._16{width:332.110400pt;}
._18{width:372.378667pt;}
._1d{width:374.889067pt;}
._12{width:554.493333pt;}
._1f{width:663.774400pt;}
._1a{width:707.669333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs3{font-size:320.000000pt;}
.fs2{font-size:384.000000pt;}
.fs6{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y170{bottom:34.953467pt;}
.yee{bottom:35.016533pt;}
.y1c5{bottom:36.000667pt;}
.y34{bottom:36.368133pt;}
.y6a{bottom:36.906267pt;}
.y1f4{bottom:37.334000pt;}
.yea{bottom:40.896933pt;}
.y147{bottom:41.655600pt;}
.y1b5{bottom:42.542667pt;}
.ya4{bottom:42.868933pt;}
.y1a1{bottom:44.571467pt;}
.y22f{bottom:45.606800pt;}
.y23d{bottom:49.674267pt;}
.y19f{bottom:50.429733pt;}
.y246{bottom:51.564000pt;}
.y69{bottom:51.752533pt;}
.y166{bottom:52.949467pt;}
.y14a{bottom:53.203867pt;}
.y158{bottom:53.243333pt;}
.y1df{bottom:54.520400pt;}
.y152{bottom:54.607067pt;}
.y4{bottom:56.312400pt;}
.ye9{bottom:56.896933pt;}
.y1b4{bottom:57.209333pt;}
.y242{bottom:57.497867pt;}
.y146{bottom:57.655600pt;}
.y10f{bottom:57.904800pt;}
.y1a0{bottom:59.238133pt;}
.y1a2{bottom:59.453333pt;}
.ya3{bottom:62.068933pt;}
.y14f{bottom:64.377067pt;}
.ye6{bottom:64.456000pt;}
.y22e{bottom:64.806800pt;}
.y68{bottom:65.085867pt;}
.y19e{bottom:65.096400pt;}
.y151{bottom:66.684800pt;}
.y165{bottom:67.616133pt;}
.y149{bottom:67.870533pt;}
.y23c{bottom:68.874267pt;}
.y157{bottom:69.243333pt;}
.y16d{bottom:70.261200pt;}
.y245{bottom:70.764000pt;}
.y1b3{bottom:71.876000pt;}
.y10e{bottom:73.904800pt;}
.ycc{bottom:74.607067pt;}
.y238{bottom:76.006800pt;}
.y3{bottom:76.312400pt;}
.y241{bottom:76.697867pt;}
.y67{bottom:78.419200pt;}
.y14e{bottom:79.043733pt;}
.y19d{bottom:79.763067pt;}
.ye5{bottom:80.456000pt;}
.ya2{bottom:81.268933pt;}
.y164{bottom:82.282800pt;}
.y148{bottom:82.537200pt;}
.y16c{bottom:84.927867pt;}
.y156{bottom:85.243333pt;}
.y23b{bottom:88.074267pt;}
.y244{bottom:89.964000pt;}
.y66{bottom:91.752533pt;}
.y16f{bottom:92.135733pt;}
.ycb{bottom:94.607067pt;}
.yab{bottom:94.755200pt;}
.y240{bottom:95.897867pt;}
.y237{bottom:96.006800pt;}
.ye4{bottom:96.456000pt;}
.y212{bottom:97.567600pt;}
.ya1{bottom:100.468933pt;}
.y22d{bottom:103.206800pt;}
.y65{bottom:105.085867pt;}
.yad{bottom:106.755200pt;}
.y23a{bottom:107.274267pt;}
.y1f0{bottom:107.698933pt;}
.y243{bottom:109.164000pt;}
.yaa{bottom:109.421867pt;}
.ye3{bottom:112.456000pt;}
.yca{bottom:114.607067pt;}
.y23f{bottom:115.097867pt;}
.y2{bottom:116.312400pt;}
.y211{bottom:117.567600pt;}
.y16b{bottom:119.594533pt;}
.ya0{bottom:119.668933pt;}
.y22c{bottom:122.406800pt;}
.yac{bottom:122.755200pt;}
.y16e{bottom:123.038667pt;}
.y132{bottom:123.941600pt;}
.yd0{bottom:124.033467pt;}
.ya9{bottom:124.088533pt;}
.y12b{bottom:131.110933pt;}
.yd2{bottom:131.592533pt;}
.y10a{bottom:132.717333pt;}
.y23e{bottom:134.297867pt;}
.yc9{bottom:134.607067pt;}
.y1c2{bottom:135.732933pt;}
.y236{bottom:136.006800pt;}
.y1{bottom:136.312400pt;}
.y210{bottom:137.567600pt;}
.y131{bottom:138.608267pt;}
.ya8{bottom:138.755200pt;}
.y9f{bottom:138.868933pt;}
.y16a{bottom:139.594533pt;}
.ycf{bottom:140.033467pt;}
.y22b{bottom:141.606800pt;}
.yd1{bottom:147.592533pt;}
.y12a{bottom:151.110933pt;}
.y109{bottom:152.717333pt;}
.y82{bottom:152.854933pt;}
.y130{bottom:153.274933pt;}
.y1f5{bottom:153.279867pt;}
.yc8{bottom:154.607067pt;}
.y20f{bottom:157.567600pt;}
.y9e{bottom:158.068933pt;}
.y1c1{bottom:158.132933pt;}
.y1ef{bottom:158.144267pt;}
.y1c6{bottom:158.984933pt;}
.y169{bottom:159.594533pt;}
.y22a{bottom:160.806800pt;}
.y81{bottom:166.188267pt;}
.y129{bottom:171.110933pt;}
.y108{bottom:172.717333pt;}
.yc7{bottom:174.607067pt;}
.y235{bottom:176.006800pt;}
.y9d{bottom:177.268933pt;}
.y20e{bottom:177.567600pt;}
.y80{bottom:179.521600pt;}
.y168{bottom:179.594533pt;}
.y229{bottom:180.006800pt;}
.y128{bottom:191.110933pt;}
.y107{bottom:192.717333pt;}
.y7f{bottom:192.854933pt;}
.ye8{bottom:194.607067pt;}
.y1f3{bottom:196.324667pt;}
.y9c{bottom:196.468933pt;}
.y20d{bottom:197.567600pt;}
.y167{bottom:199.594533pt;}
.y18d{bottom:201.006933pt;}
.y1ee{bottom:203.801200pt;}
.y7e{bottom:206.188267pt;}
.y1d4{bottom:207.417200pt;}
.yd{bottom:210.087867pt;}
.y127{bottom:211.110933pt;}
.y106{bottom:212.717333pt;}
.yc6{bottom:214.607067pt;}
.y1f2{bottom:215.524667pt;}
.y5f{bottom:215.664800pt;}
.y9b{bottom:215.668933pt;}
.y234{bottom:216.006800pt;}
.y228{bottom:218.406800pt;}
.y1c4{bottom:218.882533pt;}
.y18c{bottom:221.006933pt;}
.y163{bottom:227.315867pt;}
.y126{bottom:231.110933pt;}
.yc5{bottom:234.607067pt;}
.y9a{bottom:234.868933pt;}
.y48{bottom:235.407067pt;}
.y5e{bottom:235.664800pt;}
.y233{bottom:236.006800pt;}
.y20c{bottom:237.567600pt;}
.y227{bottom:237.606800pt;}
.y18b{bottom:241.006933pt;}
.y1c3{bottom:241.282533pt;}
.y7d{bottom:242.796000pt;}
.yc{bottom:244.754533pt;}
.y1e5{bottom:245.890000pt;}
.y162{bottom:247.315867pt;}
.y125{bottom:251.110933pt;}
.y105{bottom:252.717333pt;}
.y99{bottom:254.068933pt;}
.yc4{bottom:254.607067pt;}
.y47{bottom:255.407067pt;}
.y5d{bottom:255.664800pt;}
.y226{bottom:256.806800pt;}
.y1ec{bottom:256.903600pt;}
.y20b{bottom:257.567600pt;}
.y1eb{bottom:257.848533pt;}
.y1ed{bottom:258.296000pt;}
.y1d3{bottom:260.365600pt;}
.y18a{bottom:261.006933pt;}
.y7c{bottom:262.796000pt;}
.yb{bottom:264.754533pt;}
.y1e4{bottom:265.090000pt;}
.y161{bottom:267.315867pt;}
.y145{bottom:268.328133pt;}
.y124{bottom:271.110933pt;}
.y104{bottom:272.717333pt;}
.ye2{bottom:273.807067pt;}
.yc3{bottom:274.607067pt;}
.y46{bottom:275.407067pt;}
.y5c{bottom:275.664800pt;}
.y225{bottom:276.006800pt;}
.y20a{bottom:277.567600pt;}
.y189{bottom:281.006933pt;}
.y7b{bottom:282.796000pt;}
.ya{bottom:284.754533pt;}
.y160{bottom:287.315867pt;}
.y144{bottom:288.328133pt;}
.y123{bottom:291.110933pt;}
.y98{bottom:292.468933pt;}
.y103{bottom:292.717333pt;}
.ye1{bottom:293.006933pt;}
.yc2{bottom:294.607067pt;}
.y1d6{bottom:294.717867pt;}
.y45{bottom:295.407067pt;}
.y5b{bottom:295.664800pt;}
.y232{bottom:296.006800pt;}
.y26{bottom:296.207067pt;}
.y1b2{bottom:296.244800pt;}
.y209{bottom:297.567600pt;}
.y1c0{bottom:300.157200pt;}
.y188{bottom:301.006933pt;}
.y7a{bottom:302.796000pt;}
.y9{bottom:304.754533pt;}
.y15f{bottom:307.315867pt;}
.y143{bottom:308.328133pt;}
.y122{bottom:311.110933pt;}
.y97{bottom:311.668933pt;}
.ye0{bottom:312.207067pt;}
.y102{bottom:312.717333pt;}
.yc1{bottom:314.607067pt;}
.y17{bottom:314.890533pt;}
.y25{bottom:315.407067pt;}
.y5a{bottom:315.664800pt;}
.y224{bottom:316.006800pt;}
.y1b1{bottom:316.244800pt;}
.y8{bottom:316.770000pt;}
.y1d5{bottom:317.117867pt;}
.y208{bottom:317.567600pt;}
.y22{bottom:318.717733pt;}
.y187{bottom:321.006933pt;}
.y1bf{bottom:322.557200pt;}
.y79{bottom:322.796000pt;}
.y15e{bottom:327.315867pt;}
.y96{bottom:330.868933pt;}
.y121{bottom:331.110933pt;}
.ydf{bottom:331.407067pt;}
.y101{bottom:332.717333pt;}
.yc0{bottom:334.607067pt;}
.y16{bottom:334.890533pt;}
.y44{bottom:335.407067pt;}
.y59{bottom:335.664800pt;}
.y223{bottom:336.006800pt;}
.y1b0{bottom:336.244800pt;}
.y199{bottom:336.465333pt;}
.y207{bottom:337.567600pt;}
.y21{bottom:337.917733pt;}
.y186{bottom:341.006933pt;}
.y78{bottom:342.796000pt;}
.y64{bottom:344.980933pt;}
.y15d{bottom:347.315867pt;}
.y142{bottom:348.328133pt;}
.y95{bottom:350.068933pt;}
.yde{bottom:350.607067pt;}
.y120{bottom:351.110933pt;}
.y100{bottom:352.717333pt;}
.y1de{bottom:352.838400pt;}
.y1d7{bottom:353.783200pt;}
.y24{bottom:354.607067pt;}
.y15{bottom:354.890533pt;}
.y43{bottom:355.407067pt;}
.y58{bottom:355.664800pt;}
.y222{bottom:356.006800pt;}
.y1af{bottom:356.244800pt;}
.y198{bottom:356.465333pt;}
.y20{bottom:357.117733pt;}
.y63{bottom:358.314267pt;}
.y185{bottom:361.006933pt;}
.y77{bottom:362.796000pt;}
.y15c{bottom:367.315867pt;}
.y141{bottom:368.328133pt;}
.y94{bottom:369.268933pt;}
.ydd{bottom:369.807067pt;}
.y11f{bottom:371.110933pt;}
.y62{bottom:371.647600pt;}
.y150{bottom:371.867600pt;}
.yff{bottom:372.717333pt;}
.y239{bottom:373.752400pt;}
.ybf{bottom:374.607067pt;}
.y14{bottom:374.890533pt;}
.y42{bottom:375.407067pt;}
.y231{bottom:376.006800pt;}
.y1ae{bottom:376.244800pt;}
.y1f{bottom:376.317733pt;}
.y197{bottom:376.465333pt;}
.y206{bottom:377.567600pt;}
.y184{bottom:381.006933pt;}
.y76{bottom:382.796000pt;}
.y61{bottom:384.980933pt;}
.y15b{bottom:387.315867pt;}
.y140{bottom:388.328133pt;}
.y93{bottom:388.468933pt;}
.y10d{bottom:388.660667pt;}
.ydc{bottom:389.006933pt;}
.yce{bottom:389.461333pt;}
.y11e{bottom:391.110933pt;}
.yfe{bottom:392.717333pt;}
.ybe{bottom:394.607067pt;}
.y13{bottom:394.890533pt;}
.y41{bottom:395.407067pt;}
.y1e{bottom:395.517733pt;}
.y57{bottom:395.664800pt;}
.y221{bottom:396.006800pt;}
.y1ad{bottom:396.244800pt;}
.y196{bottom:396.465333pt;}
.y1b8{bottom:397.012400pt;}
.y205{bottom:397.567600pt;}
.y60{bottom:398.314267pt;}
.y183{bottom:401.006933pt;}
.y75{bottom:402.796000pt;}
.y173{bottom:403.500533pt;}
.y19c{bottom:403.626533pt;}
.ycd{bottom:404.128000pt;}
.y1be{bottom:404.498533pt;}
.y10c{bottom:404.660667pt;}
.y15a{bottom:407.315867pt;}
.y92{bottom:407.668933pt;}
.y14d{bottom:408.009600pt;}
.ydb{bottom:408.207067pt;}
.y11d{bottom:411.110933pt;}
.y1b7{bottom:411.679067pt;}
.yfd{bottom:412.717333pt;}
.y7{bottom:412.770000pt;}
.ybd{bottom:414.607067pt;}
.y1d{bottom:414.717733pt;}
.y12{bottom:414.890533pt;}
.y40{bottom:415.407067pt;}
.y56{bottom:415.664800pt;}
.y220{bottom:416.006800pt;}
.y1ac{bottom:416.244800pt;}
.y195{bottom:416.465333pt;}
.y33{bottom:417.029600pt;}
.y204{bottom:417.567600pt;}
.y172{bottom:418.167200pt;}
.ya7{bottom:418.177733pt;}
.y19b{bottom:418.293200pt;}
.y182{bottom:421.006933pt;}
.y14c{bottom:422.676267pt;}
.y74{bottom:422.796000pt;}
.y1b6{bottom:426.345733pt;}
.y91{bottom:426.868933pt;}
.y159{bottom:427.315867pt;}
.yda{bottom:427.407067pt;}
.y13f{bottom:428.328133pt;}
.y11c{bottom:431.110933pt;}
.y171{bottom:432.833867pt;}
.ya6{bottom:432.844400pt;}
.y19a{bottom:432.959867pt;}
.y1e8{bottom:433.407600pt;}
.y1c{bottom:433.917733pt;}
.ybc{bottom:434.607067pt;}
.y11{bottom:434.890533pt;}
.y3f{bottom:435.407067pt;}
.y55{bottom:435.664800pt;}
.y1ab{bottom:436.244800pt;}
.y194{bottom:436.465333pt;}
.y155{bottom:436.926533pt;}
.y32{bottom:437.029600pt;}
.y14b{bottom:437.342933pt;}
.y203{bottom:437.567600pt;}
.y1e0{bottom:438.604400pt;}
.ye7{bottom:439.598133pt;}
.y181{bottom:441.006933pt;}
.y73{bottom:442.796000pt;}
.y90{bottom:446.068933pt;}
.yd9{bottom:446.607067pt;}
.ya5{bottom:447.511067pt;}
.y13e{bottom:448.328133pt;}
.y1ca{bottom:450.953467pt;}
.y11b{bottom:451.110933pt;}
.y154{bottom:451.593200pt;}
.yfc{bottom:452.717333pt;}
.y1b{bottom:453.117733pt;}
.ybb{bottom:454.607067pt;}
.y10{bottom:454.890533pt;}
.y3e{bottom:455.407067pt;}
.y54{bottom:455.664800pt;}
.y21f{bottom:456.006800pt;}
.y1aa{bottom:456.244800pt;}
.y193{bottom:456.465333pt;}
.y31{bottom:457.029600pt;}
.y202{bottom:457.567600pt;}
.y12f{bottom:457.936267pt;}
.y180{bottom:461.006933pt;}
.y8f{bottom:465.268933pt;}
.yd8{bottom:465.807067pt;}
.y153{bottom:466.259867pt;}
.y13d{bottom:468.328133pt;}
.y11a{bottom:471.110933pt;}
.y1a{bottom:472.317733pt;}
.y12e{bottom:472.602933pt;}
.yfb{bottom:472.717333pt;}
.yba{bottom:474.607067pt;}
.yf{bottom:474.890533pt;}
.y3d{bottom:475.407067pt;}
.y21e{bottom:476.006800pt;}
.y1bd{bottom:476.089333pt;}
.y1a9{bottom:476.244800pt;}
.y192{bottom:476.465333pt;}
.y30{bottom:477.029600pt;}
.y201{bottom:477.567600pt;}
.y1e7{bottom:478.955333pt;}
.yed{bottom:479.217200pt;}
.y17f{bottom:481.006933pt;}
.y72{bottom:482.796000pt;}
.y1c9{bottom:484.059333pt;}
.y1d1{bottom:484.969200pt;}
.yd7{bottom:485.006933pt;}
.y1e3{bottom:485.348933pt;}
.y1dd{bottom:485.436400pt;}
.y1da{bottom:486.788133pt;}
.y12d{bottom:487.269600pt;}
.y13c{bottom:488.328133pt;}
.y119{bottom:491.110933pt;}
.y19{bottom:491.517733pt;}
.yfa{bottom:492.717333pt;}
.yec{bottom:493.883867pt;}
.yb9{bottom:494.607067pt;}
.ye{bottom:494.890533pt;}
.y3c{bottom:495.407067pt;}
.y53{bottom:495.664800pt;}
.y21d{bottom:496.006800pt;}
.y1a8{bottom:496.244800pt;}
.y191{bottom:496.465333pt;}
.y2f{bottom:497.029600pt;}
.y200{bottom:497.567600pt;}
.y1bc{bottom:498.489200pt;}
.y17e{bottom:501.006933pt;}
.y12c{bottom:501.936267pt;}
.y71{bottom:502.796000pt;}
.y1c7{bottom:502.922000pt;}
.y8e{bottom:503.668933pt;}
.yd6{bottom:504.207067pt;}
.y13b{bottom:508.328133pt;}
.yeb{bottom:508.550533pt;}
.y6{bottom:508.770000pt;}
.y118{bottom:511.110933pt;}
.yf9{bottom:512.717333pt;}
.yb8{bottom:514.607067pt;}
.y3b{bottom:515.407067pt;}
.y52{bottom:515.664800pt;}
.y230{bottom:516.006800pt;}
.y1a7{bottom:516.244800pt;}
.y190{bottom:516.465333pt;}
.y2e{bottom:517.029600pt;}
.y1ff{bottom:517.567600pt;}
.y17d{bottom:521.006933pt;}
.y70{bottom:522.796000pt;}
.y8d{bottom:522.868933pt;}
.yd5{bottom:523.407067pt;}
.y13a{bottom:528.328133pt;}
.y117{bottom:531.110933pt;}
.y1cb{bottom:532.213333pt;}
.y1d0{bottom:532.680533pt;}
.yf8{bottom:532.717333pt;}
.y1d2{bottom:533.564533pt;}
.y1dc{bottom:533.564933pt;}
.y1e2{bottom:534.103067pt;}
.yb7{bottom:534.607067pt;}
.y1e6{bottom:535.300533pt;}
.y3a{bottom:535.407067pt;}
.y51{bottom:535.664800pt;}
.y21c{bottom:536.006800pt;}
.y1a6{bottom:536.244800pt;}
.y18f{bottom:536.465333pt;}
.y2d{bottom:537.029600pt;}
.y1fe{bottom:537.567600pt;}
.y17c{bottom:541.006933pt;}
.y8c{bottom:542.068933pt;}
.yd4{bottom:542.607067pt;}
.y6f{bottom:542.796000pt;}
.y139{bottom:548.328133pt;}
.y5{bottom:549.295600pt;}
.y116{bottom:551.110933pt;}
.yf7{bottom:552.717333pt;}
.yb6{bottom:554.607067pt;}
.y39{bottom:555.407067pt;}
.y50{bottom:555.664800pt;}
.y21b{bottom:556.006800pt;}
.y1a5{bottom:556.244800pt;}
.y18e{bottom:556.465333pt;}
.y2c{bottom:557.029600pt;}
.y1fd{bottom:557.567600pt;}
.y17b{bottom:561.006933pt;}
.y8b{bottom:561.268933pt;}
.yd3{bottom:561.807067pt;}
.y6e{bottom:562.796000pt;}
.y1bb{bottom:564.013200pt;}
.y138{bottom:568.328133pt;}
.y115{bottom:571.110933pt;}
.yf6{bottom:572.717333pt;}
.yb5{bottom:574.607067pt;}
.y38{bottom:575.407067pt;}
.y4f{bottom:575.664800pt;}
.y21a{bottom:576.006800pt;}
.y1a4{bottom:576.244800pt;}
.y2b{bottom:577.029600pt;}
.y1fc{bottom:577.567600pt;}
.y1d9{bottom:578.133200pt;}
.y8a{bottom:580.468933pt;}
.y1c8{bottom:582.747067pt;}
.y6d{bottom:582.796000pt;}
.y1db{bottom:586.000667pt;}
.y1ba{bottom:586.413200pt;}
.y137{bottom:588.328133pt;}
.y1cf{bottom:588.941200pt;}
.y1ea{bottom:589.436933pt;}
.y1e9{bottom:589.768000pt;}
.y114{bottom:591.110933pt;}
.yf5{bottom:592.717333pt;}
.yb4{bottom:594.607067pt;}
.y37{bottom:595.407067pt;}
.y4e{bottom:595.664800pt;}
.y219{bottom:596.006800pt;}
.y2a{bottom:597.029600pt;}
.y1d8{bottom:597.333200pt;}
.y1fb{bottom:597.567600pt;}
.y89{bottom:599.668933pt;}
.y17a{bottom:600.207067pt;}
.y6c{bottom:602.796000pt;}
.y113{bottom:611.110933pt;}
.yf4{bottom:612.717333pt;}
.y18{bottom:613.863600pt;}
.yb3{bottom:614.607067pt;}
.y36{bottom:615.407067pt;}
.y218{bottom:616.006800pt;}
.y1fa{bottom:617.567600pt;}
.y88{bottom:618.868933pt;}
.y179{bottom:619.407067pt;}
.y6b{bottom:622.796000pt;}
.y1cd{bottom:625.137867pt;}
.y136{bottom:628.328133pt;}
.y112{bottom:631.110933pt;}
.yf3{bottom:632.717333pt;}
.yb2{bottom:634.607067pt;}
.y1f1{bottom:635.153867pt;}
.y35{bottom:635.407067pt;}
.y4d{bottom:635.664800pt;}
.y217{bottom:636.006800pt;}
.y29{bottom:637.029600pt;}
.y1f9{bottom:637.567600pt;}
.y87{bottom:638.068933pt;}
.y178{bottom:638.607067pt;}
.y1cc{bottom:647.537867pt;}
.y135{bottom:648.328133pt;}
.y111{bottom:651.110933pt;}
.yf2{bottom:652.717333pt;}
.yb1{bottom:654.607067pt;}
.y4c{bottom:655.664800pt;}
.y28{bottom:657.029600pt;}
.y86{bottom:657.268933pt;}
.y1f8{bottom:657.567600pt;}
.y177{bottom:657.807067pt;}
.y1b9{bottom:665.672933pt;}
.y110{bottom:671.110933pt;}
.yb0{bottom:674.607067pt;}
.y134{bottom:674.864800pt;}
.y4b{bottom:675.664800pt;}
.y216{bottom:676.006800pt;}
.y85{bottom:676.468933pt;}
.y176{bottom:677.006933pt;}
.y27{bottom:677.029600pt;}
.y1f7{bottom:677.567600pt;}
.y1e1{bottom:682.343733pt;}
.y1ce{bottom:683.258267pt;}
.yf1{bottom:692.717333pt;}
.yaf{bottom:694.607067pt;}
.y133{bottom:694.864800pt;}
.y4a{bottom:695.664800pt;}
.y84{bottom:695.668933pt;}
.y215{bottom:696.006800pt;}
.y175{bottom:696.207067pt;}
.y1f6{bottom:697.567600pt;}
.yf0{bottom:712.717333pt;}
.y10b{bottom:713.517200pt;}
.yae{bottom:714.607067pt;}
.y174{bottom:715.406933pt;}
.y214{bottom:716.006800pt;}
.y1a3{bottom:718.314267pt;}
.yef{bottom:732.717333pt;}
.y83{bottom:734.068933pt;}
.y23{bottom:734.607067pt;}
.y49{bottom:734.864800pt;}
.y213{bottom:736.006800pt;}
.h7{height:37.031250pt;}
.he{height:37.057292pt;}
.h11{height:40.763021pt;}
.h10{height:42.117188pt;}
.hd{height:43.253333pt;}
.hb{height:44.468750pt;}
.hc{height:46.796875pt;}
.hf{height:51.476562pt;}
.ha{height:51.904000pt;}
.h19{height:53.312000pt;}
.h8{height:56.156250pt;}
.h6{height:56.843750pt;}
.h1c{height:57.175467pt;}
.h18{height:61.255483pt;}
.h1d{height:61.969600pt;}
.h13{height:66.317708pt;}
.h1a{height:69.040375pt;}
.h1e{height:71.289067pt;}
.h12{height:84.234375pt;}
.h3{height:85.265625pt;}
.h14{height:101.600908pt;}
.h17{height:105.948108pt;}
.h16{height:107.676642pt;}
.h15{height:109.465975pt;}
.h1b{height:112.987200pt;}
.h2{height:113.687500pt;}
.h5{height:259.520000pt;}
.h1f{height:266.812500pt;}
.h4{height:311.424000pt;}
.h9{height:389.280000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x47{left:52.913333pt;}
.x5f{left:59.627333pt;}
.x73{left:61.417333pt;}
.x60{left:62.362267pt;}
.x65{left:63.307067pt;}
.x61{left:64.252000pt;}
.x59{left:66.141733pt;}
.x39{left:85.795333pt;}
.x4d{left:156.850400pt;}
.x5e{left:177.412133pt;}
.x58{left:180.611600pt;}
.x56{left:181.695600pt;}
.x57{left:184.013200pt;}
.x55{left:185.912667pt;}
.x54{left:187.156267pt;}
.x6f{left:188.661467pt;}
.x4c{left:221.102400pt;}
.x70{left:270.156133pt;}
.x5a{left:281.574800pt;}
.x67{left:282.997333pt;}
.x6e{left:295.935067pt;}
.x66{left:302.716533pt;}
.x62{left:303.897600pt;}
.x53{left:361.611600pt;}
.x5c{left:389.212667pt;}
.x5d{left:394.173200pt;}
.x5b{left:396.850400pt;}
.x6d{left:398.141733pt;}
.x74{left:460.298933pt;}
.x7c{left:483.935600pt;}
.x78{left:491.193467pt;}
.x77{left:500.357467pt;}
.x46{left:504.566933pt;}
.x40{left:506.456667pt;}
.x71{left:511.725733pt;}
.x75{left:516.822400pt;}
.x7a{left:517.853600pt;}
.x7b{left:523.474667pt;}
.x7{left:531.779600pt;}
.x79{left:534.373067pt;}
.x76{left:545.259867pt;}
.x38{left:551.716533pt;}
.x23{left:552.755867pt;}
.xa{left:553.700800pt;}
.x9{left:557.161200pt;}
.x64{left:572.887067pt;}
.x68{left:574.488133pt;}
.x18{left:579.401600pt;}
.x29{left:591.660267pt;}
.x3a{left:598.875733pt;}
.x3b{left:642.030000pt;}
.x3c{left:654.982533pt;}
.x21{left:656.504800pt;}
.x31{left:657.732133pt;}
.x30{left:663.653333pt;}
.x19{left:670.222800pt;}
.x1a{left:681.703867pt;}
.x22{left:687.051733pt;}
.x1b{left:688.188267pt;}
.x32{left:689.769867pt;}
.x63{left:690.671867pt;}
.x1c{left:691.700667pt;}
.x6c{left:697.322800pt;}
.x33{left:699.769867pt;}
.x69{left:706.771600pt;}
.x2c{left:724.402000pt;}
.x15{left:728.549200pt;}
.x16{left:731.482133pt;}
.x2d{left:734.574533pt;}
.x2e{left:740.134533pt;}
.x2f{left:743.165067pt;}
.x11{left:747.402133pt;}
.x43{left:751.244400pt;}
.x42{left:754.060267pt;}
.x3d{left:756.788133pt;}
.x17{left:758.272400pt;}
.x14{left:759.247867pt;}
.xb{left:760.475733pt;}
.x26{left:764.169200pt;}
.x44{left:767.514000pt;}
.x2a{left:770.869333pt;}
.x2b{left:771.963867pt;}
.x41{left:773.070667pt;}
.x4a{left:774.561467pt;}
.x1f{left:778.640400pt;}
.x49{left:780.847333pt;}
.x27{left:786.718000pt;}
.x10{left:788.179733pt;}
.xc{left:789.909200pt;}
.x28{left:791.181067pt;}
.x51{left:792.571333pt;}
.x13{left:795.530400pt;}
.xe{left:797.490667pt;}
.x45{left:799.564800pt;}
.x12{left:803.183467pt;}
.x4b{left:804.239200pt;}
.x50{left:807.089467pt;}
.x3{left:808.027467pt;}
.x20{left:809.187200pt;}
.x48{left:810.678000pt;}
.xf{left:811.884133pt;}
.x4e{left:816.821867pt;}
.xd{left:826.195067pt;}
.x5{left:829.941600pt;}
.x2{left:834.097867pt;}
.x52{left:836.021867pt;}
.x4f{left:845.754133pt;}
.x3e{left:864.270800pt;}
.x3f{left:880.159467pt;}
.x34{left:885.864533pt;}
.x24{left:905.632533pt;}
.x6b{left:907.401467pt;}
.x6a{left:910.236267pt;}
.x72{left:914.849733pt;}
.x1e{left:930.321333pt;}
.x4{left:933.199333pt;}
.x25{left:936.179333pt;}
.x1d{left:939.361067pt;}
.x35{left:947.912133pt;}
.x36{left:953.452533pt;}
.x37{left:957.160133pt;}
.x6{left:970.053600pt;}
.x8{left:1005.732267pt;}
}




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