
    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_041b2ad04a86f6fa61ac274d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8b8486434a2778ecc6b1c9e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_9d94b92597cccce0ff8192b1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102000;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_aa51571675c32709414777b3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939419;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_0326ecab9c2e54929af3439e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_71a214c4688c22b5c62ccb55.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_e7ef7cfdc5a88d5dfa3a000b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.102000;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_a67ca43b5702b3a0f9d2b4f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8942ee43055d61eed9f9479.woff')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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:ffa;src:url('chunks/assets/font_0fb2a92b3ba8ded8900e8ffd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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:ffb;src:url('chunks/assets/font_659f4e57ff122d6467d983ad.woff')format("woff");}.ffb{font-family:ffb;line-height:1.252000;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:ffc;src:url('chunks/assets/font_1c81a38c4b05c433acbac1d1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.251000;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:ffd;src:url('chunks/assets/font_bb13c8a8289fc1127414ada8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.238000;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:ffe;src:url('chunks/assets/font_3f7892b4cd7d5b6b48289e0d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.251000;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:fff;src:url('chunks/assets/font_90ffc280ba39930001b5798c.woff')format("woff");}.fff{font-family:fff;line-height:1.008000;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:ff10;src:url('chunks/assets/font_98ab4639b7f55bc350cb0175.woff')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_f7e9595b955a2de0f5e08d31.woff')format("woff");}.ff11{font-family:ff11;line-height:0.916000;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:ff12;src:url('chunks/assets/font_af4dfb1c909a522a1c89200b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.143000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.270000px;}
.v2{vertical-align:36.006000px;}
.ls15{letter-spacing:-4.692000px;}
.ls16{letter-spacing:-1.530000px;}
.ls3{letter-spacing:-0.918000px;}
.ls2{letter-spacing:-0.780000px;}
.ls11{letter-spacing:-0.714000px;}
.lse{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.357000px;}
.ls13{letter-spacing:-0.306000px;}
.ls8{letter-spacing:-0.192000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.153000px;}
.ls4{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.594000px;}
.ls5{letter-spacing:1.026000px;}
.ls17{letter-spacing:2.268000px;}
.ls18{letter-spacing:2.700000px;}
.ls7{letter-spacing:3.520800px;}
.ls6{letter-spacing:3.526200px;}
.ls0{letter-spacing:5.460000px;}
.lsb{letter-spacing:100.113000px;}
.lsa{letter-spacing:100.164000px;}
.ls10{letter-spacing:100.929000px;}
.lsf{letter-spacing:101.286000px;}
.lsc{letter-spacing:102.255000px;}
.ls9{letter-spacing:108.528000px;}
.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:-15.498000px;}
.ws108{word-spacing:-11.376000px;}
.ws1{word-spacing:-10.800000px;}
.ws99{word-spacing:-10.200000px;}
.wsc3{word-spacing:-9.894000px;}
.wsb3{word-spacing:-9.486000px;}
.ws12{word-spacing:-7.461234px;}
.wsde{word-spacing:-7.128000px;}
.wsd9{word-spacing:-6.858000px;}
.ws33{word-spacing:-6.696000px;}
.ws63{word-spacing:-5.292000px;}
.ws79{word-spacing:-4.914000px;}
.ws64{word-spacing:-4.698000px;}
.wsa5{word-spacing:-4.536000px;}
.wsf6{word-spacing:-4.374000px;}
.wsd8{word-spacing:-4.212000px;}
.ws48{word-spacing:-3.942000px;}
.wsb{word-spacing:-3.888000px;}
.ws4d{word-spacing:-3.834000px;}
.wse1{word-spacing:-3.618000px;}
.wsdc{word-spacing:-3.564000px;}
.ws4c{word-spacing:-3.456000px;}
.ws47{word-spacing:-3.402000px;}
.ws30{word-spacing:-3.132000px;}
.ws9e{word-spacing:-2.970000px;}
.ws56{word-spacing:-2.808000px;}
.ws37{word-spacing:-2.754000px;}
.ws4f{word-spacing:-2.700000px;}
.ws15{word-spacing:-2.646000px;}
.wsed{word-spacing:-2.538000px;}
.ws65{word-spacing:-2.484000px;}
.ws9c{word-spacing:-2.322000px;}
.ws8b{word-spacing:-2.106000px;}
.wse2{word-spacing:-1.944000px;}
.ws52{word-spacing:-1.890000px;}
.ws5d{word-spacing:-1.836000px;}
.ws6c{word-spacing:-1.728000px;}
.ws7a{word-spacing:-1.674000px;}
.wsfb{word-spacing:-1.620000px;}
.ws72{word-spacing:-1.566000px;}
.ws41{word-spacing:-1.404000px;}
.ws34{word-spacing:-1.350000px;}
.ws35{word-spacing:-1.296000px;}
.ws50{word-spacing:-1.134000px;}
.wsf5{word-spacing:-1.080000px;}
.wsd{word-spacing:-1.026000px;}
.ws3b{word-spacing:-0.864000px;}
.wsac{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.486000px;}
.wsa4{word-spacing:-0.432000px;}
.ws60{word-spacing:-0.324000px;}
.ws107{word-spacing:-0.192000px;}
.ws1f{word-spacing:-0.162000px;}
.ws11{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wsfd{word-spacing:0.108000px;}
.ws61{word-spacing:0.162000px;}
.ws97{word-spacing:0.192000px;}
.ws54{word-spacing:0.216000px;}
.ws1a{word-spacing:0.324000px;}
.ws96{word-spacing:0.378000px;}
.ws51{word-spacing:0.432000px;}
.ws84{word-spacing:0.486000px;}
.wsdb{word-spacing:0.540000px;}
.ws7c{word-spacing:0.594000px;}
.ws5c{word-spacing:0.702000px;}
.wsee{word-spacing:0.756000px;}
.ws39{word-spacing:0.810000px;}
.ws5e{word-spacing:0.864000px;}
.wsec{word-spacing:0.918000px;}
.ws3c{word-spacing:0.972000px;}
.ws4b{word-spacing:1.026000px;}
.ws78{word-spacing:1.080000px;}
.ws18{word-spacing:1.134000px;}
.ws74{word-spacing:1.188000px;}
.ws17{word-spacing:1.242000px;}
.wse8{word-spacing:1.296000px;}
.ws31{word-spacing:1.350000px;}
.wsff{word-spacing:1.458000px;}
.ws5b{word-spacing:1.620000px;}
.ws1d{word-spacing:1.674000px;}
.ws36{word-spacing:1.728000px;}
.wse9{word-spacing:1.782000px;}
.ws82{word-spacing:1.836000px;}
.wsfe{word-spacing:1.890000px;}
.ws7e{word-spacing:1.998000px;}
.wsea{word-spacing:2.052000px;}
.ws38{word-spacing:2.214000px;}
.ws102{word-spacing:2.322000px;}
.ws14{word-spacing:2.376000px;}
.ws4e{word-spacing:2.430000px;}
.ws19{word-spacing:2.484000px;}
.ws57{word-spacing:2.538000px;}
.ws3a{word-spacing:2.592000px;}
.ws10{word-spacing:2.646000px;}
.ws2e{word-spacing:2.700000px;}
.ws3{word-spacing:2.808000px;}
.wsfc{word-spacing:2.862000px;}
.wsf2{word-spacing:2.916000px;}
.ws1c{word-spacing:2.970000px;}
.wse0{word-spacing:3.024000px;}
.ws59{word-spacing:3.132000px;}
.ws95{word-spacing:3.186000px;}
.wsa0{word-spacing:3.240000px;}
.wsaa{word-spacing:3.294000px;}
.ws91{word-spacing:3.402000px;}
.ws43{word-spacing:3.456000px;}
.ws8d{word-spacing:3.564000px;}
.wsc{word-spacing:3.618000px;}
.wsa6{word-spacing:3.672000px;}
.ws1e{word-spacing:3.726000px;}
.ws90{word-spacing:3.996000px;}
.wsa9{word-spacing:4.050000px;}
.ws22{word-spacing:4.158000px;}
.ws6e{word-spacing:4.266000px;}
.ws77{word-spacing:4.320000px;}
.ws21{word-spacing:4.428000px;}
.wsf7{word-spacing:4.482000px;}
.wsab{word-spacing:4.590000px;}
.wse3{word-spacing:4.644000px;}
.ws29{word-spacing:4.698000px;}
.ws6f{word-spacing:4.752000px;}
.wsf1{word-spacing:4.806000px;}
.ws70{word-spacing:4.914000px;}
.ws4{word-spacing:4.968000px;}
.ws62{word-spacing:5.076000px;}
.ws86{word-spacing:5.130000px;}
.ws2b{word-spacing:5.184000px;}
.ws1b{word-spacing:5.238000px;}
.ws49{word-spacing:5.292000px;}
.ws9b{word-spacing:5.346000px;}
.ws13{word-spacing:5.454000px;}
.ws8a{word-spacing:5.562000px;}
.ws16{word-spacing:5.616000px;}
.ws92{word-spacing:5.670000px;}
.ws5{word-spacing:5.724000px;}
.ws101{word-spacing:5.832000px;}
.ws44{word-spacing:5.886000px;}
.wsd7{word-spacing:6.048000px;}
.ws69{word-spacing:6.156000px;}
.ws6b{word-spacing:6.480000px;}
.ws42{word-spacing:6.588000px;}
.wse5{word-spacing:6.696000px;}
.ws46{word-spacing:6.750000px;}
.ws8c{word-spacing:6.804000px;}
.ws93{word-spacing:6.858000px;}
.ws8e{word-spacing:6.912000px;}
.ws5a{word-spacing:6.966000px;}
.wse{word-spacing:7.020000px;}
.wsad{word-spacing:7.074000px;}
.ws6d{word-spacing:7.182000px;}
.ws32{word-spacing:7.236000px;}
.ws83{word-spacing:7.290000px;}
.ws81{word-spacing:7.344000px;}
.wsdf{word-spacing:7.398000px;}
.ws3e{word-spacing:7.614000px;}
.ws2a{word-spacing:7.668000px;}
.ws3f{word-spacing:7.776000px;}
.ws4a{word-spacing:7.884000px;}
.ws66{word-spacing:7.938000px;}
.ws3d{word-spacing:7.992000px;}
.wsef{word-spacing:8.046000px;}
.ws26{word-spacing:8.208000px;}
.ws73{word-spacing:8.262000px;}
.ws106{word-spacing:8.316000px;}
.ws8{word-spacing:8.424000px;}
.ws7{word-spacing:8.478000px;}
.ws9d{word-spacing:8.532000px;}
.ws9a{word-spacing:8.640000px;}
.ws7b{word-spacing:8.748000px;}
.wsfa{word-spacing:8.856000px;}
.ws53{word-spacing:9.180000px;}
.wse7{word-spacing:9.234000px;}
.wseb{word-spacing:9.288000px;}
.wsa1{word-spacing:9.342000px;}
.ws2c{word-spacing:9.504000px;}
.ws28{word-spacing:9.558000px;}
.wsf0{word-spacing:9.612000px;}
.ws8f{word-spacing:9.666000px;}
.ws94{word-spacing:9.774000px;}
.wsa7{word-spacing:9.990000px;}
.ws24{word-spacing:10.044000px;}
.wse6{word-spacing:10.098000px;}
.wsa8{word-spacing:10.260000px;}
.wsf{word-spacing:10.368000px;}
.wsf4{word-spacing:10.422000px;}
.ws9f{word-spacing:10.476000px;}
.wsf3{word-spacing:10.638000px;}
.ws71{word-spacing:10.692000px;}
.ws45{word-spacing:10.962000px;}
.wsf8{word-spacing:11.124000px;}
.ws87{word-spacing:11.286000px;}
.ws67{word-spacing:11.556000px;}
.ws40{word-spacing:11.718000px;}
.ws6{word-spacing:12.042000px;}
.ws2d{word-spacing:12.096000px;}
.ws23{word-spacing:12.366000px;}
.ws68{word-spacing:12.528000px;}
.wse4{word-spacing:13.122000px;}
.ws9{word-spacing:13.338000px;}
.ws5f{word-spacing:13.824000px;}
.ws27{word-spacing:13.932000px;}
.ws6a{word-spacing:14.148000px;}
.ws20{word-spacing:14.418000px;}
.ws75{word-spacing:14.472000px;}
.wsdd{word-spacing:14.580000px;}
.ws85{word-spacing:14.742000px;}
.ws2f{word-spacing:14.850000px;}
.wsda{word-spacing:14.958000px;}
.ws58{word-spacing:15.012000px;}
.ws88{word-spacing:15.822000px;}
.ws89{word-spacing:16.254000px;}
.ws7d{word-spacing:16.956000px;}
.wsf9{word-spacing:17.442000px;}
.ws76{word-spacing:17.928000px;}
.ws103{word-spacing:18.360000px;}
.ws80{word-spacing:18.630000px;}
.ws25{word-spacing:18.738000px;}
.ws55{word-spacing:19.548000px;}
.ws100{word-spacing:20.628000px;}
.ws104{word-spacing:20.952000px;}
.ws7f{word-spacing:21.816000px;}
.ws105{word-spacing:22.518000px;}
.wsd1{word-spacing:60.384000px;}
.wsd3{word-spacing:61.098000px;}
.wsbd{word-spacing:61.149000px;}
.wsc4{word-spacing:61.863000px;}
.wsca{word-spacing:62.220000px;}
.wsc0{word-spacing:62.628000px;}
.wscd{word-spacing:62.934000px;}
.wsd4{word-spacing:62.985000px;}
.wsc9{word-spacing:63.393000px;}
.wsc7{word-spacing:63.699000px;}
.wsc5{word-spacing:63.750000px;}
.wscf{word-spacing:64.464000px;}
.wsc1{word-spacing:64.617000px;}
.wscc{word-spacing:64.770000px;}
.wsce{word-spacing:64.821000px;}
.wsc8{word-spacing:65.841000px;}
.wsd5{word-spacing:69.666000px;}
.wsb6{word-spacing:70.635000px;}
.wsb9{word-spacing:72.114000px;}
.wsbc{word-spacing:72.879000px;}
.wsba{word-spacing:73.185000px;}
.wsbb{word-spacing:73.236000px;}
.wsbe{word-spacing:74.256000px;}
.wsb7{word-spacing:81.141000px;}
.wsd2{word-spacing:85.425000px;}
.wsb2{word-spacing:89.199000px;}
.wsb0{word-spacing:89.964000px;}
.wsb5{word-spacing:90.729000px;}
.wsb1{word-spacing:91.035000px;}
.wsaf{word-spacing:99.450000px;}
.wsc2{word-spacing:108.018000px;}
.wsbf{word-spacing:110.466000px;}
.wsb4{word-spacing:154.785000px;}
.wsa2{word-spacing:167.892000px;}
.wsc6{word-spacing:174.879000px;}
.wsae{word-spacing:198.576000px;}
.wscb{word-spacing:199.257000px;}
.ws98{word-spacing:215.184000px;}
.wsd6{word-spacing:238.986000px;}
.wsa3{word-spacing:244.137000px;}
.wsb8{word-spacing:256.122000px;}
.wsd0{word-spacing:696.354000px;}
._4{margin-left:-15.493800px;}
._40{margin-left:-7.344000px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._6{margin-left:-3.872400px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._7{width:2.511000px;}
._d{width:3.763800px;}
._8{width:5.319000px;}
._9{width:6.570000px;}
._a{width:7.578600px;}
._e{width:9.415200px;}
._f{width:11.584800px;}
._c{width:14.400000px;}
._44{width:15.435000px;}
._11{width:16.632000px;}
._b{width:18.732600px;}
._45{width:20.644200px;}
._10{width:25.164000px;}
._42{width:39.887400px;}
._43{width:40.918200px;}
._41{width:45.036000px;}
._3f{width:46.116000px;}
._3d{width:48.600000px;}
._3e{width:50.652000px;}
._3c{width:57.132000px;}
._17{width:72.095400px;}
._30{width:73.593000px;}
._3a{width:74.664000px;}
._37{width:77.112000px;}
._18{width:78.627000px;}
._27{width:81.549000px;}
._2d{width:85.527000px;}
._14{width:99.042000px;}
._22{width:103.377000px;}
._28{width:106.386000px;}
._26{width:116.688000px;}
._2b{width:118.575000px;}
._24{width:121.620000px;}
._15{width:126.123000px;}
._31{width:128.199000px;}
._35{width:130.749000px;}
._39{width:132.891000px;}
._33{width:136.374000px;}
._1a{width:175.476000px;}
._16{width:178.296000px;}
._38{width:189.690000px;}
._19{width:193.545000px;}
._1e{width:209.100000px;}
._1b{width:224.448000px;}
._20{width:229.653000px;}
._2a{width:231.183000px;}
._23{width:248.115000px;}
._1f{width:249.900000px;}
._21{width:260.763000px;}
._29{width:266.220000px;}
._34{width:274.125000px;}
._25{width:276.267000px;}
._12{width:304.704000px;}
._2c{width:350.931000px;}
._2e{width:394.281000px;}
._32{width:455.787000px;}
._36{width:459.510000px;}
._1c{width:481.344000px;}
._3b{width:528.258000px;}
._2f{width:714.714000px;}
._1d{width:799.104000px;}
._13{width:861.720000px;}
.fc5{color:rgb(79,76,77);}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs8{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:53.621700px;}
.y28{bottom:53.624700px;}
.y29{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.y52{bottom:106.299300px;}
.y23d{bottom:112.828950px;}
.ye1{bottom:112.882950px;}
.y98{bottom:112.923450px;}
.y21b{bottom:112.932450px;}
.y13a{bottom:112.945950px;}
.y27d{bottom:112.981950px;}
.y75{bottom:113.017950px;}
.y2e6{bottom:113.858700px;}
.y247{bottom:114.685050px;}
.y2c7{bottom:119.870700px;}
.y51{bottom:120.699300px;}
.y29d{bottom:126.459450px;}
.y2e5{bottom:133.358700px;}
.y23c{bottom:135.333450px;}
.ye0{bottom:135.387450px;}
.ya4{bottom:135.400950px;}
.y97{bottom:135.427950px;}
.y21a{bottom:135.436950px;}
.y139{bottom:135.450450px;}
.yc9{bottom:135.472950px;}
.y27c{bottom:135.486450px;}
.y74{bottom:135.522450px;}
.y2c6{bottom:139.370700px;}
.y19f{bottom:142.211700px;}
.y29c{bottom:145.959450px;}
.y1de{bottom:152.711850px;}
.y309{bottom:152.858700px;}
.y25{bottom:156.189900px;}
.y23b{bottom:157.837950px;}
.ydf{bottom:157.891950px;}
.ya3{bottom:157.905450px;}
.y219{bottom:157.941450px;}
.y138{bottom:157.954950px;}
.y50{bottom:157.959450px;}
.yc8{bottom:157.977450px;}
.y27b{bottom:157.990950px;}
.y73{bottom:158.026950px;}
.y19e{bottom:160.214700px;}
.y1da{bottom:161.726100px;}
.y29b{bottom:165.459450px;}
.y2e4{bottom:165.614700px;}
.y19b{bottom:169.216200px;}
.y1dd{bottom:170.714850px;}
.y2c5{bottom:171.626700px;}
.y19d{bottom:178.217700px;}
.y24{bottom:178.694400px;}
.y1d8{bottom:179.729100px;}
.y23a{bottom:180.342450px;}
.yde{bottom:180.396450px;}
.ya2{bottom:180.409950px;}
.y96{bottom:180.423450px;}
.y218{bottom:180.445950px;}
.y137{bottom:180.459450px;}
.y4f{bottom:180.463950px;}
.yc7{bottom:180.481950px;}
.y27a{bottom:180.495450px;}
.y20a{bottom:180.509100px;}
.y72{bottom:180.531450px;}
.y29a{bottom:184.959450px;}
.y2e3{bottom:185.114700px;}
.y1dc{bottom:188.717850px;}
.y2c4{bottom:191.126700px;}
.y10e{bottom:191.562300px;}
.y19c{bottom:196.220700px;}
.y161{bottom:197.539650px;}
.y1d9{bottom:197.732100px;}
.y110{bottom:200.563800px;}
.y23{bottom:201.198900px;}
.y239{bottom:202.846950px;}
.ydd{bottom:202.900950px;}
.ya1{bottom:202.914450px;}
.y95{bottom:202.927950px;}
.y217{bottom:202.950450px;}
.y136{bottom:202.963950px;}
.yc6{bottom:202.986450px;}
.yf1{bottom:202.995450px;}
.y279{bottom:202.999950px;}
.y209{bottom:203.013600px;}
.y1db{bottom:206.720850px;}
.y10d{bottom:209.565300px;}
.y15f{bottom:215.542650px;}
.y299{bottom:217.215450px;}
.y2e2{bottom:217.370700px;}
.y10a{bottom:218.566800px;}
.y19a{bottom:221.720700px;}
.y2c3{bottom:223.382700px;}
.y238{bottom:225.351450px;}
.ydc{bottom:225.405450px;}
.y25f{bottom:225.414450px;}
.ya0{bottom:225.418950px;}
.y94{bottom:225.432450px;}
.y216{bottom:225.454950px;}
.y4e{bottom:225.459450px;}
.yc5{bottom:225.490950px;}
.yf0{bottom:225.499950px;}
.y208{bottom:225.518100px;}
.y71{bottom:225.535950px;}
.y10c{bottom:227.568300px;}
.y198{bottom:230.722200px;}
.y1d7{bottom:232.233600px;}
.y160{bottom:233.545650px;}
.y10f{bottom:236.569800px;}
.y298{bottom:236.715450px;}
.y2e1{bottom:236.870700px;}
.y197{bottom:239.723700px;}
.y2c2{bottom:242.882700px;}
.y10b{bottom:245.571300px;}
.y22{bottom:246.194400px;}
.y237{bottom:247.855950px;}
.ydb{bottom:247.909950px;}
.y25e{bottom:247.918950px;}
.y9f{bottom:247.923450px;}
.y93{bottom:247.936950px;}
.y135{bottom:247.959450px;}
.y4d{bottom:247.963950px;}
.yc4{bottom:247.995450px;}
.yef{bottom:248.004450px;}
.y207{bottom:248.022600px;}
.y308{bottom:249.626700px;}
.y1d6{bottom:250.236600px;}
.y2e0{bottom:256.370700px;}
.y199{bottom:257.726700px;}
.y15c{bottom:259.045650px;}
.y1d3{bottom:259.238100px;}
.y2c1{bottom:262.382700px;}
.y15e{bottom:268.047150px;}
.y1d5{bottom:268.239600px;}
.y297{bottom:268.971450px;}
.y307{bottom:269.126700px;}
.y236{bottom:270.360450px;}
.yda{bottom:270.414450px;}
.y25d{bottom:270.423450px;}
.y9e{bottom:270.427950px;}
.y134{bottom:270.463950px;}
.y4c{bottom:270.468450px;}
.y278{bottom:270.499950px;}
.y206{bottom:270.527100px;}
.y70{bottom:270.531450px;}
.y108{bottom:271.071300px;}
.y15a{bottom:277.048650px;}
.y109{bottom:280.072800px;}
.y196{bottom:283.226700px;}
.y15d{bottom:286.050150px;}
.y1d4{bottom:286.242600px;}
.y296{bottom:288.471450px;}
.y2df{bottom:288.626700px;}
.y106{bottom:289.074300px;}
.y21{bottom:291.189900px;}
.y235{bottom:292.864950px;}
.yd9{bottom:292.918950px;}
.y25c{bottom:292.927950px;}
.y92{bottom:292.932450px;}
.y133{bottom:292.968450px;}
.y4b{bottom:292.972950px;}
.yc3{bottom:292.990950px;}
.yee{bottom:292.999950px;}
.y277{bottom:293.004450px;}
.y205{bottom:293.031600px;}
.y2c0{bottom:294.638700px;}
.y15b{bottom:295.051650px;}
.y194{bottom:301.229700px;}
.y306{bottom:301.382700px;}
.y107{bottom:307.077300px;}
.y2ff{bottom:308.126700px;}
.y1d2{bottom:311.742600px;}
.y20{bottom:313.694400px;}
.y2bf{bottom:314.138700px;}
.y234{bottom:315.369450px;}
.yd8{bottom:315.423450px;}
.y91{bottom:315.436950px;}
.y132{bottom:315.472950px;}
.y4a{bottom:315.477450px;}
.yc2{bottom:315.495450px;}
.yed{bottom:315.504450px;}
.y276{bottom:315.508950px;}
.y195{bottom:319.232700px;}
.y159{bottom:320.551650px;}
.y295{bottom:320.727450px;}
.y1d1{bottom:320.744100px;}
.y2de{bottom:320.882700px;}
.y2fe{bottom:327.626700px;}
.y105{bottom:332.577300px;}
.y2be{bottom:333.638700px;}
.y1f{bottom:336.198900px;}
.y233{bottom:337.873950px;}
.y6f{bottom:337.900950px;}
.y25b{bottom:337.923450px;}
.yd7{bottom:337.927950px;}
.y90{bottom:337.941450px;}
.y131{bottom:337.977450px;}
.y49{bottom:337.981950px;}
.yc1{bottom:337.999950px;}
.yec{bottom:338.008950px;}
.y275{bottom:338.013450px;}
.y157{bottom:338.554650px;}
.y294{bottom:340.227450px;}
.y2dd{bottom:340.382700px;}
.y193{bottom:344.732700px;}
.y204{bottom:345.056700px;}
.y2fd{bottom:347.126700px;}
.y102{bottom:350.580300px;}
.y305{bottom:353.138700px;}
.y1ce{bottom:355.245600px;}
.y158{bottom:356.557650px;}
.y1e{bottom:358.703400px;}
.y101{bottom:359.581800px;}
.y232{bottom:360.378450px;}
.y6e{bottom:360.405450px;}
.y25a{bottom:360.427950px;}
.yd6{bottom:360.432450px;}
.y8f{bottom:360.445950px;}
.y130{bottom:360.481950px;}
.y48{bottom:360.486450px;}
.yc0{bottom:360.504450px;}
.yeb{bottom:360.513450px;}
.y274{bottom:360.517950px;}
.y192{bottom:362.735700px;}
.y1d0{bottom:364.247100px;}
.y2bd{bottom:365.894700px;}
.y104{bottom:368.583300px;}
.y322{bottom:371.906700px;}
.y293{bottom:372.483450px;}
.y2dc{bottom:372.638700px;}
.y1cc{bottom:373.248600px;}
.y203{bottom:375.224850px;}
.y2fc{bottom:379.382700px;}
.y18f{bottom:380.738700px;}
.y1d{bottom:381.207900px;}
.y156{bottom:382.057650px;}
.y1cf{bottom:382.250100px;}
.y231{bottom:382.882950px;}
.y6d{bottom:382.909950px;}
.y259{bottom:382.932450px;}
.yd5{bottom:382.936950px;}
.y8e{bottom:382.950450px;}
.y12f{bottom:382.986450px;}
.y47{bottom:382.990950px;}
.ybf{bottom:383.008950px;}
.yea{bottom:383.017950px;}
.y273{bottom:383.022450px;}
.y2bc{bottom:385.394700px;}
.y103{bottom:386.586300px;}
.y154{bottom:391.059150px;}
.y1cd{bottom:391.251600px;}
.y321{bottom:391.406700px;}
.y292{bottom:391.983450px;}
.y2db{bottom:392.138700px;}
.y202{bottom:393.227850px;}
.y191{bottom:398.741700px;}
.y2fb{bottom:398.882700px;}
.y153{bottom:400.060650px;}
.y1ff{bottom:402.229350px;}
.y1c{bottom:403.712400px;}
.y2bb{bottom:404.894700px;}
.y230{bottom:405.387450px;}
.y6c{bottom:405.414450px;}
.y258{bottom:405.436950px;}
.yd4{bottom:405.441450px;}
.y8d{bottom:405.454950px;}
.y12e{bottom:405.490950px;}
.ybe{bottom:405.513450px;}
.y272{bottom:405.526950px;}
.y320{bottom:410.906700px;}
.y201{bottom:411.230850px;}
.y291{bottom:411.483450px;}
.yff{bottom:412.086300px;}
.y190{bottom:416.744700px;}
.y1cb{bottom:416.751600px;}
.y155{bottom:418.063650px;}
.y2fa{bottom:418.382700px;}
.yfe{bottom:421.087800px;}
.y2da{bottom:424.394700px;}
.y1c7{bottom:425.765850px;}
.y1b{bottom:426.216900px;}
.y22f{bottom:427.891950px;}
.y6b{bottom:427.918950px;}
.y257{bottom:427.941450px;}
.y9d{bottom:427.945950px;}
.y46{bottom:427.986450px;}
.y215{bottom:427.995450px;}
.ye9{bottom:428.013450px;}
.ybd{bottom:428.017950px;}
.y271{bottom:428.031450px;}
.y200{bottom:429.233850px;}
.y100{bottom:430.089300px;}
.y1ca{bottom:434.754600px;}
.y2ba{bottom:437.150700px;}
.y18e{bottom:442.244700px;}
.y31f{bottom:443.162700px;}
.y152{bottom:443.563650px;}
.y290{bottom:443.739450px;}
.y1c5{bottom:443.768850px;}
.y2d9{bottom:443.894700px;}
.y1a{bottom:448.721400px;}
.y22e{bottom:450.396450px;}
.y6a{bottom:450.423450px;}
.yd3{bottom:450.436950px;}
.y256{bottom:450.445950px;}
.y8c{bottom:450.450450px;}
.y12d{bottom:450.486450px;}
.y45{bottom:450.490950px;}
.y214{bottom:450.499950px;}
.ye8{bottom:450.517950px;}
.ybc{bottom:450.522450px;}
.y2f9{bottom:450.638700px;}
.y1c9{bottom:452.757600px;}
.y1fe{bottom:454.733850px;}
.yfd{bottom:455.593650px;}
.y2b9{bottom:456.650700px;}
.y18c{bottom:460.247700px;}
.y150{bottom:461.566650px;}
.y1c6{bottom:461.771850px;}
.y31e{bottom:462.662700px;}
.y1fc{bottom:463.735350px;}
.y2f8{bottom:470.138700px;}
.y1c8{bottom:470.760600px;}
.y19{bottom:471.225900px;}
.y1fb{bottom:472.736850px;}
.y22d{bottom:472.900950px;}
.y69{bottom:472.927950px;}
.yd2{bottom:472.941450px;}
.y255{bottom:472.950450px;}
.y8b{bottom:472.954950px;}
.y12c{bottom:472.990950px;}
.y44{bottom:472.995450px;}
.y213{bottom:473.004450px;}
.ybb{bottom:473.026950px;}
.y270{bottom:473.031450px;}
.y28f{bottom:475.995450px;}
.y2b8{bottom:476.150700px;}
.y18d{bottom:478.250700px;}
.y151{bottom:479.569650px;}
.y31d{bottom:482.162700px;}
.y1fd{bottom:490.739850px;}
.y18{bottom:493.730400px;}
.y22c{bottom:495.405450px;}
.y68{bottom:495.432450px;}
.yd1{bottom:495.445950px;}
.y254{bottom:495.454950px;}
.y8a{bottom:495.459450px;}
.yfc{bottom:495.468450px;}
.y12b{bottom:495.495450px;}
.y43{bottom:495.499950px;}
.y212{bottom:495.508950px;}
.ye7{bottom:495.513450px;}
.yba{bottom:495.531450px;}
.y2d8{bottom:495.650700px;}
.y1c4{bottom:496.273350px;}
.y2f7{bottom:502.394700px;}
.y18b{bottom:503.750700px;}
.y14d{bottom:505.069650px;}
.y2b7{bottom:508.406700px;}
.y18a{bottom:512.752200px;}
.y14f{bottom:514.071150px;}
.y1c2{bottom:514.276350px;}
.y31c{bottom:514.418700px;}
.y17{bottom:516.234900px;}
.y1f9{bottom:516.239850px;}
.y22b{bottom:517.909950px;}
.y67{bottom:517.936950px;}
.yd0{bottom:517.950450px;}
.y253{bottom:517.959450px;}
.y89{bottom:517.963950px;}
.yfb{bottom:517.972950px;}
.y12a{bottom:517.999950px;}
.y42{bottom:518.004450px;}
.y211{bottom:518.013450px;}
.ye6{bottom:518.017950px;}
.y14b{bottom:523.072650px;}
.y1f8{bottom:525.241350px;}
.y28e{bottom:527.751450px;}
.y2b6{bottom:527.906700px;}
.y14e{bottom:532.074150px;}
.y1c3{bottom:532.279350px;}
.y31b{bottom:533.918700px;}
.y1fa{bottom:534.242850px;}
.y2f6{bottom:534.650700px;}
.y16{bottom:538.739400px;}
.y22a{bottom:540.414450px;}
.y66{bottom:540.441450px;}
.y252{bottom:540.463950px;}
.y88{bottom:540.468450px;}
.y26f{bottom:540.481950px;}
.y129{bottom:540.504450px;}
.y41{bottom:540.508950px;}
.y210{bottom:540.517950px;}
.ye5{bottom:540.522450px;}
.yb9{bottom:540.525450px;}
.y14c{bottom:541.075650px;}
.y189{bottom:547.253700px;}
.y2d7{bottom:547.406700px;}
.y31a{bottom:553.418700px;}
.y2f5{bottom:554.150700px;}
.y188{bottom:556.255200px;}
.y1c1{bottom:557.779350px;}
.y1f7{bottom:559.742850px;}
.y28d{bottom:560.007450px;}
.y2b5{bottom:560.162700px;}
.y15{bottom:561.243900px;}
.y229{bottom:562.918950px;}
.y65{bottom:562.945950px;}
.y251{bottom:562.968450px;}
.y87{bottom:562.972950px;}
.y26e{bottom:562.986450px;}
.y128{bottom:563.008950px;}
.y40{bottom:563.013450px;}
.ye4{bottom:563.026950px;}
.yb8{bottom:563.031450px;}
.y148{bottom:566.575650px;}
.y1f3{bottom:568.757100px;}
.y14a{bottom:575.577150px;}
.y1bf{bottom:575.782350px;}
.y1f6{bottom:577.745850px;}
.y28c{bottom:579.507450px;}
.y2b4{bottom:579.662700px;}
.y14{bottom:583.748400px;}
.y146{bottom:584.578650px;}
.y228{bottom:585.423450px;}
.y64{bottom:585.450450px;}
.yfa{bottom:585.472950px;}
.y86{bottom:585.477450px;}
.y26d{bottom:585.490950px;}
.y127{bottom:585.513450px;}
.ye3{bottom:585.531450px;}
.y319{bottom:585.674700px;}
.y2f4{bottom:586.406700px;}
.y1f1{bottom:586.760100px;}
.y187{bottom:590.756700px;}
.y149{bottom:593.580150px;}
.y1c0{bottom:593.785350px;}
.y1f5{bottom:595.748850px;}
.y28b{bottom:599.007450px;}
.y304{bottom:599.162700px;}
.y147{bottom:602.581650px;}
.y1f2{bottom:604.763100px;}
.y318{bottom:605.174700px;}
.y2f3{bottom:605.906700px;}
.y13{bottom:606.252900px;}
.y227{bottom:607.927950px;}
.ycf{bottom:607.954950px;}
.y250{bottom:607.963950px;}
.yb7{bottom:607.977450px;}
.y85{bottom:607.981950px;}
.y26c{bottom:607.995450px;}
.y3f{bottom:608.008950px;}
.y20f{bottom:608.017950px;}
.y185{bottom:608.759700px;}
.y2b3{bottom:611.918700px;}
.y1f4{bottom:613.751850px;}
.y1be{bottom:619.285350px;}
.y317{bottom:624.674700px;}
.y2f2{bottom:625.406700px;}
.y186{bottom:626.762700px;}
.y145{bottom:628.081650px;}
.y1bd{bottom:628.286850px;}
.y12{bottom:628.757400px;}
.y226{bottom:630.432450px;}
.y63{bottom:630.445950px;}
.yce{bottom:630.459450px;}
.y24f{bottom:630.468450px;}
.yb6{bottom:630.481950px;}
.y84{bottom:630.486450px;}
.y26b{bottom:630.499950px;}
.y126{bottom:630.508950px;}
.y3e{bottom:630.513450px;}
.y20e{bottom:630.522450px;}
.ye2{bottom:630.526950px;}
.y28a{bottom:631.263450px;}
.y2b2{bottom:631.418700px;}
.y1f0{bottom:639.264600px;}
.y144{bottom:646.084650px;}
.y1ef{bottom:648.266100px;}
.y289{bottom:650.763450px;}
.y303{bottom:650.918700px;}
.y11{bottom:651.261900px;}
.y184{bottom:652.262700px;}
.y225{bottom:652.936950px;}
.y62{bottom:652.950450px;}
.ycd{bottom:652.963950px;}
.y24e{bottom:652.972950px;}
.yb5{bottom:652.986450px;}
.y83{bottom:652.990950px;}
.y26a{bottom:653.004450px;}
.y125{bottom:653.013450px;}
.y3d{bottom:653.017950px;}
.y20d{bottom:653.026950px;}
.y316{bottom:656.930700px;}
.y2f1{bottom:657.662700px;}
.y1bc{bottom:662.788350px;}
.y2b1{bottom:663.674700px;}
.y141{bottom:664.087650px;}
.y183{bottom:670.265700px;}
.y302{bottom:670.418700px;}
.y224{bottom:675.441450px;}
.y61{bottom:675.454950px;}
.ycc{bottom:675.468450px;}
.yf9{bottom:675.477450px;}
.yb4{bottom:675.490950px;}
.y82{bottom:675.495450px;}
.y269{bottom:675.508950px;}
.y124{bottom:675.517950px;}
.y3c{bottom:675.522450px;}
.y20c{bottom:675.531450px;}
.y315{bottom:676.430700px;}
.y180{bottom:679.267200px;}
.y1ba{bottom:680.791350px;}
.y143{bottom:682.090650px;}
.y1ec{bottom:682.767600px;}
.y288{bottom:683.019450px;}
.y2b0{bottom:683.174700px;}
.y182{bottom:688.268700px;}
.y2f0{bottom:689.918700px;}
.y1ee{bottom:691.769100px;}
.y314{bottom:695.930700px;}
.y223{bottom:697.945950px;}
.y60{bottom:697.959450px;}
.ycb{bottom:697.972950px;}
.yf8{bottom:697.981950px;}
.y81{bottom:697.999950px;}
.y268{bottom:698.013450px;}
.y123{bottom:698.022450px;}
.y3b{bottom:698.026950px;}
.y1bb{bottom:698.794350px;}
.y142{bottom:700.093650px;}
.y1ea{bottom:700.770600px;}
.y287{bottom:702.519450px;}
.y2af{bottom:702.674700px;}
.y181{bottom:706.271700px;}
.y2ef{bottom:709.418700px;}
.y1ed{bottom:709.772100px;}
.y10{bottom:714.158400px;}
.y2d6{bottom:715.430700px;}
.y1eb{bottom:718.773600px;}
.y222{bottom:720.450450px;}
.y5f{bottom:720.463950px;}
.yca{bottom:720.477450px;}
.yb3{bottom:720.486450px;}
.y9c{bottom:720.490950px;}
.y80{bottom:720.504450px;}
.y267{bottom:720.517950px;}
.y122{bottom:720.526950px;}
.y3a{bottom:720.531450px;}
.y301{bottom:722.174700px;}
.y1b9{bottom:724.294350px;}
.y140{bottom:725.593650px;}
.y313{bottom:728.186700px;}
.y246{bottom:728.257950px;}
.y17d{bottom:731.771700px;}
.y286{bottom:734.775450px;}
.y2ae{bottom:734.930700px;}
.y17f{bottom:740.773200px;}
.y2ee{bottom:741.674700px;}
.y1b7{bottom:742.297350px;}
.y221{bottom:742.954950px;}
.y5e{bottom:742.968450px;}
.y24d{bottom:742.977450px;}
.yb2{bottom:742.990950px;}
.y7f{bottom:743.008950px;}
.y266{bottom:743.022450px;}
.y121{bottom:743.031450px;}
.y312{bottom:747.686700px;}
.y245{bottom:749.007450px;}
.y17b{bottom:749.774700px;}
.y1e9{bottom:752.293350px;}
.y285{bottom:754.275450px;}
.y2ad{bottom:754.430700px;}
.y17e{bottom:758.776200px;}
.y1b8{bottom:760.300350px;}
.y2ed{bottom:761.174700px;}
.y220{bottom:765.459450px;}
.y5d{bottom:765.472950px;}
.y24c{bottom:765.481950px;}
.y9b{bottom:765.486450px;}
.yb1{bottom:765.495450px;}
.y13f{bottom:765.526800px;}
.y265{bottom:765.526950px;}
.y39{bottom:765.531450px;}
.y2d5{bottom:767.186700px;}
.y17c{bottom:767.777700px;}
.y1e6{bottom:770.296350px;}
.y284{bottom:773.775450px;}
.y2ac{bottom:773.930700px;}
.y20b{bottom:774.675900px;}
.yf{bottom:774.926100px;}
.y1e5{bottom:779.297850px;}
.y311{bottom:779.942700px;}
.y1b4{bottom:785.800350px;}
.y2d4{bottom:786.686700px;}
.y21f{bottom:787.963950px;}
.y5c{bottom:787.977450px;}
.y24b{bottom:787.986450px;}
.y9a{bottom:787.990950px;}
.yb0{bottom:787.999950px;}
.y7e{bottom:788.004450px;}
.y13e{bottom:788.031300px;}
.y264{bottom:788.031450px;}
.y120{bottom:788.035950px;}
.y1e8{bottom:788.299350px;}
.ye{bottom:791.426100px;}
.y178{bottom:793.290450px;}
.y2ec{bottom:793.430700px;}
.y1b6{bottom:794.801850px;}
.y310{bottom:799.442700px;}
.y1b2{bottom:803.803350px;}
.y283{bottom:806.031450px;}
.y2ab{bottom:806.186700px;}
.y1e7{bottom:806.302350px;}
.y21e{bottom:810.468450px;}
.y5b{bottom:810.481950px;}
.y24a{bottom:810.490950px;}
.y99{bottom:810.495450px;}
.yf7{bottom:810.504450px;}
.y7d{bottom:810.508950px;}
.y244{bottom:810.513450px;}
.y177{bottom:811.293450px;}
.y1b5{bottom:812.804850px;}
.y2eb{bottom:812.930700px;}
.yd{bottom:814.304100px;}
.y2d3{bottom:818.942700px;}
.y17a{bottom:820.282200px;}
.y1b3{bottom:821.806350px;}
.y282{bottom:825.531450px;}
.y2aa{bottom:825.686700px;}
.y174{bottom:829.296450px;}
.y21d{bottom:832.972950px;}
.y38{bottom:832.986450px;}
.yaf{bottom:832.995450px;}
.yf6{bottom:833.008950px;}
.y7c{bottom:833.013450px;}
.y243{bottom:833.017950px;}
.y263{bottom:833.025450px;}
.y11f{bottom:833.031450px;}
.y179{bottom:838.285200px;}
.y2d2{bottom:838.442700px;}
.y1e4{bottom:839.822100px;}
.y281{bottom:845.031450px;}
.y2ea{bottom:845.186700px;}
.y13d{bottom:846.571500px;}
.y176{bottom:847.299450px;}
.y1af{bottom:847.306350px;}
.yc{bottom:848.815950px;}
.y1e2{bottom:848.823600px;}
.y30f{bottom:851.198700px;}
.y21c{bottom:855.477450px;}
.y5a{bottom:855.490950px;}
.yae{bottom:855.499950px;}
.yf5{bottom:855.513450px;}
.y7b{bottom:855.517950px;}
.y242{bottom:855.522450px;}
.y262{bottom:855.531450px;}
.y1b1{bottom:856.307850px;}
.y1e1{bottom:857.825100px;}
.y2a9{bottom:857.942700px;}
.y2e9{bottom:864.686700px;}
.y175{bottom:865.302450px;}
.y1ad{bottom:865.309350px;}
.yb{bottom:865.315950px;}
.y30e{bottom:870.698700px;}
.y1b0{bottom:874.310850px;}
.y1e3{bottom:875.828100px;}
.y2a8{bottom:877.442700px;}
.y37{bottom:877.981950px;}
.y59{bottom:877.995450px;}
.yad{bottom:878.004450px;}
.yf4{bottom:878.017950px;}
.y241{bottom:878.026950px;}
.y280{bottom:878.031450px;}
.y1ae{bottom:883.312350px;}
.ya{bottom:888.193950px;}
.y11e{bottom:889.147950px;}
.y2d1{bottom:890.198700px;}
.y171{bottom:890.802450px;}
.y2a7{bottom:896.942700px;}
.y173{bottom:899.803950px;}
.y36{bottom:900.486450px;}
.y58{bottom:900.499950px;}
.yac{bottom:900.508950px;}
.y7a{bottom:900.513450px;}
.yf3{bottom:900.522450px;}
.y240{bottom:900.531450px;}
.y1e0{bottom:901.328100px;}
.y16f{bottom:908.805450px;}
.y1a9{bottom:908.825100px;}
.y2d0{bottom:909.698700px;}
.y2a6{bottom:916.442700px;}
.y172{bottom:917.806950px;}
.y1ac{bottom:917.813850px;}
.y11c{bottom:919.331100px;}
.y30d{bottom:922.454700px;}
.y35{bottom:922.990950px;}
.y261{bottom:922.999950px;}
.y57{bottom:923.004450px;}
.yab{bottom:923.013450px;}
.y79{bottom:923.017950px;}
.y170{bottom:926.808450px;}
.y1a6{bottom:926.828100px;}
.y11d{bottom:928.332600px;}
.y2e8{bottom:929.198700px;}
.y1ab{bottom:935.816850px;}
.y1a5{bottom:935.829600px;}
.y11a{bottom:937.334100px;}
.y2cf{bottom:941.954700px;}
.y1a8{bottom:944.831100px;}
.y34{bottom:945.495450px;}
.y260{bottom:945.504450px;}
.y56{bottom:945.508950px;}
.yaa{bottom:945.517950px;}
.y78{bottom:945.522450px;}
.y23f{bottom:945.525450px;}
.y27f{bottom:945.531450px;}
.y9{bottom:948.214500px;}
.y2a5{bottom:948.698700px;}
.y16e{bottom:952.308450px;}
.y1aa{bottom:953.819850px;}
.y11b{bottom:955.337100px;}
.y16c{bottom:961.309950px;}
.y30c{bottom:961.454700px;}
.y1a7{bottom:962.834100px;}
.y33{bottom:967.999950px;}
.y249{bottom:968.008950px;}
.y55{bottom:968.013450px;}
.ya9{bottom:968.022450px;}
.y23e{bottom:968.031450px;}
.y16b{bottom:970.311450px;}
.y8{bottom:970.717500px;}
.y2ce{bottom:974.210700px;}
.y119{bottom:980.837100px;}
.y2a4{bottom:980.954700px;}
.y16d{bottom:988.314450px;}
.y1a4{bottom:988.334100px;}
.y117{bottom:989.838600px;}
.y32{bottom:990.504450px;}
.y248{bottom:990.513450px;}
.y54{bottom:990.517950px;}
.yf2{bottom:990.526950px;}
.y27e{bottom:990.531450px;}
.y2cd{bottom:993.710700px;}
.y116{bottom:998.840100px;}
.y2a3{bottom:1000.454700px;}
.y7{bottom:1005.973500px;}
.y1a3{bottom:1006.337100px;}
.y1df{bottom:1007.841600px;}
.y31{bottom:1013.008950px;}
.ya8{bottom:1013.017950px;}
.y53{bottom:1013.022450px;}
.y30b{bottom:1013.210700px;}
.y168{bottom:1013.827200px;}
.y118{bottom:1016.843100px;}
.y2a2{bottom:1019.954700px;}
.y1a1{bottom:1024.340100px;}
.y2cc{bottom:1025.966700px;}
.y167{bottom:1031.830200px;}
.y2e7{bottom:1032.710700px;}
.y30{bottom:1035.513450px;}
.ya7{bottom:1035.522450px;}
.y77{bottom:1035.526950px;}
.y6{bottom:1038.973500px;}
.y115{bottom:1042.343100px;}
.y2cb{bottom:1045.466700px;}
.y16a{bottom:1049.820450px;}
.y166{bottom:1049.833200px;}
.y114{bottom:1051.344600px;}
.y2a1{bottom:1052.210700px;}
.y2f{bottom:1058.017950px;}
.ya6{bottom:1058.026950px;}
.y76{bottom:1058.031450px;}
.y162{bottom:1058.847450px;}
.y1a2{bottom:1060.346100px;}
.y30a{bottom:1064.966700px;}
.y169{bottom:1067.823450px;}
.y165{bottom:1067.836200px;}
.y300{bottom:1071.710700px;}
.y5{bottom:1071.973500px;}
.y2ca{bottom:1077.722700px;}
.y2e{bottom:1080.522450px;}
.ya5{bottom:1080.531450px;}
.y2a0{bottom:1084.466700px;}
.y164{bottom:1085.839200px;}
.y113{bottom:1085.846100px;}
.y112{bottom:1094.847600px;}
.y2c9{bottom:1097.222700px;}
.y2d{bottom:1103.026950px;}
.y163{bottom:1103.842200px;}
.y29f{bottom:1103.966700px;}
.y13c{bottom:1113.781950px;}
.y2c8{bottom:1116.722700px;}
.y2c{bottom:1125.531450px;}
.y111{bottom:1129.353450px;}
.y1a0{bottom:1129.353600px;}
.y13b{bottom:1134.531450px;}
.y29e{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y27{bottom:1182.887700px;}
.y2b{bottom:1197.026700px;}
.y26{bottom:1199.384700px;}
.h4{height:33.012000px;}
.h16{height:34.416000px;}
.h1a{height:36.624000px;}
.hd{height:36.816000px;}
.h3{height:37.548000px;}
.h1c{height:38.913000px;}
.ha{height:39.420000px;}
.hb{height:41.202000px;}
.hc{height:42.444000px;}
.h8{height:42.912000px;}
.h7{height:43.800000px;}
.h13{height:44.280000px;}
.h18{height:45.594000px;}
.h1d{height:47.088000px;}
.h1e{height:47.184000px;}
.h9{height:48.276000px;}
.h10{height:52.974000px;}
.h15{height:53.028000px;}
.hf{height:53.082000px;}
.h14{height:53.118000px;}
.h11{height:53.262000px;}
.h6{height:59.514000px;}
.h12{height:64.746000px;}
.he{height:64.812000px;}
.h1b{height:74.919000px;}
.h17{height:81.600000px;}
.h5{height:88.440000px;}
.h2{height:97.710124px;}
.h19{height:117.606000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.x11{left:123.607050px;}
.x10{left:124.712100px;}
.x5{left:127.009050px;}
.x1b{left:137.688600px;}
.xc{left:141.803100px;}
.xe{left:144.138600px;}
.x1c{left:148.823100px;}
.xa{left:150.905250px;}
.x12{left:155.201550px;}
.xd{left:180.710100px;}
.xf{left:182.411100px;}
.x19{left:187.086600px;}
.x9{left:209.303100px;}
.x15{left:229.606350px;}
.x13{left:274.299300px;}
.x16{left:318.898950px;}
.x14{left:369.924300px;}
.x17{left:552.759450px;}
.x3{left:585.415800px;}
.x4{left:628.843800px;}
.x2{left:677.563800px;}
.x8{left:719.255550px;}
.xb{left:722.058150px;}
.x6{left:725.051700px;}
.x1a{left:727.536000px;}
.x18{left:730.211100px;}
.x7{left:731.538750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.240000pt;}
.v2{vertical-align:32.005333pt;}
.ls15{letter-spacing:-4.170667pt;}
.ls16{letter-spacing:-1.360000pt;}
.ls3{letter-spacing:-0.816000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls11{letter-spacing:-0.634667pt;}
.lse{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.317333pt;}
.ls13{letter-spacing:-0.272000pt;}
.ls8{letter-spacing:-0.170667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.136000pt;}
.ls4{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.912000pt;}
.ls17{letter-spacing:2.016000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls7{letter-spacing:3.129600pt;}
.ls6{letter-spacing:3.134400pt;}
.ls0{letter-spacing:4.853333pt;}
.lsb{letter-spacing:88.989333pt;}
.lsa{letter-spacing:89.034667pt;}
.ls10{letter-spacing:89.714667pt;}
.lsf{letter-spacing:90.032000pt;}
.lsc{letter-spacing:90.893333pt;}
.ls9{letter-spacing:96.469333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws108{word-spacing:-10.112000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws99{word-spacing:-9.066667pt;}
.wsc3{word-spacing:-8.794667pt;}
.wsb3{word-spacing:-8.432000pt;}
.ws12{word-spacing:-6.632208pt;}
.wsde{word-spacing:-6.336000pt;}
.wsd9{word-spacing:-6.096000pt;}
.ws33{word-spacing:-5.952000pt;}
.ws63{word-spacing:-4.704000pt;}
.ws79{word-spacing:-4.368000pt;}
.ws64{word-spacing:-4.176000pt;}
.wsa5{word-spacing:-4.032000pt;}
.wsf6{word-spacing:-3.888000pt;}
.wsd8{word-spacing:-3.744000pt;}
.ws48{word-spacing:-3.504000pt;}
.wsb{word-spacing:-3.456000pt;}
.ws4d{word-spacing:-3.408000pt;}
.wse1{word-spacing:-3.216000pt;}
.wsdc{word-spacing:-3.168000pt;}
.ws4c{word-spacing:-3.072000pt;}
.ws47{word-spacing:-3.024000pt;}
.ws30{word-spacing:-2.784000pt;}
.ws9e{word-spacing:-2.640000pt;}
.ws56{word-spacing:-2.496000pt;}
.ws37{word-spacing:-2.448000pt;}
.ws4f{word-spacing:-2.400000pt;}
.ws15{word-spacing:-2.352000pt;}
.wsed{word-spacing:-2.256000pt;}
.ws65{word-spacing:-2.208000pt;}
.ws9c{word-spacing:-2.064000pt;}
.ws8b{word-spacing:-1.872000pt;}
.wse2{word-spacing:-1.728000pt;}
.ws52{word-spacing:-1.680000pt;}
.ws5d{word-spacing:-1.632000pt;}
.ws6c{word-spacing:-1.536000pt;}
.ws7a{word-spacing:-1.488000pt;}
.wsfb{word-spacing:-1.440000pt;}
.ws72{word-spacing:-1.392000pt;}
.ws41{word-spacing:-1.248000pt;}
.ws34{word-spacing:-1.200000pt;}
.ws35{word-spacing:-1.152000pt;}
.ws50{word-spacing:-1.008000pt;}
.wsf5{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.912000pt;}
.ws3b{word-spacing:-0.768000pt;}
.wsac{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.432000pt;}
.wsa4{word-spacing:-0.384000pt;}
.ws60{word-spacing:-0.288000pt;}
.ws107{word-spacing:-0.170667pt;}
.ws1f{word-spacing:-0.144000pt;}
.ws11{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.096000pt;}
.ws61{word-spacing:0.144000pt;}
.ws97{word-spacing:0.170667pt;}
.ws54{word-spacing:0.192000pt;}
.ws1a{word-spacing:0.288000pt;}
.ws96{word-spacing:0.336000pt;}
.ws51{word-spacing:0.384000pt;}
.ws84{word-spacing:0.432000pt;}
.wsdb{word-spacing:0.480000pt;}
.ws7c{word-spacing:0.528000pt;}
.ws5c{word-spacing:0.624000pt;}
.wsee{word-spacing:0.672000pt;}
.ws39{word-spacing:0.720000pt;}
.ws5e{word-spacing:0.768000pt;}
.wsec{word-spacing:0.816000pt;}
.ws3c{word-spacing:0.864000pt;}
.ws4b{word-spacing:0.912000pt;}
.ws78{word-spacing:0.960000pt;}
.ws18{word-spacing:1.008000pt;}
.ws74{word-spacing:1.056000pt;}
.ws17{word-spacing:1.104000pt;}
.wse8{word-spacing:1.152000pt;}
.ws31{word-spacing:1.200000pt;}
.wsff{word-spacing:1.296000pt;}
.ws5b{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.488000pt;}
.ws36{word-spacing:1.536000pt;}
.wse9{word-spacing:1.584000pt;}
.ws82{word-spacing:1.632000pt;}
.wsfe{word-spacing:1.680000pt;}
.ws7e{word-spacing:1.776000pt;}
.wsea{word-spacing:1.824000pt;}
.ws38{word-spacing:1.968000pt;}
.ws102{word-spacing:2.064000pt;}
.ws14{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.160000pt;}
.ws19{word-spacing:2.208000pt;}
.ws57{word-spacing:2.256000pt;}
.ws3a{word-spacing:2.304000pt;}
.ws10{word-spacing:2.352000pt;}
.ws2e{word-spacing:2.400000pt;}
.ws3{word-spacing:2.496000pt;}
.wsfc{word-spacing:2.544000pt;}
.wsf2{word-spacing:2.592000pt;}
.ws1c{word-spacing:2.640000pt;}
.wse0{word-spacing:2.688000pt;}
.ws59{word-spacing:2.784000pt;}
.ws95{word-spacing:2.832000pt;}
.wsa0{word-spacing:2.880000pt;}
.wsaa{word-spacing:2.928000pt;}
.ws91{word-spacing:3.024000pt;}
.ws43{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.168000pt;}
.wsc{word-spacing:3.216000pt;}
.wsa6{word-spacing:3.264000pt;}
.ws1e{word-spacing:3.312000pt;}
.ws90{word-spacing:3.552000pt;}
.wsa9{word-spacing:3.600000pt;}
.ws22{word-spacing:3.696000pt;}
.ws6e{word-spacing:3.792000pt;}
.ws77{word-spacing:3.840000pt;}
.ws21{word-spacing:3.936000pt;}
.wsf7{word-spacing:3.984000pt;}
.wsab{word-spacing:4.080000pt;}
.wse3{word-spacing:4.128000pt;}
.ws29{word-spacing:4.176000pt;}
.ws6f{word-spacing:4.224000pt;}
.wsf1{word-spacing:4.272000pt;}
.ws70{word-spacing:4.368000pt;}
.ws4{word-spacing:4.416000pt;}
.ws62{word-spacing:4.512000pt;}
.ws86{word-spacing:4.560000pt;}
.ws2b{word-spacing:4.608000pt;}
.ws1b{word-spacing:4.656000pt;}
.ws49{word-spacing:4.704000pt;}
.ws9b{word-spacing:4.752000pt;}
.ws13{word-spacing:4.848000pt;}
.ws8a{word-spacing:4.944000pt;}
.ws16{word-spacing:4.992000pt;}
.ws92{word-spacing:5.040000pt;}
.ws5{word-spacing:5.088000pt;}
.ws101{word-spacing:5.184000pt;}
.ws44{word-spacing:5.232000pt;}
.wsd7{word-spacing:5.376000pt;}
.ws69{word-spacing:5.472000pt;}
.ws6b{word-spacing:5.760000pt;}
.ws42{word-spacing:5.856000pt;}
.wse5{word-spacing:5.952000pt;}
.ws46{word-spacing:6.000000pt;}
.ws8c{word-spacing:6.048000pt;}
.ws93{word-spacing:6.096000pt;}
.ws8e{word-spacing:6.144000pt;}
.ws5a{word-spacing:6.192000pt;}
.wse{word-spacing:6.240000pt;}
.wsad{word-spacing:6.288000pt;}
.ws6d{word-spacing:6.384000pt;}
.ws32{word-spacing:6.432000pt;}
.ws83{word-spacing:6.480000pt;}
.ws81{word-spacing:6.528000pt;}
.wsdf{word-spacing:6.576000pt;}
.ws3e{word-spacing:6.768000pt;}
.ws2a{word-spacing:6.816000pt;}
.ws3f{word-spacing:6.912000pt;}
.ws4a{word-spacing:7.008000pt;}
.ws66{word-spacing:7.056000pt;}
.ws3d{word-spacing:7.104000pt;}
.wsef{word-spacing:7.152000pt;}
.ws26{word-spacing:7.296000pt;}
.ws73{word-spacing:7.344000pt;}
.ws106{word-spacing:7.392000pt;}
.ws8{word-spacing:7.488000pt;}
.ws7{word-spacing:7.536000pt;}
.ws9d{word-spacing:7.584000pt;}
.ws9a{word-spacing:7.680000pt;}
.ws7b{word-spacing:7.776000pt;}
.wsfa{word-spacing:7.872000pt;}
.ws53{word-spacing:8.160000pt;}
.wse7{word-spacing:8.208000pt;}
.wseb{word-spacing:8.256000pt;}
.wsa1{word-spacing:8.304000pt;}
.ws2c{word-spacing:8.448000pt;}
.ws28{word-spacing:8.496000pt;}
.wsf0{word-spacing:8.544000pt;}
.ws8f{word-spacing:8.592000pt;}
.ws94{word-spacing:8.688000pt;}
.wsa7{word-spacing:8.880000pt;}
.ws24{word-spacing:8.928000pt;}
.wse6{word-spacing:8.976000pt;}
.wsa8{word-spacing:9.120000pt;}
.wsf{word-spacing:9.216000pt;}
.wsf4{word-spacing:9.264000pt;}
.ws9f{word-spacing:9.312000pt;}
.wsf3{word-spacing:9.456000pt;}
.ws71{word-spacing:9.504000pt;}
.ws45{word-spacing:9.744000pt;}
.wsf8{word-spacing:9.888000pt;}
.ws87{word-spacing:10.032000pt;}
.ws67{word-spacing:10.272000pt;}
.ws40{word-spacing:10.416000pt;}
.ws6{word-spacing:10.704000pt;}
.ws2d{word-spacing:10.752000pt;}
.ws23{word-spacing:10.992000pt;}
.ws68{word-spacing:11.136000pt;}
.wse4{word-spacing:11.664000pt;}
.ws9{word-spacing:11.856000pt;}
.ws5f{word-spacing:12.288000pt;}
.ws27{word-spacing:12.384000pt;}
.ws6a{word-spacing:12.576000pt;}
.ws20{word-spacing:12.816000pt;}
.ws75{word-spacing:12.864000pt;}
.wsdd{word-spacing:12.960000pt;}
.ws85{word-spacing:13.104000pt;}
.ws2f{word-spacing:13.200000pt;}
.wsda{word-spacing:13.296000pt;}
.ws58{word-spacing:13.344000pt;}
.ws88{word-spacing:14.064000pt;}
.ws89{word-spacing:14.448000pt;}
.ws7d{word-spacing:15.072000pt;}
.wsf9{word-spacing:15.504000pt;}
.ws76{word-spacing:15.936000pt;}
.ws103{word-spacing:16.320000pt;}
.ws80{word-spacing:16.560000pt;}
.ws25{word-spacing:16.656000pt;}
.ws55{word-spacing:17.376000pt;}
.ws100{word-spacing:18.336000pt;}
.ws104{word-spacing:18.624000pt;}
.ws7f{word-spacing:19.392000pt;}
.ws105{word-spacing:20.016000pt;}
.wsd1{word-spacing:53.674667pt;}
.wsd3{word-spacing:54.309333pt;}
.wsbd{word-spacing:54.354667pt;}
.wsc4{word-spacing:54.989333pt;}
.wsca{word-spacing:55.306667pt;}
.wsc0{word-spacing:55.669333pt;}
.wscd{word-spacing:55.941333pt;}
.wsd4{word-spacing:55.986667pt;}
.wsc9{word-spacing:56.349333pt;}
.wsc7{word-spacing:56.621333pt;}
.wsc5{word-spacing:56.666667pt;}
.wscf{word-spacing:57.301333pt;}
.wsc1{word-spacing:57.437333pt;}
.wscc{word-spacing:57.573333pt;}
.wsce{word-spacing:57.618667pt;}
.wsc8{word-spacing:58.525333pt;}
.wsd5{word-spacing:61.925333pt;}
.wsb6{word-spacing:62.786667pt;}
.wsb9{word-spacing:64.101333pt;}
.wsbc{word-spacing:64.781333pt;}
.wsba{word-spacing:65.053333pt;}
.wsbb{word-spacing:65.098667pt;}
.wsbe{word-spacing:66.005333pt;}
.wsb7{word-spacing:72.125333pt;}
.wsd2{word-spacing:75.933333pt;}
.wsb2{word-spacing:79.288000pt;}
.wsb0{word-spacing:79.968000pt;}
.wsb5{word-spacing:80.648000pt;}
.wsb1{word-spacing:80.920000pt;}
.wsaf{word-spacing:88.400000pt;}
.wsc2{word-spacing:96.016000pt;}
.wsbf{word-spacing:98.192000pt;}
.wsb4{word-spacing:137.586667pt;}
.wsa2{word-spacing:149.237333pt;}
.wsc6{word-spacing:155.448000pt;}
.wsae{word-spacing:176.512000pt;}
.wscb{word-spacing:177.117333pt;}
.ws98{word-spacing:191.274667pt;}
.wsd6{word-spacing:212.432000pt;}
.wsa3{word-spacing:217.010667pt;}
.wsb8{word-spacing:227.664000pt;}
.wsd0{word-spacing:618.981333pt;}
._4{margin-left:-13.772267pt;}
._40{margin-left:-6.528000pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._6{margin-left:-3.442133pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._7{width:2.232000pt;}
._d{width:3.345600pt;}
._8{width:4.728000pt;}
._9{width:5.840000pt;}
._a{width:6.736533pt;}
._e{width:8.369067pt;}
._f{width:10.297600pt;}
._c{width:12.800000pt;}
._44{width:13.720000pt;}
._11{width:14.784000pt;}
._b{width:16.651200pt;}
._45{width:18.350400pt;}
._10{width:22.368000pt;}
._42{width:35.455467pt;}
._43{width:36.371733pt;}
._41{width:40.032000pt;}
._3f{width:40.992000pt;}
._3d{width:43.200000pt;}
._3e{width:45.024000pt;}
._3c{width:50.784000pt;}
._17{width:64.084800pt;}
._30{width:65.416000pt;}
._3a{width:66.368000pt;}
._37{width:68.544000pt;}
._18{width:69.890667pt;}
._27{width:72.488000pt;}
._2d{width:76.024000pt;}
._14{width:88.037333pt;}
._22{width:91.890667pt;}
._28{width:94.565333pt;}
._26{width:103.722667pt;}
._2b{width:105.400000pt;}
._24{width:108.106667pt;}
._15{width:112.109333pt;}
._31{width:113.954667pt;}
._35{width:116.221333pt;}
._39{width:118.125333pt;}
._33{width:121.221333pt;}
._1a{width:155.978667pt;}
._16{width:158.485333pt;}
._38{width:168.613333pt;}
._19{width:172.040000pt;}
._1e{width:185.866667pt;}
._1b{width:199.509333pt;}
._20{width:204.136000pt;}
._2a{width:205.496000pt;}
._23{width:220.546667pt;}
._1f{width:222.133333pt;}
._21{width:231.789333pt;}
._29{width:236.640000pt;}
._34{width:243.666667pt;}
._25{width:245.570667pt;}
._12{width:270.848000pt;}
._2c{width:311.938667pt;}
._2e{width:350.472000pt;}
._32{width:405.144000pt;}
._36{width:408.453333pt;}
._1c{width:427.861333pt;}
._3b{width:469.562667pt;}
._2f{width:635.301333pt;}
._1d{width:710.314667pt;}
._13{width:765.973333pt;}
.fs8{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:47.663733pt;}
.y28{bottom:47.666400pt;}
.y29{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.y52{bottom:94.488267pt;}
.y23d{bottom:100.292400pt;}
.ye1{bottom:100.340400pt;}
.y98{bottom:100.376400pt;}
.y21b{bottom:100.384400pt;}
.y13a{bottom:100.396400pt;}
.y27d{bottom:100.428400pt;}
.y75{bottom:100.460400pt;}
.y2e6{bottom:101.207733pt;}
.y247{bottom:101.942267pt;}
.y2c7{bottom:106.551733pt;}
.y51{bottom:107.288267pt;}
.y29d{bottom:112.408400pt;}
.y2e5{bottom:118.541067pt;}
.y23c{bottom:120.296400pt;}
.ye0{bottom:120.344400pt;}
.ya4{bottom:120.356400pt;}
.y97{bottom:120.380400pt;}
.y21a{bottom:120.388400pt;}
.y139{bottom:120.400400pt;}
.yc9{bottom:120.420400pt;}
.y27c{bottom:120.432400pt;}
.y74{bottom:120.464400pt;}
.y2c6{bottom:123.885067pt;}
.y19f{bottom:126.410400pt;}
.y29c{bottom:129.741733pt;}
.y1de{bottom:135.743867pt;}
.y309{bottom:135.874400pt;}
.y25{bottom:138.835467pt;}
.y23b{bottom:140.300400pt;}
.ydf{bottom:140.348400pt;}
.ya3{bottom:140.360400pt;}
.y219{bottom:140.392400pt;}
.y138{bottom:140.404400pt;}
.y50{bottom:140.408400pt;}
.yc8{bottom:140.424400pt;}
.y27b{bottom:140.436400pt;}
.y73{bottom:140.468400pt;}
.y19e{bottom:142.413067pt;}
.y1da{bottom:143.756533pt;}
.y29b{bottom:147.075067pt;}
.y2e4{bottom:147.213067pt;}
.y19b{bottom:150.414400pt;}
.y1dd{bottom:151.746533pt;}
.y2c5{bottom:152.557067pt;}
.y19d{bottom:158.415733pt;}
.y24{bottom:158.839467pt;}
.y1d8{bottom:159.759200pt;}
.y23a{bottom:160.304400pt;}
.yde{bottom:160.352400pt;}
.ya2{bottom:160.364400pt;}
.y96{bottom:160.376400pt;}
.y218{bottom:160.396400pt;}
.y137{bottom:160.408400pt;}
.y4f{bottom:160.412400pt;}
.yc7{bottom:160.428400pt;}
.y27a{bottom:160.440400pt;}
.y20a{bottom:160.452533pt;}
.y72{bottom:160.472400pt;}
.y29a{bottom:164.408400pt;}
.y2e3{bottom:164.546400pt;}
.y1dc{bottom:167.749200pt;}
.y2c4{bottom:169.890400pt;}
.y10e{bottom:170.277600pt;}
.y19c{bottom:174.418400pt;}
.y161{bottom:175.590800pt;}
.y1d9{bottom:175.761867pt;}
.y110{bottom:178.278933pt;}
.y23{bottom:178.843467pt;}
.y239{bottom:180.308400pt;}
.ydd{bottom:180.356400pt;}
.ya1{bottom:180.368400pt;}
.y95{bottom:180.380400pt;}
.y217{bottom:180.400400pt;}
.y136{bottom:180.412400pt;}
.yc6{bottom:180.432400pt;}
.yf1{bottom:180.440400pt;}
.y279{bottom:180.444400pt;}
.y209{bottom:180.456533pt;}
.y1db{bottom:183.751867pt;}
.y10d{bottom:186.280267pt;}
.y15f{bottom:191.593467pt;}
.y299{bottom:193.080400pt;}
.y2e2{bottom:193.218400pt;}
.y10a{bottom:194.281600pt;}
.y19a{bottom:197.085067pt;}
.y2c3{bottom:198.562400pt;}
.y238{bottom:200.312400pt;}
.ydc{bottom:200.360400pt;}
.y25f{bottom:200.368400pt;}
.ya0{bottom:200.372400pt;}
.y94{bottom:200.384400pt;}
.y216{bottom:200.404400pt;}
.y4e{bottom:200.408400pt;}
.yc5{bottom:200.436400pt;}
.yf0{bottom:200.444400pt;}
.y208{bottom:200.460533pt;}
.y71{bottom:200.476400pt;}
.y10c{bottom:202.282933pt;}
.y198{bottom:205.086400pt;}
.y1d7{bottom:206.429867pt;}
.y160{bottom:207.596133pt;}
.y10f{bottom:210.284267pt;}
.y298{bottom:210.413733pt;}
.y2e1{bottom:210.551733pt;}
.y197{bottom:213.087733pt;}
.y2c2{bottom:215.895733pt;}
.y10b{bottom:218.285600pt;}
.y22{bottom:218.839467pt;}
.y237{bottom:220.316400pt;}
.ydb{bottom:220.364400pt;}
.y25e{bottom:220.372400pt;}
.y9f{bottom:220.376400pt;}
.y93{bottom:220.388400pt;}
.y135{bottom:220.408400pt;}
.y4d{bottom:220.412400pt;}
.yc4{bottom:220.440400pt;}
.yef{bottom:220.448400pt;}
.y207{bottom:220.464533pt;}
.y308{bottom:221.890400pt;}
.y1d6{bottom:222.432533pt;}
.y2e0{bottom:227.885067pt;}
.y199{bottom:229.090400pt;}
.y15c{bottom:230.262800pt;}
.y1d3{bottom:230.433867pt;}
.y2c1{bottom:233.229067pt;}
.y15e{bottom:238.264133pt;}
.y1d5{bottom:238.435200pt;}
.y297{bottom:239.085733pt;}
.y307{bottom:239.223733pt;}
.y236{bottom:240.320400pt;}
.yda{bottom:240.368400pt;}
.y25d{bottom:240.376400pt;}
.y9e{bottom:240.380400pt;}
.y134{bottom:240.412400pt;}
.y4c{bottom:240.416400pt;}
.y278{bottom:240.444400pt;}
.y206{bottom:240.468533pt;}
.y70{bottom:240.472400pt;}
.y108{bottom:240.952267pt;}
.y15a{bottom:246.265467pt;}
.y109{bottom:248.953600pt;}
.y196{bottom:251.757067pt;}
.y15d{bottom:254.266800pt;}
.y1d4{bottom:254.437867pt;}
.y296{bottom:256.419067pt;}
.y2df{bottom:256.557067pt;}
.y106{bottom:256.954933pt;}
.y21{bottom:258.835467pt;}
.y235{bottom:260.324400pt;}
.yd9{bottom:260.372400pt;}
.y25c{bottom:260.380400pt;}
.y92{bottom:260.384400pt;}
.y133{bottom:260.416400pt;}
.y4b{bottom:260.420400pt;}
.yc3{bottom:260.436400pt;}
.yee{bottom:260.444400pt;}
.y277{bottom:260.448400pt;}
.y205{bottom:260.472533pt;}
.y2c0{bottom:261.901067pt;}
.y15b{bottom:262.268133pt;}
.y194{bottom:267.759733pt;}
.y306{bottom:267.895733pt;}
.y107{bottom:272.957600pt;}
.y2ff{bottom:273.890400pt;}
.y1d2{bottom:277.104533pt;}
.y20{bottom:278.839467pt;}
.y2bf{bottom:279.234400pt;}
.y234{bottom:280.328400pt;}
.yd8{bottom:280.376400pt;}
.y91{bottom:280.388400pt;}
.y132{bottom:280.420400pt;}
.y4a{bottom:280.424400pt;}
.yc2{bottom:280.440400pt;}
.yed{bottom:280.448400pt;}
.y276{bottom:280.452400pt;}
.y195{bottom:283.762400pt;}
.y159{bottom:284.934800pt;}
.y295{bottom:285.091067pt;}
.y1d1{bottom:285.105867pt;}
.y2de{bottom:285.229067pt;}
.y2fe{bottom:291.223733pt;}
.y105{bottom:295.624267pt;}
.y2be{bottom:296.567733pt;}
.y1f{bottom:298.843467pt;}
.y233{bottom:300.332400pt;}
.y6f{bottom:300.356400pt;}
.y25b{bottom:300.376400pt;}
.yd7{bottom:300.380400pt;}
.y90{bottom:300.392400pt;}
.y131{bottom:300.424400pt;}
.y49{bottom:300.428400pt;}
.yc1{bottom:300.444400pt;}
.yec{bottom:300.452400pt;}
.y275{bottom:300.456400pt;}
.y157{bottom:300.937467pt;}
.y294{bottom:302.424400pt;}
.y2dd{bottom:302.562400pt;}
.y193{bottom:306.429067pt;}
.y204{bottom:306.717067pt;}
.y2fd{bottom:308.557067pt;}
.y102{bottom:311.626933pt;}
.y305{bottom:313.901067pt;}
.y1ce{bottom:315.773867pt;}
.y158{bottom:316.940133pt;}
.y1e{bottom:318.847467pt;}
.y101{bottom:319.628267pt;}
.y232{bottom:320.336400pt;}
.y6e{bottom:320.360400pt;}
.y25a{bottom:320.380400pt;}
.yd6{bottom:320.384400pt;}
.y8f{bottom:320.396400pt;}
.y130{bottom:320.428400pt;}
.y48{bottom:320.432400pt;}
.yc0{bottom:320.448400pt;}
.yeb{bottom:320.456400pt;}
.y274{bottom:320.460400pt;}
.y192{bottom:322.431733pt;}
.y1d0{bottom:323.775200pt;}
.y2bd{bottom:325.239733pt;}
.y104{bottom:327.629600pt;}
.y322{bottom:330.583733pt;}
.y293{bottom:331.096400pt;}
.y2dc{bottom:331.234400pt;}
.y1cc{bottom:331.776533pt;}
.y203{bottom:333.533200pt;}
.y2fc{bottom:337.229067pt;}
.y18f{bottom:338.434400pt;}
.y1d{bottom:338.851467pt;}
.y156{bottom:339.606800pt;}
.y1cf{bottom:339.777867pt;}
.y231{bottom:340.340400pt;}
.y6d{bottom:340.364400pt;}
.y259{bottom:340.384400pt;}
.yd5{bottom:340.388400pt;}
.y8e{bottom:340.400400pt;}
.y12f{bottom:340.432400pt;}
.y47{bottom:340.436400pt;}
.ybf{bottom:340.452400pt;}
.yea{bottom:340.460400pt;}
.y273{bottom:340.464400pt;}
.y2bc{bottom:342.573067pt;}
.y103{bottom:343.632267pt;}
.y154{bottom:347.608133pt;}
.y1cd{bottom:347.779200pt;}
.y321{bottom:347.917067pt;}
.y292{bottom:348.429733pt;}
.y2db{bottom:348.567733pt;}
.y202{bottom:349.535867pt;}
.y191{bottom:354.437067pt;}
.y2fb{bottom:354.562400pt;}
.y153{bottom:355.609467pt;}
.y1ff{bottom:357.537200pt;}
.y1c{bottom:358.855467pt;}
.y2bb{bottom:359.906400pt;}
.y230{bottom:360.344400pt;}
.y6c{bottom:360.368400pt;}
.y258{bottom:360.388400pt;}
.yd4{bottom:360.392400pt;}
.y8d{bottom:360.404400pt;}
.y12e{bottom:360.436400pt;}
.ybe{bottom:360.456400pt;}
.y272{bottom:360.468400pt;}
.y320{bottom:365.250400pt;}
.y201{bottom:365.538533pt;}
.y291{bottom:365.763067pt;}
.yff{bottom:366.298933pt;}
.y190{bottom:370.439733pt;}
.y1cb{bottom:370.445867pt;}
.y155{bottom:371.612133pt;}
.y2fa{bottom:371.895733pt;}
.yfe{bottom:374.300267pt;}
.y2da{bottom:377.239733pt;}
.y1c7{bottom:378.458533pt;}
.y1b{bottom:378.859467pt;}
.y22f{bottom:380.348400pt;}
.y6b{bottom:380.372400pt;}
.y257{bottom:380.392400pt;}
.y9d{bottom:380.396400pt;}
.y46{bottom:380.432400pt;}
.y215{bottom:380.440400pt;}
.ye9{bottom:380.456400pt;}
.ybd{bottom:380.460400pt;}
.y271{bottom:380.472400pt;}
.y200{bottom:381.541200pt;}
.y100{bottom:382.301600pt;}
.y1ca{bottom:386.448533pt;}
.y2ba{bottom:388.578400pt;}
.y18e{bottom:393.106400pt;}
.y31f{bottom:393.922400pt;}
.y152{bottom:394.278800pt;}
.y290{bottom:394.435067pt;}
.y1c5{bottom:394.461200pt;}
.y2d9{bottom:394.573067pt;}
.y1a{bottom:398.863467pt;}
.y22e{bottom:400.352400pt;}
.y6a{bottom:400.376400pt;}
.yd3{bottom:400.388400pt;}
.y256{bottom:400.396400pt;}
.y8c{bottom:400.400400pt;}
.y12d{bottom:400.432400pt;}
.y45{bottom:400.436400pt;}
.y214{bottom:400.444400pt;}
.ye8{bottom:400.460400pt;}
.ybc{bottom:400.464400pt;}
.y2f9{bottom:400.567733pt;}
.y1c9{bottom:402.451200pt;}
.y1fe{bottom:404.207867pt;}
.yfd{bottom:404.972133pt;}
.y2b9{bottom:405.911733pt;}
.y18c{bottom:409.109067pt;}
.y150{bottom:410.281467pt;}
.y1c6{bottom:410.463867pt;}
.y31e{bottom:411.255733pt;}
.y1fc{bottom:412.209200pt;}
.y2f8{bottom:417.901067pt;}
.y1c8{bottom:418.453867pt;}
.y19{bottom:418.867467pt;}
.y1fb{bottom:420.210533pt;}
.y22d{bottom:420.356400pt;}
.y69{bottom:420.380400pt;}
.yd2{bottom:420.392400pt;}
.y255{bottom:420.400400pt;}
.y8b{bottom:420.404400pt;}
.y12c{bottom:420.436400pt;}
.y44{bottom:420.440400pt;}
.y213{bottom:420.448400pt;}
.ybb{bottom:420.468400pt;}
.y270{bottom:420.472400pt;}
.y28f{bottom:423.107067pt;}
.y2b8{bottom:423.245067pt;}
.y18d{bottom:425.111733pt;}
.y151{bottom:426.284133pt;}
.y31d{bottom:428.589067pt;}
.y1fd{bottom:436.213200pt;}
.y18{bottom:438.871467pt;}
.y22c{bottom:440.360400pt;}
.y68{bottom:440.384400pt;}
.yd1{bottom:440.396400pt;}
.y254{bottom:440.404400pt;}
.y8a{bottom:440.408400pt;}
.yfc{bottom:440.416400pt;}
.y12b{bottom:440.440400pt;}
.y43{bottom:440.444400pt;}
.y212{bottom:440.452400pt;}
.ye7{bottom:440.456400pt;}
.yba{bottom:440.472400pt;}
.y2d8{bottom:440.578400pt;}
.y1c4{bottom:441.131867pt;}
.y2f7{bottom:446.573067pt;}
.y18b{bottom:447.778400pt;}
.y14d{bottom:448.950800pt;}
.y2b7{bottom:451.917067pt;}
.y18a{bottom:455.779733pt;}
.y14f{bottom:456.952133pt;}
.y1c2{bottom:457.134533pt;}
.y31c{bottom:457.261067pt;}
.y17{bottom:458.875467pt;}
.y1f9{bottom:458.879867pt;}
.y22b{bottom:460.364400pt;}
.y67{bottom:460.388400pt;}
.yd0{bottom:460.400400pt;}
.y253{bottom:460.408400pt;}
.y89{bottom:460.412400pt;}
.yfb{bottom:460.420400pt;}
.y12a{bottom:460.444400pt;}
.y42{bottom:460.448400pt;}
.y211{bottom:460.456400pt;}
.ye6{bottom:460.460400pt;}
.y14b{bottom:464.953467pt;}
.y1f8{bottom:466.881200pt;}
.y28e{bottom:469.112400pt;}
.y2b6{bottom:469.250400pt;}
.y14e{bottom:472.954800pt;}
.y1c3{bottom:473.137200pt;}
.y31b{bottom:474.594400pt;}
.y1fa{bottom:474.882533pt;}
.y2f6{bottom:475.245067pt;}
.y16{bottom:478.879467pt;}
.y22a{bottom:480.368400pt;}
.y66{bottom:480.392400pt;}
.y252{bottom:480.412400pt;}
.y88{bottom:480.416400pt;}
.y26f{bottom:480.428400pt;}
.y129{bottom:480.448400pt;}
.y41{bottom:480.452400pt;}
.y210{bottom:480.460400pt;}
.ye5{bottom:480.464400pt;}
.yb9{bottom:480.467067pt;}
.y14c{bottom:480.956133pt;}
.y189{bottom:486.447733pt;}
.y2d7{bottom:486.583733pt;}
.y31a{bottom:491.927733pt;}
.y2f5{bottom:492.578400pt;}
.y188{bottom:494.449067pt;}
.y1c1{bottom:495.803867pt;}
.y1f7{bottom:497.549200pt;}
.y28d{bottom:497.784400pt;}
.y2b5{bottom:497.922400pt;}
.y15{bottom:498.883467pt;}
.y229{bottom:500.372400pt;}
.y65{bottom:500.396400pt;}
.y251{bottom:500.416400pt;}
.y87{bottom:500.420400pt;}
.y26e{bottom:500.432400pt;}
.y128{bottom:500.452400pt;}
.y40{bottom:500.456400pt;}
.ye4{bottom:500.468400pt;}
.yb8{bottom:500.472400pt;}
.y148{bottom:503.622800pt;}
.y1f3{bottom:505.561867pt;}
.y14a{bottom:511.624133pt;}
.y1bf{bottom:511.806533pt;}
.y1f6{bottom:513.551867pt;}
.y28c{bottom:515.117733pt;}
.y2b4{bottom:515.255733pt;}
.y14{bottom:518.887467pt;}
.y146{bottom:519.625467pt;}
.y228{bottom:520.376400pt;}
.y64{bottom:520.400400pt;}
.yfa{bottom:520.420400pt;}
.y86{bottom:520.424400pt;}
.y26d{bottom:520.436400pt;}
.y127{bottom:520.456400pt;}
.ye3{bottom:520.472400pt;}
.y319{bottom:520.599733pt;}
.y2f4{bottom:521.250400pt;}
.y1f1{bottom:521.564533pt;}
.y187{bottom:525.117067pt;}
.y149{bottom:527.626800pt;}
.y1c0{bottom:527.809200pt;}
.y1f5{bottom:529.554533pt;}
.y28b{bottom:532.451067pt;}
.y304{bottom:532.589067pt;}
.y147{bottom:535.628133pt;}
.y1f2{bottom:537.567200pt;}
.y318{bottom:537.933067pt;}
.y2f3{bottom:538.583733pt;}
.y13{bottom:538.891467pt;}
.y227{bottom:540.380400pt;}
.ycf{bottom:540.404400pt;}
.y250{bottom:540.412400pt;}
.yb7{bottom:540.424400pt;}
.y85{bottom:540.428400pt;}
.y26c{bottom:540.440400pt;}
.y3f{bottom:540.452400pt;}
.y20f{bottom:540.460400pt;}
.y185{bottom:541.119733pt;}
.y2b3{bottom:543.927733pt;}
.y1f4{bottom:545.557200pt;}
.y1be{bottom:550.475867pt;}
.y317{bottom:555.266400pt;}
.y2f2{bottom:555.917067pt;}
.y186{bottom:557.122400pt;}
.y145{bottom:558.294800pt;}
.y1bd{bottom:558.477200pt;}
.y12{bottom:558.895467pt;}
.y226{bottom:560.384400pt;}
.y63{bottom:560.396400pt;}
.yce{bottom:560.408400pt;}
.y24f{bottom:560.416400pt;}
.yb6{bottom:560.428400pt;}
.y84{bottom:560.432400pt;}
.y26b{bottom:560.444400pt;}
.y126{bottom:560.452400pt;}
.y3e{bottom:560.456400pt;}
.y20e{bottom:560.464400pt;}
.ye2{bottom:560.468400pt;}
.y28a{bottom:561.123067pt;}
.y2b2{bottom:561.261067pt;}
.y1f0{bottom:568.235200pt;}
.y144{bottom:574.297467pt;}
.y1ef{bottom:576.236533pt;}
.y289{bottom:578.456400pt;}
.y303{bottom:578.594400pt;}
.y11{bottom:578.899467pt;}
.y184{bottom:579.789067pt;}
.y225{bottom:580.388400pt;}
.y62{bottom:580.400400pt;}
.ycd{bottom:580.412400pt;}
.y24e{bottom:580.420400pt;}
.yb5{bottom:580.432400pt;}
.y83{bottom:580.436400pt;}
.y26a{bottom:580.448400pt;}
.y125{bottom:580.456400pt;}
.y3d{bottom:580.460400pt;}
.y20d{bottom:580.468400pt;}
.y316{bottom:583.938400pt;}
.y2f1{bottom:584.589067pt;}
.y1bc{bottom:589.145200pt;}
.y2b1{bottom:589.933067pt;}
.y141{bottom:590.300133pt;}
.y183{bottom:595.791733pt;}
.y302{bottom:595.927733pt;}
.y224{bottom:600.392400pt;}
.y61{bottom:600.404400pt;}
.ycc{bottom:600.416400pt;}
.yf9{bottom:600.424400pt;}
.yb4{bottom:600.436400pt;}
.y82{bottom:600.440400pt;}
.y269{bottom:600.452400pt;}
.y124{bottom:600.460400pt;}
.y3c{bottom:600.464400pt;}
.y20c{bottom:600.472400pt;}
.y315{bottom:601.271733pt;}
.y180{bottom:603.793067pt;}
.y1ba{bottom:605.147867pt;}
.y143{bottom:606.302800pt;}
.y1ec{bottom:606.904533pt;}
.y288{bottom:607.128400pt;}
.y2b0{bottom:607.266400pt;}
.y182{bottom:611.794400pt;}
.y2f0{bottom:613.261067pt;}
.y1ee{bottom:614.905867pt;}
.y314{bottom:618.605067pt;}
.y223{bottom:620.396400pt;}
.y60{bottom:620.408400pt;}
.ycb{bottom:620.420400pt;}
.yf8{bottom:620.428400pt;}
.y81{bottom:620.444400pt;}
.y268{bottom:620.456400pt;}
.y123{bottom:620.464400pt;}
.y3b{bottom:620.468400pt;}
.y1bb{bottom:621.150533pt;}
.y142{bottom:622.305467pt;}
.y1ea{bottom:622.907200pt;}
.y287{bottom:624.461733pt;}
.y2af{bottom:624.599733pt;}
.y181{bottom:627.797067pt;}
.y2ef{bottom:630.594400pt;}
.y1ed{bottom:630.908533pt;}
.y10{bottom:634.807467pt;}
.y2d6{bottom:635.938400pt;}
.y1eb{bottom:638.909867pt;}
.y222{bottom:640.400400pt;}
.y5f{bottom:640.412400pt;}
.yca{bottom:640.424400pt;}
.yb3{bottom:640.432400pt;}
.y9c{bottom:640.436400pt;}
.y80{bottom:640.448400pt;}
.y267{bottom:640.460400pt;}
.y122{bottom:640.468400pt;}
.y3a{bottom:640.472400pt;}
.y301{bottom:641.933067pt;}
.y1b9{bottom:643.817200pt;}
.y140{bottom:644.972133pt;}
.y313{bottom:647.277067pt;}
.y246{bottom:647.340400pt;}
.y17d{bottom:650.463733pt;}
.y286{bottom:653.133733pt;}
.y2ae{bottom:653.271733pt;}
.y17f{bottom:658.465067pt;}
.y2ee{bottom:659.266400pt;}
.y1b7{bottom:659.819867pt;}
.y221{bottom:660.404400pt;}
.y5e{bottom:660.416400pt;}
.y24d{bottom:660.424400pt;}
.yb2{bottom:660.436400pt;}
.y7f{bottom:660.452400pt;}
.y266{bottom:660.464400pt;}
.y121{bottom:660.472400pt;}
.y312{bottom:664.610400pt;}
.y245{bottom:665.784400pt;}
.y17b{bottom:666.466400pt;}
.y1e9{bottom:668.705200pt;}
.y285{bottom:670.467067pt;}
.y2ad{bottom:670.605067pt;}
.y17e{bottom:674.467733pt;}
.y1b8{bottom:675.822533pt;}
.y2ed{bottom:676.599733pt;}
.y220{bottom:680.408400pt;}
.y5d{bottom:680.420400pt;}
.y24c{bottom:680.428400pt;}
.y9b{bottom:680.432400pt;}
.yb1{bottom:680.440400pt;}
.y13f{bottom:680.468267pt;}
.y265{bottom:680.468400pt;}
.y39{bottom:680.472400pt;}
.y2d5{bottom:681.943733pt;}
.y17c{bottom:682.469067pt;}
.y1e6{bottom:684.707867pt;}
.y284{bottom:687.800400pt;}
.y2ac{bottom:687.938400pt;}
.y20b{bottom:688.600800pt;}
.yf{bottom:688.823200pt;}
.y1e5{bottom:692.709200pt;}
.y311{bottom:693.282400pt;}
.y1b4{bottom:698.489200pt;}
.y2d4{bottom:699.277067pt;}
.y21f{bottom:700.412400pt;}
.y5c{bottom:700.424400pt;}
.y24b{bottom:700.432400pt;}
.y9a{bottom:700.436400pt;}
.yb0{bottom:700.444400pt;}
.y7e{bottom:700.448400pt;}
.y13e{bottom:700.472267pt;}
.y264{bottom:700.472400pt;}
.y120{bottom:700.476400pt;}
.y1e8{bottom:700.710533pt;}
.ye{bottom:703.489867pt;}
.y178{bottom:705.147067pt;}
.y2ec{bottom:705.271733pt;}
.y1b6{bottom:706.490533pt;}
.y310{bottom:710.615733pt;}
.y1b2{bottom:714.491867pt;}
.y283{bottom:716.472400pt;}
.y2ab{bottom:716.610400pt;}
.y1e7{bottom:716.713200pt;}
.y21e{bottom:720.416400pt;}
.y5b{bottom:720.428400pt;}
.y24a{bottom:720.436400pt;}
.y99{bottom:720.440400pt;}
.yf7{bottom:720.448400pt;}
.y7d{bottom:720.452400pt;}
.y244{bottom:720.456400pt;}
.y177{bottom:721.149733pt;}
.y1b5{bottom:722.493200pt;}
.y2eb{bottom:722.605067pt;}
.yd{bottom:723.825867pt;}
.y2d3{bottom:727.949067pt;}
.y17a{bottom:729.139733pt;}
.y1b3{bottom:730.494533pt;}
.y282{bottom:733.805733pt;}
.y2aa{bottom:733.943733pt;}
.y174{bottom:737.152400pt;}
.y21d{bottom:740.420400pt;}
.y38{bottom:740.432400pt;}
.yaf{bottom:740.440400pt;}
.yf6{bottom:740.452400pt;}
.y7c{bottom:740.456400pt;}
.y243{bottom:740.460400pt;}
.y263{bottom:740.467067pt;}
.y11f{bottom:740.472400pt;}
.y179{bottom:745.142400pt;}
.y2d2{bottom:745.282400pt;}
.y1e4{bottom:746.508533pt;}
.y281{bottom:751.139067pt;}
.y2ea{bottom:751.277067pt;}
.y13d{bottom:752.508000pt;}
.y176{bottom:753.155067pt;}
.y1af{bottom:753.161200pt;}
.yc{bottom:754.503067pt;}
.y1e2{bottom:754.509867pt;}
.y30f{bottom:756.621067pt;}
.y21c{bottom:760.424400pt;}
.y5a{bottom:760.436400pt;}
.yae{bottom:760.444400pt;}
.yf5{bottom:760.456400pt;}
.y7b{bottom:760.460400pt;}
.y242{bottom:760.464400pt;}
.y262{bottom:760.472400pt;}
.y1b1{bottom:761.162533pt;}
.y1e1{bottom:762.511200pt;}
.y2a9{bottom:762.615733pt;}
.y2e9{bottom:768.610400pt;}
.y175{bottom:769.157733pt;}
.y1ad{bottom:769.163867pt;}
.yb{bottom:769.169733pt;}
.y30e{bottom:773.954400pt;}
.y1b0{bottom:777.165200pt;}
.y1e3{bottom:778.513867pt;}
.y2a8{bottom:779.949067pt;}
.y37{bottom:780.428400pt;}
.y59{bottom:780.440400pt;}
.yad{bottom:780.448400pt;}
.yf4{bottom:780.460400pt;}
.y241{bottom:780.468400pt;}
.y280{bottom:780.472400pt;}
.y1ae{bottom:785.166533pt;}
.ya{bottom:789.505733pt;}
.y11e{bottom:790.353733pt;}
.y2d1{bottom:791.287733pt;}
.y171{bottom:791.824400pt;}
.y2a7{bottom:797.282400pt;}
.y173{bottom:799.825733pt;}
.y36{bottom:800.432400pt;}
.y58{bottom:800.444400pt;}
.yac{bottom:800.452400pt;}
.y7a{bottom:800.456400pt;}
.yf3{bottom:800.464400pt;}
.y240{bottom:800.472400pt;}
.y1e0{bottom:801.180533pt;}
.y16f{bottom:807.827067pt;}
.y1a9{bottom:807.844533pt;}
.y2d0{bottom:808.621067pt;}
.y2a6{bottom:814.615733pt;}
.y172{bottom:815.828400pt;}
.y1ac{bottom:815.834533pt;}
.y11c{bottom:817.183200pt;}
.y30d{bottom:819.959733pt;}
.y35{bottom:820.436400pt;}
.y261{bottom:820.444400pt;}
.y57{bottom:820.448400pt;}
.yab{bottom:820.456400pt;}
.y79{bottom:820.460400pt;}
.y170{bottom:823.829733pt;}
.y1a6{bottom:823.847200pt;}
.y11d{bottom:825.184533pt;}
.y2e8{bottom:825.954400pt;}
.y1ab{bottom:831.837200pt;}
.y1a5{bottom:831.848533pt;}
.y11a{bottom:833.185867pt;}
.y2cf{bottom:837.293067pt;}
.y1a8{bottom:839.849867pt;}
.y34{bottom:840.440400pt;}
.y260{bottom:840.448400pt;}
.y56{bottom:840.452400pt;}
.yaa{bottom:840.460400pt;}
.y78{bottom:840.464400pt;}
.y23f{bottom:840.467067pt;}
.y27f{bottom:840.472400pt;}
.y9{bottom:842.857333pt;}
.y2a5{bottom:843.287733pt;}
.y16e{bottom:846.496400pt;}
.y1aa{bottom:847.839867pt;}
.y11b{bottom:849.188533pt;}
.y16c{bottom:854.497733pt;}
.y30c{bottom:854.626400pt;}
.y1a7{bottom:855.852533pt;}
.y33{bottom:860.444400pt;}
.y249{bottom:860.452400pt;}
.y55{bottom:860.456400pt;}
.ya9{bottom:860.464400pt;}
.y23e{bottom:860.472400pt;}
.y16b{bottom:862.499067pt;}
.y8{bottom:862.860000pt;}
.y2ce{bottom:865.965067pt;}
.y119{bottom:871.855200pt;}
.y2a4{bottom:871.959733pt;}
.y16d{bottom:878.501733pt;}
.y1a4{bottom:878.519200pt;}
.y117{bottom:879.856533pt;}
.y32{bottom:880.448400pt;}
.y248{bottom:880.456400pt;}
.y54{bottom:880.460400pt;}
.yf2{bottom:880.468400pt;}
.y27e{bottom:880.472400pt;}
.y2cd{bottom:883.298400pt;}
.y116{bottom:887.857867pt;}
.y2a3{bottom:889.293067pt;}
.y7{bottom:894.198667pt;}
.y1a3{bottom:894.521867pt;}
.y1df{bottom:895.859200pt;}
.y31{bottom:900.452400pt;}
.ya8{bottom:900.460400pt;}
.y53{bottom:900.464400pt;}
.y30b{bottom:900.631733pt;}
.y168{bottom:901.179733pt;}
.y118{bottom:903.860533pt;}
.y2a2{bottom:906.626400pt;}
.y1a1{bottom:910.524533pt;}
.y2cc{bottom:911.970400pt;}
.y167{bottom:917.182400pt;}
.y2e7{bottom:917.965067pt;}
.y30{bottom:920.456400pt;}
.ya7{bottom:920.464400pt;}
.y77{bottom:920.468400pt;}
.y6{bottom:923.532000pt;}
.y115{bottom:926.527200pt;}
.y2cb{bottom:929.303733pt;}
.y16a{bottom:933.173733pt;}
.y166{bottom:933.185067pt;}
.y114{bottom:934.528533pt;}
.y2a1{bottom:935.298400pt;}
.y2f{bottom:940.460400pt;}
.ya6{bottom:940.468400pt;}
.y76{bottom:940.472400pt;}
.y162{bottom:941.197733pt;}
.y1a2{bottom:942.529867pt;}
.y30a{bottom:946.637067pt;}
.y169{bottom:949.176400pt;}
.y165{bottom:949.187733pt;}
.y300{bottom:952.631733pt;}
.y5{bottom:952.865333pt;}
.y2ca{bottom:957.975733pt;}
.y2e{bottom:960.464400pt;}
.ya5{bottom:960.472400pt;}
.y2a0{bottom:963.970400pt;}
.y164{bottom:965.190400pt;}
.y113{bottom:965.196533pt;}
.y112{bottom:973.197867pt;}
.y2c9{bottom:975.309067pt;}
.y2d{bottom:980.468400pt;}
.y163{bottom:981.193067pt;}
.y29f{bottom:981.303733pt;}
.y13c{bottom:990.028400pt;}
.y2c8{bottom:992.642400pt;}
.y2c{bottom:1000.472400pt;}
.y111{bottom:1003.869733pt;}
.y1a0{bottom:1003.869867pt;}
.y13b{bottom:1008.472400pt;}
.y29e{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y27{bottom:1051.455733pt;}
.y2b{bottom:1064.023733pt;}
.y26{bottom:1066.119733pt;}
.h4{height:29.344000pt;}
.h16{height:30.592000pt;}
.h1a{height:32.554667pt;}
.hd{height:32.725333pt;}
.h3{height:33.376000pt;}
.h1c{height:34.589333pt;}
.ha{height:35.040000pt;}
.hb{height:36.624000pt;}
.hc{height:37.728000pt;}
.h8{height:38.144000pt;}
.h7{height:38.933333pt;}
.h13{height:39.360000pt;}
.h18{height:40.528000pt;}
.h1d{height:41.856000pt;}
.h1e{height:41.941333pt;}
.h9{height:42.912000pt;}
.h10{height:47.088000pt;}
.h15{height:47.136000pt;}
.hf{height:47.184000pt;}
.h14{height:47.216000pt;}
.h11{height:47.344000pt;}
.h6{height:52.901333pt;}
.h12{height:57.552000pt;}
.he{height:57.610667pt;}
.h1b{height:66.594667pt;}
.h17{height:72.533333pt;}
.h5{height:78.613333pt;}
.h2{height:86.853444pt;}
.h19{height:104.538667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.x11{left:109.872933pt;}
.x10{left:110.855200pt;}
.x5{left:112.896933pt;}
.x1b{left:122.389867pt;}
.xc{left:126.047200pt;}
.xe{left:128.123200pt;}
.x1c{left:132.287200pt;}
.xa{left:134.138000pt;}
.x12{left:137.956933pt;}
.xd{left:160.631200pt;}
.xf{left:162.143200pt;}
.x19{left:166.299200pt;}
.x9{left:186.047200pt;}
.x15{left:204.094533pt;}
.x13{left:243.821600pt;}
.x16{left:283.465733pt;}
.x14{left:328.821600pt;}
.x17{left:491.341733pt;}
.x3{left:520.369600pt;}
.x4{left:558.972267pt;}
.x2{left:602.278933pt;}
.x8{left:639.338267pt;}
.xb{left:641.829467pt;}
.x6{left:644.490400pt;}
.x1a{left:646.698667pt;}
.x18{left:649.076533pt;}
.x7{left:650.256667pt;}
}




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