
    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_2ea15edd29155952ce852e5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_74444ee0ae0a0998ff329fe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917000;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_4a63c016e4b47250b1f47cd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_d3e933eb8c376967261a7e43.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d27b826891959daaf8ba23a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_b4f140fe9109ac5d9e398cee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.138672;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_cf3334fb6a950d0d37419d24.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_563085eed421c194d12c9f3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_f8b18f13296798665321e340.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917000;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_cce53b5e233b010555b7ade0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;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_43b1f13bc207dca709105fa3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b3f89f75a0929cc2e90d405.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932129;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);}
.v2{vertical-align:-21.978000px;}
.v4{vertical-align:-11.981400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.984000px;}
.ls13{letter-spacing:-11.640000px;}
.ls6e{letter-spacing:-7.128000px;}
.ls48{letter-spacing:-6.072000px;}
.ls36{letter-spacing:-3.135000px;}
.ls47{letter-spacing:-3.102000px;}
.ls41{letter-spacing:-2.538000px;}
.ls4{letter-spacing:-2.520000px;}
.ls5d{letter-spacing:-1.518000px;}
.ls58{letter-spacing:-1.452000px;}
.ls5b{letter-spacing:-1.320000px;}
.ls61{letter-spacing:-1.254000px;}
.ls5f{letter-spacing:-1.188000px;}
.ls5e{letter-spacing:-1.122000px;}
.ls3a{letter-spacing:-1.056000px;}
.ls21{letter-spacing:-1.026000px;}
.ls3e{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.924000px;}
.ls20{letter-spacing:-0.918000px;}
.ls38{letter-spacing:-0.858000px;}
.ls5{letter-spacing:-0.810000px;}
.ls40{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.750000px;}
.ls17{letter-spacing:-0.726000px;}
.ls3{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.660000px;}
.ls57{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.570000px;}
.lsc{letter-spacing:-0.540000px;}
.ls62{letter-spacing:-0.538692px;}
.ls27{letter-spacing:-0.528000px;}
.ls39{letter-spacing:-0.500214px;}
.lsd{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.462000px;}
.ls5c{letter-spacing:-0.440748px;}
.ls1f{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.423258px;}
.ls6{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.396000px;}
.ls3f{letter-spacing:-0.384780px;}
.ls1d{letter-spacing:-0.378000px;}
.ls65{letter-spacing:-0.377784px;}
.ls22{letter-spacing:-0.346302px;}
.ls28{letter-spacing:-0.330000px;}
.ls56{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.314820px;}
.ls51{letter-spacing:-0.307824px;}
.ls1e{letter-spacing:-0.283338px;}
.ls10{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.264000px;}
.ls4d{letter-spacing:-0.240000px;}
.ls43{letter-spacing:-0.230868px;}
.ls4e{letter-spacing:-0.220374px;}
.lsf{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.198000px;}
.ls4c{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.157410px;}
.ls8{letter-spacing:-0.150000px;}
.ls19{letter-spacing:-0.132000px;}
.ls34{letter-spacing:-0.125928px;}
.ls42{letter-spacing:-0.115434px;}
.ls12{letter-spacing:-0.108000px;}
.ls2f{letter-spacing:-0.094446px;}
.ls50{letter-spacing:-0.076956px;}
.ls2a{letter-spacing:-0.066000px;}
.ls5a{letter-spacing:-0.062964px;}
.ls1c{letter-spacing:-0.054000px;}
.ls59{letter-spacing:-0.038478px;}
.ls2{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.031482px;}
.ls32{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.066000px;}
.ls4f{letter-spacing:0.108000px;}
.ls60{letter-spacing:0.115434px;}
.ls1{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.132000px;}
.ls69{letter-spacing:0.151800px;}
.ls55{letter-spacing:0.157410px;}
.ls6d{letter-spacing:0.158400px;}
.ls1b{letter-spacing:0.188892px;}
.ls35{letter-spacing:0.198000px;}
.ls4b{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.264000px;}
.ls54{letter-spacing:0.270000px;}
.ls4a{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.324000px;}
.ls46{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.396000px;}
.ls23{letter-spacing:0.462000px;}
.ls45{letter-spacing:0.500214px;}
.ls9{letter-spacing:0.528000px;}
.ls68{letter-spacing:0.594000px;}
.ls63{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.726000px;}
.ls64{letter-spacing:0.792000px;}
.ls44{letter-spacing:0.858000px;}
.ls6c{letter-spacing:0.924000px;}
.ls49{letter-spacing:0.960000px;}
.ls67{letter-spacing:1.056000px;}
.ls6b{letter-spacing:1.254000px;}
.ls53{letter-spacing:2.910600px;}
.ls6a{letter-spacing:3.036000px;}
.ls52{letter-spacing:3.055800px;}
.ls66{letter-spacing:3.696000px;}
.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;}
}
.wsd8{word-spacing:-16.566000px;}
.ws7b{word-spacing:-16.500000px;}
.wsa8{word-spacing:-16.434000px;}
.wsd9{word-spacing:-16.236000px;}
.wse1{word-spacing:-16.170000px;}
.wsbb{word-spacing:-16.104000px;}
.wsdc{word-spacing:-15.972000px;}
.wsdb{word-spacing:-15.906000px;}
.ws62{word-spacing:-15.840000px;}
.wsd6{word-spacing:-15.774000px;}
.wsdd{word-spacing:-15.708000px;}
.ws53{word-spacing:-15.642000px;}
.wsda{word-spacing:-15.576000px;}
.wsd7{word-spacing:-15.510000px;}
.wsde{word-spacing:-15.180000px;}
.ws19{word-spacing:-14.400000px;}
.ws1{word-spacing:-13.500000px;}
.ws56{word-spacing:-13.230000px;}
.ws1a{word-spacing:-13.014000px;}
.ws57{word-spacing:-12.960000px;}
.ws1b{word-spacing:-12.474000px;}
.ws0{word-spacing:-12.120000px;}
.ws64{word-spacing:-10.962000px;}
.ws7a{word-spacing:-10.428000px;}
.ws79{word-spacing:-10.119714px;}
.wsc8{word-spacing:-9.734934px;}
.ws17{word-spacing:-9.619500px;}
.wsb4{word-spacing:-9.581022px;}
.ws95{word-spacing:-9.542544px;}
.ws77{word-spacing:-9.504066px;}
.ws78{word-spacing:-9.388632px;}
.wse3{word-spacing:-9.372000px;}
.ws96{word-spacing:-9.311676px;}
.ws63{word-spacing:-9.234720px;}
.ws55{word-spacing:-9.196242px;}
.ws54{word-spacing:-9.119286px;}
.wscb{word-spacing:-9.080808px;}
.ws18{word-spacing:-8.745000px;}
.ws34{word-spacing:-7.500000px;}
.ws35{word-spacing:-7.350000px;}
.wsb7{word-spacing:-4.158000px;}
.ws14{word-spacing:-2.940000px;}
.wsb6{word-spacing:-1.980000px;}
.ws5d{word-spacing:-1.848000px;}
.ws6d{word-spacing:-1.716000px;}
.ws1d{word-spacing:-1.650000px;}
.ws47{word-spacing:-1.584000px;}
.ws70{word-spacing:-1.452000px;}
.ws4d{word-spacing:-1.386000px;}
.wsa{word-spacing:-1.350000px;}
.ws99{word-spacing:-1.320000px;}
.ws7c{word-spacing:-1.254000px;}
.ws97{word-spacing:-1.188000px;}
.ws8e{word-spacing:-1.140000px;}
.ws5f{word-spacing:-1.134000px;}
.ws89{word-spacing:-1.122000px;}
.ws61{word-spacing:-1.080000px;}
.wsbe{word-spacing:-1.056000px;}
.ws76{word-spacing:-1.026000px;}
.ws16{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.990000px;}
.ws32{word-spacing:-0.972000px;}
.ws3c{word-spacing:-0.924000px;}
.ws46{word-spacing:-0.864000px;}
.wsaa{word-spacing:-0.858000px;}
.wsa5{word-spacing:-0.792000px;}
.wsa2{word-spacing:-0.726000px;}
.ws11{word-spacing:-0.702000px;}
.wscd{word-spacing:-0.660000px;}
.wsac{word-spacing:-0.594000px;}
.ws2e{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.528000px;}
.ws31{word-spacing:-0.486000px;}
.ws30{word-spacing:-0.432000px;}
.ws49{word-spacing:-0.396000px;}
.ws8{word-spacing:-0.384000px;}
.ws71{word-spacing:-0.330000px;}
.ws72{word-spacing:-0.283338px;}
.wsad{word-spacing:-0.270000px;}
.ws1e{word-spacing:-0.264000px;}
.ws24{word-spacing:-0.240000px;}
.ws93{word-spacing:-0.216000px;}
.wsa9{word-spacing:-0.198000px;}
.ws2f{word-spacing:-0.162000px;}
.wsc9{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.108000px;}
.ws7e{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws2a{word-spacing:0.054000px;}
.wsc0{word-spacing:0.066000px;}
.ws86{word-spacing:0.108000px;}
.ws3b{word-spacing:0.132000px;}
.wsb2{word-spacing:0.162000px;}
.wsa4{word-spacing:0.198000px;}
.ws8d{word-spacing:0.240000px;}
.ws36{word-spacing:0.264000px;}
.ws75{word-spacing:0.270000px;}
.wsd2{word-spacing:0.314820px;}
.wsae{word-spacing:0.324000px;}
.ws66{word-spacing:0.330000px;}
.wsd5{word-spacing:0.377784px;}
.ws74{word-spacing:0.378000px;}
.ws6f{word-spacing:0.384780px;}
.ws9e{word-spacing:0.396000px;}
.ws88{word-spacing:0.432000px;}
.ws3e{word-spacing:0.462000px;}
.ws7{word-spacing:0.480000px;}
.wsa7{word-spacing:0.486000px;}
.ws39{word-spacing:0.528000px;}
.ws9{word-spacing:0.540000px;}
.ws5e{word-spacing:0.594000px;}
.ws27{word-spacing:0.648000px;}
.ws21{word-spacing:0.660000px;}
.wsb3{word-spacing:0.702000px;}
.wsc2{word-spacing:0.726000px;}
.wsf{word-spacing:0.756000px;}
.wsc7{word-spacing:0.787050px;}
.ws6c{word-spacing:0.792000px;}
.ws5{word-spacing:0.810000px;}
.ws8b{word-spacing:0.840000px;}
.ws83{word-spacing:0.858000px;}
.wsa1{word-spacing:0.864000px;}
.ws85{word-spacing:0.918000px;}
.wsc5{word-spacing:0.924000px;}
.ws82{word-spacing:0.990000px;}
.ws33{word-spacing:1.026000px;}
.ws43{word-spacing:1.056000px;}
.wsb5{word-spacing:1.122000px;}
.wsbc{word-spacing:1.134000px;}
.ws7d{word-spacing:1.188000px;}
.ws9d{word-spacing:1.254000px;}
.ws23{word-spacing:1.260000px;}
.wscf{word-spacing:1.296000px;}
.wsa3{word-spacing:1.320000px;}
.wsc{word-spacing:1.350000px;}
.ws51{word-spacing:1.386000px;}
.wse{word-spacing:1.404000px;}
.ws6e{word-spacing:1.452000px;}
.wsd{word-spacing:1.458000px;}
.ws22{word-spacing:1.500000px;}
.ws2b{word-spacing:1.512000px;}
.ws68{word-spacing:1.518000px;}
.ws15{word-spacing:1.560000px;}
.ws87{word-spacing:1.566000px;}
.ws84{word-spacing:1.584000px;}
.ws2d{word-spacing:1.620000px;}
.ws1c{word-spacing:1.650000px;}
.ws67{word-spacing:1.716000px;}
.ws44{word-spacing:1.728000px;}
.ws3f{word-spacing:1.782000px;}
.wsaf{word-spacing:1.836000px;}
.ws48{word-spacing:1.848000px;}
.ws65{word-spacing:1.914000px;}
.ws8f{word-spacing:1.920000px;}
.ws2c{word-spacing:1.944000px;}
.ws5a{word-spacing:1.980000px;}
.ws73{word-spacing:1.998000px;}
.wsb9{word-spacing:2.046000px;}
.ws29{word-spacing:2.052000px;}
.ws42{word-spacing:2.112000px;}
.ws45{word-spacing:2.160000px;}
.ws41{word-spacing:2.178000px;}
.ws9b{word-spacing:2.214000px;}
.wsc3{word-spacing:2.244000px;}
.wsba{word-spacing:2.268000px;}
.ws50{word-spacing:2.310000px;}
.ws12{word-spacing:2.322000px;}
.wsb0{word-spacing:2.376000px;}
.ws4e{word-spacing:2.442000px;}
.ws60{word-spacing:2.484000px;}
.ws8a{word-spacing:2.508000px;}
.ws4{word-spacing:2.520000px;}
.ws20{word-spacing:2.574000px;}
.wsbf{word-spacing:2.640000px;}
.wscc{word-spacing:2.646000px;}
.ws4b{word-spacing:2.706000px;}
.ws1f{word-spacing:2.772000px;}
.ws9a{word-spacing:2.808000px;}
.wsab{word-spacing:2.838000px;}
.ws40{word-spacing:2.904000px;}
.wsa0{word-spacing:2.970000px;}
.wsb1{word-spacing:3.036000px;}
.ws52{word-spacing:3.078000px;}
.ws4c{word-spacing:3.102000px;}
.ws94{word-spacing:3.132000px;}
.ws58{word-spacing:3.135000px;}
.wsb8{word-spacing:3.168000px;}
.ws9c{word-spacing:3.186000px;}
.ws92{word-spacing:3.234000px;}
.ws6b{word-spacing:3.300000px;}
.ws5b{word-spacing:3.366000px;}
.ws4f{word-spacing:3.432000px;}
.ws4a{word-spacing:3.498000px;}
.ws90{word-spacing:3.564000px;}
.ws69{word-spacing:3.630000px;}
.ws28{word-spacing:3.672000px;}
.ws6a{word-spacing:3.696000px;}
.ws37{word-spacing:3.762000px;}
.wsbd{word-spacing:3.828000px;}
.wsc1{word-spacing:3.894000px;}
.wsce{word-spacing:3.960000px;}
.wsd0{word-spacing:4.026000px;}
.wsc6{word-spacing:4.092000px;}
.wsca{word-spacing:4.158000px;}
.ws59{word-spacing:4.224000px;}
.wsa6{word-spacing:4.290000px;}
.ws26{word-spacing:4.320000px;}
.ws98{word-spacing:4.356000px;}
.ws3d{word-spacing:4.422000px;}
.ws81{word-spacing:4.488000px;}
.ws91{word-spacing:4.620000px;}
.ws8c{word-spacing:4.680000px;}
.ws80{word-spacing:4.752000px;}
.ws9f{word-spacing:4.950000px;}
.ws3a{word-spacing:5.214000px;}
.wsc4{word-spacing:5.346000px;}
.wsd1{word-spacing:5.412000px;}
.wsdf{word-spacing:5.544000px;}
.ws38{word-spacing:5.742000px;}
.wse0{word-spacing:6.204000px;}
.wsd4{word-spacing:6.402000px;}
.wsd3{word-spacing:7.062000px;}
.wse5{word-spacing:7.260000px;}
.ws7f{word-spacing:7.392000px;}
.wse2{word-spacing:7.722000px;}
.ws2{word-spacing:8.280000px;}
.wse4{word-spacing:8.382000px;}
.ws25{word-spacing:23.611500px;}
._e{margin-left:-14.755200px;}
._11{margin-left:-13.152000px;}
._c{margin-left:-10.891800px;}
._9{margin-left:-8.880000px;}
._d{margin-left:-7.845000px;}
._8{margin-left:-6.777000px;}
._7{margin-left:-5.401200px;}
._3{margin-left:-3.471600px;}
._5{margin-left:-2.440800px;}
._0{margin-left:-1.350000px;}
._1{width:1.980600px;}
._4{width:3.181200px;}
._f{width:4.476600px;}
._b{width:5.544000px;}
._2{width:7.210200px;}
._6{width:8.709600px;}
._12{width:9.814800px;}
._13{width:11.591400px;}
._10{width:22.792968px;}
._a{width:23.894838px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(38,118,167);}
.fc3{color:rgb(0,48,97);}
.fc2{color:rgb(6,69,173);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,111,111);}
.fs1{font-size:30.000000px;}
.fs7{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:24.393750px;}
.y5{bottom:28.143750px;}
.y52{bottom:34.893750px;}
.y27{bottom:37.893750px;}
.y4{bottom:43.143750px;}
.y24{bottom:44.833800px;}
.y1{bottom:44.895750px;}
.y26{bottom:46.893750px;}
.y51{bottom:48.393750px;}
.y3{bottom:58.143750px;}
.y25{bottom:58.893750px;}
.y2{bottom:68.643750px;}
.y50{bottom:72.393750px;}
.yfe{bottom:115.500150px;}
.y18c{bottom:116.280150px;}
.y186{bottom:116.298150px;}
.y1a4{bottom:116.316150px;}
.y158{bottom:116.348250px;}
.y137{bottom:116.375100px;}
.y123{bottom:116.402100px;}
.y99{bottom:116.410800px;}
.y77{bottom:116.437800px;}
.y1aa{bottom:116.447400px;}
.ye8{bottom:116.455950px;}
.yb6{bottom:116.482800px;}
.y4f{bottom:116.509800px;}
.yc6{bottom:116.716800px;}
.yfd{bottom:118.495650px;}
.y98{bottom:119.406300px;}
.y1b6{bottom:119.442900px;}
.ye7{bottom:119.451450px;}
.yc5{bottom:119.712300px;}
.y16a{bottom:131.700150px;}
.y157{bottom:132.548250px;}
.y136{bottom:132.575100px;}
.y122{bottom:132.602100px;}
.y76{bottom:132.637800px;}
.y1a9{bottom:132.647400px;}
.yb5{bottom:132.682800px;}
.y4e{bottom:132.709800px;}
.yfc{bottom:133.200300px;}
.y97{bottom:134.111100px;}
.ye6{bottom:134.156100px;}
.yc4{bottom:134.416950px;}
.y169{bottom:134.695650px;}
.y18b{bottom:137.284650px;}
.y1ed{bottom:137.301150px;}
.y185{bottom:137.302650px;}
.y1a3{bottom:137.320650px;}
.y1d6{bottom:147.900150px;}
.y156{bottom:148.748250px;}
.y135{bottom:148.775100px;}
.y121{bottom:148.802100px;}
.y75{bottom:148.837800px;}
.yb4{bottom:148.882800px;}
.y4d{bottom:148.909800px;}
.yfb{bottom:149.400300px;}
.y96{bottom:150.311100px;}
.ye5{bottom:150.356100px;}
.yc3{bottom:150.616950px;}
.y155{bottom:151.743750px;}
.y1a8{bottom:151.842900px;}
.y4c{bottom:151.905300px;}
.y95{bottom:153.306600px;}
.yc2{bottom:153.612450px;}
.y18a{bottom:158.289150px;}
.y1ec{bottom:158.305650px;}
.y184{bottom:158.307150px;}
.y1a2{bottom:158.325150px;}
.y1b5{bottom:158.401650px;}
.y23{bottom:158.433000px;}
.y167{bottom:164.948250px;}
.y134{bottom:164.975100px;}
.y120{bottom:165.002100px;}
.y74{bottom:165.037800px;}
.yb3{bottom:165.082800px;}
.yfa{bottom:165.600300px;}
.ye4{bottom:166.556100px;}
.y4b{bottom:166.609950px;}
.y1d5{bottom:167.095650px;}
.y166{bottom:167.943750px;}
.y149{bottom:167.970600px;}
.y11f{bottom:167.997600px;}
.y94{bottom:168.011250px;}
.y73{bottom:168.033300px;}
.yc1{bottom:168.317100px;}
.y189{bottom:179.293650px;}
.y1eb{bottom:179.310150px;}
.y183{bottom:179.311650px;}
.y1a1{bottom:179.329650px;}
.y1b8{bottom:179.379150px;}
.y1b4{bottom:179.406150px;}
.y22{bottom:179.433000px;}
.y133{bottom:181.175100px;}
.y12f{bottom:181.202100px;}
.yb2{bottom:181.282800px;}
.yf9{bottom:181.800300px;}
.y148{bottom:182.675250px;}
.y11e{bottom:182.702250px;}
.y72{bottom:182.737950px;}
.ye3{bottom:182.756100px;}
.y4a{bottom:182.809950px;}
.y93{bottom:184.211250px;}
.yb1{bottom:184.278300px;}
.yc0{bottom:184.517100px;}
.y71{bottom:185.733450px;}
.y132{bottom:197.375100px;}
.y12e{bottom:197.402100px;}
.yf8{bottom:198.000300px;}
.y147{bottom:198.875250px;}
.y11d{bottom:198.902250px;}
.ye2{bottom:198.956100px;}
.yb0{bottom:198.982950px;}
.y49{bottom:199.009950px;}
.y188{bottom:200.298150px;}
.y1ea{bottom:200.314650px;}
.y182{bottom:200.316150px;}
.y1a0{bottom:200.334150px;}
.y1d4{bottom:200.344650px;}
.y1a7{bottom:200.352150px;}
.y131{bottom:200.370600px;}
.y154{bottom:200.374650px;}
.y1b7{bottom:200.383650px;}
.y1b3{bottom:200.410650px;}
.y92{bottom:200.411250px;}
.y165{bottom:200.424150px;}
.y21{bottom:200.433000px;}
.ybf{bottom:200.717100px;}
.y91{bottom:203.406600px;}
.y12d{bottom:213.602100px;}
.yf7{bottom:214.200300px;}
.y146{bottom:215.075250px;}
.y11c{bottom:215.102250px;}
.ye1{bottom:215.156100px;}
.yaf{bottom:215.182950px;}
.y48{bottom:215.209950px;}
.y12c{bottom:216.597600px;}
.ybe{bottom:216.917100px;}
.y90{bottom:218.111250px;}
.y8f{bottom:221.106750px;}
.y187{bottom:221.302650px;}
.y1e9{bottom:221.319150px;}
.y181{bottom:221.320650px;}
.y19f{bottom:221.338650px;}
.y1d3{bottom:221.349150px;}
.y1a6{bottom:221.356650px;}
.y153{bottom:221.379150px;}
.y70{bottom:221.388150px;}
.y1b2{bottom:221.415150px;}
.y164{bottom:221.428650px;}
.y20{bottom:221.433000px;}
.yf6{bottom:230.400300px;}
.y145{bottom:231.275250px;}
.ye0{bottom:231.356100px;}
.yae{bottom:231.382950px;}
.y47{bottom:231.409950px;}
.ybd{bottom:233.117100px;}
.yf5{bottom:233.395800px;}
.y130{bottom:242.307150px;}
.y1e8{bottom:242.323650px;}
.y180{bottom:242.325150px;}
.y19e{bottom:242.343150px;}
.y1bf{bottom:242.347650px;}
.y1d2{bottom:242.353650px;}
.y1a5{bottom:242.361150px;}
.y152{bottom:242.383650px;}
.y6f{bottom:242.392650px;}
.y1b1{bottom:242.419650px;}
.y1f{bottom:242.433000px;}
.y163{bottom:242.433150px;}
.y10d{bottom:246.600300px;}
.y144{bottom:247.475250px;}
.ydf{bottom:247.556100px;}
.yad{bottom:247.582950px;}
.y46{bottom:247.609950px;}
.yf4{bottom:248.100450px;}
.ybc{bottom:249.317100px;}
.y10c{bottom:249.595800px;}
.yac{bottom:250.578450px;}
.yf3{bottom:251.095950px;}
.y12b{bottom:263.311650px;}
.y1e7{bottom:263.328150px;}
.y17f{bottom:263.329650px;}
.y19d{bottom:263.347650px;}
.y1be{bottom:263.352150px;}
.y1d1{bottom:263.358150px;}
.y8e{bottom:263.365650px;}
.y151{bottom:263.388150px;}
.y6e{bottom:263.397150px;}
.y11b{bottom:263.401650px;}
.y168{bottom:263.410650px;}
.y1b0{bottom:263.424150px;}
.y143{bottom:263.675250px;}
.yde{bottom:263.756100px;}
.y45{bottom:263.809950px;}
.y10b{bottom:264.300450px;}
.ybb{bottom:265.517100px;}
.ydd{bottom:266.751600px;}
.y142{bottom:279.875250px;}
.y44{bottom:280.009950px;}
.y10a{bottom:280.500450px;}
.ydc{bottom:281.456250px;}
.y12a{bottom:284.316150px;}
.y1e6{bottom:284.332650px;}
.y17e{bottom:284.334150px;}
.y19c{bottom:284.352150px;}
.y1bd{bottom:284.356650px;}
.y1d0{bottom:284.362650px;}
.y8d{bottom:284.370150px;}
.y150{bottom:284.392650px;}
.yab{bottom:284.397150px;}
.y6d{bottom:284.401650px;}
.y11a{bottom:284.406150px;}
.yf2{bottom:284.415150px;}
.y162{bottom:284.428650px;}
.yba{bottom:284.712450px;}
.y141{bottom:296.075250px;}
.y43{bottom:296.209950px;}
.y1e{bottom:297.639000px;}
.ydb{bottom:297.656250px;}
.y140{bottom:299.070750px;}
.y129{bottom:305.320650px;}
.y1e5{bottom:305.337150px;}
.y17d{bottom:305.338650px;}
.y1af{bottom:305.353650px;}
.y19b{bottom:305.356650px;}
.y1bc{bottom:305.361150px;}
.y1cf{bottom:305.367150px;}
.y8c{bottom:305.374650px;}
.y14f{bottom:305.397150px;}
.yaa{bottom:305.401650px;}
.y6c{bottom:305.406150px;}
.y119{bottom:305.410650px;}
.yf1{bottom:305.419650px;}
.y161{bottom:305.433150px;}
.y42{bottom:312.409950px;}
.y13f{bottom:313.775550px;}
.yda{bottom:313.856250px;}
.y1d{bottom:314.136000px;}
.yd9{bottom:316.851750px;}
.y128{bottom:326.325150px;}
.y1e4{bottom:326.341650px;}
.y17c{bottom:326.343150px;}
.y1ae{bottom:326.358150px;}
.y19a{bottom:326.361150px;}
.y1bb{bottom:326.365650px;}
.y1ce{bottom:326.371650px;}
.y8b{bottom:326.379150px;}
.y109{bottom:326.388150px;}
.y14e{bottom:326.401650px;}
.ya9{bottom:326.406150px;}
.y6b{bottom:326.410650px;}
.y118{bottom:326.415150px;}
.yf0{bottom:326.424150px;}
.yb9{bottom:326.428650px;}
.y41{bottom:328.609950px;}
.y13e{bottom:329.975550px;}
.y1c{bottom:330.336000px;}
.yd8{bottom:331.556400px;}
.y40{bottom:331.605450px;}
.y13d{bottom:346.175550px;}
.y3f{bottom:346.310100px;}
.y1b{bottom:346.536000px;}
.y127{bottom:347.329650px;}
.y1e3{bottom:347.346150px;}
.y17b{bottom:347.347650px;}
.y199{bottom:347.365650px;}
.y1ba{bottom:347.370150px;}
.y1cd{bottom:347.376150px;}
.y8a{bottom:347.383650px;}
.y108{bottom:347.392650px;}
.y160{bottom:347.397150px;}
.y14d{bottom:347.406150px;}
.ya8{bottom:347.410650px;}
.y6a{bottom:347.415150px;}
.y117{bottom:347.419650px;}
.yb8{bottom:347.428650px;}
.y13c{bottom:362.375550px;}
.y3e{bottom:362.510100px;}
.y1a{bottom:362.736000px;}
.y126{bottom:368.334150px;}
.y1ad{bottom:368.350650px;}
.y17a{bottom:368.352150px;}
.y198{bottom:368.370150px;}
.y1b9{bottom:368.374650px;}
.y1cc{bottom:368.380650px;}
.y89{bottom:368.388150px;}
.y107{bottom:368.397150px;}
.y15f{bottom:368.401650px;}
.y14c{bottom:368.410650px;}
.ya7{bottom:368.415150px;}
.y69{bottom:368.419650px;}
.y116{bottom:368.424150px;}
.yb7{bottom:368.433150px;}
.y13b{bottom:378.575550px;}
.y3d{bottom:378.710100px;}
.y19{bottom:378.936000px;}
.y125{bottom:389.338650px;}
.y1ac{bottom:389.355150px;}
.y179{bottom:389.356650px;}
.y197{bottom:389.374650px;}
.yd7{bottom:389.379150px;}
.y88{bottom:389.392650px;}
.y106{bottom:389.401650px;}
.y15e{bottom:389.406150px;}
.y14b{bottom:389.415150px;}
.ya6{bottom:389.419650px;}
.y68{bottom:389.424150px;}
.y115{bottom:389.428650px;}
.y13a{bottom:394.775550px;}
.y3c{bottom:394.910100px;}
.y18{bottom:395.136000px;}
.y124{bottom:410.343150px;}
.y1ab{bottom:410.359650px;}
.y178{bottom:410.361150px;}
.y1cb{bottom:410.373150px;}
.y196{bottom:410.379150px;}
.yd6{bottom:410.383650px;}
.y87{bottom:410.397150px;}
.y105{bottom:410.406150px;}
.y15d{bottom:410.410650px;}
.y14a{bottom:410.419650px;}
.ya5{bottom:410.424150px;}
.y67{bottom:410.428650px;}
.yef{bottom:410.433150px;}
.y3b{bottom:411.110100px;}
.y3a{bottom:427.310100px;}
.y17{bottom:427.536000px;}
.y66{bottom:431.347650px;}
.y1e2{bottom:431.364150px;}
.y177{bottom:431.365650px;}
.y195{bottom:431.383650px;}
.yd5{bottom:431.388150px;}
.y86{bottom:431.401650px;}
.y104{bottom:431.410650px;}
.y15c{bottom:431.415150px;}
.y139{bottom:431.424150px;}
.ya4{bottom:431.428650px;}
.yee{bottom:431.433150px;}
.y39{bottom:443.510100px;}
.y16{bottom:444.033000px;}
.y65{bottom:452.352150px;}
.y1e1{bottom:452.368650px;}
.y176{bottom:452.370150px;}
.y194{bottom:452.388150px;}
.yd4{bottom:452.392650px;}
.y85{bottom:452.406150px;}
.ya3{bottom:452.410650px;}
.y103{bottom:452.415150px;}
.y15b{bottom:452.419650px;}
.y138{bottom:452.428650px;}
.yed{bottom:452.433150px;}
.y38{bottom:459.710100px;}
.y15{bottom:460.233000px;}
.y64{bottom:473.356650px;}
.y1ca{bottom:473.370150px;}
.y1e0{bottom:473.373150px;}
.y175{bottom:473.374650px;}
.y193{bottom:473.392650px;}
.yd3{bottom:473.397150px;}
.y84{bottom:473.410650px;}
.ya2{bottom:473.415150px;}
.y102{bottom:473.419650px;}
.y15a{bottom:473.424150px;}
.yec{bottom:473.433150px;}
.y37{bottom:475.910100px;}
.y14{bottom:476.433000px;}
.y36{bottom:478.905600px;}
.y13{bottom:492.633000px;}
.y63{bottom:494.361150px;}
.y1c9{bottom:494.374650px;}
.y1df{bottom:494.377650px;}
.y174{bottom:494.379150px;}
.y192{bottom:494.397150px;}
.yd2{bottom:494.401650px;}
.y114{bottom:494.413650px;}
.y83{bottom:494.415150px;}
.ya1{bottom:494.419650px;}
.y101{bottom:494.424150px;}
.y159{bottom:494.428650px;}
.yeb{bottom:494.433150px;}
.y12{bottom:508.833000px;}
.y62{bottom:515.365650px;}
.y1c8{bottom:515.379150px;}
.y1de{bottom:515.382150px;}
.y173{bottom:515.383650px;}
.y191{bottom:515.401650px;}
.yd1{bottom:515.406150px;}
.y113{bottom:515.418150px;}
.y82{bottom:515.419650px;}
.ya0{bottom:515.424150px;}
.y100{bottom:515.428650px;}
.y35{bottom:515.433150px;}
.y11{bottom:525.033000px;}
.y61{bottom:536.370150px;}
.y1c7{bottom:536.383650px;}
.y1dd{bottom:536.386650px;}
.y172{bottom:536.388150px;}
.y190{bottom:536.406150px;}
.yd0{bottom:536.410650px;}
.y81{bottom:536.424150px;}
.y9f{bottom:536.428650px;}
.y34{bottom:536.433150px;}
.y10{bottom:541.233000px;}
.y60{bottom:557.374650px;}
.y1c6{bottom:557.388150px;}
.y1dc{bottom:557.391150px;}
.y171{bottom:557.392650px;}
.y18f{bottom:557.410650px;}
.ycf{bottom:557.415150px;}
.y80{bottom:557.428650px;}
.y33{bottom:557.433150px;}
.y5f{bottom:578.379150px;}
.y1c5{bottom:578.392650px;}
.y1db{bottom:578.395650px;}
.y170{bottom:578.397150px;}
.y7f{bottom:578.410650px;}
.y1f2{bottom:578.412150px;}
.y112{bottom:578.415150px;}
.yce{bottom:578.419650px;}
.yff{bottom:578.428650px;}
.yf{bottom:578.433000px;}
.y32{bottom:578.433150px;}
.y5e{bottom:599.383650px;}
.y1c4{bottom:599.397150px;}
.y1da{bottom:599.400150px;}
.y16f{bottom:599.401650px;}
.y7e{bottom:599.415150px;}
.y1f1{bottom:599.416650px;}
.y111{bottom:599.419650px;}
.ycd{bottom:599.424150px;}
.y9e{bottom:599.428650px;}
.ye{bottom:599.433000px;}
.yea{bottom:599.433150px;}
.y5d{bottom:620.388150px;}
.y1c3{bottom:620.401650px;}
.y1d9{bottom:620.404650px;}
.y16e{bottom:620.406150px;}
.y31{bottom:620.419650px;}
.y1f0{bottom:620.421150px;}
.y110{bottom:620.424150px;}
.ycc{bottom:620.428650px;}
.y9d{bottom:620.433150px;}
.y5c{bottom:641.392650px;}
.y1c2{bottom:641.406150px;}
.y1d8{bottom:641.409150px;}
.y16d{bottom:641.410650px;}
.y30{bottom:641.424150px;}
.y1ef{bottom:641.425650px;}
.y10f{bottom:641.428650px;}
.yd{bottom:641.433000px;}
.y5b{bottom:662.397150px;}
.ye9{bottom:662.406150px;}
.y1c1{bottom:662.410650px;}
.y9c{bottom:662.413650px;}
.y16c{bottom:662.415150px;}
.y2f{bottom:662.428650px;}
.y1ee{bottom:662.430150px;}
.yc{bottom:662.433000px;}
.y10e{bottom:662.433150px;}
.y5a{bottom:683.401650px;}
.ycb{bottom:683.410650px;}
.y7d{bottom:683.415150px;}
.y9b{bottom:683.418150px;}
.y2e{bottom:683.419650px;}
.yb{bottom:683.433000px;}
.y59{bottom:704.406150px;}
.yca{bottom:704.415150px;}
.y7c{bottom:704.419650px;}
.y9a{bottom:704.422650px;}
.y2d{bottom:704.424150px;}
.y18e{bottom:704.428650px;}
.ya{bottom:704.439000px;}
.y58{bottom:725.410650px;}
.yc9{bottom:725.419650px;}
.y7b{bottom:725.424150px;}
.y1d7{bottom:725.427150px;}
.y2c{bottom:725.428650px;}
.y18d{bottom:725.433150px;}
.y57{bottom:746.415150px;}
.yc8{bottom:746.424150px;}
.y7a{bottom:746.428650px;}
.y9{bottom:746.431500px;}
.y2b{bottom:746.431650px;}
.y16b{bottom:746.433150px;}
.y56{bottom:767.419650px;}
.y79{bottom:767.424150px;}
.yc7{bottom:767.428650px;}
.y1c0{bottom:767.433150px;}
.y8{bottom:767.436000px;}
.y2a{bottom:767.436150px;}
.y55{bottom:788.424150px;}
.y78{bottom:788.428650px;}
.y29{bottom:788.440650px;}
.y7{bottom:809.428500px;}
.y54{bottom:809.428650px;}
.y6{bottom:830.433000px;}
.y28{bottom:830.433150px;}
.h3{height:21.510000px;}
.h4{height:22.740000px;}
.h10{height:28.100145px;}
.h2{height:33.117188px;}
.h24{height:36.217219px;}
.h1b{height:36.217819px;}
.h17{height:36.413086px;}
.ha{height:37.256836px;}
.h18{height:40.869000px;}
.hc{height:41.308594px;}
.h8{height:42.843750px;}
.h1d{height:44.504883px;}
.h6{height:44.601562px;}
.h28{height:45.439453px;}
.h5{height:45.536133px;}
.hd{height:47.190000px;}
.h9{height:48.199219px;}
.hb{height:53.554688px;}
.h7{height:58.910156px;}
.he{height:58.916156px;}
.h13{height:58.928156px;}
.h14{height:58.946156px;}
.hf{height:58.964156px;}
.h15{height:58.982156px;}
.h16{height:59.000156px;}
.h1c{height:59.036156px;}
.h19{height:59.054156px;}
.h27{height:59.072156px;}
.h12{height:59.090156px;}
.h23{height:59.126156px;}
.h1f{height:59.162156px;}
.h21{height:59.180156px;}
.h20{height:59.216156px;}
.h25{height:59.228156px;}
.h1a{height:59.234156px;}
.h11{height:59.252156px;}
.h22{height:59.306156px;}
.h1e{height:59.414156px;}
.h26{height:59.468156px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.xf{left:31.449300px;}
.x2{left:73.500000px;}
.x13{left:86.811150px;}
.x12{left:88.041300px;}
.x16{left:91.497750px;}
.x11{left:100.496700px;}
.xd{left:109.500000px;}
.x3{left:125.220300px;}
.x15{left:131.134500px;}
.x5{left:138.832800px;}
.x19{left:141.777000px;}
.x18{left:149.070000px;}
.xb{left:151.024200px;}
.x14{left:160.900500px;}
.xc{left:164.920200px;}
.x4{left:168.103800px;}
.x17{left:173.380500px;}
.x7{left:196.368300px;}
.x6{left:217.702800px;}
.x8{left:221.416200px;}
.xa{left:227.944200px;}
.xe{left:238.095000px;}
.x9{left:243.004200px;}
.x10{left:249.177900px;}
.x1b{left:254.469300px;}
.x1a{left:262.992000px;}
.x1c{left:289.247100px;}
.x1{left:586.851750px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v4{vertical-align:-10.650133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.541333pt;}
.ls13{letter-spacing:-10.346667pt;}
.ls6e{letter-spacing:-6.336000pt;}
.ls48{letter-spacing:-5.397333pt;}
.ls36{letter-spacing:-2.786667pt;}
.ls47{letter-spacing:-2.757333pt;}
.ls41{letter-spacing:-2.256000pt;}
.ls4{letter-spacing:-2.240000pt;}
.ls5d{letter-spacing:-1.349333pt;}
.ls58{letter-spacing:-1.290667pt;}
.ls5b{letter-spacing:-1.173333pt;}
.ls61{letter-spacing:-1.114667pt;}
.ls5f{letter-spacing:-1.056000pt;}
.ls5e{letter-spacing:-0.997333pt;}
.ls3a{letter-spacing:-0.938667pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls3e{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.821333pt;}
.ls20{letter-spacing:-0.816000pt;}
.ls38{letter-spacing:-0.762667pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls40{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.666667pt;}
.ls17{letter-spacing:-0.645333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls57{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.506667pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls62{letter-spacing:-0.478837pt;}
.ls27{letter-spacing:-0.469333pt;}
.ls39{letter-spacing:-0.444635pt;}
.lsd{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.410667pt;}
.ls5c{letter-spacing:-0.391776pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.376229pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.352000pt;}
.ls3f{letter-spacing:-0.342027pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls65{letter-spacing:-0.335808pt;}
.ls22{letter-spacing:-0.307824pt;}
.ls28{letter-spacing:-0.293333pt;}
.ls56{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.279840pt;}
.ls51{letter-spacing:-0.273621pt;}
.ls1e{letter-spacing:-0.251856pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.234667pt;}
.ls4d{letter-spacing:-0.213333pt;}
.ls43{letter-spacing:-0.205216pt;}
.ls4e{letter-spacing:-0.195888pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.176000pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.139920pt;}
.ls8{letter-spacing:-0.133333pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls34{letter-spacing:-0.111936pt;}
.ls42{letter-spacing:-0.102608pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls2f{letter-spacing:-0.083952pt;}
.ls50{letter-spacing:-0.068405pt;}
.ls2a{letter-spacing:-0.058667pt;}
.ls5a{letter-spacing:-0.055968pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls59{letter-spacing:-0.034203pt;}
.ls2{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.027984pt;}
.ls32{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.058667pt;}
.ls4f{letter-spacing:0.096000pt;}
.ls60{letter-spacing:0.102608pt;}
.ls1{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.117333pt;}
.ls69{letter-spacing:0.134933pt;}
.ls55{letter-spacing:0.139920pt;}
.ls6d{letter-spacing:0.140800pt;}
.ls1b{letter-spacing:0.167904pt;}
.ls35{letter-spacing:0.176000pt;}
.ls4b{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.234667pt;}
.ls54{letter-spacing:0.240000pt;}
.ls4a{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.288000pt;}
.ls46{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.352000pt;}
.ls23{letter-spacing:0.410667pt;}
.ls45{letter-spacing:0.444635pt;}
.ls9{letter-spacing:0.469333pt;}
.ls68{letter-spacing:0.528000pt;}
.ls63{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.645333pt;}
.ls64{letter-spacing:0.704000pt;}
.ls44{letter-spacing:0.762667pt;}
.ls6c{letter-spacing:0.821333pt;}
.ls49{letter-spacing:0.853333pt;}
.ls67{letter-spacing:0.938667pt;}
.ls6b{letter-spacing:1.114667pt;}
.ls53{letter-spacing:2.587200pt;}
.ls6a{letter-spacing:2.698667pt;}
.ls52{letter-spacing:2.716267pt;}
.ls66{letter-spacing:3.285333pt;}
.wsd8{word-spacing:-14.725333pt;}
.ws7b{word-spacing:-14.666667pt;}
.wsa8{word-spacing:-14.608000pt;}
.wsd9{word-spacing:-14.432000pt;}
.wse1{word-spacing:-14.373333pt;}
.wsbb{word-spacing:-14.314667pt;}
.wsdc{word-spacing:-14.197333pt;}
.wsdb{word-spacing:-14.138667pt;}
.ws62{word-spacing:-14.080000pt;}
.wsd6{word-spacing:-14.021333pt;}
.wsdd{word-spacing:-13.962667pt;}
.ws53{word-spacing:-13.904000pt;}
.wsda{word-spacing:-13.845333pt;}
.wsd7{word-spacing:-13.786667pt;}
.wsde{word-spacing:-13.493333pt;}
.ws19{word-spacing:-12.800000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws56{word-spacing:-11.760000pt;}
.ws1a{word-spacing:-11.568000pt;}
.ws57{word-spacing:-11.520000pt;}
.ws1b{word-spacing:-11.088000pt;}
.ws0{word-spacing:-10.773333pt;}
.ws64{word-spacing:-9.744000pt;}
.ws7a{word-spacing:-9.269333pt;}
.ws79{word-spacing:-8.995301pt;}
.wsc8{word-spacing:-8.653275pt;}
.ws17{word-spacing:-8.550667pt;}
.wsb4{word-spacing:-8.516464pt;}
.ws95{word-spacing:-8.482261pt;}
.ws77{word-spacing:-8.448059pt;}
.ws78{word-spacing:-8.345451pt;}
.wse3{word-spacing:-8.330667pt;}
.ws96{word-spacing:-8.277045pt;}
.ws63{word-spacing:-8.208640pt;}
.ws55{word-spacing:-8.174437pt;}
.ws54{word-spacing:-8.106032pt;}
.wscb{word-spacing:-8.071829pt;}
.ws18{word-spacing:-7.773333pt;}
.ws34{word-spacing:-6.666667pt;}
.ws35{word-spacing:-6.533333pt;}
.wsb7{word-spacing:-3.696000pt;}
.ws14{word-spacing:-2.613333pt;}
.wsb6{word-spacing:-1.760000pt;}
.ws5d{word-spacing:-1.642667pt;}
.ws6d{word-spacing:-1.525333pt;}
.ws1d{word-spacing:-1.466667pt;}
.ws47{word-spacing:-1.408000pt;}
.ws70{word-spacing:-1.290667pt;}
.ws4d{word-spacing:-1.232000pt;}
.wsa{word-spacing:-1.200000pt;}
.ws99{word-spacing:-1.173333pt;}
.ws7c{word-spacing:-1.114667pt;}
.ws97{word-spacing:-1.056000pt;}
.ws8e{word-spacing:-1.013333pt;}
.ws5f{word-spacing:-1.008000pt;}
.ws89{word-spacing:-0.997333pt;}
.ws61{word-spacing:-0.960000pt;}
.wsbe{word-spacing:-0.938667pt;}
.ws76{word-spacing:-0.912000pt;}
.ws16{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.880000pt;}
.ws32{word-spacing:-0.864000pt;}
.ws3c{word-spacing:-0.821333pt;}
.ws46{word-spacing:-0.768000pt;}
.wsaa{word-spacing:-0.762667pt;}
.wsa5{word-spacing:-0.704000pt;}
.wsa2{word-spacing:-0.645333pt;}
.ws11{word-spacing:-0.624000pt;}
.wscd{word-spacing:-0.586667pt;}
.wsac{word-spacing:-0.528000pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.469333pt;}
.ws31{word-spacing:-0.432000pt;}
.ws30{word-spacing:-0.384000pt;}
.ws49{word-spacing:-0.352000pt;}
.ws8{word-spacing:-0.341333pt;}
.ws71{word-spacing:-0.293333pt;}
.ws72{word-spacing:-0.251856pt;}
.wsad{word-spacing:-0.240000pt;}
.ws1e{word-spacing:-0.234667pt;}
.ws24{word-spacing:-0.213333pt;}
.ws93{word-spacing:-0.192000pt;}
.wsa9{word-spacing:-0.176000pt;}
.ws2f{word-spacing:-0.144000pt;}
.wsc9{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.096000pt;}
.ws7e{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.048000pt;}
.wsc0{word-spacing:0.058667pt;}
.ws86{word-spacing:0.096000pt;}
.ws3b{word-spacing:0.117333pt;}
.wsb2{word-spacing:0.144000pt;}
.wsa4{word-spacing:0.176000pt;}
.ws8d{word-spacing:0.213333pt;}
.ws36{word-spacing:0.234667pt;}
.ws75{word-spacing:0.240000pt;}
.wsd2{word-spacing:0.279840pt;}
.wsae{word-spacing:0.288000pt;}
.ws66{word-spacing:0.293333pt;}
.wsd5{word-spacing:0.335808pt;}
.ws74{word-spacing:0.336000pt;}
.ws6f{word-spacing:0.342027pt;}
.ws9e{word-spacing:0.352000pt;}
.ws88{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.410667pt;}
.ws7{word-spacing:0.426667pt;}
.wsa7{word-spacing:0.432000pt;}
.ws39{word-spacing:0.469333pt;}
.ws9{word-spacing:0.480000pt;}
.ws5e{word-spacing:0.528000pt;}
.ws27{word-spacing:0.576000pt;}
.ws21{word-spacing:0.586667pt;}
.wsb3{word-spacing:0.624000pt;}
.wsc2{word-spacing:0.645333pt;}
.wsf{word-spacing:0.672000pt;}
.wsc7{word-spacing:0.699600pt;}
.ws6c{word-spacing:0.704000pt;}
.ws5{word-spacing:0.720000pt;}
.ws8b{word-spacing:0.746667pt;}
.ws83{word-spacing:0.762667pt;}
.wsa1{word-spacing:0.768000pt;}
.ws85{word-spacing:0.816000pt;}
.wsc5{word-spacing:0.821333pt;}
.ws82{word-spacing:0.880000pt;}
.ws33{word-spacing:0.912000pt;}
.ws43{word-spacing:0.938667pt;}
.wsb5{word-spacing:0.997333pt;}
.wsbc{word-spacing:1.008000pt;}
.ws7d{word-spacing:1.056000pt;}
.ws9d{word-spacing:1.114667pt;}
.ws23{word-spacing:1.120000pt;}
.wscf{word-spacing:1.152000pt;}
.wsa3{word-spacing:1.173333pt;}
.wsc{word-spacing:1.200000pt;}
.ws51{word-spacing:1.232000pt;}
.wse{word-spacing:1.248000pt;}
.ws6e{word-spacing:1.290667pt;}
.wsd{word-spacing:1.296000pt;}
.ws22{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.344000pt;}
.ws68{word-spacing:1.349333pt;}
.ws15{word-spacing:1.386667pt;}
.ws87{word-spacing:1.392000pt;}
.ws84{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.440000pt;}
.ws1c{word-spacing:1.466667pt;}
.ws67{word-spacing:1.525333pt;}
.ws44{word-spacing:1.536000pt;}
.ws3f{word-spacing:1.584000pt;}
.wsaf{word-spacing:1.632000pt;}
.ws48{word-spacing:1.642667pt;}
.ws65{word-spacing:1.701333pt;}
.ws8f{word-spacing:1.706667pt;}
.ws2c{word-spacing:1.728000pt;}
.ws5a{word-spacing:1.760000pt;}
.ws73{word-spacing:1.776000pt;}
.wsb9{word-spacing:1.818667pt;}
.ws29{word-spacing:1.824000pt;}
.ws42{word-spacing:1.877333pt;}
.ws45{word-spacing:1.920000pt;}
.ws41{word-spacing:1.936000pt;}
.ws9b{word-spacing:1.968000pt;}
.wsc3{word-spacing:1.994667pt;}
.wsba{word-spacing:2.016000pt;}
.ws50{word-spacing:2.053333pt;}
.ws12{word-spacing:2.064000pt;}
.wsb0{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.170667pt;}
.ws60{word-spacing:2.208000pt;}
.ws8a{word-spacing:2.229333pt;}
.ws4{word-spacing:2.240000pt;}
.ws20{word-spacing:2.288000pt;}
.wsbf{word-spacing:2.346667pt;}
.wscc{word-spacing:2.352000pt;}
.ws4b{word-spacing:2.405333pt;}
.ws1f{word-spacing:2.464000pt;}
.ws9a{word-spacing:2.496000pt;}
.wsab{word-spacing:2.522667pt;}
.ws40{word-spacing:2.581333pt;}
.wsa0{word-spacing:2.640000pt;}
.wsb1{word-spacing:2.698667pt;}
.ws52{word-spacing:2.736000pt;}
.ws4c{word-spacing:2.757333pt;}
.ws94{word-spacing:2.784000pt;}
.ws58{word-spacing:2.786667pt;}
.wsb8{word-spacing:2.816000pt;}
.ws9c{word-spacing:2.832000pt;}
.ws92{word-spacing:2.874667pt;}
.ws6b{word-spacing:2.933333pt;}
.ws5b{word-spacing:2.992000pt;}
.ws4f{word-spacing:3.050667pt;}
.ws4a{word-spacing:3.109333pt;}
.ws90{word-spacing:3.168000pt;}
.ws69{word-spacing:3.226667pt;}
.ws28{word-spacing:3.264000pt;}
.ws6a{word-spacing:3.285333pt;}
.ws37{word-spacing:3.344000pt;}
.wsbd{word-spacing:3.402667pt;}
.wsc1{word-spacing:3.461333pt;}
.wsce{word-spacing:3.520000pt;}
.wsd0{word-spacing:3.578667pt;}
.wsc6{word-spacing:3.637333pt;}
.wsca{word-spacing:3.696000pt;}
.ws59{word-spacing:3.754667pt;}
.wsa6{word-spacing:3.813333pt;}
.ws26{word-spacing:3.840000pt;}
.ws98{word-spacing:3.872000pt;}
.ws3d{word-spacing:3.930667pt;}
.ws81{word-spacing:3.989333pt;}
.ws91{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws80{word-spacing:4.224000pt;}
.ws9f{word-spacing:4.400000pt;}
.ws3a{word-spacing:4.634667pt;}
.wsc4{word-spacing:4.752000pt;}
.wsd1{word-spacing:4.810667pt;}
.wsdf{word-spacing:4.928000pt;}
.ws38{word-spacing:5.104000pt;}
.wse0{word-spacing:5.514667pt;}
.wsd4{word-spacing:5.690667pt;}
.wsd3{word-spacing:6.277333pt;}
.wse5{word-spacing:6.453333pt;}
.ws7f{word-spacing:6.570667pt;}
.wse2{word-spacing:6.864000pt;}
.ws2{word-spacing:7.360000pt;}
.wse4{word-spacing:7.450667pt;}
.ws25{word-spacing:20.988000pt;}
._e{margin-left:-13.115733pt;}
._11{margin-left:-11.690667pt;}
._c{margin-left:-9.681600pt;}
._9{margin-left:-7.893333pt;}
._d{margin-left:-6.973333pt;}
._8{margin-left:-6.024000pt;}
._7{margin-left:-4.801067pt;}
._3{margin-left:-3.085867pt;}
._5{margin-left:-2.169600pt;}
._0{margin-left:-1.200000pt;}
._1{width:1.760533pt;}
._4{width:2.827733pt;}
._f{width:3.979200pt;}
._b{width:4.928000pt;}
._2{width:6.409067pt;}
._6{width:7.741867pt;}
._12{width:8.724267pt;}
._13{width:10.303467pt;}
._10{width:20.260416pt;}
._a{width:21.239856pt;}
.fs1{font-size:26.666667pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:21.683333pt;}
.y5{bottom:25.016667pt;}
.y52{bottom:31.016667pt;}
.y27{bottom:33.683333pt;}
.y4{bottom:38.350000pt;}
.y24{bottom:39.852267pt;}
.y1{bottom:39.907333pt;}
.y26{bottom:41.683333pt;}
.y51{bottom:43.016667pt;}
.y3{bottom:51.683333pt;}
.y25{bottom:52.350000pt;}
.y2{bottom:61.016667pt;}
.y50{bottom:64.350000pt;}
.yfe{bottom:102.666800pt;}
.y18c{bottom:103.360133pt;}
.y186{bottom:103.376133pt;}
.y1a4{bottom:103.392133pt;}
.y158{bottom:103.420667pt;}
.y137{bottom:103.444533pt;}
.y123{bottom:103.468533pt;}
.y99{bottom:103.476267pt;}
.y77{bottom:103.500267pt;}
.y1aa{bottom:103.508800pt;}
.ye8{bottom:103.516400pt;}
.yb6{bottom:103.540267pt;}
.y4f{bottom:103.564267pt;}
.yc6{bottom:103.748267pt;}
.yfd{bottom:105.329467pt;}
.y98{bottom:106.138933pt;}
.y1b6{bottom:106.171467pt;}
.ye7{bottom:106.179067pt;}
.yc5{bottom:106.410933pt;}
.y16a{bottom:117.066800pt;}
.y157{bottom:117.820667pt;}
.y136{bottom:117.844533pt;}
.y122{bottom:117.868533pt;}
.y76{bottom:117.900267pt;}
.y1a9{bottom:117.908800pt;}
.yb5{bottom:117.940267pt;}
.y4e{bottom:117.964267pt;}
.yfc{bottom:118.400267pt;}
.y97{bottom:119.209867pt;}
.ye6{bottom:119.249867pt;}
.yc4{bottom:119.481733pt;}
.y169{bottom:119.729467pt;}
.y18b{bottom:122.030800pt;}
.y1ed{bottom:122.045467pt;}
.y185{bottom:122.046800pt;}
.y1a3{bottom:122.062800pt;}
.y1d6{bottom:131.466800pt;}
.y156{bottom:132.220667pt;}
.y135{bottom:132.244533pt;}
.y121{bottom:132.268533pt;}
.y75{bottom:132.300267pt;}
.yb4{bottom:132.340267pt;}
.y4d{bottom:132.364267pt;}
.yfb{bottom:132.800267pt;}
.y96{bottom:133.609867pt;}
.ye5{bottom:133.649867pt;}
.yc3{bottom:133.881733pt;}
.y155{bottom:134.883333pt;}
.y1a8{bottom:134.971467pt;}
.y4c{bottom:135.026933pt;}
.y95{bottom:136.272533pt;}
.yc2{bottom:136.544400pt;}
.y18a{bottom:140.701467pt;}
.y1ec{bottom:140.716133pt;}
.y184{bottom:140.717467pt;}
.y1a2{bottom:140.733467pt;}
.y1b5{bottom:140.801467pt;}
.y23{bottom:140.829333pt;}
.y167{bottom:146.620667pt;}
.y134{bottom:146.644533pt;}
.y120{bottom:146.668533pt;}
.y74{bottom:146.700267pt;}
.yb3{bottom:146.740267pt;}
.yfa{bottom:147.200267pt;}
.ye4{bottom:148.049867pt;}
.y4b{bottom:148.097733pt;}
.y1d5{bottom:148.529467pt;}
.y166{bottom:149.283333pt;}
.y149{bottom:149.307200pt;}
.y11f{bottom:149.331200pt;}
.y94{bottom:149.343333pt;}
.y73{bottom:149.362933pt;}
.yc1{bottom:149.615200pt;}
.y189{bottom:159.372133pt;}
.y1eb{bottom:159.386800pt;}
.y183{bottom:159.388133pt;}
.y1a1{bottom:159.404133pt;}
.y1b8{bottom:159.448133pt;}
.y1b4{bottom:159.472133pt;}
.y22{bottom:159.496000pt;}
.y133{bottom:161.044533pt;}
.y12f{bottom:161.068533pt;}
.yb2{bottom:161.140267pt;}
.yf9{bottom:161.600267pt;}
.y148{bottom:162.378000pt;}
.y11e{bottom:162.402000pt;}
.y72{bottom:162.433733pt;}
.ye3{bottom:162.449867pt;}
.y4a{bottom:162.497733pt;}
.y93{bottom:163.743333pt;}
.yb1{bottom:163.802933pt;}
.yc0{bottom:164.015200pt;}
.y71{bottom:165.096400pt;}
.y132{bottom:175.444533pt;}
.y12e{bottom:175.468533pt;}
.yf8{bottom:176.000267pt;}
.y147{bottom:176.778000pt;}
.y11d{bottom:176.802000pt;}
.ye2{bottom:176.849867pt;}
.yb0{bottom:176.873733pt;}
.y49{bottom:176.897733pt;}
.y188{bottom:178.042800pt;}
.y1ea{bottom:178.057467pt;}
.y182{bottom:178.058800pt;}
.y1a0{bottom:178.074800pt;}
.y1d4{bottom:178.084133pt;}
.y1a7{bottom:178.090800pt;}
.y131{bottom:178.107200pt;}
.y154{bottom:178.110800pt;}
.y1b7{bottom:178.118800pt;}
.y1b3{bottom:178.142800pt;}
.y92{bottom:178.143333pt;}
.y165{bottom:178.154800pt;}
.y21{bottom:178.162667pt;}
.ybf{bottom:178.415200pt;}
.y91{bottom:180.805867pt;}
.y12d{bottom:189.868533pt;}
.yf7{bottom:190.400267pt;}
.y146{bottom:191.178000pt;}
.y11c{bottom:191.202000pt;}
.ye1{bottom:191.249867pt;}
.yaf{bottom:191.273733pt;}
.y48{bottom:191.297733pt;}
.y12c{bottom:192.531200pt;}
.ybe{bottom:192.815200pt;}
.y90{bottom:193.876667pt;}
.y8f{bottom:196.539333pt;}
.y187{bottom:196.713467pt;}
.y1e9{bottom:196.728133pt;}
.y181{bottom:196.729467pt;}
.y19f{bottom:196.745467pt;}
.y1d3{bottom:196.754800pt;}
.y1a6{bottom:196.761467pt;}
.y153{bottom:196.781467pt;}
.y70{bottom:196.789467pt;}
.y1b2{bottom:196.813467pt;}
.y164{bottom:196.825467pt;}
.y20{bottom:196.829333pt;}
.yf6{bottom:204.800267pt;}
.y145{bottom:205.578000pt;}
.ye0{bottom:205.649867pt;}
.yae{bottom:205.673733pt;}
.y47{bottom:205.697733pt;}
.ybd{bottom:207.215200pt;}
.yf5{bottom:207.462933pt;}
.y130{bottom:215.384133pt;}
.y1e8{bottom:215.398800pt;}
.y180{bottom:215.400133pt;}
.y19e{bottom:215.416133pt;}
.y1bf{bottom:215.420133pt;}
.y1d2{bottom:215.425467pt;}
.y1a5{bottom:215.432133pt;}
.y152{bottom:215.452133pt;}
.y6f{bottom:215.460133pt;}
.y1b1{bottom:215.484133pt;}
.y1f{bottom:215.496000pt;}
.y163{bottom:215.496133pt;}
.y10d{bottom:219.200267pt;}
.y144{bottom:219.978000pt;}
.ydf{bottom:220.049867pt;}
.yad{bottom:220.073733pt;}
.y46{bottom:220.097733pt;}
.yf4{bottom:220.533733pt;}
.ybc{bottom:221.615200pt;}
.y10c{bottom:221.862933pt;}
.yac{bottom:222.736400pt;}
.yf3{bottom:223.196400pt;}
.y12b{bottom:234.054800pt;}
.y1e7{bottom:234.069467pt;}
.y17f{bottom:234.070800pt;}
.y19d{bottom:234.086800pt;}
.y1be{bottom:234.090800pt;}
.y1d1{bottom:234.096133pt;}
.y8e{bottom:234.102800pt;}
.y151{bottom:234.122800pt;}
.y6e{bottom:234.130800pt;}
.y11b{bottom:234.134800pt;}
.y168{bottom:234.142800pt;}
.y1b0{bottom:234.154800pt;}
.y143{bottom:234.378000pt;}
.yde{bottom:234.449867pt;}
.y45{bottom:234.497733pt;}
.y10b{bottom:234.933733pt;}
.ybb{bottom:236.015200pt;}
.ydd{bottom:237.112533pt;}
.y142{bottom:248.778000pt;}
.y44{bottom:248.897733pt;}
.y10a{bottom:249.333733pt;}
.ydc{bottom:250.183333pt;}
.y12a{bottom:252.725467pt;}
.y1e6{bottom:252.740133pt;}
.y17e{bottom:252.741467pt;}
.y19c{bottom:252.757467pt;}
.y1bd{bottom:252.761467pt;}
.y1d0{bottom:252.766800pt;}
.y8d{bottom:252.773467pt;}
.y150{bottom:252.793467pt;}
.yab{bottom:252.797467pt;}
.y6d{bottom:252.801467pt;}
.y11a{bottom:252.805467pt;}
.yf2{bottom:252.813467pt;}
.y162{bottom:252.825467pt;}
.yba{bottom:253.077733pt;}
.y141{bottom:263.178000pt;}
.y43{bottom:263.297733pt;}
.y1e{bottom:264.568000pt;}
.ydb{bottom:264.583333pt;}
.y140{bottom:265.840667pt;}
.y129{bottom:271.396133pt;}
.y1e5{bottom:271.410800pt;}
.y17d{bottom:271.412133pt;}
.y1af{bottom:271.425467pt;}
.y19b{bottom:271.428133pt;}
.y1bc{bottom:271.432133pt;}
.y1cf{bottom:271.437467pt;}
.y8c{bottom:271.444133pt;}
.y14f{bottom:271.464133pt;}
.yaa{bottom:271.468133pt;}
.y6c{bottom:271.472133pt;}
.y119{bottom:271.476133pt;}
.yf1{bottom:271.484133pt;}
.y161{bottom:271.496133pt;}
.y42{bottom:277.697733pt;}
.y13f{bottom:278.911600pt;}
.yda{bottom:278.983333pt;}
.y1d{bottom:279.232000pt;}
.yd9{bottom:281.646000pt;}
.y128{bottom:290.066800pt;}
.y1e4{bottom:290.081467pt;}
.y17c{bottom:290.082800pt;}
.y1ae{bottom:290.096133pt;}
.y19a{bottom:290.098800pt;}
.y1bb{bottom:290.102800pt;}
.y1ce{bottom:290.108133pt;}
.y8b{bottom:290.114800pt;}
.y109{bottom:290.122800pt;}
.y14e{bottom:290.134800pt;}
.ya9{bottom:290.138800pt;}
.y6b{bottom:290.142800pt;}
.y118{bottom:290.146800pt;}
.yf0{bottom:290.154800pt;}
.yb9{bottom:290.158800pt;}
.y41{bottom:292.097733pt;}
.y13e{bottom:293.311600pt;}
.y1c{bottom:293.632000pt;}
.yd8{bottom:294.716800pt;}
.y40{bottom:294.760400pt;}
.y13d{bottom:307.711600pt;}
.y3f{bottom:307.831200pt;}
.y1b{bottom:308.032000pt;}
.y127{bottom:308.737467pt;}
.y1e3{bottom:308.752133pt;}
.y17b{bottom:308.753467pt;}
.y199{bottom:308.769467pt;}
.y1ba{bottom:308.773467pt;}
.y1cd{bottom:308.778800pt;}
.y8a{bottom:308.785467pt;}
.y108{bottom:308.793467pt;}
.y160{bottom:308.797467pt;}
.y14d{bottom:308.805467pt;}
.ya8{bottom:308.809467pt;}
.y6a{bottom:308.813467pt;}
.y117{bottom:308.817467pt;}
.yb8{bottom:308.825467pt;}
.y13c{bottom:322.111600pt;}
.y3e{bottom:322.231200pt;}
.y1a{bottom:322.432000pt;}
.y126{bottom:327.408133pt;}
.y1ad{bottom:327.422800pt;}
.y17a{bottom:327.424133pt;}
.y198{bottom:327.440133pt;}
.y1b9{bottom:327.444133pt;}
.y1cc{bottom:327.449467pt;}
.y89{bottom:327.456133pt;}
.y107{bottom:327.464133pt;}
.y15f{bottom:327.468133pt;}
.y14c{bottom:327.476133pt;}
.ya7{bottom:327.480133pt;}
.y69{bottom:327.484133pt;}
.y116{bottom:327.488133pt;}
.yb7{bottom:327.496133pt;}
.y13b{bottom:336.511600pt;}
.y3d{bottom:336.631200pt;}
.y19{bottom:336.832000pt;}
.y125{bottom:346.078800pt;}
.y1ac{bottom:346.093467pt;}
.y179{bottom:346.094800pt;}
.y197{bottom:346.110800pt;}
.yd7{bottom:346.114800pt;}
.y88{bottom:346.126800pt;}
.y106{bottom:346.134800pt;}
.y15e{bottom:346.138800pt;}
.y14b{bottom:346.146800pt;}
.ya6{bottom:346.150800pt;}
.y68{bottom:346.154800pt;}
.y115{bottom:346.158800pt;}
.y13a{bottom:350.911600pt;}
.y3c{bottom:351.031200pt;}
.y18{bottom:351.232000pt;}
.y124{bottom:364.749467pt;}
.y1ab{bottom:364.764133pt;}
.y178{bottom:364.765467pt;}
.y1cb{bottom:364.776133pt;}
.y196{bottom:364.781467pt;}
.yd6{bottom:364.785467pt;}
.y87{bottom:364.797467pt;}
.y105{bottom:364.805467pt;}
.y15d{bottom:364.809467pt;}
.y14a{bottom:364.817467pt;}
.ya5{bottom:364.821467pt;}
.y67{bottom:364.825467pt;}
.yef{bottom:364.829467pt;}
.y3b{bottom:365.431200pt;}
.y3a{bottom:379.831200pt;}
.y17{bottom:380.032000pt;}
.y66{bottom:383.420133pt;}
.y1e2{bottom:383.434800pt;}
.y177{bottom:383.436133pt;}
.y195{bottom:383.452133pt;}
.yd5{bottom:383.456133pt;}
.y86{bottom:383.468133pt;}
.y104{bottom:383.476133pt;}
.y15c{bottom:383.480133pt;}
.y139{bottom:383.488133pt;}
.ya4{bottom:383.492133pt;}
.yee{bottom:383.496133pt;}
.y39{bottom:394.231200pt;}
.y16{bottom:394.696000pt;}
.y65{bottom:402.090800pt;}
.y1e1{bottom:402.105467pt;}
.y176{bottom:402.106800pt;}
.y194{bottom:402.122800pt;}
.yd4{bottom:402.126800pt;}
.y85{bottom:402.138800pt;}
.ya3{bottom:402.142800pt;}
.y103{bottom:402.146800pt;}
.y15b{bottom:402.150800pt;}
.y138{bottom:402.158800pt;}
.yed{bottom:402.162800pt;}
.y38{bottom:408.631200pt;}
.y15{bottom:409.096000pt;}
.y64{bottom:420.761467pt;}
.y1ca{bottom:420.773467pt;}
.y1e0{bottom:420.776133pt;}
.y175{bottom:420.777467pt;}
.y193{bottom:420.793467pt;}
.yd3{bottom:420.797467pt;}
.y84{bottom:420.809467pt;}
.ya2{bottom:420.813467pt;}
.y102{bottom:420.817467pt;}
.y15a{bottom:420.821467pt;}
.yec{bottom:420.829467pt;}
.y37{bottom:423.031200pt;}
.y14{bottom:423.496000pt;}
.y36{bottom:425.693867pt;}
.y13{bottom:437.896000pt;}
.y63{bottom:439.432133pt;}
.y1c9{bottom:439.444133pt;}
.y1df{bottom:439.446800pt;}
.y174{bottom:439.448133pt;}
.y192{bottom:439.464133pt;}
.yd2{bottom:439.468133pt;}
.y114{bottom:439.478800pt;}
.y83{bottom:439.480133pt;}
.ya1{bottom:439.484133pt;}
.y101{bottom:439.488133pt;}
.y159{bottom:439.492133pt;}
.yeb{bottom:439.496133pt;}
.y12{bottom:452.296000pt;}
.y62{bottom:458.102800pt;}
.y1c8{bottom:458.114800pt;}
.y1de{bottom:458.117467pt;}
.y173{bottom:458.118800pt;}
.y191{bottom:458.134800pt;}
.yd1{bottom:458.138800pt;}
.y113{bottom:458.149467pt;}
.y82{bottom:458.150800pt;}
.ya0{bottom:458.154800pt;}
.y100{bottom:458.158800pt;}
.y35{bottom:458.162800pt;}
.y11{bottom:466.696000pt;}
.y61{bottom:476.773467pt;}
.y1c7{bottom:476.785467pt;}
.y1dd{bottom:476.788133pt;}
.y172{bottom:476.789467pt;}
.y190{bottom:476.805467pt;}
.yd0{bottom:476.809467pt;}
.y81{bottom:476.821467pt;}
.y9f{bottom:476.825467pt;}
.y34{bottom:476.829467pt;}
.y10{bottom:481.096000pt;}
.y60{bottom:495.444133pt;}
.y1c6{bottom:495.456133pt;}
.y1dc{bottom:495.458800pt;}
.y171{bottom:495.460133pt;}
.y18f{bottom:495.476133pt;}
.ycf{bottom:495.480133pt;}
.y80{bottom:495.492133pt;}
.y33{bottom:495.496133pt;}
.y5f{bottom:514.114800pt;}
.y1c5{bottom:514.126800pt;}
.y1db{bottom:514.129467pt;}
.y170{bottom:514.130800pt;}
.y7f{bottom:514.142800pt;}
.y1f2{bottom:514.144133pt;}
.y112{bottom:514.146800pt;}
.yce{bottom:514.150800pt;}
.yff{bottom:514.158800pt;}
.yf{bottom:514.162667pt;}
.y32{bottom:514.162800pt;}
.y5e{bottom:532.785467pt;}
.y1c4{bottom:532.797467pt;}
.y1da{bottom:532.800133pt;}
.y16f{bottom:532.801467pt;}
.y7e{bottom:532.813467pt;}
.y1f1{bottom:532.814800pt;}
.y111{bottom:532.817467pt;}
.ycd{bottom:532.821467pt;}
.y9e{bottom:532.825467pt;}
.ye{bottom:532.829333pt;}
.yea{bottom:532.829467pt;}
.y5d{bottom:551.456133pt;}
.y1c3{bottom:551.468133pt;}
.y1d9{bottom:551.470800pt;}
.y16e{bottom:551.472133pt;}
.y31{bottom:551.484133pt;}
.y1f0{bottom:551.485467pt;}
.y110{bottom:551.488133pt;}
.ycc{bottom:551.492133pt;}
.y9d{bottom:551.496133pt;}
.y5c{bottom:570.126800pt;}
.y1c2{bottom:570.138800pt;}
.y1d8{bottom:570.141467pt;}
.y16d{bottom:570.142800pt;}
.y30{bottom:570.154800pt;}
.y1ef{bottom:570.156133pt;}
.y10f{bottom:570.158800pt;}
.yd{bottom:570.162667pt;}
.y5b{bottom:588.797467pt;}
.ye9{bottom:588.805467pt;}
.y1c1{bottom:588.809467pt;}
.y9c{bottom:588.812133pt;}
.y16c{bottom:588.813467pt;}
.y2f{bottom:588.825467pt;}
.y1ee{bottom:588.826800pt;}
.yc{bottom:588.829333pt;}
.y10e{bottom:588.829467pt;}
.y5a{bottom:607.468133pt;}
.ycb{bottom:607.476133pt;}
.y7d{bottom:607.480133pt;}
.y9b{bottom:607.482800pt;}
.y2e{bottom:607.484133pt;}
.yb{bottom:607.496000pt;}
.y59{bottom:626.138800pt;}
.yca{bottom:626.146800pt;}
.y7c{bottom:626.150800pt;}
.y9a{bottom:626.153467pt;}
.y2d{bottom:626.154800pt;}
.y18e{bottom:626.158800pt;}
.ya{bottom:626.168000pt;}
.y58{bottom:644.809467pt;}
.yc9{bottom:644.817467pt;}
.y7b{bottom:644.821467pt;}
.y1d7{bottom:644.824133pt;}
.y2c{bottom:644.825467pt;}
.y18d{bottom:644.829467pt;}
.y57{bottom:663.480133pt;}
.yc8{bottom:663.488133pt;}
.y7a{bottom:663.492133pt;}
.y9{bottom:663.494667pt;}
.y2b{bottom:663.494800pt;}
.y16b{bottom:663.496133pt;}
.y56{bottom:682.150800pt;}
.y79{bottom:682.154800pt;}
.yc7{bottom:682.158800pt;}
.y1c0{bottom:682.162800pt;}
.y8{bottom:682.165333pt;}
.y2a{bottom:682.165467pt;}
.y55{bottom:700.821467pt;}
.y78{bottom:700.825467pt;}
.y29{bottom:700.836133pt;}
.y7{bottom:719.492000pt;}
.y54{bottom:719.492133pt;}
.y6{bottom:738.162667pt;}
.y28{bottom:738.162800pt;}
.h3{height:19.120000pt;}
.h4{height:20.213333pt;}
.h10{height:24.977906pt;}
.h2{height:29.437500pt;}
.h24{height:32.193083pt;}
.h1b{height:32.193617pt;}
.h17{height:32.367188pt;}
.ha{height:33.117188pt;}
.h18{height:36.328000pt;}
.hc{height:36.718750pt;}
.h8{height:38.083333pt;}
.h1d{height:39.559896pt;}
.h6{height:39.645833pt;}
.h28{height:40.390625pt;}
.h5{height:40.476562pt;}
.hd{height:41.946667pt;}
.h9{height:42.843750pt;}
.hb{height:47.604167pt;}
.h7{height:52.364583pt;}
.he{height:52.369917pt;}
.h13{height:52.380583pt;}
.h14{height:52.396583pt;}
.hf{height:52.412583pt;}
.h15{height:52.428583pt;}
.h16{height:52.444583pt;}
.h1c{height:52.476583pt;}
.h19{height:52.492583pt;}
.h27{height:52.508583pt;}
.h12{height:52.524583pt;}
.h23{height:52.556583pt;}
.h1f{height:52.588583pt;}
.h21{height:52.604583pt;}
.h20{height:52.636583pt;}
.h25{height:52.647250pt;}
.h1a{height:52.652583pt;}
.h11{height:52.668583pt;}
.h22{height:52.716583pt;}
.h1e{height:52.812583pt;}
.h26{height:52.860583pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.xf{left:27.954933pt;}
.x2{left:65.333333pt;}
.x13{left:77.165467pt;}
.x12{left:78.258933pt;}
.x16{left:81.331333pt;}
.x11{left:89.330400pt;}
.xd{left:97.333333pt;}
.x3{left:111.306933pt;}
.x15{left:116.564000pt;}
.x5{left:123.406933pt;}
.x19{left:126.024000pt;}
.x18{left:132.506667pt;}
.xb{left:134.243733pt;}
.x14{left:143.022667pt;}
.xc{left:146.595733pt;}
.x4{left:149.425600pt;}
.x17{left:154.116000pt;}
.x7{left:174.549600pt;}
.x6{left:193.513600pt;}
.x8{left:196.814400pt;}
.xa{left:202.617067pt;}
.xe{left:211.640000pt;}
.x9{left:216.003733pt;}
.x10{left:221.491467pt;}
.x1b{left:226.194933pt;}
.x1a{left:233.770667pt;}
.x1c{left:257.108533pt;}
.x1{left:521.646000pt;}
}




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