
    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_58b7bb7801a47d699f271fe1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.175000;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_9a0b93087c1009aceee0919a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.184000;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_976cdcd1a43d5889b2938f38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_6524c415a8deeee616c94c0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_3024856dd6e6607d380f67cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_1a60ec811964a3ae2406af5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-3.087360px;}
.ls64{letter-spacing:-1.553760px;}
.ls65{letter-spacing:-1.494000px;}
.ls63{letter-spacing:-1.075680px;}
.ls62{letter-spacing:-0.896400px;}
.ls33{letter-spacing:-0.836640px;}
.ls41{letter-spacing:-0.776880px;}
.ls46{letter-spacing:-0.702000px;}
.ls1d{letter-spacing:-0.675360px;}
.ls9{letter-spacing:-0.594000px;}
.ls68{letter-spacing:-0.537840px;}
.ls7{letter-spacing:-0.486000px;}
.ls1b{letter-spacing:-0.482400px;}
.ls1a{letter-spacing:-0.434160px;}
.ls29{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.358560px;}
.ls3b{letter-spacing:-0.324000px;}
.ls2c{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.264960px;}
.ls1f{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.179280px;}
.lsc{letter-spacing:-0.167040px;}
.ls20{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.119520px;}
.ls42{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.096480px;}
.lsf{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.083664px;}
.ls23{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.149400px;}
.ls69{letter-spacing:0.179280px;}
.ls61{letter-spacing:0.215136px;}
.ls22{letter-spacing:0.216000px;}
.ls71{letter-spacing:0.227088px;}
.ls6{letter-spacing:0.239040px;}
.ls19{letter-spacing:0.241200px;}
.ls36{letter-spacing:0.256968px;}
.ls2a{letter-spacing:0.262080px;}
.ls70{letter-spacing:0.262944px;}
.lse{letter-spacing:0.264960px;}
.ls58{letter-spacing:0.286848px;}
.ls1c{letter-spacing:0.289440px;}
.ls4e{letter-spacing:0.292824px;}
.ls49{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.305280px;}
.ls74{letter-spacing:0.310752px;}
.ls4f{letter-spacing:0.316728px;}
.ls60{letter-spacing:0.334656px;}
.ls25{letter-spacing:0.337680px;}
.ls6a{letter-spacing:0.340632px;}
.ls5e{letter-spacing:0.352584px;}
.ls4{letter-spacing:0.358560px;}
.ls24{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.385920px;}
.ls2f{letter-spacing:0.394416px;}
.ls51{letter-spacing:0.400392px;}
.ls6f{letter-spacing:0.424296px;}
.ls2b{letter-spacing:0.448200px;}
.ls3{letter-spacing:0.459360px;}
.ls6e{letter-spacing:0.525888px;}
.ls67{letter-spacing:0.537840px;}
.ls15{letter-spacing:0.567720px;}
.ls16{letter-spacing:0.591624px;}
.ls2d{letter-spacing:0.597600px;}
.ls5{letter-spacing:0.657360px;}
.ls55{letter-spacing:0.681264px;}
.ls54{letter-spacing:0.926280px;}
.ls6d{letter-spacing:0.932256px;}
.ls57{letter-spacing:0.956160px;}
.ls75{letter-spacing:1.015920px;}
.ls56{letter-spacing:1.075680px;}
.ls4d{letter-spacing:1.117512px;}
.ls5d{letter-spacing:1.314720px;}
.ls38{letter-spacing:1.374480px;}
.ls59{letter-spacing:1.577664px;}
.ls5a{letter-spacing:1.673280px;}
.ls5c{letter-spacing:1.733040px;}
.ls66{letter-spacing:1.792800px;}
.ls14{letter-spacing:2.091600px;}
.ls50{letter-spacing:2.856528px;}
.ls4b{letter-spacing:2.934216px;}
.ls30{letter-spacing:3.525840px;}
.ls37{letter-spacing:3.758904px;}
.ls52{letter-spacing:4.242960px;}
.ls2e{letter-spacing:4.625424px;}
.ls48{letter-spacing:4.804704px;}
.ls3c{letter-spacing:5.730984px;}
.ls39{letter-spacing:6.454080px;}
.ls27{letter-spacing:7.203600px;}
.ls5f{letter-spacing:7.888320px;}
.ls6c{letter-spacing:8.605440px;}
.ls6b{letter-spacing:10.111392px;}
.ls72{letter-spacing:10.756800px;}
.ls28{letter-spacing:11.610000px;}
.ls18{letter-spacing:12.908160px;}
.ls17{letter-spacing:14.342400px;}
.ls3f{letter-spacing:15.776640px;}
.ls34{letter-spacing:16.493760px;}
.ls47{letter-spacing:21.591288px;}
.ls3d{letter-spacing:22.290480px;}
.ls4a{letter-spacing:24.441840px;}
.ls73{letter-spacing:30.895920px;}
.ls53{letter-spacing:44.580960px;}
.ls4c{letter-spacing:47.449440px;}
.ls5b{letter-spacing:55.397520px;}
.ls3a{letter-spacing:69.799680px;}
.ls40{letter-spacing:70.516800px;}
.ls45{letter-spacing:108.846000px;}
.ls43{letter-spacing:171.468000px;}
.ls2{letter-spacing:350.239536px;}
.ls26{letter-spacing:351.995040px;}
.ls13{letter-spacing:402.755760px;}
.ls1{letter-spacing:1057.227840px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.679680px;}
.ws85{word-spacing:-18.414720px;}
.wsdc{word-spacing:-18.406080px;}
.ws73{word-spacing:-18.282240px;}
.wsde{word-spacing:-17.928000px;}
.wsdb{word-spacing:-17.688960px;}
.wsd0{word-spacing:-17.270640px;}
.wsd1{word-spacing:-17.210880px;}
.wsdd{word-spacing:-17.151120px;}
.ws6{word-spacing:-16.971840px;}
.ws2c{word-spacing:-16.852320px;}
.wse0{word-spacing:-16.792560px;}
.ws8{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.553520px;}
.ws7{word-spacing:-16.493760px;}
.ws9{word-spacing:-16.434000px;}
.ws2b{word-spacing:-16.374240px;}
.wsd3{word-spacing:-16.254720px;}
.wsdf{word-spacing:-16.075440px;}
.wsd2{word-spacing:-15.836400px;}
.wscd{word-spacing:-15.776640px;}
.wsd9{word-spacing:-15.716880px;}
.ws5b{word-spacing:-15.390000px;}
.wsb9{word-spacing:-15.228000px;}
.wsba{word-spacing:-15.120000px;}
.wsda{word-spacing:-15.119280px;}
.ws0{word-spacing:-15.012000px;}
.wsad{word-spacing:-14.940000px;}
.wsb8{word-spacing:-14.904000px;}
.ws74{word-spacing:-14.742000px;}
.wsa9{word-spacing:-14.688000px;}
.ws1{word-spacing:-14.526000px;}
.wsbf{word-spacing:-14.310000px;}
.ws3{word-spacing:-11.442240px;}
.ws2{word-spacing:-10.323360px;}
.wsc0{word-spacing:-9.207360px;}
.ws23{word-spacing:-4.721040px;}
.ws63{word-spacing:-4.428000px;}
.ws47{word-spacing:-4.302720px;}
.ws21{word-spacing:-4.003920px;}
.ws61{word-spacing:-3.888000px;}
.ws62{word-spacing:-3.726000px;}
.wse3{word-spacing:-3.585600px;}
.ws44{word-spacing:-3.525840px;}
.ws45{word-spacing:-3.466080px;}
.ws96{word-spacing:-3.286800px;}
.ws6e{word-spacing:-3.132000px;}
.ws52{word-spacing:-2.970000px;}
.wsbe{word-spacing:-2.868480px;}
.ws51{word-spacing:-2.862000px;}
.ws95{word-spacing:-2.808720px;}
.ws86{word-spacing:-2.569680px;}
.ws6d{word-spacing:-2.160000px;}
.wse6{word-spacing:-2.151360px;}
.ws36{word-spacing:-2.091600px;}
.ws34{word-spacing:-1.972080px;}
.ws29{word-spacing:-1.852560px;}
.ws2a{word-spacing:-1.434240px;}
.ws88{word-spacing:-1.374480px;}
.wse2{word-spacing:-1.314720px;}
.ws94{word-spacing:-1.135440px;}
.wsf{word-spacing:-0.792000px;}
.ws1a{word-spacing:-0.717120px;}
.ws4f{word-spacing:-0.702000px;}
.ws2d{word-spacing:-0.675360px;}
.ws1b{word-spacing:-0.657360px;}
.ws75{word-spacing:-0.597600px;}
.ws15{word-spacing:-0.418320px;}
.wsd4{word-spacing:-0.378000px;}
.wsa5{word-spacing:-0.358560px;}
.ws14{word-spacing:-0.298800px;}
.ws30{word-spacing:-0.289440px;}
.ws64{word-spacing:-0.270000px;}
.wsbc{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.119520px;}
.wsb{word-spacing:-0.108000px;}
.ws4b{word-spacing:-0.096480px;}
.ws10{word-spacing:-0.072000px;}
.wse{word-spacing:0.000000px;}
.ws16{word-spacing:0.059760px;}
.ws11{word-spacing:0.083520px;}
.ws91{word-spacing:0.108000px;}
.ws35{word-spacing:0.119520px;}
.ws33{word-spacing:0.167040px;}
.ws49{word-spacing:0.179280px;}
.ws31{word-spacing:0.241200px;}
.ws1d{word-spacing:0.298800px;}
.ws37{word-spacing:0.331200px;}
.wsce{word-spacing:0.358560px;}
.wsc2{word-spacing:0.378000px;}
.ws32{word-spacing:0.385920px;}
.ws5d{word-spacing:0.432000px;}
.ws2e{word-spacing:0.434160px;}
.ws38{word-spacing:0.463680px;}
.wsc{word-spacing:0.486000px;}
.wsd{word-spacing:0.594000px;}
.ws12{word-spacing:0.596160px;}
.ws5c{word-spacing:0.702000px;}
.ws3d{word-spacing:0.717120px;}
.ws2f{word-spacing:0.771840px;}
.ws22{word-spacing:0.776880px;}
.wsb7{word-spacing:0.836640px;}
.ws17{word-spacing:1.015920px;}
.ws70{word-spacing:1.350000px;}
.ws6f{word-spacing:1.458000px;}
.ws3a{word-spacing:1.494000px;}
.ws39{word-spacing:1.733040px;}
.ws4e{word-spacing:2.052000px;}
.wsb4{word-spacing:2.151360px;}
.ws4d{word-spacing:2.160000px;}
.ws90{word-spacing:2.211120px;}
.ws28{word-spacing:2.450160px;}
.ws5e{word-spacing:2.592000px;}
.ws5f{word-spacing:2.754000px;}
.ws72{word-spacing:2.862000px;}
.wsaa{word-spacing:2.868480px;}
.ws46{word-spacing:2.928240px;}
.ws24{word-spacing:3.167280px;}
.ws6b{word-spacing:3.348000px;}
.ws6a{word-spacing:3.510000px;}
.wsa7{word-spacing:3.585600px;}
.ws65{word-spacing:3.618000px;}
.ws87{word-spacing:3.645360px;}
.ws27{word-spacing:3.884400px;}
.ws4c{word-spacing:4.212000px;}
.wsea{word-spacing:4.302720px;}
.ws3e{word-spacing:4.362480px;}
.ws8f{word-spacing:4.601520px;}
.ws59{word-spacing:4.752000px;}
.ws9f{word-spacing:5.019840px;}
.ws5a{word-spacing:5.022000px;}
.ws43{word-spacing:5.079600px;}
.wsbd{word-spacing:5.139360px;}
.ws7e{word-spacing:5.378400px;}
.wsb1{word-spacing:5.497920px;}
.ws56{word-spacing:5.508000px;}
.ws55{word-spacing:5.778000px;}
.wsb0{word-spacing:5.796720px;}
.wsaf{word-spacing:5.856480px;}
.ws7f{word-spacing:6.095520px;}
.ws92{word-spacing:6.513840px;}
.ws9c{word-spacing:6.573600px;}
.ws1e{word-spacing:6.812640px;}
.ws1f{word-spacing:7.290720px;}
.ws41{word-spacing:7.529760px;}
.ws67{word-spacing:7.830000px;}
.ws66{word-spacing:7.938000px;}
.ws42{word-spacing:7.948080px;}
.ws8b{word-spacing:8.007840px;}
.wsa0{word-spacing:8.246880px;}
.ws68{word-spacing:8.424000px;}
.wseb{word-spacing:8.665200px;}
.ws1c{word-spacing:8.724960px;}
.ws77{word-spacing:8.964000px;}
.ws53{word-spacing:9.234000px;}
.ws54{word-spacing:9.342000px;}
.wsc1{word-spacing:9.382320px;}
.ws9d{word-spacing:9.442080px;}
.ws25{word-spacing:9.681120px;}
.wsf2{word-spacing:10.099440px;}
.ws26{word-spacing:10.159200px;}
.wsa2{word-spacing:10.398240px;}
.wsf8{word-spacing:10.816560px;}
.wsa3{word-spacing:10.876320px;}
.ws76{word-spacing:11.115360px;}
.ws6c{word-spacing:11.232000px;}
.ws69{word-spacing:11.394000px;}
.ws8e{word-spacing:11.593440px;}
.ws8d{word-spacing:11.832480px;}
.wsfd{word-spacing:12.250800px;}
.ws8c{word-spacing:12.310560px;}
.ws93{word-spacing:12.549600px;}
.ws57{word-spacing:12.960000px;}
.ws4a{word-spacing:13.027680px;}
.ws89{word-spacing:13.266720px;}
.ws58{word-spacing:13.554000px;}
.wsbb{word-spacing:13.685040px;}
.ws8a{word-spacing:13.744800px;}
.ws78{word-spacing:13.983840px;}
.wsed{word-spacing:14.103360px;}
.wsee{word-spacing:14.402160px;}
.ws48{word-spacing:14.461920px;}
.ws81{word-spacing:14.700960px;}
.ws80{word-spacing:15.179040px;}
.ws20{word-spacing:15.418080px;}
.ws71{word-spacing:15.714000px;}
.wsb5{word-spacing:15.896160px;}
.ws82{word-spacing:16.135200px;}
.ws99{word-spacing:16.553520px;}
.ws50{word-spacing:16.578000px;}
.ws9a{word-spacing:16.613280px;}
.ws7c{word-spacing:16.852320px;}
.wsc6{word-spacing:17.270640px;}
.ws19{word-spacing:17.330400px;}
.ws7d{word-spacing:17.569440px;}
.ws84{word-spacing:18.286560px;}
.wsec{word-spacing:18.704880px;}
.ws83{word-spacing:18.764640px;}
.wsab{word-spacing:19.003680px;}
.wsc8{word-spacing:19.780560px;}
.wsc9{word-spacing:20.258640px;}
.ws3c{word-spacing:20.497680px;}
.wsf9{word-spacing:20.916000px;}
.ws3b{word-spacing:20.975760px;}
.wsc3{word-spacing:21.214800px;}
.wsc5{word-spacing:21.633120px;}
.wsc4{word-spacing:21.692880px;}
.wsb3{word-spacing:21.931920px;}
.wsa1{word-spacing:22.410000px;}
.ws79{word-spacing:22.649040px;}
.ws9e{word-spacing:23.127120px;}
.wsc7{word-spacing:23.366160px;}
.wse5{word-spacing:23.784480px;}
.wse4{word-spacing:23.844240px;}
.wse7{word-spacing:24.083280px;}
.wsef{word-spacing:24.501600px;}
.wsca{word-spacing:24.561360px;}
.wsb2{word-spacing:25.995600px;}
.wscc{word-spacing:26.234640px;}
.wsa4{word-spacing:26.951760px;}
.ws60{word-spacing:27.108000px;}
.wsae{word-spacing:28.146960px;}
.wscb{word-spacing:28.864080px;}
.ws7b{word-spacing:29.103120px;}
.wsac{word-spacing:29.581200px;}
.ws3f{word-spacing:30.537360px;}
.wsfc{word-spacing:30.955680px;}
.ws40{word-spacing:31.015440px;}
.ws7a{word-spacing:31.254480px;}
.ws97{word-spacing:32.688720px;}
.ws98{word-spacing:33.166800px;}
.wscf{word-spacing:34.122960px;}
.wse9{word-spacing:34.541280px;}
.wse8{word-spacing:34.601040px;}
.wsfa{word-spacing:34.899840px;}
.ws18{word-spacing:35.377920px;}
.ws9b{word-spacing:35.616960px;}
.wsfb{word-spacing:36.035280px;}
.wsa8{word-spacing:36.812160px;}
.wsa6{word-spacing:37.529280px;}
.wsf0{word-spacing:40.636800px;}
.wsf1{word-spacing:41.055120px;}
.wsd7{word-spacing:44.700480px;}
.wsd8{word-spacing:45.417600px;}
.wsd5{word-spacing:46.493280px;}
.wsd6{word-spacing:46.851840px;}
.wse1{word-spacing:53.604720px;}
.wsf3{word-spacing:56.951280px;}
.wsb6{word-spacing:58.325760px;}
.wsf4{word-spacing:59.102640px;}
.wsf5{word-spacing:62.927280px;}
.wsf7{word-spacing:63.345600px;}
.wsf6{word-spacing:63.465120px;}
._d{margin-left:-4.253040px;}
._3{margin-left:-3.044880px;}
._0{margin-left:-1.312200px;}
._1{width:1.557360px;}
._6{width:4.068216px;}
._16{width:6.212520px;}
._11{width:7.295040px;}
._7{width:8.900640px;}
._4{width:12.248640px;}
._f{width:13.257576px;}
._13{width:14.261688px;}
._10{width:15.337296px;}
._5{width:17.629200px;}
._14{width:23.854464px;}
._12{width:34.677504px;}
._17{width:38.003760px;}
._15{width:40.746240px;}
._e{width:48.475728px;}
._2{width:57.900240px;}
._a{width:196.882200px;}
._9{width:208.818000px;}
._8{width:228.942000px;}
._b{width:257.720400px;}
._c{width:1145.610000px;}
.fc1{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1b0{bottom:5.219850px;}
.y16b{bottom:5.220000px;}
.y1c1{bottom:5.400000px;}
.y1df{bottom:5.760000px;}
.y181{bottom:5.940000px;}
.y184{bottom:6.840000px;}
.y1d7{bottom:7.020000px;}
.y18c{bottom:7.200000px;}
.y186{bottom:8.100000px;}
.y16d{bottom:22.860000px;}
.y4{bottom:24.300000px;}
.y188{bottom:27.360000px;}
.y82{bottom:32.040000px;}
.y1d9{bottom:40.499850px;}
.y10{bottom:54.360000px;}
.y59{bottom:54.360900px;}
.y1eb{bottom:62.640000px;}
.y1fa{bottom:62.820000px;}
.y54{bottom:84.959850px;}
.y48{bottom:85.680000px;}
.y58{bottom:90.900000px;}
.y15d{bottom:92.451960px;}
.yff{bottom:92.466900px;}
.y124{bottom:94.065480px;}
.y13e{bottom:94.898700px;}
.y204{bottom:99.720000px;}
.y1ab{bottom:100.457100px;}
.y244{bottom:100.620000px;}
.yd2{bottom:100.627560px;}
.yac{bottom:101.099340px;}
.y221{bottom:102.703500px;}
.yee{bottom:104.598360px;}
.y287{bottom:106.920000px;}
.y57{bottom:108.540000px;}
.y15c{bottom:112.068180px;}
.yfe{bottom:112.083120px;}
.y123{bottom:113.681700px;}
.y13d{bottom:114.514920px;}
.y2a5{bottom:114.515460px;}
.y1ff{bottom:115.020000px;}
.y243{bottom:120.240000px;}
.yd1{bottom:120.243780px;}
.yab{bottom:120.715560px;}
.y1d3{bottom:121.884660px;}
.y2d{bottom:121.931490px;}
.y220{bottom:122.319720px;}
.yed{bottom:124.214580px;}
.y286{bottom:126.540000px;}
.y1aa{bottom:129.082140px;}
.y7d{bottom:129.240000px;}
.y15b{bottom:131.684400px;}
.yfd{bottom:131.699340px;}
.y122{bottom:133.297920px;}
.y13c{bottom:134.131140px;}
.y266{bottom:134.163720px;}
.y203{bottom:134.280000px;}
.y2a4{bottom:134.310960px;}
.y56{bottom:135.360000px;}
.yd0{bottom:139.860000px;}
.yaa{bottom:140.331780px;}
.y2c{bottom:141.547710px;}
.y21f{bottom:141.935940px;}
.y84{bottom:143.280000px;}
.y285{bottom:146.160000px;}
.y1a9{bottom:148.698360px;}
.y1d2{bottom:150.509700px;}
.yfc{bottom:151.315560px;}
.y15a{bottom:151.479900px;}
.yec{bottom:152.839620px;}
.y121{bottom:152.914140px;}
.y55{bottom:153.000000px;}
.y202{bottom:153.360000px;}
.y13b{bottom:153.747360px;}
.y265{bottom:153.779940px;}
.y2a3{bottom:153.927180px;}
.y4f{bottom:155.700000px;}
.y5b{bottom:157.140000px;}
.ya9{bottom:159.948000px;}
.y200{bottom:160.200000px;}
.y2b{bottom:161.163930px;}
.y21e{bottom:161.552160px;}
.y17e{bottom:164.717100px;}
.y284{bottom:165.780000px;}
.y242{bottom:167.040000px;}
.y1a8{bottom:168.314580px;}
.ycf{bottom:169.200000px;}
.y1d1{bottom:170.125920px;}
.y53{bottom:170.639850px;}
.y83{bottom:171.360000px;}
.yeb{bottom:172.455840px;}
.y120{bottom:172.530360px;}
.y201{bottom:172.620000px;}
.y13a{bottom:173.363580px;}
.y264{bottom:173.396160px;}
.ya8{bottom:179.564220px;}
.yfb{bottom:179.940600px;}
.y159{bottom:180.284220px;}
.y2a{bottom:180.780150px;}
.y2a2{bottom:181.103040px;}
.y21d{bottom:181.168380px;}
.y283{bottom:185.400000px;}
.y241{bottom:186.663780px;}
.y1a7{bottom:187.930800px;}
.y52{bottom:188.280000px;}
.y1d0{bottom:189.921420px;}
.yce{bottom:190.800000px;}
.y1f9{bottom:191.700000px;}
.yea{bottom:192.072060px;}
.y11f{bottom:192.146580px;}
.y17d{bottom:193.342140px;}
.ya7{bottom:199.180440px;}
.yfa{bottom:199.556820px;}
.y29{bottom:200.396370px;}
.y263{bottom:200.572020px;}
.y2a1{bottom:200.719260px;}
.y21c{bottom:200.784600px;}
.y139{bottom:202.167900px;}
.y51{bottom:205.920000px;}
.y240{bottom:206.280000px;}
.y81{bottom:206.820000px;}
.y1a6{bottom:207.726300px;}
.y158{bottom:209.088540px;}
.y1cf{bottom:209.537640px;}
.y1fe{bottom:210.960000px;}
.ye9{bottom:211.688280px;}
.y228{bottom:211.762800px;}
.y282{bottom:212.608260px;}
.y17c{bottom:212.958360px;}
.ya6{bottom:218.796660px;}
.yf9{bottom:219.173040px;}
.y262{bottom:220.188240px;}
.y28{bottom:220.191870px;}
.y2a0{bottom:220.335480px;}
.y21b{bottom:220.400820px;}
.ycd{bottom:220.771620px;}
.y138{bottom:221.784120px;}
.y50{bottom:223.560000px;}
.y80{bottom:224.460000px;}
.y1a5{bottom:227.342520px;}
.y157{bottom:228.704760px;}
.y1ce{bottom:229.153860px;}
.y1fd{bottom:230.040000px;}
.ye8{bottom:231.304500px;}
.y227{bottom:231.379020px;}
.y281{bottom:232.403760px;}
.y17b{bottom:232.574580px;}
.y23f{bottom:233.460000px;}
.y1fb{bottom:236.880000px;}
.ya5{bottom:238.412880px;}
.yf8{bottom:238.789260px;}
.y261{bottom:239.804460px;}
.y27{bottom:239.808090px;}
.y29f{bottom:239.951700px;}
.y11e{bottom:240.387840px;}
.y137{bottom:241.400340px;}
.y1a4{bottom:246.958740px;}
.y156{bottom:248.320980px;}
.y1cd{bottom:248.770080px;}
.y21a{bottom:249.025860px;}
.y1fc{bottom:249.300000px;}
.ycc{bottom:249.396660px;}
.ye7{bottom:250.920720px;}
.y7f{bottom:251.100000px;}
.y280{bottom:252.019980px;}
.y17a{bottom:252.370080px;}
.y23e{bottom:253.263780px;}
.y49{bottom:253.620000px;}
.ya4{bottom:258.029100px;}
.yf7{bottom:258.405480px;}
.y4e{bottom:259.020000px;}
.y26{bottom:259.424310px;}
.y29e{bottom:259.567920px;}
.y11d{bottom:260.004060px;}
.y136{bottom:261.016560px;}
.y1a3{bottom:266.574960px;}
.y260{bottom:267.159600px;}
.y155{bottom:267.937200px;}
.y1cc{bottom:268.386300px;}
.y1f4{bottom:268.560000px;}
.y219{bottom:268.642080px;}
.y7e{bottom:268.740000px;}
.ycb{bottom:269.012880px;}
.y179{bottom:271.986300px;}
.y23d{bottom:272.880000px;}
.y4d{bottom:276.660000px;}
.ya3{bottom:277.645320px;}
.yf6{bottom:278.021700px;}
.y25{bottom:279.040530px;}
.y27f{bottom:279.195840px;}
.y29d{bottom:279.363420px;}
.ye6{bottom:279.545760px;}
.y11c{bottom:279.620280px;}
.y25f{bottom:286.775820px;}
.y1f8{bottom:287.640000px;}
.y154{bottom:287.732700px;}
.y1cb{bottom:288.002520px;}
.y218{bottom:288.258300px;}
.yca{bottom:288.629100px;}
.y135{bottom:290.000160px;}
.y178{bottom:291.602520px;}
.y4c{bottom:294.300000px;}
.y1a2{bottom:295.200000px;}
.ya2{bottom:297.261540px;}
.yf5{bottom:297.637920px;}
.y24{bottom:298.836030px;}
.y11b{bottom:299.415780px;}
.y23c{bottom:300.103020px;}
.y7c{bottom:304.200000px;}
.y29c{bottom:306.360000px;}
.y27e{bottom:306.371700px;}
.y1f7{bottom:306.900000px;}
.y1ca{bottom:307.618740px;}
.y217{bottom:308.053800px;}
.ye5{bottom:308.350080px;}
.yc9{bottom:308.424600px;}
.y134{bottom:309.616380px;}
.y1a1{bottom:309.780000px;}
.y177{bottom:311.218740px;}
.y4b{bottom:311.940000px;}
.y1f5{bottom:313.560000px;}
.y25e{bottom:313.951680px;}
.y153{bottom:316.537020px;}
.ya1{bottom:317.057040px;}
.yf4{bottom:317.433420px;}
.y23{bottom:318.810810px;}
.y11a{bottom:319.032000px;}
.y23b{bottom:319.719240px;}
.y7b{bottom:321.840000px;}
.y1f6{bottom:325.980000px;}
.y27d{bottom:325.987920px;}
.y29b{bottom:326.187540px;}
.y1c9{bottom:327.234960px;}
.y216{bottom:327.670020px;}
.yc8{bottom:328.040820px;}
.y1a0{bottom:328.320000px;}
.y176{bottom:330.834960px;}
.y25d{bottom:333.567900px;}
.y152{bottom:336.153240px;}
.ya0{bottom:336.673260px;}
.ye4{bottom:336.975120px;}
.yf3{bottom:337.049640px;}
.y133{bottom:338.241420px;}
.y22{bottom:338.427030px;}
.y119{bottom:338.648220px;}
.y4a{bottom:339.300000px;}
.y23a{bottom:339.335460px;}
.y7a{bottom:339.480000px;}
.y1f0{bottom:345.240000px;}
.y27c{bottom:345.604140px;}
.y29a{bottom:345.803760px;}
.y19f{bottom:346.680000px;}
.y215{bottom:347.286240px;}
.y151{bottom:355.769460px;}
.y1c8{bottom:355.860000px;}
.y9f{bottom:356.289480px;}
.ye3{bottom:356.591340px;}
.yc7{bottom:356.665860px;}
.y132{bottom:357.857640px;}
.y21{bottom:358.043250px;}
.y118{bottom:358.264440px;}
.y239{bottom:358.951680px;}
.y175{bottom:359.460000px;}
.y25c{bottom:360.743760px;}
.y1f3{bottom:364.320000px;}
.y19e{bottom:365.220000px;}
.y79{bottom:366.120000px;}
.y47{bottom:367.904880px;}
.y1c7{bottom:370.440000px;}
.y27b{bottom:372.780000px;}
.y299{bottom:372.979620px;}
.y174{bottom:374.040000px;}
.y150{bottom:375.385680px;}
.y214{bottom:375.911280px;}
.ye2{bottom:376.207560px;}
.yc6{bottom:376.282080px;}
.y131{bottom:377.473860px;}
.y20{bottom:377.659470px;}
.y117{bottom:377.880660px;}
.y25b{bottom:380.359980px;}
.y19d{bottom:383.580000px;}
.y78{bottom:383.760000px;}
.y9e{bottom:384.914520px;}
.y238{bottom:386.127540px;}
.y226{bottom:386.889480px;}
.y1c6{bottom:388.980000px;}
.y1f1{bottom:390.240000px;}
.y173{bottom:392.580000px;}
.y27a{bottom:392.583780px;}
.y298{bottom:392.595840px;}
.y14f{bottom:395.001900px;}
.y213{bottom:395.527500px;}
.ye1{bottom:395.823780px;}
.yc5{bottom:395.898300px;}
.y46{bottom:396.529920px;}
.y130{bottom:397.090080px;}
.y1f{bottom:397.275690px;}
.y25a{bottom:399.976200px;}
.y77{bottom:401.400000px;}
.y19c{bottom:402.120000px;}
.y1f2{bottom:402.660000px;}
.y9d{bottom:404.530740px;}
.y116{bottom:406.505700px;}
.y1c5{bottom:407.340000px;}
.y172{bottom:410.940000px;}
.y279{bottom:412.200000px;}
.y297{bottom:412.212060px;}
.y237{bottom:413.303400px;}
.y14e{bottom:414.618120px;}
.y212{bottom:415.143720px;}
.ye0{bottom:415.440000px;}
.yc4{bottom:415.514520px;}
.y1e{bottom:416.891910px;}
.y76{bottom:419.220000px;}
.y259{bottom:419.592420px;}
.y19b{bottom:420.480000px;}
.y1ea{bottom:421.920000px;}
.y9c{bottom:424.146960px;}
.y45{bottom:424.975680px;}
.y19a{bottom:425.700000px;}
.y12f{bottom:425.715120px;}
.y1c4{bottom:425.880000px;}
.y115{bottom:426.121920px;}
.y171{bottom:429.480000px;}
.y236{bottom:432.919620px;}
.y14d{bottom:434.234340px;}
.y211{bottom:434.759940px;}
.yc3{bottom:435.130740px;}
.y1d{bottom:436.687410px;}
.y278{bottom:439.260300px;}
.y258{bottom:439.387920px;}
.y1ef{bottom:441.000000px;}
.y9b{bottom:443.763180px;}
.y198{bottom:443.880000px;}
.ydf{bottom:444.087180px;}
.y1c3{bottom:444.240000px;}
.y12e{bottom:445.331340px;}
.y114{bottom:445.738140px;}
.y75{bottom:445.860000px;}
.y170{bottom:447.840000px;}
.y235{bottom:452.535840px;}
.y44{bottom:453.780000px;}
.y14c{bottom:453.850560px;}
.y210{bottom:454.376160px;}
.yc2{bottom:454.746960px;}
.y199{bottom:456.660000px;}
.y257{bottom:459.004140px;}
.y277{bottom:459.055800px;}
.y1ee{bottom:460.260000px;}
.y1c2{bottom:462.780000px;}
.y9a{bottom:463.379400px;}
.y74{bottom:463.500000px;}
.yde{bottom:463.703400px;}
.y12d{bottom:464.947560px;}
.y1c{bottom:465.312450px;}
.y113{bottom:465.354360px;}
.y16f{bottom:466.380000px;}
.y1ec{bottom:466.920000px;}
.y43{bottom:473.400000px;}
.yc1{bottom:474.363180px;}
.y276{bottom:478.672020px;}
.y1ed{bottom:479.340000px;}
.y234{bottom:479.711700px;}
.y73{bottom:481.140000px;}
.y14b{bottom:482.475600px;}
.y99{bottom:482.995620px;}
.y20f{bottom:483.001200px;}
.ydd{bottom:483.319620px;}
.y12c{bottom:484.563780px;}
.y16c{bottom:484.740000px;}
.y112{bottom:484.970580px;}
.y256{bottom:486.180000px;}
.y16e{bottom:489.960000px;}
.y197{bottom:489.967560px;}
.y1b{bottom:493.937490px;}
.y225{bottom:493.979400px;}
.y1bf{bottom:495.720000px;}
.y1e9{bottom:498.600000px;}
.y72{bottom:498.780000px;}
.y233{bottom:499.507200px;}
.y1c0{bottom:499.680000px;}
.y42{bottom:502.079580px;}
.y14a{bottom:502.271100px;}
.y98{bottom:502.611840px;}
.y20e{bottom:502.617420px;}
.ydc{bottom:502.935840px;}
.yc0{bottom:502.988220px;}
.y1e8{bottom:503.820000px;}
.y12b{bottom:504.180000px;}
.y111{bottom:504.586800px;}
.y255{bottom:505.804500px;}
.y275{bottom:505.847880px;}
.y169{bottom:508.140000px;}
.y1a{bottom:513.553710px;}
.y224{bottom:513.595620px;}
.y71{bottom:516.600000px;}
.y196{bottom:518.592600px;}
.y232{bottom:519.123420px;}
.y16a{bottom:520.920000px;}
.y41{bottom:521.695800px;}
.y97{bottom:522.228060px;}
.y20d{bottom:522.233640px;}
.y149{bottom:522.245880px;}
.ydb{bottom:522.552060px;}
.ybf{bottom:522.604440px;}
.y110{bottom:524.203020px;}
.y254{bottom:525.600000px;}
.y296{bottom:525.635460px;}
.y1be{bottom:532.996380px;}
.y274{bottom:533.023740px;}
.y19{bottom:533.169930px;}
.y223{bottom:533.211840px;}
.y12a{bottom:533.700000px;}
.y70{bottom:534.240000px;}
.y40{bottom:541.312020px;}
.y96{bottom:541.844280px;}
.y20c{bottom:541.849860px;}
.y148{bottom:542.041380px;}
.yda{bottom:542.168280px;}
.ybe{bottom:542.220660px;}
.y231{bottom:546.120000px;}
.y195{bottom:547.217640px;}
.y1e7{bottom:549.548820px;}
.y6f{bottom:551.880000px;}
.y253{bottom:552.600000px;}
.y295{bottom:552.632040px;}
.y273{bottom:552.639960px;}
.y10f{bottom:553.007340px;}
.y168{bottom:554.235120px;}
.y3f{bottom:560.928240px;}
.y95{bottom:561.460500px;}
.y20b{bottom:561.466080px;}
.y1bd{bottom:561.621420px;}
.y147{bottom:561.657600px;}
.yd9{bottom:561.963780px;}
.ybd{bottom:562.016160px;}
.y18{bottom:562.332810px;}
.y129{bottom:563.614740px;}
.y230{bottom:565.920000px;}
.y194{bottom:566.833860px;}
.y6e{bottom:569.520000px;}
.y294{bottom:572.427540px;}
.y272{bottom:572.435460px;}
.y252{bottom:572.443380px;}
.y10e{bottom:572.623560px;}
.y1e6{bottom:578.173860px;}
.y3e{bottom:580.544460px;}
.y1bc{bottom:581.237640px;}
.y94{bottom:581.256000px;}
.y20a{bottom:581.261580px;}
.y146{bottom:581.273820px;}
.yd8{bottom:581.580000px;}
.ybc{bottom:581.632380px;}
.y17{bottom:581.949030px;}
.y167{bottom:582.860160px;}
.y22f{bottom:585.540000px;}
.y193{bottom:586.450080px;}
.y6d{bottom:587.160000px;}
.yf2{bottom:590.641200px;}
.y293{bottom:592.043760px;}
.y251{bottom:592.059600px;}
.y10d{bottom:592.239780px;}
.y1e5{bottom:597.790080px;}
.y271{bottom:599.432040px;}
.y3d{bottom:600.160680px;}
.y1bb{bottom:600.853860px;}
.y209{bottom:600.877800px;}
.y145{bottom:600.890040px;}
.yd7{bottom:601.200000px;}
.ybb{bottom:601.248600px;}
.y16{bottom:601.744530px;}
.y6c{bottom:604.800000px;}
.y192{bottom:606.066300px;}
.y93{bottom:609.881040px;}
.yf1{bottom:610.257420px;}
.y166{bottom:611.485200px;}
.y250{bottom:611.675820px;}
.y10c{bottom:611.856000px;}
.y22e{bottom:612.736200px;}
.y1e4{bottom:617.406300px;}
.y270{bottom:619.048260px;}
.y292{bottom:619.219620px;}
.y3c{bottom:619.776900px;}
.y1ba{bottom:620.470080px;}
.y208{bottom:620.494020px;}
.y144{bottom:620.506260px;}
.yd6{bottom:620.820000px;}
.yba{bottom:620.864820px;}
.y6b{bottom:622.620000px;}
.y191{bottom:625.682520px;}
.y92{bottom:629.497260px;}
.yf0{bottom:629.873640px;}
.y15{bottom:630.907410px;}
.y165{bottom:631.101420px;}
.y10b{bottom:631.472220px;}
.y1e3{bottom:637.022520px;}
.y291{bottom:638.835840px;}
.y24f{bottom:638.851680px;}
.y3b{bottom:639.393120px;}
.y22d{bottom:639.912060px;}
.y1b9{bottom:640.086300px;}
.y207{bottom:640.110240px;}
.y143{bottom:640.122480px;}
.yd5{bottom:640.440000px;}
.yb9{bottom:640.481040px;}
.y190{bottom:645.298740px;}
.y26f{bottom:646.224120px;}
.y91{bottom:649.113480px;}
.y6a{bottom:649.260000px;}
.yef{bottom:649.489860px;}
.y14{bottom:650.523630px;}
.y164{bottom:650.717640px;}
.y10a{bottom:651.088440px;}
.y1e2{bottom:656.638740px;}
.y24e{bottom:658.467900px;}
.y3a{bottom:659.188620px;}
.y1b8{bottom:659.702520px;}
.y22c{bottom:659.707560px;}
.y206{bottom:659.726460px;}
.y142{bottom:659.738700px;}
.yd4{bottom:660.063780px;}
.y18f{bottom:664.914960px;}
.y290{bottom:666.011700px;}
.y26e{bottom:666.019620px;}
.y69{bottom:666.900000px;}
.y90{bottom:668.729700px;}
.yb8{bottom:669.106080px;}
.y13{bottom:670.139850px;}
.y163{bottom:670.333860px;}
.y109{bottom:670.704660px;}
.y1e1{bottom:676.254960px;}
.y24d{bottom:678.084120px;}
.y39{bottom:678.984120px;}
.y1b7{bottom:679.318740px;}
.y22b{bottom:679.323780px;}
.y205{bottom:679.342680px;}
.y141{bottom:679.354920px;}
.yd3{bottom:679.680000px;}
.y68{bottom:684.540000px;}
.y28f{bottom:685.627920px;}
.y26d{bottom:685.635840px;}
.y8f{bottom:688.345920px;}
.yb7{bottom:688.722300px;}
.y162{bottom:689.950080px;}
.y108{bottom:690.320880px;}
.y18e{bottom:693.540000px;}
.y5f{bottom:695.519850px;}
.y24c{bottom:697.700340px;}
.y1b6{bottom:698.934960px;}
.y22a{bottom:698.940000px;}
.y38{bottom:698.958900px;}
.y140{bottom:698.971140px;}
.y67{bottom:702.180000px;}
.y1e0{bottom:704.880000px;}
.y28e{bottom:705.244140px;}
.y8e{bottom:707.962140px;}
.y18b{bottom:708.120000px;}
.yb6{bottom:708.338520px;}
.y161{bottom:709.566300px;}
.y107{bottom:709.937100px;}
.y26c{bottom:712.811700px;}
.y18d{bottom:714.420000px;}
.y12{bottom:718.023600px;}
.y37{bottom:718.575120px;}
.y1de{bottom:718.740000px;}
.y13f{bottom:718.766640px;}
.y222{bottom:718.945920px;}
.y66{bottom:719.820000px;}
.y24b{bottom:724.876200px;}
.y1b5{bottom:727.560000px;}
.y8d{bottom:727.578360px;}
.yb5{bottom:727.954740px;}
.y229{bottom:728.280000px;}
.y18a{bottom:728.460000px;}
.y160{bottom:729.182520px;}
.y128{bottom:729.553320px;}
.y28d{bottom:732.420000px;}
.y26b{bottom:732.427920px;}
.y1dd{bottom:736.920000px;}
.y65{bottom:737.639850px;}
.y36{bottom:738.191340px;}
.y106{bottom:738.562140px;}
.y11{bottom:739.800000px;}
.y1b4{bottom:742.320000px;}
.y24a{bottom:744.492420px;}
.yb4{bottom:747.570960px;}
.y5c{bottom:748.440000px;}
.y15f{bottom:748.798740px;}
.y127{bottom:749.169540px;}
.y189{bottom:749.700000px;}
.y26a{bottom:752.044140px;}
.y28c{bottom:752.223630px;}
.y64{bottom:755.280000px;}
.y1dc{bottom:756.180000px;}
.y8c{bottom:756.203400px;}
.y35{bottom:757.807560px;}
.y105{bottom:758.178360px;}
.yf{bottom:758.488500px;}
.y1b3{bottom:760.680000px;}
.y249{bottom:764.108640px;}
.yb3{bottom:767.187180px;}
.y126{bottom:768.785760px;}
.y187{bottom:769.680000px;}
.y28b{bottom:771.839850px;}
.y63{bottom:772.920000px;}
.ye{bottom:774.513000px;}
.y8b{bottom:775.819620px;}
.y1d8{bottom:776.520000px;}
.y34{bottom:777.423780px;}
.y104{bottom:777.794580px;}
.y1b2{bottom:779.220000px;}
.y1db{bottom:781.740000px;}
.yb2{bottom:786.803400px;}
.y125{bottom:788.581260px;}
.yd{bottom:790.537500px;}
.y248{bottom:791.463780px;}
.y8a{bottom:795.435840px;}
.y33{bottom:797.040000px;}
.y1b1{bottom:797.580000px;}
.y103{bottom:797.590080px;}
.y269{bottom:799.019850px;}
.y28a{bottom:799.039260px;}
.y1da{bottom:799.380000px;}
.y62{bottom:799.560000px;}
.yb1{bottom:806.598900px;}
.yc{bottom:806.737500px;}
.y185{bottom:810.180000px;}
.y247{bottom:811.080000px;}
.y89{bottom:815.052060px;}
.y1af{bottom:816.120000px;}
.y61{bottom:817.200000px;}
.y102{bottom:817.206300px;}
.y268{bottom:818.639850px;}
.y289{bottom:818.655480px;}
.yb{bottom:822.762000px;}
.yb0{bottom:826.215120px;}
.y32{bottom:826.380000px;}
.y15e{bottom:826.560000px;}
.y1d6{bottom:830.160000px;}
.y183{bottom:831.420000px;}
.y1ae{bottom:834.480000px;}
.y60{bottom:834.839850px;}
.y88{bottom:834.847560px;}
.y101{bottom:836.822520px;}
.y246{bottom:838.260000px;}
.y288{bottom:838.271700px;}
.ya{bottom:838.786500px;}
.yaf{bottom:845.831340px;}
.y182{bottom:851.400000px;}
.y1ad{bottom:853.020000px;}
.y87{bottom:854.463780px;}
.y9{bottom:854.811000px;}
.y1d4{bottom:855.540000px;}
.y31{bottom:856.434960px;}
.y100{bottom:856.438740px;}
.y245{bottom:857.880000px;}
.y267{bottom:865.268280px;}
.yae{bottom:865.447560px;}
.y17f{bottom:866.700000px;}
.y180{bottom:869.940000px;}
.y5e{bottom:870.300000px;}
.y8{bottom:871.011000px;}
.y1ac{bottom:871.380000px;}
.y1d5{bottom:873.360000px;}
.y86{bottom:874.080000px;}
.y30{bottom:885.060000px;}
.yad{bottom:885.063780px;}
.y7{bottom:887.035500px;}
.y5d{bottom:887.940000px;}
.y6{bottom:903.060000px;}
.y85{bottom:903.420000px;}
.y2f{bottom:904.680000px;}
.y5a{bottom:905.580000px;}
.y3{bottom:915.480000px;}
.y2{bottom:926.639850px;}
.y5{bottom:928.080000px;}
.y1{bottom:951.659850px;}
.y2e{bottom:958.680000px;}
.h10{height:17.638500px;}
.h12{height:17.640000px;}
.h19{height:17.820000px;}
.h1c{height:18.180000px;}
.h13{height:19.080000px;}
.h14{height:19.258500px;}
.h17{height:19.260000px;}
.h1a{height:19.440000px;}
.h18{height:19.621500px;}
.h15{height:20.520000px;}
.h3{height:32.544000px;}
.h4{height:32.581500px;}
.h11{height:35.280000px;}
.h1d{height:35.281500px;}
.he{height:35.991211px;}
.h16{height:39.780000px;}
.h5{height:43.608960px;}
.hc{height:44.043120px;}
.h8{height:44.461440px;}
.ha{height:47.988281px;}
.h2{height:48.816000px;}
.hf{height:49.302000px;}
.h1b{height:52.920000px;}
.h9{height:54.023040px;}
.h7{height:54.560880px;}
.h6{height:60.477120px;}
.h1e{height:75.060000px;}
.h1f{height:75.240000px;}
.hb{height:267.480000px;}
.hd{height:761.400000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w26{width:50.580000px;}
.w29{width:50.760000px;}
.w34{width:50.941500px;}
.w21{width:51.300000px;}
.we{width:53.100000px;}
.w14{width:53.101500px;}
.w1a{width:54.540000px;}
.w19{width:56.520000px;}
.w1f{width:58.138500px;}
.wb{width:59.040000px;}
.w9{width:61.201500px;}
.wa{width:61.380000px;}
.w22{width:61.560000px;}
.w11{width:62.640000px;}
.w1b{width:63.901500px;}
.w2c{width:68.040000px;}
.w1d{width:69.301500px;}
.w27{width:72.720000px;}
.w12{width:73.080000px;}
.wf{width:74.520000px;}
.w2a{width:75.420000px;}
.w2d{width:82.440000px;}
.w8{width:83.881500px;}
.w2e{width:85.140000px;}
.w7{width:91.440000px;}
.w6{width:91.618500px;}
.w1c{width:95.580000px;}
.w2f{width:95.761500px;}
.w18{width:98.820000px;}
.w31{width:100.440000px;}
.w13{width:104.220000px;}
.w17{width:106.198500px;}
.w28{width:107.640000px;}
.w35{width:110.518500px;}
.w20{width:113.400000px;}
.w2b{width:114.838500px;}
.w32{width:118.080000px;}
.w10{width:119.340000px;}
.w23{width:122.398500px;}
.w33{width:160.020000px;}
.w24{width:230.940000px;}
.w5{width:234.360000px;}
.w15{width:235.258500px;}
.w1e{width:235.440000px;}
.wd{width:239.940000px;}
.w25{width:241.020000px;}
.w4{width:244.438500px;}
.wc{width:246.960000px;}
.w16{width:258.301500px;}
.w2{width:264.420000px;}
.w3{width:539.280000px;}
.w30{width:571.501500px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x26{left:10.080000px;}
.x40{left:11.520000px;}
.x34{left:12.600000px;}
.x21{left:13.860000px;}
.x59{left:14.940000px;}
.x2f{left:16.380000px;}
.x2c{left:17.460000px;}
.x3c{left:19.080000px;}
.x30{left:20.160000px;}
.x57{left:21.420000px;}
.x41{left:22.680000px;}
.x42{left:23.940000px;}
.x3d{left:25.740000px;}
.x43{left:27.540000px;}
.x31{left:28.800000px;}
.x3a{left:31.140000px;}
.x2d{left:32.580000px;}
.x33{left:34.380000px;}
.x4f{left:36.180000px;}
.x2e{left:38.160000px;}
.x24{left:39.780000px;}
.x2a{left:41.940000px;}
.x4b{left:43.200000px;}
.x58{left:44.280000px;}
.x32{left:45.720000px;}
.x48{left:47.160000px;}
.x51{left:49.320000px;}
.x72{left:50.580000px;}
.x50{left:53.100000px;}
.x6e{left:55.260000px;}
.x5a{left:56.700000px;}
.x5b{left:61.200000px;}
.x79{left:65.340000px;}
.x73{left:71.820000px;}
.x4d{left:88.560000px;}
.x1{left:93.600000px;}
.x5e{left:95.220000px;}
.x20{left:96.480000px;}
.x38{left:99.360000px;}
.x15{left:101.700000px;}
.x36{left:103.140000px;}
.x6{left:108.180000px;}
.x13{left:109.260000px;}
.x19{left:114.840000px;}
.x1a{left:120.427560px;}
.x7a{left:122.580000px;}
.x76{left:126.360000px;}
.x16{left:127.980000px;}
.x1d{left:131.199300px;}
.x14{left:134.280000px;}
.x10{left:135.540000px;}
.x1c{left:141.831000px;}
.x46{left:145.080000px;}
.x1b{left:147.065580px;}
.x52{left:153.000000px;}
.x1e{left:154.800000px;}
.x5d{left:161.640000px;}
.x35{left:162.720000px;}
.x2{left:166.860000px;}
.x3{left:174.960000px;}
.x6c{left:176.040000px;}
.x5{left:183.060000px;}
.x63{left:186.120000px;}
.x22{left:191.160000px;}
.x64{left:192.240000px;}
.x39{left:199.800000px;}
.x60{left:212.220000px;}
.x74{left:214.205940px;}
.x53{left:221.040000px;}
.x5c{left:228.219660px;}
.x2b{left:246.420000px;}
.x6d{left:261.180000px;}
.x62{left:271.800000px;}
.x3b{left:274.320000px;}
.x65{left:281.880000px;}
.x54{left:284.940000px;}
.x66{left:288.000000px;}
.x49{left:294.660000px;}
.x7{left:302.047920px;}
.x23{left:307.800000px;}
.x25{left:320.940000px;}
.x17{left:327.240000px;}
.x44{left:333.900000px;}
.x6f{left:367.380000px;}
.x77{left:371.700000px;}
.x47{left:380.340000px;}
.x67{left:382.860000px;}
.x68{left:388.980000px;}
.x5f{left:392.580000px;}
.x37{left:393.660000px;}
.x1f{left:399.240000px;}
.x75{left:422.640000px;}
.x18{left:428.580000px;}
.x27{left:431.820000px;}
.x4e{left:444.240000px;}
.x55{left:449.640000px;}
.xe{left:454.137120px;}
.x3e{left:456.300000px;}
.x70{left:463.140000px;}
.x8{left:468.360000px;}
.xb{left:476.995320px;}
.x9{left:480.775140px;}
.x69{left:482.040000px;}
.x12{left:483.474240px;}
.xc{left:487.079820px;}
.x11{left:489.046860px;}
.xa{left:509.041620px;}
.x56{left:511.200000px;}
.x61{left:518.760000px;}
.x78{left:523.080000px;}
.x3f{left:529.380000px;}
.xf{left:530.629920px;}
.xd{left:535.679640px;}
.x4a{left:539.820000px;}
.x28{left:542.160000px;}
.x29{left:555.120000px;}
.x4c{left:556.380000px;}
.x71{left:569.340000px;}
.x45{left:581.400000px;}
.x6a{left:583.020000px;}
.x6b{left:587.160000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.744320pt;}
.ls64{letter-spacing:-1.381120pt;}
.ls65{letter-spacing:-1.328000pt;}
.ls63{letter-spacing:-0.956160pt;}
.ls62{letter-spacing:-0.796800pt;}
.ls33{letter-spacing:-0.743680pt;}
.ls41{letter-spacing:-0.690560pt;}
.ls46{letter-spacing:-0.624000pt;}
.ls1d{letter-spacing:-0.600320pt;}
.ls9{letter-spacing:-0.528000pt;}
.ls68{letter-spacing:-0.478080pt;}
.ls7{letter-spacing:-0.432000pt;}
.ls1b{letter-spacing:-0.428800pt;}
.ls1a{letter-spacing:-0.385920pt;}
.ls29{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.318720pt;}
.ls3b{letter-spacing:-0.288000pt;}
.ls2c{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls1f{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.159360pt;}
.lsc{letter-spacing:-0.148480pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.085760pt;}
.lsf{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.074368pt;}
.ls23{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.132800pt;}
.ls69{letter-spacing:0.159360pt;}
.ls61{letter-spacing:0.191232pt;}
.ls22{letter-spacing:0.192000pt;}
.ls71{letter-spacing:0.201856pt;}
.ls6{letter-spacing:0.212480pt;}
.ls19{letter-spacing:0.214400pt;}
.ls36{letter-spacing:0.228416pt;}
.ls2a{letter-spacing:0.232960pt;}
.ls70{letter-spacing:0.233728pt;}
.lse{letter-spacing:0.235520pt;}
.ls58{letter-spacing:0.254976pt;}
.ls1c{letter-spacing:0.257280pt;}
.ls4e{letter-spacing:0.260288pt;}
.ls49{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.271360pt;}
.ls74{letter-spacing:0.276224pt;}
.ls4f{letter-spacing:0.281536pt;}
.ls60{letter-spacing:0.297472pt;}
.ls25{letter-spacing:0.300160pt;}
.ls6a{letter-spacing:0.302784pt;}
.ls5e{letter-spacing:0.313408pt;}
.ls4{letter-spacing:0.318720pt;}
.ls24{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.343040pt;}
.ls2f{letter-spacing:0.350592pt;}
.ls51{letter-spacing:0.355904pt;}
.ls6f{letter-spacing:0.377152pt;}
.ls2b{letter-spacing:0.398400pt;}
.ls3{letter-spacing:0.408320pt;}
.ls6e{letter-spacing:0.467456pt;}
.ls67{letter-spacing:0.478080pt;}
.ls15{letter-spacing:0.504640pt;}
.ls16{letter-spacing:0.525888pt;}
.ls2d{letter-spacing:0.531200pt;}
.ls5{letter-spacing:0.584320pt;}
.ls55{letter-spacing:0.605568pt;}
.ls54{letter-spacing:0.823360pt;}
.ls6d{letter-spacing:0.828672pt;}
.ls57{letter-spacing:0.849920pt;}
.ls75{letter-spacing:0.903040pt;}
.ls56{letter-spacing:0.956160pt;}
.ls4d{letter-spacing:0.993344pt;}
.ls5d{letter-spacing:1.168640pt;}
.ls38{letter-spacing:1.221760pt;}
.ls59{letter-spacing:1.402368pt;}
.ls5a{letter-spacing:1.487360pt;}
.ls5c{letter-spacing:1.540480pt;}
.ls66{letter-spacing:1.593600pt;}
.ls14{letter-spacing:1.859200pt;}
.ls50{letter-spacing:2.539136pt;}
.ls4b{letter-spacing:2.608192pt;}
.ls30{letter-spacing:3.134080pt;}
.ls37{letter-spacing:3.341248pt;}
.ls52{letter-spacing:3.771520pt;}
.ls2e{letter-spacing:4.111488pt;}
.ls48{letter-spacing:4.270848pt;}
.ls3c{letter-spacing:5.094208pt;}
.ls39{letter-spacing:5.736960pt;}
.ls27{letter-spacing:6.403200pt;}
.ls5f{letter-spacing:7.011840pt;}
.ls6c{letter-spacing:7.649280pt;}
.ls6b{letter-spacing:8.987904pt;}
.ls72{letter-spacing:9.561600pt;}
.ls28{letter-spacing:10.320000pt;}
.ls18{letter-spacing:11.473920pt;}
.ls17{letter-spacing:12.748800pt;}
.ls3f{letter-spacing:14.023680pt;}
.ls34{letter-spacing:14.661120pt;}
.ls47{letter-spacing:19.192256pt;}
.ls3d{letter-spacing:19.813760pt;}
.ls4a{letter-spacing:21.726080pt;}
.ls73{letter-spacing:27.463040pt;}
.ls53{letter-spacing:39.627520pt;}
.ls4c{letter-spacing:42.177280pt;}
.ls5b{letter-spacing:49.242240pt;}
.ls3a{letter-spacing:62.044160pt;}
.ls40{letter-spacing:62.681600pt;}
.ls45{letter-spacing:96.752000pt;}
.ls43{letter-spacing:152.416000pt;}
.ls2{letter-spacing:311.324032pt;}
.ls26{letter-spacing:312.884480pt;}
.ls13{letter-spacing:358.005120pt;}
.ls1{letter-spacing:939.758080pt;}
.wsa{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.604160pt;}
.ws85{word-spacing:-16.368640pt;}
.wsdc{word-spacing:-16.360960pt;}
.ws73{word-spacing:-16.250880pt;}
.wsde{word-spacing:-15.936000pt;}
.wsdb{word-spacing:-15.723520pt;}
.wsd0{word-spacing:-15.351680pt;}
.wsd1{word-spacing:-15.298560pt;}
.wsdd{word-spacing:-15.245440pt;}
.ws6{word-spacing:-15.086080pt;}
.ws2c{word-spacing:-14.979840pt;}
.wse0{word-spacing:-14.926720pt;}
.ws8{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.714240pt;}
.ws7{word-spacing:-14.661120pt;}
.ws9{word-spacing:-14.608000pt;}
.ws2b{word-spacing:-14.554880pt;}
.wsd3{word-spacing:-14.448640pt;}
.wsdf{word-spacing:-14.289280pt;}
.wsd2{word-spacing:-14.076800pt;}
.wscd{word-spacing:-14.023680pt;}
.wsd9{word-spacing:-13.970560pt;}
.ws5b{word-spacing:-13.680000pt;}
.wsb9{word-spacing:-13.536000pt;}
.wsba{word-spacing:-13.440000pt;}
.wsda{word-spacing:-13.439360pt;}
.ws0{word-spacing:-13.344000pt;}
.wsad{word-spacing:-13.280000pt;}
.wsb8{word-spacing:-13.248000pt;}
.ws74{word-spacing:-13.104000pt;}
.wsa9{word-spacing:-13.056000pt;}
.ws1{word-spacing:-12.912000pt;}
.wsbf{word-spacing:-12.720000pt;}
.ws3{word-spacing:-10.170880pt;}
.ws2{word-spacing:-9.176320pt;}
.wsc0{word-spacing:-8.184320pt;}
.ws23{word-spacing:-4.196480pt;}
.ws63{word-spacing:-3.936000pt;}
.ws47{word-spacing:-3.824640pt;}
.ws21{word-spacing:-3.559040pt;}
.ws61{word-spacing:-3.456000pt;}
.ws62{word-spacing:-3.312000pt;}
.wse3{word-spacing:-3.187200pt;}
.ws44{word-spacing:-3.134080pt;}
.ws45{word-spacing:-3.080960pt;}
.ws96{word-spacing:-2.921600pt;}
.ws6e{word-spacing:-2.784000pt;}
.ws52{word-spacing:-2.640000pt;}
.wsbe{word-spacing:-2.549760pt;}
.ws51{word-spacing:-2.544000pt;}
.ws95{word-spacing:-2.496640pt;}
.ws86{word-spacing:-2.284160pt;}
.ws6d{word-spacing:-1.920000pt;}
.wse6{word-spacing:-1.912320pt;}
.ws36{word-spacing:-1.859200pt;}
.ws34{word-spacing:-1.752960pt;}
.ws29{word-spacing:-1.646720pt;}
.ws2a{word-spacing:-1.274880pt;}
.ws88{word-spacing:-1.221760pt;}
.wse2{word-spacing:-1.168640pt;}
.ws94{word-spacing:-1.009280pt;}
.wsf{word-spacing:-0.704000pt;}
.ws1a{word-spacing:-0.637440pt;}
.ws4f{word-spacing:-0.624000pt;}
.ws2d{word-spacing:-0.600320pt;}
.ws1b{word-spacing:-0.584320pt;}
.ws75{word-spacing:-0.531200pt;}
.ws15{word-spacing:-0.371840pt;}
.wsd4{word-spacing:-0.336000pt;}
.wsa5{word-spacing:-0.318720pt;}
.ws14{word-spacing:-0.265600pt;}
.ws30{word-spacing:-0.257280pt;}
.ws64{word-spacing:-0.240000pt;}
.wsbc{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.106240pt;}
.wsb{word-spacing:-0.096000pt;}
.ws4b{word-spacing:-0.085760pt;}
.ws10{word-spacing:-0.064000pt;}
.wse{word-spacing:0.000000pt;}
.ws16{word-spacing:0.053120pt;}
.ws11{word-spacing:0.074240pt;}
.ws91{word-spacing:0.096000pt;}
.ws35{word-spacing:0.106240pt;}
.ws33{word-spacing:0.148480pt;}
.ws49{word-spacing:0.159360pt;}
.ws31{word-spacing:0.214400pt;}
.ws1d{word-spacing:0.265600pt;}
.ws37{word-spacing:0.294400pt;}
.wsce{word-spacing:0.318720pt;}
.wsc2{word-spacing:0.336000pt;}
.ws32{word-spacing:0.343040pt;}
.ws5d{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.385920pt;}
.ws38{word-spacing:0.412160pt;}
.wsc{word-spacing:0.432000pt;}
.wsd{word-spacing:0.528000pt;}
.ws12{word-spacing:0.529920pt;}
.ws5c{word-spacing:0.624000pt;}
.ws3d{word-spacing:0.637440pt;}
.ws2f{word-spacing:0.686080pt;}
.ws22{word-spacing:0.690560pt;}
.wsb7{word-spacing:0.743680pt;}
.ws17{word-spacing:0.903040pt;}
.ws70{word-spacing:1.200000pt;}
.ws6f{word-spacing:1.296000pt;}
.ws3a{word-spacing:1.328000pt;}
.ws39{word-spacing:1.540480pt;}
.ws4e{word-spacing:1.824000pt;}
.wsb4{word-spacing:1.912320pt;}
.ws4d{word-spacing:1.920000pt;}
.ws90{word-spacing:1.965440pt;}
.ws28{word-spacing:2.177920pt;}
.ws5e{word-spacing:2.304000pt;}
.ws5f{word-spacing:2.448000pt;}
.ws72{word-spacing:2.544000pt;}
.wsaa{word-spacing:2.549760pt;}
.ws46{word-spacing:2.602880pt;}
.ws24{word-spacing:2.815360pt;}
.ws6b{word-spacing:2.976000pt;}
.ws6a{word-spacing:3.120000pt;}
.wsa7{word-spacing:3.187200pt;}
.ws65{word-spacing:3.216000pt;}
.ws87{word-spacing:3.240320pt;}
.ws27{word-spacing:3.452800pt;}
.ws4c{word-spacing:3.744000pt;}
.wsea{word-spacing:3.824640pt;}
.ws3e{word-spacing:3.877760pt;}
.ws8f{word-spacing:4.090240pt;}
.ws59{word-spacing:4.224000pt;}
.ws9f{word-spacing:4.462080pt;}
.ws5a{word-spacing:4.464000pt;}
.ws43{word-spacing:4.515200pt;}
.wsbd{word-spacing:4.568320pt;}
.ws7e{word-spacing:4.780800pt;}
.wsb1{word-spacing:4.887040pt;}
.ws56{word-spacing:4.896000pt;}
.ws55{word-spacing:5.136000pt;}
.wsb0{word-spacing:5.152640pt;}
.wsaf{word-spacing:5.205760pt;}
.ws7f{word-spacing:5.418240pt;}
.ws92{word-spacing:5.790080pt;}
.ws9c{word-spacing:5.843200pt;}
.ws1e{word-spacing:6.055680pt;}
.ws1f{word-spacing:6.480640pt;}
.ws41{word-spacing:6.693120pt;}
.ws67{word-spacing:6.960000pt;}
.ws66{word-spacing:7.056000pt;}
.ws42{word-spacing:7.064960pt;}
.ws8b{word-spacing:7.118080pt;}
.wsa0{word-spacing:7.330560pt;}
.ws68{word-spacing:7.488000pt;}
.wseb{word-spacing:7.702400pt;}
.ws1c{word-spacing:7.755520pt;}
.ws77{word-spacing:7.968000pt;}
.ws53{word-spacing:8.208000pt;}
.ws54{word-spacing:8.304000pt;}
.wsc1{word-spacing:8.339840pt;}
.ws9d{word-spacing:8.392960pt;}
.ws25{word-spacing:8.605440pt;}
.wsf2{word-spacing:8.977280pt;}
.ws26{word-spacing:9.030400pt;}
.wsa2{word-spacing:9.242880pt;}
.wsf8{word-spacing:9.614720pt;}
.wsa3{word-spacing:9.667840pt;}
.ws76{word-spacing:9.880320pt;}
.ws6c{word-spacing:9.984000pt;}
.ws69{word-spacing:10.128000pt;}
.ws8e{word-spacing:10.305280pt;}
.ws8d{word-spacing:10.517760pt;}
.wsfd{word-spacing:10.889600pt;}
.ws8c{word-spacing:10.942720pt;}
.ws93{word-spacing:11.155200pt;}
.ws57{word-spacing:11.520000pt;}
.ws4a{word-spacing:11.580160pt;}
.ws89{word-spacing:11.792640pt;}
.ws58{word-spacing:12.048000pt;}
.wsbb{word-spacing:12.164480pt;}
.ws8a{word-spacing:12.217600pt;}
.ws78{word-spacing:12.430080pt;}
.wsed{word-spacing:12.536320pt;}
.wsee{word-spacing:12.801920pt;}
.ws48{word-spacing:12.855040pt;}
.ws81{word-spacing:13.067520pt;}
.ws80{word-spacing:13.492480pt;}
.ws20{word-spacing:13.704960pt;}
.ws71{word-spacing:13.968000pt;}
.wsb5{word-spacing:14.129920pt;}
.ws82{word-spacing:14.342400pt;}
.ws99{word-spacing:14.714240pt;}
.ws50{word-spacing:14.736000pt;}
.ws9a{word-spacing:14.767360pt;}
.ws7c{word-spacing:14.979840pt;}
.wsc6{word-spacing:15.351680pt;}
.ws19{word-spacing:15.404800pt;}
.ws7d{word-spacing:15.617280pt;}
.ws84{word-spacing:16.254720pt;}
.wsec{word-spacing:16.626560pt;}
.ws83{word-spacing:16.679680pt;}
.wsab{word-spacing:16.892160pt;}
.wsc8{word-spacing:17.582720pt;}
.wsc9{word-spacing:18.007680pt;}
.ws3c{word-spacing:18.220160pt;}
.wsf9{word-spacing:18.592000pt;}
.ws3b{word-spacing:18.645120pt;}
.wsc3{word-spacing:18.857600pt;}
.wsc5{word-spacing:19.229440pt;}
.wsc4{word-spacing:19.282560pt;}
.wsb3{word-spacing:19.495040pt;}
.wsa1{word-spacing:19.920000pt;}
.ws79{word-spacing:20.132480pt;}
.ws9e{word-spacing:20.557440pt;}
.wsc7{word-spacing:20.769920pt;}
.wse5{word-spacing:21.141760pt;}
.wse4{word-spacing:21.194880pt;}
.wse7{word-spacing:21.407360pt;}
.wsef{word-spacing:21.779200pt;}
.wsca{word-spacing:21.832320pt;}
.wsb2{word-spacing:23.107200pt;}
.wscc{word-spacing:23.319680pt;}
.wsa4{word-spacing:23.957120pt;}
.ws60{word-spacing:24.096000pt;}
.wsae{word-spacing:25.019520pt;}
.wscb{word-spacing:25.656960pt;}
.ws7b{word-spacing:25.869440pt;}
.wsac{word-spacing:26.294400pt;}
.ws3f{word-spacing:27.144320pt;}
.wsfc{word-spacing:27.516160pt;}
.ws40{word-spacing:27.569280pt;}
.ws7a{word-spacing:27.781760pt;}
.ws97{word-spacing:29.056640pt;}
.ws98{word-spacing:29.481600pt;}
.wscf{word-spacing:30.331520pt;}
.wse9{word-spacing:30.703360pt;}
.wse8{word-spacing:30.756480pt;}
.wsfa{word-spacing:31.022080pt;}
.ws18{word-spacing:31.447040pt;}
.ws9b{word-spacing:31.659520pt;}
.wsfb{word-spacing:32.031360pt;}
.wsa8{word-spacing:32.721920pt;}
.wsa6{word-spacing:33.359360pt;}
.wsf0{word-spacing:36.121600pt;}
.wsf1{word-spacing:36.493440pt;}
.wsd7{word-spacing:39.733760pt;}
.wsd8{word-spacing:40.371200pt;}
.wsd5{word-spacing:41.327360pt;}
.wsd6{word-spacing:41.646080pt;}
.wse1{word-spacing:47.648640pt;}
.wsf3{word-spacing:50.623360pt;}
.wsb6{word-spacing:51.845120pt;}
.wsf4{word-spacing:52.535680pt;}
.wsf5{word-spacing:55.935360pt;}
.wsf7{word-spacing:56.307200pt;}
.wsf6{word-spacing:56.413440pt;}
._d{margin-left:-3.780480pt;}
._3{margin-left:-2.706560pt;}
._0{margin-left:-1.166400pt;}
._1{width:1.384320pt;}
._6{width:3.616192pt;}
._16{width:5.522240pt;}
._11{width:6.484480pt;}
._7{width:7.911680pt;}
._4{width:10.887680pt;}
._f{width:11.784512pt;}
._13{width:12.677056pt;}
._10{width:13.633152pt;}
._5{width:15.670400pt;}
._14{width:21.203968pt;}
._12{width:30.824448pt;}
._17{width:33.781120pt;}
._15{width:36.218880pt;}
._e{width:43.089536pt;}
._2{width:51.466880pt;}
._a{width:175.006400pt;}
._9{width:185.616000pt;}
._8{width:203.504000pt;}
._b{width:229.084800pt;}
._c{width:1018.320000pt;}
.fs7{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1b0{bottom:4.639867pt;}
.y16b{bottom:4.640000pt;}
.y1c1{bottom:4.800000pt;}
.y1df{bottom:5.120000pt;}
.y181{bottom:5.280000pt;}
.y184{bottom:6.080000pt;}
.y1d7{bottom:6.240000pt;}
.y18c{bottom:6.400000pt;}
.y186{bottom:7.200000pt;}
.y16d{bottom:20.320000pt;}
.y4{bottom:21.600000pt;}
.y188{bottom:24.320000pt;}
.y82{bottom:28.480000pt;}
.y1d9{bottom:35.999867pt;}
.y10{bottom:48.320000pt;}
.y59{bottom:48.320800pt;}
.y1eb{bottom:55.680000pt;}
.y1fa{bottom:55.840000pt;}
.y54{bottom:75.519867pt;}
.y48{bottom:76.160000pt;}
.y58{bottom:80.800000pt;}
.y15d{bottom:82.179520pt;}
.yff{bottom:82.192800pt;}
.y124{bottom:83.613760pt;}
.y13e{bottom:84.354400pt;}
.y204{bottom:88.640000pt;}
.y1ab{bottom:89.295200pt;}
.y244{bottom:89.440000pt;}
.yd2{bottom:89.446720pt;}
.yac{bottom:89.866080pt;}
.y221{bottom:91.292000pt;}
.yee{bottom:92.976320pt;}
.y287{bottom:95.040000pt;}
.y57{bottom:96.480000pt;}
.y15c{bottom:99.616160pt;}
.yfe{bottom:99.629440pt;}
.y123{bottom:101.050400pt;}
.y13d{bottom:101.791040pt;}
.y2a5{bottom:101.791520pt;}
.y1ff{bottom:102.240000pt;}
.y243{bottom:106.880000pt;}
.yd1{bottom:106.883360pt;}
.yab{bottom:107.302720pt;}
.y1d3{bottom:108.341920pt;}
.y2d{bottom:108.383547pt;}
.y220{bottom:108.728640pt;}
.yed{bottom:110.412960pt;}
.y286{bottom:112.480000pt;}
.y1aa{bottom:114.739680pt;}
.y7d{bottom:114.880000pt;}
.y15b{bottom:117.052800pt;}
.yfd{bottom:117.066080pt;}
.y122{bottom:118.487040pt;}
.y13c{bottom:119.227680pt;}
.y266{bottom:119.256640pt;}
.y203{bottom:119.360000pt;}
.y2a4{bottom:119.387520pt;}
.y56{bottom:120.320000pt;}
.yd0{bottom:124.320000pt;}
.yaa{bottom:124.739360pt;}
.y2c{bottom:125.820187pt;}
.y21f{bottom:126.165280pt;}
.y84{bottom:127.360000pt;}
.y285{bottom:129.920000pt;}
.y1a9{bottom:132.176320pt;}
.y1d2{bottom:133.786400pt;}
.yfc{bottom:134.502720pt;}
.y15a{bottom:134.648800pt;}
.yec{bottom:135.857440pt;}
.y121{bottom:135.923680pt;}
.y55{bottom:136.000000pt;}
.y202{bottom:136.320000pt;}
.y13b{bottom:136.664320pt;}
.y265{bottom:136.693280pt;}
.y2a3{bottom:136.824160pt;}
.y4f{bottom:138.400000pt;}
.y5b{bottom:139.680000pt;}
.ya9{bottom:142.176000pt;}
.y200{bottom:142.400000pt;}
.y2b{bottom:143.256827pt;}
.y21e{bottom:143.601920pt;}
.y17e{bottom:146.415200pt;}
.y284{bottom:147.360000pt;}
.y242{bottom:148.480000pt;}
.y1a8{bottom:149.612960pt;}
.ycf{bottom:150.400000pt;}
.y1d1{bottom:151.223040pt;}
.y53{bottom:151.679867pt;}
.y83{bottom:152.320000pt;}
.yeb{bottom:153.294080pt;}
.y120{bottom:153.360320pt;}
.y201{bottom:153.440000pt;}
.y13a{bottom:154.100960pt;}
.y264{bottom:154.129920pt;}
.ya8{bottom:159.612640pt;}
.yfb{bottom:159.947200pt;}
.y159{bottom:160.252640pt;}
.y2a{bottom:160.693467pt;}
.y2a2{bottom:160.980480pt;}
.y21d{bottom:161.038560pt;}
.y283{bottom:164.800000pt;}
.y241{bottom:165.923360pt;}
.y1a7{bottom:167.049600pt;}
.y52{bottom:167.360000pt;}
.y1d0{bottom:168.819040pt;}
.yce{bottom:169.600000pt;}
.y1f9{bottom:170.400000pt;}
.yea{bottom:170.730720pt;}
.y11f{bottom:170.796960pt;}
.y17d{bottom:171.859680pt;}
.ya7{bottom:177.049280pt;}
.yfa{bottom:177.383840pt;}
.y29{bottom:178.130107pt;}
.y263{bottom:178.286240pt;}
.y2a1{bottom:178.417120pt;}
.y21c{bottom:178.475200pt;}
.y139{bottom:179.704800pt;}
.y51{bottom:183.040000pt;}
.y240{bottom:183.360000pt;}
.y81{bottom:183.840000pt;}
.y1a6{bottom:184.645600pt;}
.y158{bottom:185.856480pt;}
.y1cf{bottom:186.255680pt;}
.y1fe{bottom:187.520000pt;}
.ye9{bottom:188.167360pt;}
.y228{bottom:188.233600pt;}
.y282{bottom:188.985120pt;}
.y17c{bottom:189.296320pt;}
.ya6{bottom:194.485920pt;}
.yf9{bottom:194.820480pt;}
.y262{bottom:195.722880pt;}
.y28{bottom:195.726107pt;}
.y2a0{bottom:195.853760pt;}
.y21b{bottom:195.911840pt;}
.ycd{bottom:196.241440pt;}
.y138{bottom:197.141440pt;}
.y50{bottom:198.720000pt;}
.y80{bottom:199.520000pt;}
.y1a5{bottom:202.082240pt;}
.y157{bottom:203.293120pt;}
.y1ce{bottom:203.692320pt;}
.y1fd{bottom:204.480000pt;}
.ye8{bottom:205.604000pt;}
.y227{bottom:205.670240pt;}
.y281{bottom:206.581120pt;}
.y17b{bottom:206.732960pt;}
.y23f{bottom:207.520000pt;}
.y1fb{bottom:210.560000pt;}
.ya5{bottom:211.922560pt;}
.yf8{bottom:212.257120pt;}
.y261{bottom:213.159520pt;}
.y27{bottom:213.162747pt;}
.y29f{bottom:213.290400pt;}
.y11e{bottom:213.678080pt;}
.y137{bottom:214.578080pt;}
.y1a4{bottom:219.518880pt;}
.y156{bottom:220.729760pt;}
.y1cd{bottom:221.128960pt;}
.y21a{bottom:221.356320pt;}
.y1fc{bottom:221.600000pt;}
.ycc{bottom:221.685920pt;}
.ye7{bottom:223.040640pt;}
.y7f{bottom:223.200000pt;}
.y280{bottom:224.017760pt;}
.y17a{bottom:224.328960pt;}
.y23e{bottom:225.123360pt;}
.y49{bottom:225.440000pt;}
.ya4{bottom:229.359200pt;}
.yf7{bottom:229.693760pt;}
.y4e{bottom:230.240000pt;}
.y26{bottom:230.599387pt;}
.y29e{bottom:230.727040pt;}
.y11d{bottom:231.114720pt;}
.y136{bottom:232.014720pt;}
.y1a3{bottom:236.955520pt;}
.y260{bottom:237.475200pt;}
.y155{bottom:238.166400pt;}
.y1cc{bottom:238.565600pt;}
.y1f4{bottom:238.720000pt;}
.y219{bottom:238.792960pt;}
.y7e{bottom:238.880000pt;}
.ycb{bottom:239.122560pt;}
.y179{bottom:241.765600pt;}
.y23d{bottom:242.560000pt;}
.y4d{bottom:245.920000pt;}
.ya3{bottom:246.795840pt;}
.yf6{bottom:247.130400pt;}
.y25{bottom:248.036027pt;}
.y27f{bottom:248.174080pt;}
.y29d{bottom:248.323040pt;}
.ye6{bottom:248.485120pt;}
.y11c{bottom:248.551360pt;}
.y25f{bottom:254.911840pt;}
.y1f8{bottom:255.680000pt;}
.y154{bottom:255.762400pt;}
.y1cb{bottom:256.002240pt;}
.y218{bottom:256.229600pt;}
.yca{bottom:256.559200pt;}
.y135{bottom:257.777920pt;}
.y178{bottom:259.202240pt;}
.y4c{bottom:261.600000pt;}
.y1a2{bottom:262.400000pt;}
.ya2{bottom:264.232480pt;}
.yf5{bottom:264.567040pt;}
.y24{bottom:265.632027pt;}
.y11b{bottom:266.147360pt;}
.y23c{bottom:266.758240pt;}
.y7c{bottom:270.400000pt;}
.y29c{bottom:272.320000pt;}
.y27e{bottom:272.330400pt;}
.y1f7{bottom:272.800000pt;}
.y1ca{bottom:273.438880pt;}
.y217{bottom:273.825600pt;}
.ye5{bottom:274.088960pt;}
.yc9{bottom:274.155200pt;}
.y134{bottom:275.214560pt;}
.y1a1{bottom:275.360000pt;}
.y177{bottom:276.638880pt;}
.y4b{bottom:277.280000pt;}
.y1f5{bottom:278.720000pt;}
.y25e{bottom:279.068160pt;}
.y153{bottom:281.366240pt;}
.ya1{bottom:281.828480pt;}
.yf4{bottom:282.163040pt;}
.y23{bottom:283.387387pt;}
.y11a{bottom:283.584000pt;}
.y23b{bottom:284.194880pt;}
.y7b{bottom:286.080000pt;}
.y1f6{bottom:289.760000pt;}
.y27d{bottom:289.767040pt;}
.y29b{bottom:289.944480pt;}
.y1c9{bottom:290.875520pt;}
.y216{bottom:291.262240pt;}
.yc8{bottom:291.591840pt;}
.y1a0{bottom:291.840000pt;}
.y176{bottom:294.075520pt;}
.y25d{bottom:296.504800pt;}
.y152{bottom:298.802880pt;}
.ya0{bottom:299.265120pt;}
.ye4{bottom:299.533440pt;}
.yf3{bottom:299.599680pt;}
.y133{bottom:300.659040pt;}
.y22{bottom:300.824027pt;}
.y119{bottom:301.020640pt;}
.y4a{bottom:301.600000pt;}
.y23a{bottom:301.631520pt;}
.y7a{bottom:301.760000pt;}
.y1f0{bottom:306.880000pt;}
.y27c{bottom:307.203680pt;}
.y29a{bottom:307.381120pt;}
.y19f{bottom:308.160000pt;}
.y215{bottom:308.698880pt;}
.y151{bottom:316.239520pt;}
.y1c8{bottom:316.320000pt;}
.y9f{bottom:316.701760pt;}
.ye3{bottom:316.970080pt;}
.yc7{bottom:317.036320pt;}
.y132{bottom:318.095680pt;}
.y21{bottom:318.260667pt;}
.y118{bottom:318.457280pt;}
.y239{bottom:319.068160pt;}
.y175{bottom:319.520000pt;}
.y25c{bottom:320.661120pt;}
.y1f3{bottom:323.840000pt;}
.y19e{bottom:324.640000pt;}
.y79{bottom:325.440000pt;}
.y47{bottom:327.026560pt;}
.y1c7{bottom:329.280000pt;}
.y27b{bottom:331.360000pt;}
.y299{bottom:331.537440pt;}
.y174{bottom:332.480000pt;}
.y150{bottom:333.676160pt;}
.y214{bottom:334.143360pt;}
.ye2{bottom:334.406720pt;}
.yc6{bottom:334.472960pt;}
.y131{bottom:335.532320pt;}
.y20{bottom:335.697307pt;}
.y117{bottom:335.893920pt;}
.y25b{bottom:338.097760pt;}
.y19d{bottom:340.960000pt;}
.y78{bottom:341.120000pt;}
.y9e{bottom:342.146240pt;}
.y238{bottom:343.224480pt;}
.y226{bottom:343.901760pt;}
.y1c6{bottom:345.760000pt;}
.y1f1{bottom:346.880000pt;}
.y173{bottom:348.960000pt;}
.y27a{bottom:348.963360pt;}
.y298{bottom:348.974080pt;}
.y14f{bottom:351.112800pt;}
.y213{bottom:351.580000pt;}
.ye1{bottom:351.843360pt;}
.yc5{bottom:351.909600pt;}
.y46{bottom:352.471040pt;}
.y130{bottom:352.968960pt;}
.y1f{bottom:353.133947pt;}
.y25a{bottom:355.534400pt;}
.y77{bottom:356.800000pt;}
.y19c{bottom:357.440000pt;}
.y1f2{bottom:357.920000pt;}
.y9d{bottom:359.582880pt;}
.y116{bottom:361.338400pt;}
.y1c5{bottom:362.080000pt;}
.y172{bottom:365.280000pt;}
.y279{bottom:366.400000pt;}
.y297{bottom:366.410720pt;}
.y237{bottom:367.380800pt;}
.y14e{bottom:368.549440pt;}
.y212{bottom:369.016640pt;}
.ye0{bottom:369.280000pt;}
.yc4{bottom:369.346240pt;}
.y1e{bottom:370.570587pt;}
.y76{bottom:372.640000pt;}
.y259{bottom:372.971040pt;}
.y19b{bottom:373.760000pt;}
.y1ea{bottom:375.040000pt;}
.y9c{bottom:377.019520pt;}
.y45{bottom:377.756160pt;}
.y19a{bottom:378.400000pt;}
.y12f{bottom:378.413440pt;}
.y1c4{bottom:378.560000pt;}
.y115{bottom:378.775040pt;}
.y171{bottom:381.760000pt;}
.y236{bottom:384.817440pt;}
.y14d{bottom:385.986080pt;}
.y211{bottom:386.453280pt;}
.yc3{bottom:386.782880pt;}
.y1d{bottom:388.166587pt;}
.y278{bottom:390.453600pt;}
.y258{bottom:390.567040pt;}
.y1ef{bottom:392.000000pt;}
.y9b{bottom:394.456160pt;}
.y198{bottom:394.560000pt;}
.ydf{bottom:394.744160pt;}
.y1c3{bottom:394.880000pt;}
.y12e{bottom:395.850080pt;}
.y114{bottom:396.211680pt;}
.y75{bottom:396.320000pt;}
.y170{bottom:398.080000pt;}
.y235{bottom:402.254080pt;}
.y44{bottom:403.360000pt;}
.y14c{bottom:403.422720pt;}
.y210{bottom:403.889920pt;}
.yc2{bottom:404.219520pt;}
.y199{bottom:405.920000pt;}
.y257{bottom:408.003680pt;}
.y277{bottom:408.049600pt;}
.y1ee{bottom:409.120000pt;}
.y1c2{bottom:411.360000pt;}
.y9a{bottom:411.892800pt;}
.y74{bottom:412.000000pt;}
.yde{bottom:412.180800pt;}
.y12d{bottom:413.286720pt;}
.y1c{bottom:413.611067pt;}
.y113{bottom:413.648320pt;}
.y16f{bottom:414.560000pt;}
.y1ec{bottom:415.040000pt;}
.y43{bottom:420.800000pt;}
.yc1{bottom:421.656160pt;}
.y276{bottom:425.486240pt;}
.y1ed{bottom:426.080000pt;}
.y234{bottom:426.410400pt;}
.y73{bottom:427.680000pt;}
.y14b{bottom:428.867200pt;}
.y99{bottom:429.329440pt;}
.y20f{bottom:429.334400pt;}
.ydd{bottom:429.617440pt;}
.y12c{bottom:430.723360pt;}
.y16c{bottom:430.880000pt;}
.y112{bottom:431.084960pt;}
.y256{bottom:432.160000pt;}
.y16e{bottom:435.520000pt;}
.y197{bottom:435.526720pt;}
.y1b{bottom:439.055547pt;}
.y225{bottom:439.092800pt;}
.y1bf{bottom:440.640000pt;}
.y1e9{bottom:443.200000pt;}
.y72{bottom:443.360000pt;}
.y233{bottom:444.006400pt;}
.y1c0{bottom:444.160000pt;}
.y42{bottom:446.292960pt;}
.y14a{bottom:446.463200pt;}
.y98{bottom:446.766080pt;}
.y20e{bottom:446.771040pt;}
.ydc{bottom:447.054080pt;}
.yc0{bottom:447.100640pt;}
.y1e8{bottom:447.840000pt;}
.y12b{bottom:448.160000pt;}
.y111{bottom:448.521600pt;}
.y255{bottom:449.604000pt;}
.y275{bottom:449.642560pt;}
.y169{bottom:451.680000pt;}
.y1a{bottom:456.492187pt;}
.y224{bottom:456.529440pt;}
.y71{bottom:459.200000pt;}
.y196{bottom:460.971200pt;}
.y232{bottom:461.443040pt;}
.y16a{bottom:463.040000pt;}
.y41{bottom:463.729600pt;}
.y97{bottom:464.202720pt;}
.y20d{bottom:464.207680pt;}
.y149{bottom:464.218560pt;}
.ydb{bottom:464.490720pt;}
.ybf{bottom:464.537280pt;}
.y110{bottom:465.958240pt;}
.y254{bottom:467.200000pt;}
.y296{bottom:467.231520pt;}
.y1be{bottom:473.774560pt;}
.y274{bottom:473.798880pt;}
.y19{bottom:473.928827pt;}
.y223{bottom:473.966080pt;}
.y12a{bottom:474.400000pt;}
.y70{bottom:474.880000pt;}
.y40{bottom:481.166240pt;}
.y96{bottom:481.639360pt;}
.y20c{bottom:481.644320pt;}
.y148{bottom:481.814560pt;}
.yda{bottom:481.927360pt;}
.ybe{bottom:481.973920pt;}
.y231{bottom:485.440000pt;}
.y195{bottom:486.415680pt;}
.y1e7{bottom:488.487840pt;}
.y6f{bottom:490.560000pt;}
.y253{bottom:491.200000pt;}
.y295{bottom:491.228480pt;}
.y273{bottom:491.235520pt;}
.y10f{bottom:491.562080pt;}
.y168{bottom:492.653440pt;}
.y3f{bottom:498.602880pt;}
.y95{bottom:499.076000pt;}
.y20b{bottom:499.080960pt;}
.y1bd{bottom:499.219040pt;}
.y147{bottom:499.251200pt;}
.yd9{bottom:499.523360pt;}
.ybd{bottom:499.569920pt;}
.y18{bottom:499.851387pt;}
.y129{bottom:500.990880pt;}
.y230{bottom:503.040000pt;}
.y194{bottom:503.852320pt;}
.y6e{bottom:506.240000pt;}
.y294{bottom:508.824480pt;}
.y272{bottom:508.831520pt;}
.y252{bottom:508.838560pt;}
.y10e{bottom:508.998720pt;}
.y1e6{bottom:513.932320pt;}
.y3e{bottom:516.039520pt;}
.y1bc{bottom:516.655680pt;}
.y94{bottom:516.672000pt;}
.y20a{bottom:516.676960pt;}
.y146{bottom:516.687840pt;}
.yd8{bottom:516.960000pt;}
.ybc{bottom:517.006560pt;}
.y17{bottom:517.288027pt;}
.y167{bottom:518.097920pt;}
.y22f{bottom:520.480000pt;}
.y193{bottom:521.288960pt;}
.y6d{bottom:521.920000pt;}
.yf2{bottom:525.014400pt;}
.y293{bottom:526.261120pt;}
.y251{bottom:526.275200pt;}
.y10d{bottom:526.435360pt;}
.y1e5{bottom:531.368960pt;}
.y271{bottom:532.828480pt;}
.y3d{bottom:533.476160pt;}
.y1bb{bottom:534.092320pt;}
.y209{bottom:534.113600pt;}
.y145{bottom:534.124480pt;}
.yd7{bottom:534.400000pt;}
.ybb{bottom:534.443200pt;}
.y16{bottom:534.884027pt;}
.y6c{bottom:537.600000pt;}
.y192{bottom:538.725600pt;}
.y93{bottom:542.116480pt;}
.yf1{bottom:542.451040pt;}
.y166{bottom:543.542400pt;}
.y250{bottom:543.711840pt;}
.y10c{bottom:543.872000pt;}
.y22e{bottom:544.654400pt;}
.y1e4{bottom:548.805600pt;}
.y270{bottom:550.265120pt;}
.y292{bottom:550.417440pt;}
.y3c{bottom:550.912800pt;}
.y1ba{bottom:551.528960pt;}
.y208{bottom:551.550240pt;}
.y144{bottom:551.561120pt;}
.yd6{bottom:551.840000pt;}
.yba{bottom:551.879840pt;}
.y6b{bottom:553.440000pt;}
.y191{bottom:556.162240pt;}
.y92{bottom:559.553120pt;}
.yf0{bottom:559.887680pt;}
.y15{bottom:560.806587pt;}
.y165{bottom:560.979040pt;}
.y10b{bottom:561.308640pt;}
.y1e3{bottom:566.242240pt;}
.y291{bottom:567.854080pt;}
.y24f{bottom:567.868160pt;}
.y3b{bottom:568.349440pt;}
.y22d{bottom:568.810720pt;}
.y1b9{bottom:568.965600pt;}
.y207{bottom:568.986880pt;}
.y143{bottom:568.997760pt;}
.yd5{bottom:569.280000pt;}
.yb9{bottom:569.316480pt;}
.y190{bottom:573.598880pt;}
.y26f{bottom:574.421440pt;}
.y91{bottom:576.989760pt;}
.y6a{bottom:577.120000pt;}
.yef{bottom:577.324320pt;}
.y14{bottom:578.243227pt;}
.y164{bottom:578.415680pt;}
.y10a{bottom:578.745280pt;}
.y1e2{bottom:583.678880pt;}
.y24e{bottom:585.304800pt;}
.y3a{bottom:585.945440pt;}
.y1b8{bottom:586.402240pt;}
.y22c{bottom:586.406720pt;}
.y206{bottom:586.423520pt;}
.y142{bottom:586.434400pt;}
.yd4{bottom:586.723360pt;}
.y18f{bottom:591.035520pt;}
.y290{bottom:592.010400pt;}
.y26e{bottom:592.017440pt;}
.y69{bottom:592.800000pt;}
.y90{bottom:594.426400pt;}
.yb8{bottom:594.760960pt;}
.y13{bottom:595.679867pt;}
.y163{bottom:595.852320pt;}
.y109{bottom:596.181920pt;}
.y1e1{bottom:601.115520pt;}
.y24d{bottom:602.741440pt;}
.y39{bottom:603.541440pt;}
.y1b7{bottom:603.838880pt;}
.y22b{bottom:603.843360pt;}
.y205{bottom:603.860160pt;}
.y141{bottom:603.871040pt;}
.yd3{bottom:604.160000pt;}
.y68{bottom:608.480000pt;}
.y28f{bottom:609.447040pt;}
.y26d{bottom:609.454080pt;}
.y8f{bottom:611.863040pt;}
.yb7{bottom:612.197600pt;}
.y162{bottom:613.288960pt;}
.y108{bottom:613.618560pt;}
.y18e{bottom:616.480000pt;}
.y5f{bottom:618.239867pt;}
.y24c{bottom:620.178080pt;}
.y1b6{bottom:621.275520pt;}
.y22a{bottom:621.280000pt;}
.y38{bottom:621.296800pt;}
.y140{bottom:621.307680pt;}
.y67{bottom:624.160000pt;}
.y1e0{bottom:626.560000pt;}
.y28e{bottom:626.883680pt;}
.y8e{bottom:629.299680pt;}
.y18b{bottom:629.440000pt;}
.yb6{bottom:629.634240pt;}
.y161{bottom:630.725600pt;}
.y107{bottom:631.055200pt;}
.y26c{bottom:633.610400pt;}
.y18d{bottom:635.040000pt;}
.y12{bottom:638.243200pt;}
.y37{bottom:638.733440pt;}
.y1de{bottom:638.880000pt;}
.y13f{bottom:638.903680pt;}
.y222{bottom:639.063040pt;}
.y66{bottom:639.840000pt;}
.y24b{bottom:644.334400pt;}
.y1b5{bottom:646.720000pt;}
.y8d{bottom:646.736320pt;}
.yb5{bottom:647.070880pt;}
.y229{bottom:647.360000pt;}
.y18a{bottom:647.520000pt;}
.y160{bottom:648.162240pt;}
.y128{bottom:648.491840pt;}
.y28d{bottom:651.040000pt;}
.y26b{bottom:651.047040pt;}
.y1dd{bottom:655.040000pt;}
.y65{bottom:655.679867pt;}
.y36{bottom:656.170080pt;}
.y106{bottom:656.499680pt;}
.y11{bottom:657.600000pt;}
.y1b4{bottom:659.840000pt;}
.y24a{bottom:661.771040pt;}
.yb4{bottom:664.507520pt;}
.y5c{bottom:665.280000pt;}
.y15f{bottom:665.598880pt;}
.y127{bottom:665.928480pt;}
.y189{bottom:666.400000pt;}
.y26a{bottom:668.483680pt;}
.y28c{bottom:668.643227pt;}
.y64{bottom:671.360000pt;}
.y1dc{bottom:672.160000pt;}
.y8c{bottom:672.180800pt;}
.y35{bottom:673.606720pt;}
.y105{bottom:673.936320pt;}
.yf{bottom:674.212000pt;}
.y1b3{bottom:676.160000pt;}
.y249{bottom:679.207680pt;}
.yb3{bottom:681.944160pt;}
.y126{bottom:683.365120pt;}
.y187{bottom:684.160000pt;}
.y28b{bottom:686.079867pt;}
.y63{bottom:687.040000pt;}
.ye{bottom:688.456000pt;}
.y8b{bottom:689.617440pt;}
.y1d8{bottom:690.240000pt;}
.y34{bottom:691.043360pt;}
.y104{bottom:691.372960pt;}
.y1b2{bottom:692.640000pt;}
.y1db{bottom:694.880000pt;}
.yb2{bottom:699.380800pt;}
.y125{bottom:700.961120pt;}
.yd{bottom:702.700000pt;}
.y248{bottom:703.523360pt;}
.y8a{bottom:707.054080pt;}
.y33{bottom:708.480000pt;}
.y1b1{bottom:708.960000pt;}
.y103{bottom:708.968960pt;}
.y269{bottom:710.239867pt;}
.y28a{bottom:710.257120pt;}
.y1da{bottom:710.560000pt;}
.y62{bottom:710.720000pt;}
.yb1{bottom:716.976800pt;}
.yc{bottom:717.100000pt;}
.y185{bottom:720.160000pt;}
.y247{bottom:720.960000pt;}
.y89{bottom:724.490720pt;}
.y1af{bottom:725.440000pt;}
.y61{bottom:726.400000pt;}
.y102{bottom:726.405600pt;}
.y268{bottom:727.679867pt;}
.y289{bottom:727.693760pt;}
.yb{bottom:731.344000pt;}
.yb0{bottom:734.413440pt;}
.y32{bottom:734.560000pt;}
.y15e{bottom:734.720000pt;}
.y1d6{bottom:737.920000pt;}
.y183{bottom:739.040000pt;}
.y1ae{bottom:741.760000pt;}
.y60{bottom:742.079867pt;}
.y88{bottom:742.086720pt;}
.y101{bottom:743.842240pt;}
.y246{bottom:745.120000pt;}
.y288{bottom:745.130400pt;}
.ya{bottom:745.588000pt;}
.yaf{bottom:751.850080pt;}
.y182{bottom:756.800000pt;}
.y1ad{bottom:758.240000pt;}
.y87{bottom:759.523360pt;}
.y9{bottom:759.832000pt;}
.y1d4{bottom:760.480000pt;}
.y31{bottom:761.275520pt;}
.y100{bottom:761.278880pt;}
.y245{bottom:762.560000pt;}
.y267{bottom:769.127360pt;}
.yae{bottom:769.286720pt;}
.y17f{bottom:770.400000pt;}
.y180{bottom:773.280000pt;}
.y5e{bottom:773.600000pt;}
.y8{bottom:774.232000pt;}
.y1ac{bottom:774.560000pt;}
.y1d5{bottom:776.320000pt;}
.y86{bottom:776.960000pt;}
.y30{bottom:786.720000pt;}
.yad{bottom:786.723360pt;}
.y7{bottom:788.476000pt;}
.y5d{bottom:789.280000pt;}
.y6{bottom:802.720000pt;}
.y85{bottom:803.040000pt;}
.y2f{bottom:804.160000pt;}
.y5a{bottom:804.960000pt;}
.y3{bottom:813.760000pt;}
.y2{bottom:823.679867pt;}
.y5{bottom:824.960000pt;}
.y1{bottom:845.919867pt;}
.y2e{bottom:852.160000pt;}
.h10{height:15.678667pt;}
.h12{height:15.680000pt;}
.h19{height:15.840000pt;}
.h1c{height:16.160000pt;}
.h13{height:16.960000pt;}
.h14{height:17.118667pt;}
.h17{height:17.120000pt;}
.h1a{height:17.280000pt;}
.h18{height:17.441333pt;}
.h15{height:18.240000pt;}
.h3{height:28.928000pt;}
.h4{height:28.961333pt;}
.h11{height:31.360000pt;}
.h1d{height:31.361333pt;}
.he{height:31.992188pt;}
.h16{height:35.360000pt;}
.h5{height:38.763520pt;}
.hc{height:39.149440pt;}
.h8{height:39.521280pt;}
.ha{height:42.656250pt;}
.h2{height:43.392000pt;}
.hf{height:43.824000pt;}
.h1b{height:47.040000pt;}
.h9{height:48.020480pt;}
.h7{height:48.498560pt;}
.h6{height:53.757440pt;}
.h1e{height:66.720000pt;}
.h1f{height:66.880000pt;}
.hb{height:237.760000pt;}
.hd{height:676.800000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w26{width:44.960000pt;}
.w29{width:45.120000pt;}
.w34{width:45.281333pt;}
.w21{width:45.600000pt;}
.we{width:47.200000pt;}
.w14{width:47.201333pt;}
.w1a{width:48.480000pt;}
.w19{width:50.240000pt;}
.w1f{width:51.678667pt;}
.wb{width:52.480000pt;}
.w9{width:54.401333pt;}
.wa{width:54.560000pt;}
.w22{width:54.720000pt;}
.w11{width:55.680000pt;}
.w1b{width:56.801333pt;}
.w2c{width:60.480000pt;}
.w1d{width:61.601333pt;}
.w27{width:64.640000pt;}
.w12{width:64.960000pt;}
.wf{width:66.240000pt;}
.w2a{width:67.040000pt;}
.w2d{width:73.280000pt;}
.w8{width:74.561333pt;}
.w2e{width:75.680000pt;}
.w7{width:81.280000pt;}
.w6{width:81.438667pt;}
.w1c{width:84.960000pt;}
.w2f{width:85.121333pt;}
.w18{width:87.840000pt;}
.w31{width:89.280000pt;}
.w13{width:92.640000pt;}
.w17{width:94.398667pt;}
.w28{width:95.680000pt;}
.w35{width:98.238667pt;}
.w20{width:100.800000pt;}
.w2b{width:102.078667pt;}
.w32{width:104.960000pt;}
.w10{width:106.080000pt;}
.w23{width:108.798667pt;}
.w33{width:142.240000pt;}
.w24{width:205.280000pt;}
.w5{width:208.320000pt;}
.w15{width:209.118667pt;}
.w1e{width:209.280000pt;}
.wd{width:213.280000pt;}
.w25{width:214.240000pt;}
.w4{width:217.278667pt;}
.wc{width:219.520000pt;}
.w16{width:229.601333pt;}
.w2{width:235.040000pt;}
.w3{width:479.360000pt;}
.w30{width:508.001333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x26{left:8.960000pt;}
.x40{left:10.240000pt;}
.x34{left:11.200000pt;}
.x21{left:12.320000pt;}
.x59{left:13.280000pt;}
.x2f{left:14.560000pt;}
.x2c{left:15.520000pt;}
.x3c{left:16.960000pt;}
.x30{left:17.920000pt;}
.x57{left:19.040000pt;}
.x41{left:20.160000pt;}
.x42{left:21.280000pt;}
.x3d{left:22.880000pt;}
.x43{left:24.480000pt;}
.x31{left:25.600000pt;}
.x3a{left:27.680000pt;}
.x2d{left:28.960000pt;}
.x33{left:30.560000pt;}
.x4f{left:32.160000pt;}
.x2e{left:33.920000pt;}
.x24{left:35.360000pt;}
.x2a{left:37.280000pt;}
.x4b{left:38.400000pt;}
.x58{left:39.360000pt;}
.x32{left:40.640000pt;}
.x48{left:41.920000pt;}
.x51{left:43.840000pt;}
.x72{left:44.960000pt;}
.x50{left:47.200000pt;}
.x6e{left:49.120000pt;}
.x5a{left:50.400000pt;}
.x5b{left:54.400000pt;}
.x79{left:58.080000pt;}
.x73{left:63.840000pt;}
.x4d{left:78.720000pt;}
.x1{left:83.200000pt;}
.x5e{left:84.640000pt;}
.x20{left:85.760000pt;}
.x38{left:88.320000pt;}
.x15{left:90.400000pt;}
.x36{left:91.680000pt;}
.x6{left:96.160000pt;}
.x13{left:97.120000pt;}
.x19{left:102.080000pt;}
.x1a{left:107.046720pt;}
.x7a{left:108.960000pt;}
.x76{left:112.320000pt;}
.x16{left:113.760000pt;}
.x1d{left:116.621600pt;}
.x14{left:119.360000pt;}
.x10{left:120.480000pt;}
.x1c{left:126.072000pt;}
.x46{left:128.960000pt;}
.x1b{left:130.724960pt;}
.x52{left:136.000000pt;}
.x1e{left:137.600000pt;}
.x5d{left:143.680000pt;}
.x35{left:144.640000pt;}
.x2{left:148.320000pt;}
.x3{left:155.520000pt;}
.x6c{left:156.480000pt;}
.x5{left:162.720000pt;}
.x63{left:165.440000pt;}
.x22{left:169.920000pt;}
.x64{left:170.880000pt;}
.x39{left:177.600000pt;}
.x60{left:188.640000pt;}
.x74{left:190.405280pt;}
.x53{left:196.480000pt;}
.x5c{left:202.861920pt;}
.x2b{left:219.040000pt;}
.x6d{left:232.160000pt;}
.x62{left:241.600000pt;}
.x3b{left:243.840000pt;}
.x65{left:250.560000pt;}
.x54{left:253.280000pt;}
.x66{left:256.000000pt;}
.x49{left:261.920000pt;}
.x7{left:268.487040pt;}
.x23{left:273.600000pt;}
.x25{left:285.280000pt;}
.x17{left:290.880000pt;}
.x44{left:296.800000pt;}
.x6f{left:326.560000pt;}
.x77{left:330.400000pt;}
.x47{left:338.080000pt;}
.x67{left:340.320000pt;}
.x68{left:345.760000pt;}
.x5f{left:348.960000pt;}
.x37{left:349.920000pt;}
.x1f{left:354.880000pt;}
.x75{left:375.680000pt;}
.x18{left:380.960000pt;}
.x27{left:383.840000pt;}
.x4e{left:394.880000pt;}
.x55{left:399.680000pt;}
.xe{left:403.677440pt;}
.x3e{left:405.600000pt;}
.x70{left:411.680000pt;}
.x8{left:416.320000pt;}
.xb{left:423.995840pt;}
.x9{left:427.355680pt;}
.x69{left:428.480000pt;}
.x12{left:429.754880pt;}
.xc{left:432.959840pt;}
.x11{left:434.708320pt;}
.xa{left:452.481440pt;}
.x56{left:454.400000pt;}
.x61{left:461.120000pt;}
.x78{left:464.960000pt;}
.x3f{left:470.560000pt;}
.xf{left:471.671040pt;}
.xd{left:476.159680pt;}
.x4a{left:479.840000pt;}
.x28{left:481.920000pt;}
.x29{left:493.440000pt;}
.x4c{left:494.560000pt;}
.x71{left:506.080000pt;}
.x45{left:516.800000pt;}
.x6a{left:518.240000pt;}
.x6b{left:521.920000pt;}
}




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