
    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_bb0bf86a0ea6a7cc1a990131.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_8b56cddc7a140d05246400ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_138901f29456a3e64f2d3333.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_801927d923422aa0c246593a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_d7d433d6719b4ecca4055d08.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_bf1181b85de166b560fee600.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_7a4fde8f47afe27629294ed6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_f2ea637e59473bec972111fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_d5a0166cebcfdf97f2f3495d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-22.200000px;}
.v5{vertical-align:-14.328000px;}
.v6{vertical-align:-12.828000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:23.328000px;}
.v4{vertical-align:26.592000px;}
.ls37{letter-spacing:-7.200000px;}
.ls54{letter-spacing:-6.600000px;}
.ls38{letter-spacing:-4.608000px;}
.ls48{letter-spacing:-3.168000px;}
.ls4a{letter-spacing:-3.096000px;}
.ls49{letter-spacing:-2.808000px;}
.ls70{letter-spacing:-2.574000px;}
.ls69{letter-spacing:-2.442000px;}
.ls1f{letter-spacing:-1.254000px;}
.ls75{letter-spacing:-0.990000px;}
.ls22{letter-spacing:-0.969000px;}
.ls36{letter-spacing:-0.936000px;}
.ls35{letter-spacing:-0.864000px;}
.ls71{letter-spacing:-0.858000px;}
.ls14{letter-spacing:-0.792000px;}
.ls53{letter-spacing:-0.726000px;}
.ls12{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.660000px;}
.ls34{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.627000px;}
.ls13{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.570000px;}
.ls6f{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.504000px;}
.ls67{letter-spacing:-0.462000px;}
.ls42{letter-spacing:-0.441000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls43{letter-spacing:-0.315000px;}
.ls7{letter-spacing:-0.300000px;}
.ls2e{letter-spacing:-0.288000px;}
.ls66{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.198000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls51{letter-spacing:-0.132000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.066000px;}
.ls39{letter-spacing:-0.063000px;}
.ls6{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.011400px;}
.ls19{letter-spacing:0.063000px;}
.ls6b{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.072000px;}
.ls60{letter-spacing:0.087600px;}
.ls33{letter-spacing:0.126000px;}
.ls61{letter-spacing:0.132000px;}
.ls18{letter-spacing:0.144000px;}
.lse{letter-spacing:0.189000px;}
.ls72{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.229200px;}
.ls5a{letter-spacing:0.264000px;}
.ls44{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.330000px;}
.ls1d{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.441000px;}
.ls5b{letter-spacing:0.462000px;}
.ls1c{letter-spacing:0.504000px;}
.ls3b{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.726000px;}
.ls3c{letter-spacing:0.741600px;}
.lsc{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.799200px;}
.ls32{letter-spacing:0.864000px;}
.ls3e{letter-spacing:0.892800px;}
.ls2c{letter-spacing:0.936000px;}
.ls57{letter-spacing:0.990000px;}
.ls55{letter-spacing:1.056000px;}
.ls5e{letter-spacing:1.122000px;}
.ls29{letter-spacing:1.152000px;}
.ls63{letter-spacing:1.254000px;}
.ls2b{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.368000px;}
.ls73{letter-spacing:1.399200px;}
.ls5f{letter-spacing:1.782000px;}
.ls3a{letter-spacing:1.821600px;}
.ls68{letter-spacing:2.046000px;}
.ls74{letter-spacing:2.798400px;}
.ls3f{letter-spacing:3.150000px;}
.ls24{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.ls15{letter-spacing:4.473000px;}
.ls46{letter-spacing:4.687200px;}
.ls45{letter-spacing:4.752000px;}
.ls41{letter-spacing:4.896000px;}
.ls31{letter-spacing:5.400000px;}
.ls2f{letter-spacing:5.886000px;}
.ls3{letter-spacing:6.000000px;}
.ls6e{letter-spacing:6.355800px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls40{letter-spacing:9.165600px;}
.ls8{letter-spacing:10.098000px;}
.ls2{letter-spacing:10.200000px;}
.ls5c{letter-spacing:10.494000px;}
.ls6a{letter-spacing:10.626000px;}
.ls65{letter-spacing:10.692000px;}
.ls4f{letter-spacing:10.758000px;}
.ls62{letter-spacing:10.890000px;}
.ls4b{letter-spacing:10.956000px;}
.ls58{letter-spacing:11.286000px;}
.ls64{letter-spacing:11.550000px;}
.ls4c{letter-spacing:11.616000px;}
.ls4d{letter-spacing:11.682000px;}
.ls56{letter-spacing:11.946000px;}
.ls5d{letter-spacing:12.078000px;}
.ls6c{letter-spacing:19.800000px;}
.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;}
}
.ws79{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws2d{word-spacing:-20.592000px;}
.ws4f{word-spacing:-20.520000px;}
.ws2e{word-spacing:-20.232000px;}
.ws37{word-spacing:-19.872000px;}
.ws81{word-spacing:-19.800000px;}
.ws63{word-spacing:-18.678000px;}
.ws53{word-spacing:-18.576000px;}
.ws39{word-spacing:-18.546000px;}
.ws61{word-spacing:-18.084000px;}
.ws36{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws27{word-spacing:-17.784000px;}
.ws43{word-spacing:-17.703000px;}
.ws41{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws83{word-spacing:-16.500000px;}
.ws7a{word-spacing:-16.368000px;}
.ws62{word-spacing:-16.302000px;}
.ws57{word-spacing:-16.170000px;}
.ws60{word-spacing:-15.972000px;}
.ws42{word-spacing:-15.750000px;}
.ws33{word-spacing:-15.624000px;}
.ws7b{word-spacing:-15.576000px;}
.ws34{word-spacing:-15.561000px;}
.ws82{word-spacing:-15.312000px;}
.ws50{word-spacing:-15.246000px;}
.ws38{word-spacing:-12.139200px;}
.ws72{word-spacing:-12.078000px;}
.ws66{word-spacing:-11.946000px;}
.ws6b{word-spacing:-11.550000px;}
.ws68{word-spacing:-11.286000px;}
.ws58{word-spacing:-10.956000px;}
.ws6f{word-spacing:-10.890000px;}
.ws59{word-spacing:-10.758000px;}
.ws6d{word-spacing:-10.692000px;}
.ws77{word-spacing:-10.626000px;}
.ws19{word-spacing:-10.621800px;}
.ws70{word-spacing:-10.494000px;}
.ws7{word-spacing:-10.200000px;}
.ws8{word-spacing:-10.098000px;}
.ws17{word-spacing:-7.200000px;}
.ws5{word-spacing:-6.600000px;}
.ws9{word-spacing:-6.000000px;}
.ws3c{word-spacing:-5.886000px;}
.ws3e{word-spacing:-5.400000px;}
.ws2{word-spacing:-4.200000px;}
.ws30{word-spacing:-3.600000px;}
.ws4c{word-spacing:-3.150000px;}
.ws74{word-spacing:-2.046000px;}
.ws2c{word-spacing:-1.368000px;}
.ws32{word-spacing:-1.296000px;}
.ws64{word-spacing:-1.254000px;}
.ws2f{word-spacing:-1.152000px;}
.ws73{word-spacing:-1.122000px;}
.ws65{word-spacing:-1.056000px;}
.ws67{word-spacing:-0.990000px;}
.ws35{word-spacing:-0.936000px;}
.ws3f{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.726000px;}
.wsf{word-spacing:-0.720000px;}
.ws5d{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.630000px;}
.ws3d{word-spacing:-0.594000px;}
.ws4e{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.504000px;}
.ws6c{word-spacing:-0.462000px;}
.ws2a{word-spacing:-0.441000px;}
.ws12{word-spacing:-0.432000px;}
.ws7c{word-spacing:-0.396000px;}
.ws1f{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.288000px;}
.ws6a{word-spacing:-0.264000px;}
.ws1e{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.189000px;}
.ws20{word-spacing:-0.144000px;}
.ws76{word-spacing:-0.132000px;}
.ws49{word-spacing:-0.126000px;}
.ws14{word-spacing:-0.072000px;}
.ws78{word-spacing:-0.066000px;}
.ws1a{word-spacing:-0.063000px;}
.ws4b{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.037800px;}
.ws3{word-spacing:0.000000px;}
.ws4a{word-spacing:0.063000px;}
.wsb{word-spacing:0.066000px;}
.ws4d{word-spacing:0.072000px;}
.ws1b{word-spacing:0.126000px;}
.ws5b{word-spacing:0.132000px;}
.ws31{word-spacing:0.144000px;}
.ws5a{word-spacing:0.198000px;}
.ws1d{word-spacing:0.216000px;}
.ws6e{word-spacing:0.264000px;}
.ws3b{word-spacing:0.288000px;}
.ws6{word-spacing:0.300000px;}
.ws52{word-spacing:0.315000px;}
.wsc{word-spacing:0.330000px;}
.ws21{word-spacing:0.360000px;}
.ws3a{word-spacing:0.432000px;}
.ws51{word-spacing:0.441000px;}
.ws71{word-spacing:0.462000px;}
.wsd{word-spacing:0.504000px;}
.ws7d{word-spacing:0.528000px;}
.ws23{word-spacing:0.570000px;}
.ws15{word-spacing:0.576000px;}
.ws24{word-spacing:0.627000px;}
.ws44{word-spacing:0.648000px;}
.ws5c{word-spacing:0.660000px;}
.ws13{word-spacing:0.720000px;}
.ws80{word-spacing:0.726000px;}
.ws16{word-spacing:0.792000px;}
.ws7f{word-spacing:0.858000px;}
.ws45{word-spacing:0.864000px;}
.ws46{word-spacing:0.936000px;}
.ws25{word-spacing:0.969000px;}
.ws22{word-spacing:1.254000px;}
.ws75{word-spacing:2.442000px;}
.ws7e{word-spacing:2.574000px;}
.ws55{word-spacing:2.808000px;}
.ws56{word-spacing:3.096000px;}
.ws54{word-spacing:3.168000px;}
.ws4{word-spacing:3.360000px;}
.ws48{word-spacing:4.608000px;}
.ws28{word-spacing:5.040000px;}
.ws5f{word-spacing:6.600000px;}
.ws47{word-spacing:7.200000px;}
.ws5e{word-spacing:10.956000px;}
._16{margin-left:-16.932000px;}
._19{margin-left:-13.951800px;}
._15{margin-left:-12.571200px;}
._b{margin-left:-10.475400px;}
._14{margin-left:-9.142800px;}
._8{margin-left:-8.130000px;}
._5{margin-left:-7.128000px;}
._2{margin-left:-5.194200px;}
._0{margin-left:-3.565800px;}
._a{margin-left:-2.173200px;}
._9{margin-left:-1.135800px;}
._3{width:1.204800px;}
._f{width:2.265600px;}
._4{width:3.340800px;}
._7{width:5.101200px;}
._1{width:6.413400px;}
._e{width:7.422600px;}
._10{width:8.438400px;}
._d{width:9.852000px;}
._6{width:11.259600px;}
._11{width:12.276000px;}
._13{width:13.591200px;}
._17{width:15.052800px;}
._18{width:16.325400px;}
._c{width:17.809800px;}
._1b{width:19.613400px;}
._1a{width:20.961600px;}
._1c{width:22.329600px;}
._12{width:57.283200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fsc{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs2{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.939350px;}
.y1{bottom:76.339350px;}
.y67{bottom:140.305950px;}
.y8b{bottom:140.310450px;}
.y11c{bottom:140.311950px;}
.yd0{bottom:140.313450px;}
.y1f9{bottom:141.088500px;}
.y1bc{bottom:142.120350px;}
.y1d0{bottom:142.150350px;}
.y142{bottom:142.162350px;}
.y221{bottom:143.011800px;}
.y165{bottom:143.140800px;}
.y1f{bottom:143.743200px;}
.y41{bottom:143.852250px;}
.yae{bottom:143.964450px;}
.y10d{bottom:143.988450px;}
.y266{bottom:144.031800px;}
.y187{bottom:144.402450px;}
.y245{bottom:144.541800px;}
.y66{bottom:156.807450px;}
.y8a{bottom:156.811950px;}
.y11b{bottom:156.813450px;}
.y220{bottom:160.111800px;}
.y1f8{bottom:160.591500px;}
.y164{bottom:162.198300px;}
.ycf{bottom:162.364950px;}
.y40{bottom:162.453000px;}
.y1bb{bottom:163.126350px;}
.y1cf{bottom:163.156350px;}
.y141{bottom:163.168350px;}
.y265{bottom:164.425800px;}
.y244{bottom:165.084300px;}
.y1e{bottom:165.487200px;}
.yad{bottom:165.870450px;}
.y186{bottom:166.002450px;}
.y10c{bottom:166.344450px;}
.y65{bottom:173.308950px;}
.y89{bottom:173.313450px;}
.y11a{bottom:178.864950px;}
.y1f7{bottom:180.094500px;}
.y3f{bottom:181.053750px;}
.y163{bottom:181.255800px;}
.y1ba{bottom:184.132350px;}
.y1ce{bottom:184.162350px;}
.y140{bottom:184.174350px;}
.y264{bottom:184.819800px;}
.y243{bottom:185.626800px;}
.y1d{bottom:187.231200px;}
.y185{bottom:187.602450px;}
.y21f{bottom:187.690800px;}
.yac{bottom:187.776450px;}
.y10b{bottom:188.700450px;}
.y64{bottom:189.810450px;}
.y88{bottom:195.364950px;}
.yce{bottom:197.505300px;}
.y1a8{bottom:198.588600px;}
.y1f6{bottom:199.597500px;}
.y3e{bottom:199.654500px;}
.y162{bottom:200.313300px;}
.yee{bottom:202.260450px;}
.y1b9{bottom:205.138350px;}
.y1cd{bottom:205.168350px;}
.y13f{bottom:205.180350px;}
.y263{bottom:205.213800px;}
.y242{bottom:206.169300px;}
.y63{bottom:206.311950px;}
.y21e{bottom:207.193800px;}
.y184{bottom:209.202450px;}
.yab{bottom:209.682450px;}
.y10a{bottom:211.056450px;}
.y119{bottom:213.893850px;}
.ycd{bottom:216.106050px;}
.y1c{bottom:217.485150px;}
.y1f5{bottom:219.100500px;}
.y161{bottom:219.370800px;}
.y1a7{bottom:220.332600px;}
.y62{bottom:222.813450px;}
.yed{bottom:223.716450px;}
.y262{bottom:225.607800px;}
.y1b8{bottom:226.144350px;}
.y1cc{bottom:226.174350px;}
.y13e{bottom:226.186350px;}
.y21d{bottom:226.696800px;}
.y241{bottom:226.711800px;}
.y183{bottom:230.802450px;}
.y3d{bottom:231.016350px;}
.yaa{bottom:231.588450px;}
.y109{bottom:233.412450px;}
.y87{bottom:233.694450px;}
.ycc{bottom:234.706800px;}
.y118{bottom:235.493850px;}
.y160{bottom:238.428300px;}
.y1f4{bottom:238.603500px;}
.y1a6{bottom:242.076600px;}
.y61{bottom:244.864950px;}
.yec{bottom:245.172450px;}
.y261{bottom:246.001800px;}
.y21c{bottom:246.199800px;}
.y1b7{bottom:247.150350px;}
.y1cb{bottom:247.180350px;}
.y13d{bottom:247.192350px;}
.y240{bottom:247.254300px;}
.y182{bottom:252.402450px;}
.y3c{bottom:253.210350px;}
.ycb{bottom:253.307550px;}
.ya9{bottom:253.494450px;}
.y86{bottom:255.150450px;}
.y108{bottom:255.768450px;}
.y117{bottom:257.093850px;}
.y15f{bottom:257.485800px;}
.y1f3{bottom:258.106500px;}
.y1a5{bottom:263.820600px;}
.y21b{bottom:265.702800px;}
.y260{bottom:266.395800px;}
.yeb{bottom:266.628450px;}
.y23f{bottom:267.796800px;}
.y1b6{bottom:268.156350px;}
.y1ca{bottom:268.186350px;}
.y13c{bottom:268.198350px;}
.yca{bottom:271.908300px;}
.y181{bottom:274.002450px;}
.ya8{bottom:275.400450px;}
.y15e{bottom:276.543300px;}
.y85{bottom:276.606450px;}
.y1f2{bottom:277.609500px;}
.y107{bottom:278.124450px;}
.y60{bottom:278.684700px;}
.y116{bottom:278.693850px;}
.y1b{bottom:282.744000px;}
.y3b{bottom:283.914300px;}
.y21a{bottom:285.205800px;}
.y1a4{bottom:285.564600px;}
.y25f{bottom:286.789800px;}
.yea{bottom:288.084450px;}
.y23e{bottom:288.339300px;}
.y1b5{bottom:289.162350px;}
.y1c9{bottom:289.192350px;}
.y13b{bottom:289.204350px;}
.y15d{bottom:295.600800px;}
.y180{bottom:295.602450px;}
.y1f1{bottom:297.112500px;}
.ya7{bottom:297.306450px;}
.y84{bottom:298.062450px;}
.y5f{bottom:300.284700px;}
.y115{bottom:300.293850px;}
.y106{bottom:300.480450px;}
.y1a{bottom:302.692500px;}
.yc9{bottom:303.360300px;}
.y219{bottom:304.708800px;}
.y25e{bottom:307.183800px;}
.y1a3{bottom:307.308600px;}
.y23d{bottom:308.881800px;}
.ye9{bottom:309.540450px;}
.y1b4{bottom:310.168350px;}
.y1c8{bottom:310.198350px;}
.y13a{bottom:310.210350px;}
.y15c{bottom:314.658300px;}
.y1f0{bottom:316.615500px;}
.y17f{bottom:317.202450px;}
.ya6{bottom:319.212450px;}
.y83{bottom:319.518450px;}
.y5e{bottom:321.884700px;}
.y114{bottom:321.893850px;}
.y19{bottom:322.641000px;}
.y105{bottom:322.836450px;}
.y218{bottom:324.118800px;}
.yc8{bottom:325.554300px;}
.y25d{bottom:327.577800px;}
.y1a2{bottom:329.052600px;}
.y23c{bottom:329.424300px;}
.ye8{bottom:330.996450px;}
.y1b3{bottom:331.174350px;}
.y1c7{bottom:331.204350px;}
.y1ef{bottom:336.118500px;}
.y17e{bottom:338.802450px;}
.y139{bottom:339.714300px;}
.y82{bottom:340.974450px;}
.ya5{bottom:341.118450px;}
.y18{bottom:342.589500px;}
.y5d{bottom:343.484700px;}
.y113{bottom:343.493850px;}
.y217{bottom:343.621800px;}
.y104{bottom:345.192450px;}
.y15b{bottom:346.608300px;}
.yc7{bottom:347.748300px;}
.y25c{bottom:347.971800px;}
.y23b{bottom:349.966800px;}
.y3a{bottom:350.670300px;}
.y1a1{bottom:350.796600px;}
.y1b2{bottom:352.180350px;}
.y1c6{bottom:352.210350px;}
.ye7{bottom:352.398450px;}
.y1ee{bottom:355.621500px;}
.y17d{bottom:360.402450px;}
.y81{bottom:362.430450px;}
.y17{bottom:362.538000px;}
.ya4{bottom:363.024450px;}
.y216{bottom:363.124800px;}
.y5c{bottom:365.084700px;}
.y112{bottom:365.093850px;}
.y103{bottom:367.548450px;}
.y25b{bottom:368.365800px;}
.y15a{bottom:369.252300px;}
.yc6{bottom:369.942300px;}
.y23a{bottom:370.509300px;}
.y1a0{bottom:372.540600px;}
.y39{bottom:372.864300px;}
.y1b1{bottom:373.186350px;}
.ye6{bottom:373.854450px;}
.y1ed{bottom:375.124500px;}
.y1c5{bottom:381.714300px;}
.y16{bottom:382.486500px;}
.y215{bottom:382.627800px;}
.y80{bottom:383.886450px;}
.ya3{bottom:384.930450px;}
.y5b{bottom:386.684700px;}
.y111{bottom:386.693850px;}
.y25a{bottom:388.759800px;}
.y102{bottom:389.904450px;}
.y239{bottom:391.051800px;}
.y159{bottom:391.896300px;}
.yc5{bottom:392.136300px;}
.y1b0{bottom:394.192350px;}
.y1ec{bottom:394.627500px;}
.y38{bottom:395.058300px;}
.ye5{bottom:395.310450px;}
.y17c{bottom:397.002450px;}
.y214{bottom:402.130800px;}
.y15{bottom:402.435000px;}
.y138{bottom:402.564300px;}
.y7f{bottom:405.342450px;}
.ya2{bottom:406.836450px;}
.y19f{bottom:407.064600px;}
.y5a{bottom:408.284700px;}
.y110{bottom:408.293850px;}
.y259{bottom:409.153800px;}
.y238{bottom:411.594300px;}
.y101{bottom:412.260450px;}
.y1eb{bottom:414.130500px;}
.yc4{bottom:414.330300px;}
.y158{bottom:414.540300px;}
.y1af{bottom:415.198350px;}
.ye4{bottom:416.766450px;}
.y37{bottom:417.252300px;}
.y213{bottom:421.633800px;}
.y137{bottom:423.570300px;}
.y19e{bottom:425.208600px;}
.y7e{bottom:426.798450px;}
.ya1{bottom:428.742450px;}
.y258{bottom:429.547800px;}
.y59{bottom:429.884700px;}
.y10f{bottom:429.893850px;}
.y14{bottom:430.888950px;}
.y237{bottom:432.136800px;}
.y1ea{bottom:433.633500px;}
.y100{bottom:434.616450px;}
.y1ae{bottom:436.204350px;}
.yc3{bottom:436.524300px;}
.y157{bottom:437.184300px;}
.ye3{bottom:438.222450px;}
.y36{bottom:439.446300px;}
.y212{bottom:441.136800px;}
.y19d{bottom:443.352600px;}
.y136{bottom:444.576300px;}
.y1c4{bottom:444.666300px;}
.y7d{bottom:448.254450px;}
.y17b{bottom:448.602450px;}
.y257{bottom:449.941800px;}
.ya0{bottom:450.648450px;}
.y58{bottom:451.340700px;}
.y10e{bottom:451.493850px;}
.y236{bottom:452.679300px;}
.y1e9{bottom:453.136500px;}
.yff{bottom:456.972450px;}
.y1ad{bottom:457.192350px;}
.yc2{bottom:458.718300px;}
.ye2{bottom:459.678450px;}
.y156{bottom:459.828300px;}
.y211{bottom:460.639800px;}
.y19c{bottom:461.496600px;}
.y35{bottom:461.640300px;}
.y135{bottom:465.582300px;}
.y1c3{bottom:465.672300px;}
.y7c{bottom:469.710450px;}
.y17a{bottom:470.202450px;}
.y256{bottom:470.335800px;}
.y9f{bottom:472.554450px;}
.y1e8{bottom:472.639500px;}
.y57{bottom:472.796700px;}
.y235{bottom:473.221800px;}
.y1ac{bottom:478.198350px;}
.yfe{bottom:479.328450px;}
.y210{bottom:480.142800px;}
.yc1{bottom:480.912300px;}
.ye1{bottom:481.134450px;}
.y155{bottom:482.472300px;}
.y13{bottom:482.946600px;}
.y34{bottom:483.834300px;}
.y134{bottom:486.588300px;}
.y1c2{bottom:486.678300px;}
.y255{bottom:490.729800px;}
.y7b{bottom:491.166450px;}
.y179{bottom:491.802450px;}
.y1e7{bottom:492.142500px;}
.y19b{bottom:492.426450px;}
.y234{bottom:493.764300px;}
.y56{bottom:494.252700px;}
.y9e{bottom:494.460450px;}
.y1ab{bottom:499.204350px;}
.y20f{bottom:499.645800px;}
.yfd{bottom:501.684450px;}
.ye0{bottom:502.590450px;}
.y12{bottom:502.895100px;}
.yc0{bottom:503.106300px;}
.y154{bottom:505.116300px;}
.y33{bottom:506.028300px;}
.y133{bottom:507.594300px;}
.y1c1{bottom:507.684300px;}
.y254{bottom:511.123800px;}
.y1e6{bottom:511.645500px;}
.y7a{bottom:512.622450px;}
.y178{bottom:513.402450px;}
.y19a{bottom:514.170450px;}
.y233{bottom:514.306800px;}
.y55{bottom:515.708700px;}
.y9d{bottom:516.366450px;}
.y11f{bottom:518.597400px;}
.y20e{bottom:519.148800px;}
.y1aa{bottom:520.210350px;}
.y11{bottom:522.843600px;}
.yfc{bottom:524.040450px;}
.ydf{bottom:524.046450px;}
.ybf{bottom:525.300300px;}
.y153{bottom:527.760300px;}
.y32{bottom:528.222300px;}
.y132{bottom:528.600300px;}
.y1c0{bottom:528.690300px;}
.y1e5{bottom:531.148500px;}
.y253{bottom:531.517800px;}
.y79{bottom:534.078450px;}
.y232{bottom:534.849300px;}
.y177{bottom:535.002450px;}
.y199{bottom:535.914450px;}
.y54{bottom:537.164700px;}
.y9c{bottom:538.272450px;}
.y11e{bottom:538.397400px;}
.y20d{bottom:538.651800px;}
.y10{bottom:542.792100px;}
.yde{bottom:545.502450px;}
.yfb{bottom:546.396450px;}
.ybe{bottom:547.494300px;}
.y131{bottom:549.606300px;}
.y1bf{bottom:549.696300px;}
.y1a9{bottom:549.714300px;}
.y152{bottom:550.404300px;}
.y31{bottom:550.416300px;}
.y1e4{bottom:550.651500px;}
.y252{bottom:551.911800px;}
.y231{bottom:555.391800px;}
.y78{bottom:555.534450px;}
.y176{bottom:556.602450px;}
.y198{bottom:557.658450px;}
.y20c{bottom:558.154800px;}
.y11d{bottom:558.197400px;}
.y53{bottom:558.620700px;}
.y9b{bottom:560.178450px;}
.yf{bottom:562.740600px;}
.yfa{bottom:568.752450px;}
.ybd{bottom:569.688300px;}
.y1e3{bottom:570.154500px;}
.y130{bottom:570.612300px;}
.y1be{bottom:570.702300px;}
.y30{bottom:572.610300px;}
.y151{bottom:573.048300px;}
.y230{bottom:575.934300px;}
.y77{bottom:576.990450px;}
.y20b{bottom:577.657800px;}
.y175{bottom:578.202450px;}
.y197{bottom:579.402450px;}
.y52{bottom:580.076700px;}
.ydd{bottom:581.802450px;}
.y9a{bottom:582.084450px;}
.ye{bottom:582.689100px;}
.y1e2{bottom:589.657500px;}
.y12f{bottom:591.618300px;}
.y1bd{bottom:591.708300px;}
.ybc{bottom:591.882300px;}
.y275{bottom:593.461800px;}
.y251{bottom:593.911800px;}
.y2f{bottom:594.804300px;}
.y150{bottom:595.692300px;}
.y22f{bottom:596.476800px;}
.y20a{bottom:597.160800px;}
.y76{bottom:598.446450px;}
.y174{bottom:599.802450px;}
.y51{bottom:601.532700px;}
.yf9{bottom:603.858300px;}
.y99{bottom:603.990450px;}
.y1e1{bottom:609.160500px;}
.yd{bottom:611.142900px;}
.y274{bottom:611.461800px;}
.y12e{bottom:612.624300px;}
.y196{bottom:613.944450px;}
.ybb{bottom:614.076300px;}
.y209{bottom:616.663800px;}
.y2e{bottom:616.998300px;}
.y22e{bottom:617.019300px;}
.y14f{bottom:618.336300px;}
.y75{bottom:619.902450px;}
.y173{bottom:621.402450px;}
.yf8{bottom:622.758300px;}
.y50{bottom:622.988700px;}
.y98{bottom:625.896450px;}
.y1e0{bottom:628.663500px;}
.y273{bottom:629.461800px;}
.y195{bottom:632.088450px;}
.ydc{bottom:632.940450px;}
.y12d{bottom:633.630300px;}
.y250{bottom:635.311800px;}
.y208{bottom:636.166800px;}
.yba{bottom:636.270300px;}
.y22d{bottom:637.561800px;}
.y2d{bottom:639.192300px;}
.y14e{bottom:640.980300px;}
.yf7{bottom:641.658300px;}
.y172{bottom:643.002450px;}
.y4f{bottom:644.444700px;}
.y272{bottom:647.461800px;}
.y97{bottom:647.802450px;}
.y1df{bottom:648.166500px;}
.y194{bottom:650.232450px;}
.y74{bottom:654.113700px;}
.ydb{bottom:654.396450px;}
.y12c{bottom:654.636300px;}
.y207{bottom:655.669800px;}
.y24f{bottom:656.911800px;}
.y22c{bottom:658.104300px;}
.yb9{bottom:658.476300px;}
.yf6{bottom:660.558300px;}
.y2c{bottom:661.386300px;}
.yc{bottom:662.892900px;}
.y14d{bottom:663.624300px;}
.y171{bottom:664.602450px;}
.y4e{bottom:665.900700px;}
.y1de{bottom:667.669500px;}
.y193{bottom:668.376450px;}
.y73{bottom:671.974050px;}
.y206{bottom:675.172800px;}
.y12b{bottom:675.642300px;}
.yda{bottom:675.852450px;}
.y24e{bottom:678.511800px;}
.y22b{bottom:678.646800px;}
.yf5{bottom:679.458300px;}
.yb8{bottom:680.670300px;}
.y96{bottom:682.447200px;}
.yb{bottom:682.692900px;}
.y2b{bottom:683.580300px;}
.y170{bottom:686.202450px;}
.y14c{bottom:686.268300px;}
.y192{bottom:686.520450px;}
.y271{bottom:687.061800px;}
.y1dd{bottom:687.172500px;}
.y4d{bottom:687.356700px;}
.y72{bottom:689.818800px;}
.y205{bottom:694.675800px;}
.y12a{bottom:696.648300px;}
.yf4{bottom:698.358300px;}
.y22a{bottom:699.189300px;}
.y24d{bottom:700.111800px;}
.y95{bottom:700.449450px;}
.yb7{bottom:702.864300px;}
.y191{bottom:704.664450px;}
.y2a{bottom:705.774300px;}
.y1dc{bottom:706.675500px;}
.y270{bottom:706.861800px;}
.y71{bottom:707.663550px;}
.y16f{bottom:707.802450px;}
.y4c{bottom:708.812700px;}
.y14b{bottom:708.912300px;}
.yd9{bottom:710.040450px;}
.y204{bottom:714.178800px;}
.yf3{bottom:717.258300px;}
.y129{bottom:717.654300px;}
.y94{bottom:718.451700px;}
.y229{bottom:719.731800px;}
.y190{bottom:722.808450px;}
.ya{bottom:724.092900px;}
.y70{bottom:725.508300px;}
.y1db{bottom:726.178500px;}
.y29{bottom:727.968300px;}
.yd8{bottom:728.042700px;}
.y16e{bottom:729.402450px;}
.y4b{bottom:730.268700px;}
.y14a{bottom:731.556300px;}
.y203{bottom:733.681800px;}
.y93{bottom:736.453950px;}
.y128{bottom:738.660300px;}
.y228{bottom:740.274300px;}
.yb6{bottom:740.664300px;}
.y1da{bottom:745.681500px;}
.yd7{bottom:746.044950px;}
.y26f{bottom:748.284300px;}
.yf2{bottom:748.938300px;}
.y28{bottom:750.162300px;}
.y4a{bottom:751.724700px;}
.y202{bottom:753.184800px;}
.y18f{bottom:753.750300px;}
.y24c{bottom:754.111800px;}
.y149{bottom:754.200300px;}
.y92{bottom:754.456200px;}
.y9{bottom:754.692900px;}
.y6f{bottom:756.066300px;}
.y127{bottom:759.666300px;}
.y227{bottom:760.816800px;}
.y16d{bottom:763.747050px;}
.yd6{bottom:764.047200px;}
.y1d9{bottom:765.184500px;}
.y26e{bottom:768.084300px;}
.yf1{bottom:771.438300px;}
.y24b{bottom:772.111800px;}
.y27{bottom:772.356300px;}
.y91{bottom:772.458450px;}
.y201{bottom:772.687800px;}
.y49{bottom:773.180700px;}
.y18e{bottom:775.494300px;}
.y148{bottom:776.844300px;}
.y6e{bottom:777.522300px;}
.yb5{bottom:778.494300px;}
.y126{bottom:780.672300px;}
.y226{bottom:781.359300px;}
.y16c{bottom:781.749300px;}
.yd5{bottom:782.049450px;}
.y1d8{bottom:784.687500px;}
.y8{bottom:785.292900px;}
.y26d{bottom:787.884300px;}
.y24a{bottom:790.111800px;}
.y200{bottom:792.190800px;}
.yf0{bottom:793.938300px;}
.yb4{bottom:794.100300px;}
.y26{bottom:794.550300px;}
.y48{bottom:794.636700px;}
.y18d{bottom:797.238300px;}
.y6d{bottom:798.978300px;}
.y147{bottom:799.488300px;}
.y16b{bottom:799.751550px;}
.yd4{bottom:800.051700px;}
.y125{bottom:801.678300px;}
.y90{bottom:803.190300px;}
.y1d7{bottom:804.190500px;}
.y26c{bottom:807.684300px;}
.y249{bottom:808.111800px;}
.y1ff{bottom:811.693800px;}
.y47{bottom:816.092700px;}
.yb3{bottom:816.294300px;}
.yef{bottom:816.438300px;}
.y25{bottom:816.744300px;}
.y16a{bottom:817.753800px;}
.yd3{bottom:818.053950px;}
.y18c{bottom:818.982300px;}
.y6c{bottom:820.434300px;}
.y146{bottom:822.132300px;}
.y124{bottom:822.684300px;}
.y225{bottom:823.509450px;}
.y1d6{bottom:823.693500px;}
.y8f{bottom:825.096300px;}
.y26b{bottom:827.484300px;}
.y1fe{bottom:831.196800px;}
.y169{bottom:835.756050px;}
.yd2{bottom:836.056200px;}
.y46{bottom:837.548700px;}
.yb2{bottom:838.488300px;}
.y24{bottom:838.938300px;}
.y7{bottom:840.556800px;}
.y18b{bottom:840.726300px;}
.y6b{bottom:841.890300px;}
.y1d5{bottom:843.196500px;}
.y123{bottom:843.690300px;}
.y145{bottom:844.776300px;}
.y8e{bottom:847.002300px;}
.y26a{bottom:847.284300px;}
.y248{bottom:847.711800px;}
.y1fd{bottom:850.699800px;}
.y168{bottom:853.758300px;}
.yd1{bottom:854.058450px;}
.y6{bottom:858.556800px;}
.y45{bottom:859.004700px;}
.yb1{bottom:860.682300px;}
.y23{bottom:861.132300px;}
.y18a{bottom:862.470300px;}
.y1d4{bottom:862.699500px;}
.y6a{bottom:863.346300px;}
.y122{bottom:864.696300px;}
.y224{bottom:864.909300px;}
.y269{bottom:867.084300px;}
.y144{bottom:867.420300px;}
.y247{bottom:867.511800px;}
.y8d{bottom:868.908300px;}
.y1fc{bottom:870.202800px;}
.y5{bottom:876.556800px;}
.y1d3{bottom:882.202500px;}
.yb0{bottom:882.876300px;}
.y22{bottom:883.326300px;}
.y189{bottom:884.226300px;}
.y167{bottom:884.514300px;}
.y69{bottom:884.802300px;}
.y121{bottom:885.702300px;}
.y223{bottom:886.509300px;}
.y268{bottom:887.626800px;}
.y1fb{bottom:889.705800px;}
.y143{bottom:890.064300px;}
.y8c{bottom:890.814300px;}
.y44{bottom:893.206200px;}
.y1d2{bottom:901.705500px;}
.yaf{bottom:905.070300px;}
.y21{bottom:905.520300px;}
.y188{bottom:905.970300px;}
.y166{bottom:906.114300px;}
.y68{bottom:906.258300px;}
.y120{bottom:906.708300px;}
.y222{bottom:908.109300px;}
.y267{bottom:908.169300px;}
.y246{bottom:908.911800px;}
.y1fa{bottom:909.208800px;}
.y4{bottom:910.711800px;}
.y43{bottom:911.208450px;}
.y20{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.y42{bottom:929.210700px;}
.y1d1{bottom:929.709450px;}
.hc{height:30.568359px;}
.h4{height:31.992188px;}
.h2{height:35.663086px;}
.h3{height:39.990234px;}
.h5{height:40.757812px;}
.hd{height:48.399902px;}
.h7{height:50.947266px;}
.ha{height:53.494629px;}
.hb{height:55.424777px;}
.h6{height:56.041992px;}
.h13{height:56.413992px;}
.h9{height:61.136719px;}
.h11{height:61.208719px;}
.h12{height:61.496719px;}
.he{height:63.274031px;}
.h10{height:63.322031px;}
.hf{height:63.538031px;}
.h8{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x8{left:97.795350px;}
.xa{left:119.071350px;}
.xb{left:127.551600px;}
.xe{left:140.307150px;}
.x9{left:150.670350px;}
.x11{left:179.259000px;}
.x7{left:238.113000px;}
.x1{left:256.359150px;}
.x12{left:259.372800px;}
.x4{left:345.003150px;}
.xc{left:361.417350px;}
.x2{left:382.886550px;}
.x3{left:388.159950px;}
.xd{left:412.447050px;}
.x10{left:508.755750px;}
.xf{left:517.719000px;}
.x5{left:602.539350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v5{vertical-align:-12.736000pt;}
.v6{vertical-align:-11.402667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:20.736000pt;}
.v4{vertical-align:23.637333pt;}
.ls37{letter-spacing:-6.400000pt;}
.ls54{letter-spacing:-5.866667pt;}
.ls38{letter-spacing:-4.096000pt;}
.ls48{letter-spacing:-2.816000pt;}
.ls4a{letter-spacing:-2.752000pt;}
.ls49{letter-spacing:-2.496000pt;}
.ls70{letter-spacing:-2.288000pt;}
.ls69{letter-spacing:-2.170667pt;}
.ls1f{letter-spacing:-1.114667pt;}
.ls75{letter-spacing:-0.880000pt;}
.ls22{letter-spacing:-0.861333pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls35{letter-spacing:-0.768000pt;}
.ls71{letter-spacing:-0.762667pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls53{letter-spacing:-0.645333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.586667pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.557333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.506667pt;}
.ls6f{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls67{letter-spacing:-0.410667pt;}
.ls42{letter-spacing:-0.392000pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls43{letter-spacing:-0.280000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls2e{letter-spacing:-0.256000pt;}
.ls66{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.176000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls51{letter-spacing:-0.117333pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls39{letter-spacing:-0.056000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.010133pt;}
.ls19{letter-spacing:0.056000pt;}
.ls6b{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.064000pt;}
.ls60{letter-spacing:0.077867pt;}
.ls33{letter-spacing:0.112000pt;}
.ls61{letter-spacing:0.117333pt;}
.ls18{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.168000pt;}
.ls72{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.203733pt;}
.ls5a{letter-spacing:0.234667pt;}
.ls44{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.293333pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.392000pt;}
.ls5b{letter-spacing:0.410667pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls3b{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.645333pt;}
.ls3c{letter-spacing:0.659200pt;}
.lsc{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.710400pt;}
.ls32{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:0.793600pt;}
.ls2c{letter-spacing:0.832000pt;}
.ls57{letter-spacing:0.880000pt;}
.ls55{letter-spacing:0.938667pt;}
.ls5e{letter-spacing:0.997333pt;}
.ls29{letter-spacing:1.024000pt;}
.ls63{letter-spacing:1.114667pt;}
.ls2b{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.216000pt;}
.ls73{letter-spacing:1.243733pt;}
.ls5f{letter-spacing:1.584000pt;}
.ls3a{letter-spacing:1.619200pt;}
.ls68{letter-spacing:1.818667pt;}
.ls74{letter-spacing:2.487467pt;}
.ls3f{letter-spacing:2.800000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls15{letter-spacing:3.976000pt;}
.ls46{letter-spacing:4.166400pt;}
.ls45{letter-spacing:4.224000pt;}
.ls41{letter-spacing:4.352000pt;}
.ls31{letter-spacing:4.800000pt;}
.ls2f{letter-spacing:5.232000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls6e{letter-spacing:5.649600pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls40{letter-spacing:8.147200pt;}
.ls8{letter-spacing:8.976000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls5c{letter-spacing:9.328000pt;}
.ls6a{letter-spacing:9.445333pt;}
.ls65{letter-spacing:9.504000pt;}
.ls4f{letter-spacing:9.562667pt;}
.ls62{letter-spacing:9.680000pt;}
.ls4b{letter-spacing:9.738667pt;}
.ls58{letter-spacing:10.032000pt;}
.ls64{letter-spacing:10.266667pt;}
.ls4c{letter-spacing:10.325333pt;}
.ls4d{letter-spacing:10.384000pt;}
.ls56{letter-spacing:10.618667pt;}
.ls5d{letter-spacing:10.736000pt;}
.ls6c{letter-spacing:17.600000pt;}
.ws79{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws2d{word-spacing:-18.304000pt;}
.ws4f{word-spacing:-18.240000pt;}
.ws2e{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.664000pt;}
.ws81{word-spacing:-17.600000pt;}
.ws63{word-spacing:-16.602667pt;}
.ws53{word-spacing:-16.512000pt;}
.ws39{word-spacing:-16.485333pt;}
.ws61{word-spacing:-16.074667pt;}
.ws36{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws27{word-spacing:-15.808000pt;}
.ws43{word-spacing:-15.736000pt;}
.ws41{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws83{word-spacing:-14.666667pt;}
.ws7a{word-spacing:-14.549333pt;}
.ws62{word-spacing:-14.490667pt;}
.ws57{word-spacing:-14.373333pt;}
.ws60{word-spacing:-14.197333pt;}
.ws42{word-spacing:-14.000000pt;}
.ws33{word-spacing:-13.888000pt;}
.ws7b{word-spacing:-13.845333pt;}
.ws34{word-spacing:-13.832000pt;}
.ws82{word-spacing:-13.610667pt;}
.ws50{word-spacing:-13.552000pt;}
.ws38{word-spacing:-10.790400pt;}
.ws72{word-spacing:-10.736000pt;}
.ws66{word-spacing:-10.618667pt;}
.ws6b{word-spacing:-10.266667pt;}
.ws68{word-spacing:-10.032000pt;}
.ws58{word-spacing:-9.738667pt;}
.ws6f{word-spacing:-9.680000pt;}
.ws59{word-spacing:-9.562667pt;}
.ws6d{word-spacing:-9.504000pt;}
.ws77{word-spacing:-9.445333pt;}
.ws19{word-spacing:-9.441600pt;}
.ws70{word-spacing:-9.328000pt;}
.ws7{word-spacing:-9.066667pt;}
.ws8{word-spacing:-8.976000pt;}
.ws17{word-spacing:-6.400000pt;}
.ws5{word-spacing:-5.866667pt;}
.ws9{word-spacing:-5.333333pt;}
.ws3c{word-spacing:-5.232000pt;}
.ws3e{word-spacing:-4.800000pt;}
.ws2{word-spacing:-3.733333pt;}
.ws30{word-spacing:-3.200000pt;}
.ws4c{word-spacing:-2.800000pt;}
.ws74{word-spacing:-1.818667pt;}
.ws2c{word-spacing:-1.216000pt;}
.ws32{word-spacing:-1.152000pt;}
.ws64{word-spacing:-1.114667pt;}
.ws2f{word-spacing:-1.024000pt;}
.ws73{word-spacing:-0.997333pt;}
.ws65{word-spacing:-0.938667pt;}
.ws67{word-spacing:-0.880000pt;}
.ws35{word-spacing:-0.832000pt;}
.ws3f{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.645333pt;}
.wsf{word-spacing:-0.640000pt;}
.ws5d{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.560000pt;}
.ws3d{word-spacing:-0.528000pt;}
.ws4e{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws6c{word-spacing:-0.410667pt;}
.ws2a{word-spacing:-0.392000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws7c{word-spacing:-0.352000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws6a{word-spacing:-0.234667pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.168000pt;}
.ws20{word-spacing:-0.128000pt;}
.ws76{word-spacing:-0.117333pt;}
.ws49{word-spacing:-0.112000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws78{word-spacing:-0.058667pt;}
.ws1a{word-spacing:-0.056000pt;}
.ws4b{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.033600pt;}
.ws3{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.056000pt;}
.wsb{word-spacing:0.058667pt;}
.ws4d{word-spacing:0.064000pt;}
.ws1b{word-spacing:0.112000pt;}
.ws5b{word-spacing:0.117333pt;}
.ws31{word-spacing:0.128000pt;}
.ws5a{word-spacing:0.176000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws6e{word-spacing:0.234667pt;}
.ws3b{word-spacing:0.256000pt;}
.ws6{word-spacing:0.266667pt;}
.ws52{word-spacing:0.280000pt;}
.wsc{word-spacing:0.293333pt;}
.ws21{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws51{word-spacing:0.392000pt;}
.ws71{word-spacing:0.410667pt;}
.wsd{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.469333pt;}
.ws23{word-spacing:0.506667pt;}
.ws15{word-spacing:0.512000pt;}
.ws24{word-spacing:0.557333pt;}
.ws44{word-spacing:0.576000pt;}
.ws5c{word-spacing:0.586667pt;}
.ws13{word-spacing:0.640000pt;}
.ws80{word-spacing:0.645333pt;}
.ws16{word-spacing:0.704000pt;}
.ws7f{word-spacing:0.762667pt;}
.ws45{word-spacing:0.768000pt;}
.ws46{word-spacing:0.832000pt;}
.ws25{word-spacing:0.861333pt;}
.ws22{word-spacing:1.114667pt;}
.ws75{word-spacing:2.170667pt;}
.ws7e{word-spacing:2.288000pt;}
.ws55{word-spacing:2.496000pt;}
.ws56{word-spacing:2.752000pt;}
.ws54{word-spacing:2.816000pt;}
.ws4{word-spacing:2.986667pt;}
.ws48{word-spacing:4.096000pt;}
.ws28{word-spacing:4.480000pt;}
.ws5f{word-spacing:5.866667pt;}
.ws47{word-spacing:6.400000pt;}
.ws5e{word-spacing:9.738667pt;}
._16{margin-left:-15.050667pt;}
._19{margin-left:-12.401600pt;}
._15{margin-left:-11.174400pt;}
._b{margin-left:-9.311467pt;}
._14{margin-left:-8.126933pt;}
._8{margin-left:-7.226667pt;}
._5{margin-left:-6.336000pt;}
._2{margin-left:-4.617067pt;}
._0{margin-left:-3.169600pt;}
._a{margin-left:-1.931733pt;}
._9{margin-left:-1.009600pt;}
._3{width:1.070933pt;}
._f{width:2.013867pt;}
._4{width:2.969600pt;}
._7{width:4.534400pt;}
._1{width:5.700800pt;}
._e{width:6.597867pt;}
._10{width:7.500800pt;}
._d{width:8.757333pt;}
._6{width:10.008533pt;}
._11{width:10.912000pt;}
._13{width:12.081067pt;}
._17{width:13.380267pt;}
._18{width:14.511467pt;}
._c{width:15.830933pt;}
._1b{width:17.434133pt;}
._1a{width:18.632533pt;}
._1c{width:19.848533pt;}
._12{width:50.918400pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fsc{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs2{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:55.057200pt;}
.y1{bottom:67.857200pt;}
.y67{bottom:124.716400pt;}
.y8b{bottom:124.720400pt;}
.y11c{bottom:124.721733pt;}
.yd0{bottom:124.723067pt;}
.y1f9{bottom:125.412000pt;}
.y1bc{bottom:126.329200pt;}
.y1d0{bottom:126.355867pt;}
.y142{bottom:126.366533pt;}
.y221{bottom:127.121600pt;}
.y165{bottom:127.236267pt;}
.y1f{bottom:127.771733pt;}
.y41{bottom:127.868667pt;}
.yae{bottom:127.968400pt;}
.y10d{bottom:127.989733pt;}
.y266{bottom:128.028267pt;}
.y187{bottom:128.357733pt;}
.y245{bottom:128.481600pt;}
.y66{bottom:139.384400pt;}
.y8a{bottom:139.388400pt;}
.y11b{bottom:139.389733pt;}
.y220{bottom:142.321600pt;}
.y1f8{bottom:142.748000pt;}
.y164{bottom:144.176267pt;}
.ycf{bottom:144.324400pt;}
.y40{bottom:144.402667pt;}
.y1bb{bottom:145.001200pt;}
.y1cf{bottom:145.027867pt;}
.y141{bottom:145.038533pt;}
.y265{bottom:146.156267pt;}
.y244{bottom:146.741600pt;}
.y1e{bottom:147.099733pt;}
.yad{bottom:147.440400pt;}
.y186{bottom:147.557733pt;}
.y10c{bottom:147.861733pt;}
.y65{bottom:154.052400pt;}
.y89{bottom:154.056400pt;}
.y11a{bottom:158.991067pt;}
.y1f7{bottom:160.084000pt;}
.y3f{bottom:160.936667pt;}
.y163{bottom:161.116267pt;}
.y1ba{bottom:163.673200pt;}
.y1ce{bottom:163.699867pt;}
.y140{bottom:163.710533pt;}
.y264{bottom:164.284267pt;}
.y243{bottom:165.001600pt;}
.y1d{bottom:166.427733pt;}
.y185{bottom:166.757733pt;}
.y21f{bottom:166.836267pt;}
.yac{bottom:166.912400pt;}
.y10b{bottom:167.733733pt;}
.y64{bottom:168.720400pt;}
.y88{bottom:173.657733pt;}
.yce{bottom:175.560267pt;}
.y1a8{bottom:176.523200pt;}
.y1f6{bottom:177.420000pt;}
.y3e{bottom:177.470667pt;}
.y162{bottom:178.056267pt;}
.yee{bottom:179.787067pt;}
.y1b9{bottom:182.345200pt;}
.y1cd{bottom:182.371867pt;}
.y13f{bottom:182.382533pt;}
.y263{bottom:182.412267pt;}
.y242{bottom:183.261600pt;}
.y63{bottom:183.388400pt;}
.y21e{bottom:184.172267pt;}
.y184{bottom:185.957733pt;}
.yab{bottom:186.384400pt;}
.y10a{bottom:187.605733pt;}
.y119{bottom:190.127867pt;}
.ycd{bottom:192.094267pt;}
.y1c{bottom:193.320133pt;}
.y1f5{bottom:194.756000pt;}
.y161{bottom:194.996267pt;}
.y1a7{bottom:195.851200pt;}
.y62{bottom:198.056400pt;}
.yed{bottom:198.859067pt;}
.y262{bottom:200.540267pt;}
.y1b8{bottom:201.017200pt;}
.y1cc{bottom:201.043867pt;}
.y13e{bottom:201.054533pt;}
.y21d{bottom:201.508267pt;}
.y241{bottom:201.521600pt;}
.y183{bottom:205.157733pt;}
.y3d{bottom:205.347867pt;}
.yaa{bottom:205.856400pt;}
.y109{bottom:207.477733pt;}
.y87{bottom:207.728400pt;}
.ycc{bottom:208.628267pt;}
.y118{bottom:209.327867pt;}
.y160{bottom:211.936267pt;}
.y1f4{bottom:212.092000pt;}
.y1a6{bottom:215.179200pt;}
.y61{bottom:217.657733pt;}
.yec{bottom:217.931067pt;}
.y261{bottom:218.668267pt;}
.y21c{bottom:218.844267pt;}
.y1b7{bottom:219.689200pt;}
.y1cb{bottom:219.715867pt;}
.y13d{bottom:219.726533pt;}
.y240{bottom:219.781600pt;}
.y182{bottom:224.357733pt;}
.y3c{bottom:225.075867pt;}
.ycb{bottom:225.162267pt;}
.ya9{bottom:225.328400pt;}
.y86{bottom:226.800400pt;}
.y108{bottom:227.349733pt;}
.y117{bottom:228.527867pt;}
.y15f{bottom:228.876267pt;}
.y1f3{bottom:229.428000pt;}
.y1a5{bottom:234.507200pt;}
.y21b{bottom:236.180267pt;}
.y260{bottom:236.796267pt;}
.yeb{bottom:237.003067pt;}
.y23f{bottom:238.041600pt;}
.y1b6{bottom:238.361200pt;}
.y1ca{bottom:238.387867pt;}
.y13c{bottom:238.398533pt;}
.yca{bottom:241.696267pt;}
.y181{bottom:243.557733pt;}
.ya8{bottom:244.800400pt;}
.y15e{bottom:245.816267pt;}
.y85{bottom:245.872400pt;}
.y1f2{bottom:246.764000pt;}
.y107{bottom:247.221733pt;}
.y60{bottom:247.719733pt;}
.y116{bottom:247.727867pt;}
.y1b{bottom:251.328000pt;}
.y3b{bottom:252.368267pt;}
.y21a{bottom:253.516267pt;}
.y1a4{bottom:253.835200pt;}
.y25f{bottom:254.924267pt;}
.yea{bottom:256.075067pt;}
.y23e{bottom:256.301600pt;}
.y1b5{bottom:257.033200pt;}
.y1c9{bottom:257.059867pt;}
.y13b{bottom:257.070533pt;}
.y15d{bottom:262.756267pt;}
.y180{bottom:262.757733pt;}
.y1f1{bottom:264.100000pt;}
.ya7{bottom:264.272400pt;}
.y84{bottom:264.944400pt;}
.y5f{bottom:266.919733pt;}
.y115{bottom:266.927867pt;}
.y106{bottom:267.093733pt;}
.y1a{bottom:269.060000pt;}
.yc9{bottom:269.653600pt;}
.y219{bottom:270.852267pt;}
.y25e{bottom:273.052267pt;}
.y1a3{bottom:273.163200pt;}
.y23d{bottom:274.561600pt;}
.ye9{bottom:275.147067pt;}
.y1b4{bottom:275.705200pt;}
.y1c8{bottom:275.731867pt;}
.y13a{bottom:275.742533pt;}
.y15c{bottom:279.696267pt;}
.y1f0{bottom:281.436000pt;}
.y17f{bottom:281.957733pt;}
.ya6{bottom:283.744400pt;}
.y83{bottom:284.016400pt;}
.y5e{bottom:286.119733pt;}
.y114{bottom:286.127867pt;}
.y19{bottom:286.792000pt;}
.y105{bottom:286.965733pt;}
.y218{bottom:288.105600pt;}
.yc8{bottom:289.381600pt;}
.y25d{bottom:291.180267pt;}
.y1a2{bottom:292.491200pt;}
.y23c{bottom:292.821600pt;}
.ye8{bottom:294.219067pt;}
.y1b3{bottom:294.377200pt;}
.y1c7{bottom:294.403867pt;}
.y1ef{bottom:298.772000pt;}
.y17e{bottom:301.157733pt;}
.y139{bottom:301.968267pt;}
.y82{bottom:303.088400pt;}
.ya5{bottom:303.216400pt;}
.y18{bottom:304.524000pt;}
.y5d{bottom:305.319733pt;}
.y113{bottom:305.327867pt;}
.y217{bottom:305.441600pt;}
.y104{bottom:306.837733pt;}
.y15b{bottom:308.096267pt;}
.yc7{bottom:309.109600pt;}
.y25c{bottom:309.308267pt;}
.y23b{bottom:311.081600pt;}
.y3a{bottom:311.706933pt;}
.y1a1{bottom:311.819200pt;}
.y1b2{bottom:313.049200pt;}
.y1c6{bottom:313.075867pt;}
.ye7{bottom:313.243067pt;}
.y1ee{bottom:316.108000pt;}
.y17d{bottom:320.357733pt;}
.y81{bottom:322.160400pt;}
.y17{bottom:322.256000pt;}
.ya4{bottom:322.688400pt;}
.y216{bottom:322.777600pt;}
.y5c{bottom:324.519733pt;}
.y112{bottom:324.527867pt;}
.y103{bottom:326.709733pt;}
.y25b{bottom:327.436267pt;}
.y15a{bottom:328.224267pt;}
.yc6{bottom:328.837600pt;}
.y23a{bottom:329.341600pt;}
.y1a0{bottom:331.147200pt;}
.y39{bottom:331.434933pt;}
.y1b1{bottom:331.721200pt;}
.ye6{bottom:332.315067pt;}
.y1ed{bottom:333.444000pt;}
.y1c5{bottom:339.301600pt;}
.y16{bottom:339.988000pt;}
.y215{bottom:340.113600pt;}
.y80{bottom:341.232400pt;}
.ya3{bottom:342.160400pt;}
.y5b{bottom:343.719733pt;}
.y111{bottom:343.727867pt;}
.y25a{bottom:345.564267pt;}
.y102{bottom:346.581733pt;}
.y239{bottom:347.601600pt;}
.y159{bottom:348.352267pt;}
.yc5{bottom:348.565600pt;}
.y1b0{bottom:350.393200pt;}
.y1ec{bottom:350.780000pt;}
.y38{bottom:351.162933pt;}
.ye5{bottom:351.387067pt;}
.y17c{bottom:352.891067pt;}
.y214{bottom:357.449600pt;}
.y15{bottom:357.720000pt;}
.y138{bottom:357.834933pt;}
.y7f{bottom:360.304400pt;}
.ya2{bottom:361.632400pt;}
.y19f{bottom:361.835200pt;}
.y5a{bottom:362.919733pt;}
.y110{bottom:362.927867pt;}
.y259{bottom:363.692267pt;}
.y238{bottom:365.861600pt;}
.y101{bottom:366.453733pt;}
.y1eb{bottom:368.116000pt;}
.yc4{bottom:368.293600pt;}
.y158{bottom:368.480267pt;}
.y1af{bottom:369.065200pt;}
.ye4{bottom:370.459067pt;}
.y37{bottom:370.890933pt;}
.y213{bottom:374.785600pt;}
.y137{bottom:376.506933pt;}
.y19e{bottom:377.963200pt;}
.y7e{bottom:379.376400pt;}
.ya1{bottom:381.104400pt;}
.y258{bottom:381.820267pt;}
.y59{bottom:382.119733pt;}
.y10f{bottom:382.127867pt;}
.y14{bottom:383.012400pt;}
.y237{bottom:384.121600pt;}
.y1ea{bottom:385.452000pt;}
.y100{bottom:386.325733pt;}
.y1ae{bottom:387.737200pt;}
.yc3{bottom:388.021600pt;}
.y157{bottom:388.608267pt;}
.ye3{bottom:389.531067pt;}
.y36{bottom:390.618933pt;}
.y212{bottom:392.121600pt;}
.y19d{bottom:394.091200pt;}
.y136{bottom:395.178933pt;}
.y1c4{bottom:395.258933pt;}
.y7d{bottom:398.448400pt;}
.y17b{bottom:398.757733pt;}
.y257{bottom:399.948267pt;}
.ya0{bottom:400.576400pt;}
.y58{bottom:401.191733pt;}
.y10e{bottom:401.327867pt;}
.y236{bottom:402.381600pt;}
.y1e9{bottom:402.788000pt;}
.yff{bottom:406.197733pt;}
.y1ad{bottom:406.393200pt;}
.yc2{bottom:407.749600pt;}
.ye2{bottom:408.603067pt;}
.y156{bottom:408.736267pt;}
.y211{bottom:409.457600pt;}
.y19c{bottom:410.219200pt;}
.y35{bottom:410.346933pt;}
.y135{bottom:413.850933pt;}
.y1c3{bottom:413.930933pt;}
.y7c{bottom:417.520400pt;}
.y17a{bottom:417.957733pt;}
.y256{bottom:418.076267pt;}
.y9f{bottom:420.048400pt;}
.y1e8{bottom:420.124000pt;}
.y57{bottom:420.263733pt;}
.y235{bottom:420.641600pt;}
.y1ac{bottom:425.065200pt;}
.yfe{bottom:426.069733pt;}
.y210{bottom:426.793600pt;}
.yc1{bottom:427.477600pt;}
.ye1{bottom:427.675067pt;}
.y155{bottom:428.864267pt;}
.y13{bottom:429.285867pt;}
.y34{bottom:430.074933pt;}
.y134{bottom:432.522933pt;}
.y1c2{bottom:432.602933pt;}
.y255{bottom:436.204267pt;}
.y7b{bottom:436.592400pt;}
.y179{bottom:437.157733pt;}
.y1e7{bottom:437.460000pt;}
.y19b{bottom:437.712400pt;}
.y234{bottom:438.901600pt;}
.y56{bottom:439.335733pt;}
.y9e{bottom:439.520400pt;}
.y1ab{bottom:443.737200pt;}
.y20f{bottom:444.129600pt;}
.yfd{bottom:445.941733pt;}
.ye0{bottom:446.747067pt;}
.y12{bottom:447.017867pt;}
.yc0{bottom:447.205600pt;}
.y154{bottom:448.992267pt;}
.y33{bottom:449.802933pt;}
.y133{bottom:451.194933pt;}
.y1c1{bottom:451.274933pt;}
.y254{bottom:454.332267pt;}
.y1e6{bottom:454.796000pt;}
.y7a{bottom:455.664400pt;}
.y178{bottom:456.357733pt;}
.y19a{bottom:457.040400pt;}
.y233{bottom:457.161600pt;}
.y55{bottom:458.407733pt;}
.y9d{bottom:458.992400pt;}
.y11f{bottom:460.975467pt;}
.y20e{bottom:461.465600pt;}
.y1aa{bottom:462.409200pt;}
.y11{bottom:464.749867pt;}
.yfc{bottom:465.813733pt;}
.ydf{bottom:465.819067pt;}
.ybf{bottom:466.933600pt;}
.y153{bottom:469.120267pt;}
.y32{bottom:469.530933pt;}
.y132{bottom:469.866933pt;}
.y1c0{bottom:469.946933pt;}
.y1e5{bottom:472.132000pt;}
.y253{bottom:472.460267pt;}
.y79{bottom:474.736400pt;}
.y232{bottom:475.421600pt;}
.y177{bottom:475.557733pt;}
.y199{bottom:476.368400pt;}
.y54{bottom:477.479733pt;}
.y9c{bottom:478.464400pt;}
.y11e{bottom:478.575467pt;}
.y20d{bottom:478.801600pt;}
.y10{bottom:482.481867pt;}
.yde{bottom:484.891067pt;}
.yfb{bottom:485.685733pt;}
.ybe{bottom:486.661600pt;}
.y131{bottom:488.538933pt;}
.y1bf{bottom:488.618933pt;}
.y1a9{bottom:488.634933pt;}
.y152{bottom:489.248267pt;}
.y31{bottom:489.258933pt;}
.y1e4{bottom:489.468000pt;}
.y252{bottom:490.588267pt;}
.y231{bottom:493.681600pt;}
.y78{bottom:493.808400pt;}
.y176{bottom:494.757733pt;}
.y198{bottom:495.696400pt;}
.y20c{bottom:496.137600pt;}
.y11d{bottom:496.175467pt;}
.y53{bottom:496.551733pt;}
.y9b{bottom:497.936400pt;}
.yf{bottom:500.213867pt;}
.yfa{bottom:505.557733pt;}
.ybd{bottom:506.389600pt;}
.y1e3{bottom:506.804000pt;}
.y130{bottom:507.210933pt;}
.y1be{bottom:507.290933pt;}
.y30{bottom:508.986933pt;}
.y151{bottom:509.376267pt;}
.y230{bottom:511.941600pt;}
.y77{bottom:512.880400pt;}
.y20b{bottom:513.473600pt;}
.y175{bottom:513.957733pt;}
.y197{bottom:515.024400pt;}
.y52{bottom:515.623733pt;}
.ydd{bottom:517.157733pt;}
.y9a{bottom:517.408400pt;}
.ye{bottom:517.945867pt;}
.y1e2{bottom:524.140000pt;}
.y12f{bottom:525.882933pt;}
.y1bd{bottom:525.962933pt;}
.ybc{bottom:526.117600pt;}
.y275{bottom:527.521600pt;}
.y251{bottom:527.921600pt;}
.y2f{bottom:528.714933pt;}
.y150{bottom:529.504267pt;}
.y22f{bottom:530.201600pt;}
.y20a{bottom:530.809600pt;}
.y76{bottom:531.952400pt;}
.y174{bottom:533.157733pt;}
.y51{bottom:534.695733pt;}
.yf9{bottom:536.762933pt;}
.y99{bottom:536.880400pt;}
.y1e1{bottom:541.476000pt;}
.yd{bottom:543.238133pt;}
.y274{bottom:543.521600pt;}
.y12e{bottom:544.554933pt;}
.y196{bottom:545.728400pt;}
.ybb{bottom:545.845600pt;}
.y209{bottom:548.145600pt;}
.y2e{bottom:548.442933pt;}
.y22e{bottom:548.461600pt;}
.y14f{bottom:549.632267pt;}
.y75{bottom:551.024400pt;}
.y173{bottom:552.357733pt;}
.yf8{bottom:553.562933pt;}
.y50{bottom:553.767733pt;}
.y98{bottom:556.352400pt;}
.y1e0{bottom:558.812000pt;}
.y273{bottom:559.521600pt;}
.y195{bottom:561.856400pt;}
.ydc{bottom:562.613733pt;}
.y12d{bottom:563.226933pt;}
.y250{bottom:564.721600pt;}
.y208{bottom:565.481600pt;}
.yba{bottom:565.573600pt;}
.y22d{bottom:566.721600pt;}
.y2d{bottom:568.170933pt;}
.y14e{bottom:569.760267pt;}
.yf7{bottom:570.362933pt;}
.y172{bottom:571.557733pt;}
.y4f{bottom:572.839733pt;}
.y272{bottom:575.521600pt;}
.y97{bottom:575.824400pt;}
.y1df{bottom:576.148000pt;}
.y194{bottom:577.984400pt;}
.y74{bottom:581.434400pt;}
.ydb{bottom:581.685733pt;}
.y12c{bottom:581.898933pt;}
.y207{bottom:582.817600pt;}
.y24f{bottom:583.921600pt;}
.y22c{bottom:584.981600pt;}
.yb9{bottom:585.312267pt;}
.yf6{bottom:587.162933pt;}
.y2c{bottom:587.898933pt;}
.yc{bottom:589.238133pt;}
.y14d{bottom:589.888267pt;}
.y171{bottom:590.757733pt;}
.y4e{bottom:591.911733pt;}
.y1de{bottom:593.484000pt;}
.y193{bottom:594.112400pt;}
.y73{bottom:597.310267pt;}
.y206{bottom:600.153600pt;}
.y12b{bottom:600.570933pt;}
.yda{bottom:600.757733pt;}
.y24e{bottom:603.121600pt;}
.y22b{bottom:603.241600pt;}
.yf5{bottom:603.962933pt;}
.yb8{bottom:605.040267pt;}
.y96{bottom:606.619733pt;}
.yb{bottom:606.838133pt;}
.y2b{bottom:607.626933pt;}
.y170{bottom:609.957733pt;}
.y14c{bottom:610.016267pt;}
.y192{bottom:610.240400pt;}
.y271{bottom:610.721600pt;}
.y1dd{bottom:610.820000pt;}
.y4d{bottom:610.983733pt;}
.y72{bottom:613.172267pt;}
.y205{bottom:617.489600pt;}
.y12a{bottom:619.242933pt;}
.yf4{bottom:620.762933pt;}
.y22a{bottom:621.501600pt;}
.y24d{bottom:622.321600pt;}
.y95{bottom:622.621733pt;}
.yb7{bottom:624.768267pt;}
.y191{bottom:626.368400pt;}
.y2a{bottom:627.354933pt;}
.y1dc{bottom:628.156000pt;}
.y270{bottom:628.321600pt;}
.y71{bottom:629.034267pt;}
.y16f{bottom:629.157733pt;}
.y4c{bottom:630.055733pt;}
.y14b{bottom:630.144267pt;}
.yd9{bottom:631.147067pt;}
.y204{bottom:634.825600pt;}
.yf3{bottom:637.562933pt;}
.y129{bottom:637.914933pt;}
.y94{bottom:638.623733pt;}
.y229{bottom:639.761600pt;}
.y190{bottom:642.496400pt;}
.ya{bottom:643.638133pt;}
.y70{bottom:644.896267pt;}
.y1db{bottom:645.492000pt;}
.y29{bottom:647.082933pt;}
.yd8{bottom:647.149067pt;}
.y16e{bottom:648.357733pt;}
.y4b{bottom:649.127733pt;}
.y14a{bottom:650.272267pt;}
.y203{bottom:652.161600pt;}
.y93{bottom:654.625733pt;}
.y128{bottom:656.586933pt;}
.y228{bottom:658.021600pt;}
.yb6{bottom:658.368267pt;}
.y1da{bottom:662.828000pt;}
.yd7{bottom:663.151067pt;}
.y26f{bottom:665.141600pt;}
.yf2{bottom:665.722933pt;}
.y28{bottom:666.810933pt;}
.y4a{bottom:668.199733pt;}
.y202{bottom:669.497600pt;}
.y18f{bottom:670.000267pt;}
.y24c{bottom:670.321600pt;}
.y149{bottom:670.400267pt;}
.y92{bottom:670.627733pt;}
.y9{bottom:670.838133pt;}
.y6f{bottom:672.058933pt;}
.y127{bottom:675.258933pt;}
.y227{bottom:676.281600pt;}
.y16d{bottom:678.886267pt;}
.yd6{bottom:679.153067pt;}
.y1d9{bottom:680.164000pt;}
.y26e{bottom:682.741600pt;}
.yf1{bottom:685.722933pt;}
.y24b{bottom:686.321600pt;}
.y27{bottom:686.538933pt;}
.y91{bottom:686.629733pt;}
.y201{bottom:686.833600pt;}
.y49{bottom:687.271733pt;}
.y18e{bottom:689.328267pt;}
.y148{bottom:690.528267pt;}
.y6e{bottom:691.130933pt;}
.yb5{bottom:691.994933pt;}
.y126{bottom:693.930933pt;}
.y226{bottom:694.541600pt;}
.y16c{bottom:694.888267pt;}
.yd5{bottom:695.155067pt;}
.y1d8{bottom:697.500000pt;}
.y8{bottom:698.038133pt;}
.y26d{bottom:700.341600pt;}
.y24a{bottom:702.321600pt;}
.y200{bottom:704.169600pt;}
.yf0{bottom:705.722933pt;}
.yb4{bottom:705.866933pt;}
.y26{bottom:706.266933pt;}
.y48{bottom:706.343733pt;}
.y18d{bottom:708.656267pt;}
.y6d{bottom:710.202933pt;}
.y147{bottom:710.656267pt;}
.y16b{bottom:710.890267pt;}
.yd4{bottom:711.157067pt;}
.y125{bottom:712.602933pt;}
.y90{bottom:713.946933pt;}
.y1d7{bottom:714.836000pt;}
.y26c{bottom:717.941600pt;}
.y249{bottom:718.321600pt;}
.y1ff{bottom:721.505600pt;}
.y47{bottom:725.415733pt;}
.yb3{bottom:725.594933pt;}
.yef{bottom:725.722933pt;}
.y25{bottom:725.994933pt;}
.y16a{bottom:726.892267pt;}
.yd3{bottom:727.159067pt;}
.y18c{bottom:727.984267pt;}
.y6c{bottom:729.274933pt;}
.y146{bottom:730.784267pt;}
.y124{bottom:731.274933pt;}
.y225{bottom:732.008400pt;}
.y1d6{bottom:732.172000pt;}
.y8f{bottom:733.418933pt;}
.y26b{bottom:735.541600pt;}
.y1fe{bottom:738.841600pt;}
.y169{bottom:742.894267pt;}
.yd2{bottom:743.161067pt;}
.y46{bottom:744.487733pt;}
.yb2{bottom:745.322933pt;}
.y24{bottom:745.722933pt;}
.y7{bottom:747.161600pt;}
.y18b{bottom:747.312267pt;}
.y6b{bottom:748.346933pt;}
.y1d5{bottom:749.508000pt;}
.y123{bottom:749.946933pt;}
.y145{bottom:750.912267pt;}
.y8e{bottom:752.890933pt;}
.y26a{bottom:753.141600pt;}
.y248{bottom:753.521600pt;}
.y1fd{bottom:756.177600pt;}
.y168{bottom:758.896267pt;}
.yd1{bottom:759.163067pt;}
.y6{bottom:763.161600pt;}
.y45{bottom:763.559733pt;}
.yb1{bottom:765.050933pt;}
.y23{bottom:765.450933pt;}
.y18a{bottom:766.640267pt;}
.y1d4{bottom:766.844000pt;}
.y6a{bottom:767.418933pt;}
.y122{bottom:768.618933pt;}
.y224{bottom:768.808267pt;}
.y269{bottom:770.741600pt;}
.y144{bottom:771.040267pt;}
.y247{bottom:771.121600pt;}
.y8d{bottom:772.362933pt;}
.y1fc{bottom:773.513600pt;}
.y5{bottom:779.161600pt;}
.y1d3{bottom:784.180000pt;}
.yb0{bottom:784.778933pt;}
.y22{bottom:785.178933pt;}
.y189{bottom:785.978933pt;}
.y167{bottom:786.234933pt;}
.y69{bottom:786.490933pt;}
.y121{bottom:787.290933pt;}
.y223{bottom:788.008267pt;}
.y268{bottom:789.001600pt;}
.y1fb{bottom:790.849600pt;}
.y143{bottom:791.168267pt;}
.y8c{bottom:791.834933pt;}
.y44{bottom:793.961067pt;}
.y1d2{bottom:801.516000pt;}
.yaf{bottom:804.506933pt;}
.y21{bottom:804.906933pt;}
.y188{bottom:805.306933pt;}
.y166{bottom:805.434933pt;}
.y68{bottom:805.562933pt;}
.y120{bottom:805.962933pt;}
.y222{bottom:807.208267pt;}
.y267{bottom:807.261600pt;}
.y246{bottom:807.921600pt;}
.y1fa{bottom:808.185600pt;}
.y4{bottom:809.521600pt;}
.y43{bottom:809.963067pt;}
.y20{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.y42{bottom:825.965067pt;}
.y1d1{bottom:826.408400pt;}
.hc{height:27.171875pt;}
.h4{height:28.437500pt;}
.h2{height:31.700521pt;}
.h3{height:35.546875pt;}
.h5{height:36.229167pt;}
.hd{height:43.022135pt;}
.h7{height:45.286458pt;}
.ha{height:47.550781pt;}
.hb{height:49.266469pt;}
.h6{height:49.815104pt;}
.h13{height:50.145771pt;}
.h9{height:54.343750pt;}
.h11{height:54.407750pt;}
.h12{height:54.663750pt;}
.he{height:56.243583pt;}
.h10{height:56.286250pt;}
.hf{height:56.478250pt;}
.h8{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x8{left:86.929200pt;}
.xa{left:105.841200pt;}
.xb{left:113.379200pt;}
.xe{left:124.717467pt;}
.x9{left:133.929200pt;}
.x11{left:159.341333pt;}
.x7{left:211.656000pt;}
.x1{left:227.874800pt;}
.x12{left:230.553600pt;}
.x4{left:306.669467pt;}
.xc{left:321.259867pt;}
.x2{left:340.343600pt;}
.x3{left:345.031067pt;}
.xd{left:366.619600pt;}
.x10{left:452.227333pt;}
.xf{left:460.194667pt;}
.x5{left:535.590533pt;}
}




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