
    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_ddd3aa351cc7c84514cc3cfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_f01a760f75a5d548936435fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_8106ac972ace7cb9aa85e316.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_26224c16a585a79dbfd5952d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.177000;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_9d438232558c274c29068702.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_fa604696082335d94b337319.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_fa604696082335d94b337319.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_5c13e1439dcb74651a18cfcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_cd2df1f0cd4500f83a3eb473.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0255811b1df078ba2715fa4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.181000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8ac49405afb3a5aa3491078e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980600px;}
.v3{vertical-align:-18.556800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.581400px;}
.v1{vertical-align:19.980000px;}
.v5{vertical-align:64.783800px;}
.ls4b{letter-spacing:-3.000000px;}
.ls1e{letter-spacing:-2.106000px;}
.ls6d{letter-spacing:-1.920000px;}
.ls62{letter-spacing:-1.836000px;}
.ls67{letter-spacing:-1.800000px;}
.ls6a{letter-spacing:-1.740000px;}
.ls9{letter-spacing:-1.479000px;}
.ls74{letter-spacing:-1.350000px;}
.ls60{letter-spacing:-1.320000px;}
.ls36{letter-spacing:-1.140000px;}
.ls64{letter-spacing:-0.900000px;}
.ls65{letter-spacing:-0.840000px;}
.ls3a{letter-spacing:-0.781200px;}
.ls37{letter-spacing:-0.725400px;}
.ls8{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.669600px;}
.ls29{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.613800px;}
.ls2a{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.561000px;}
.ls38{letter-spacing:-0.558000px;}
.ls43{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.510000px;}
.ls42{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.420000px;}
.ls5b{letter-spacing:-0.414000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls71{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.300000px;}
.ls57{letter-spacing:-0.279000px;}
.ls5a{letter-spacing:-0.244860px;}
.ls22{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.223200px;}
.ls28{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.167400px;}
.ls20{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.111600px;}
.lsa{letter-spacing:-0.102000px;}
.ls59{letter-spacing:-0.069960px;}
.lsf{letter-spacing:-0.060000px;}
.ls2d{letter-spacing:-0.055800px;}
.ls1f{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.051000px;}
.ls6c{letter-spacing:-0.034980px;}
.ls7{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.009900px;}
.ls52{letter-spacing:0.027900px;}
.ls13{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.069960px;}
.ls1{letter-spacing:0.076500px;}
.ls3e{letter-spacing:0.090000px;}
.ls5f{letter-spacing:0.104940px;}
.ls26{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.111600px;}
.ls4{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.150000px;}
.ls63{letter-spacing:0.162000px;}
.ls30{letter-spacing:0.164400px;}
.ls34{letter-spacing:0.167400px;}
.ls70{letter-spacing:0.174900px;}
.ls12{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.204000px;}
.ls54{letter-spacing:0.209880px;}
.ls32{letter-spacing:0.210000px;}
.ls5c{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.222000px;}
.ls40{letter-spacing:0.223200px;}
.ls5{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.244860px;}
.ls44{letter-spacing:0.270000px;}
.ls4e{letter-spacing:0.279000px;}
.ls6{letter-spacing:0.300000px;}
.ls55{letter-spacing:0.314820px;}
.ls25{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.333000px;}
.ls4f{letter-spacing:0.334800px;}
.ls15{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.390000px;}
.ls41{letter-spacing:0.390600px;}
.ls68{letter-spacing:0.418500px;}
.ls1c{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.450000px;}
.ls1b{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.561000px;}
.ls3{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.630000px;}
.ls14{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.780000px;}
.ls48{letter-spacing:0.781200px;}
.ls27{letter-spacing:0.810000px;}
.ls46{letter-spacing:0.837000px;}
.ls3f{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.864000px;}
.ls33{letter-spacing:0.870000px;}
.ls6e{letter-spacing:0.900000px;}
.ls4c{letter-spacing:0.960000px;}
.ls2e{letter-spacing:0.972000px;}
.ls61{letter-spacing:1.110000px;}
.lse{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.260000px;}
.ls4a{letter-spacing:1.458000px;}
.ls50{letter-spacing:1.512000px;}
.ls58{letter-spacing:1.566000px;}
.ls35{letter-spacing:1.620000px;}
.ls5d{letter-spacing:1.728000px;}
.ls73{letter-spacing:1.785000px;}
.ls6f{letter-spacing:1.836000px;}
.ls72{letter-spacing:1.944000px;}
.ls47{letter-spacing:1.998000px;}
.ls6b{letter-spacing:2.052000px;}
.ls66{letter-spacing:2.214000px;}
.ls69{letter-spacing:2.376000px;}
.ls51{letter-spacing:2.850000px;}
.ls45{letter-spacing:51.391800px;}
.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;}
}
.wsf7{word-spacing:-15.174000px;}
.wsa1{word-spacing:-14.796000px;}
.ws109{word-spacing:-14.742000px;}
.ws103{word-spacing:-14.634000px;}
.wse1{word-spacing:-14.526000px;}
.ws62{word-spacing:-14.418000px;}
.wsd3{word-spacing:-14.364000px;}
.wsb6{word-spacing:-14.310000px;}
.wse5{word-spacing:-12.960000px;}
.ws3c{word-spacing:-12.906000px;}
.wse2{word-spacing:-12.660000px;}
.wsee{word-spacing:-12.600000px;}
.ws65{word-spacing:-12.540000px;}
.wsf8{word-spacing:-12.415500px;}
.ws83{word-spacing:-12.312000px;}
.ws54{word-spacing:-11.997000px;}
.wsea{word-spacing:-11.940000px;}
.wsd4{word-spacing:-11.880000px;}
.wsff{word-spacing:-11.760000px;}
.ws95{word-spacing:-11.730000px;}
.wsd7{word-spacing:-11.700000px;}
.wsb7{word-spacing:-11.640000px;}
.ws53{word-spacing:-11.610000px;}
.ws64{word-spacing:-11.580000px;}
.ws98{word-spacing:-11.550600px;}
.ws2{word-spacing:-11.520000px;}
.wse9{word-spacing:-11.400000px;}
.wse6{word-spacing:-11.340000px;}
.ws3d{word-spacing:-11.280000px;}
.ws96{word-spacing:-11.220000px;}
.wsac{word-spacing:-11.160000px;}
.ws66{word-spacing:-11.040000px;}
.ws10a{word-spacing:-10.965000px;}
.ws1{word-spacing:-10.735500px;}
.ws110{word-spacing:-10.659000px;}
.ws105{word-spacing:-10.440000px;}
.ws10f{word-spacing:-10.200000px;}
.ws0{word-spacing:-9.792000px;}
.ws3e{word-spacing:-8.901000px;}
.wsd8{word-spacing:-8.487000px;}
.wsc5{word-spacing:-7.625640px;}
.wsc6{word-spacing:-7.555680px;}
.wsc4{word-spacing:-7.520700px;}
.ws104{word-spacing:-7.485720px;}
.wse4{word-spacing:-7.415760px;}
.wse3{word-spacing:-7.380780px;}
.ws63{word-spacing:-7.310820px;}
.wsfe{word-spacing:-7.275840px;}
.wsd5{word-spacing:-7.240860px;}
.wsd6{word-spacing:-7.065960px;}
.wsc7{word-spacing:-6.994251px;}
.wsf1{word-spacing:-4.320000px;}
.wsf2{word-spacing:-3.900000px;}
.wse0{word-spacing:-3.240000px;}
.wsf3{word-spacing:-3.060000px;}
.wsdc{word-spacing:-2.760000px;}
.ws101{word-spacing:-2.520000px;}
.wsf5{word-spacing:-2.400000px;}
.ws86{word-spacing:-2.100000px;}
.wsae{word-spacing:-2.040000px;}
.ws59{word-spacing:-1.980000px;}
.wsd1{word-spacing:-1.953000px;}
.ws18{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.897200px;}
.ws19{word-spacing:-1.860000px;}
.ws70{word-spacing:-1.841400px;}
.ws4e{word-spacing:-1.785600px;}
.ws10c{word-spacing:-1.785000px;}
.ws5a{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.729800px;}
.ws7e{word-spacing:-1.680000px;}
.wscf{word-spacing:-1.674000px;}
.wsb{word-spacing:-1.632000px;}
.ws82{word-spacing:-1.618200px;}
.wsa{word-spacing:-1.581000px;}
.ws9e{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.530000px;}
.ws61{word-spacing:-1.506600px;}
.ws5e{word-spacing:-1.500000px;}
.ws9{word-spacing:-1.479000px;}
.wse8{word-spacing:-1.440000px;}
.ws69{word-spacing:-1.380000px;}
.wsa4{word-spacing:-1.320000px;}
.ws4c{word-spacing:-1.283400px;}
.wsa3{word-spacing:-1.260000px;}
.ws12{word-spacing:-1.200000px;}
.ws74{word-spacing:-1.171800px;}
.ws7f{word-spacing:-1.140000px;}
.ws7a{word-spacing:-1.116000px;}
.ws43{word-spacing:-1.080000px;}
.ws75{word-spacing:-1.060200px;}
.ws45{word-spacing:-1.020000px;}
.ws72{word-spacing:-1.004400px;}
.ws34{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.900000px;}
.wsa0{word-spacing:-0.840000px;}
.wsb3{word-spacing:-0.780000px;}
.ws5f{word-spacing:-0.720000px;}
.ws10d{word-spacing:-0.714000px;}
.ws35{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.613800px;}
.ws40{word-spacing:-0.600000px;}
.ws3b{word-spacing:-0.540000px;}
.ws77{word-spacing:-0.502200px;}
.ws6a{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.360000px;}
.ws3{word-spacing:-0.355200px;}
.ws11{word-spacing:-0.306000px;}
.wsa6{word-spacing:-0.300000px;}
.ws1a{word-spacing:-0.240000px;}
.ws4d{word-spacing:-0.223200px;}
.ws1e{word-spacing:-0.222000px;}
.wsc{word-spacing:-0.204000px;}
.ws46{word-spacing:-0.180000px;}
.ws16{word-spacing:-0.120000px;}
.wsbf{word-spacing:-0.111600px;}
.ws5d{word-spacing:-0.060000px;}
.ws51{word-spacing:-0.055800px;}
.ws8{word-spacing:-0.051000px;}
.ws4{word-spacing:0.000000px;}
.wsde{word-spacing:0.055800px;}
.wscb{word-spacing:0.060000px;}
.ws50{word-spacing:0.111600px;}
.ws80{word-spacing:0.120000px;}
.ws9c{word-spacing:0.180000px;}
.wsa8{word-spacing:0.240000px;}
.wsd0{word-spacing:0.279000px;}
.ws87{word-spacing:0.300000px;}
.ws8e{word-spacing:0.360000px;}
.ws4f{word-spacing:0.390600px;}
.ws6e{word-spacing:0.420000px;}
.ws8f{word-spacing:0.480000px;}
.ws22{word-spacing:0.540000px;}
.wsd2{word-spacing:0.558000px;}
.ws2e{word-spacing:0.600000px;}
.wsdd{word-spacing:0.613800px;}
.ws26{word-spacing:0.660000px;}
.ws5{word-spacing:0.720000px;}
.wsce{word-spacing:0.725400px;}
.wsd{word-spacing:0.765000px;}
.ws32{word-spacing:0.780000px;}
.wsfd{word-spacing:0.837000px;}
.wsaf{word-spacing:0.840000px;}
.wsfc{word-spacing:0.892800px;}
.ws6c{word-spacing:0.900000px;}
.ws6f{word-spacing:0.948600px;}
.ws57{word-spacing:0.960000px;}
.wsb4{word-spacing:1.020000px;}
.wsba{word-spacing:1.080000px;}
.ws8c{word-spacing:1.140000px;}
.wsb9{word-spacing:1.200000px;}
.ws78{word-spacing:1.227600px;}
.ws81{word-spacing:1.260000px;}
.ws76{word-spacing:1.283400px;}
.wsdb{word-spacing:1.320000px;}
.ws71{word-spacing:1.339200px;}
.wsca{word-spacing:1.380000px;}
.ws9b{word-spacing:1.440000px;}
.ws91{word-spacing:1.500000px;}
.wse{word-spacing:1.530000px;}
.wscc{word-spacing:1.560000px;}
.ws73{word-spacing:1.562400px;}
.ws7{word-spacing:1.581000px;}
.ws14{word-spacing:1.620000px;}
.wsf{word-spacing:1.632000px;}
.ws52{word-spacing:1.674000px;}
.ws42{word-spacing:1.680000px;}
.wsb5{word-spacing:1.729800px;}
.ws85{word-spacing:1.740000px;}
.ws60{word-spacing:1.785600px;}
.wsf6{word-spacing:1.800000px;}
.ws92{word-spacing:1.841400px;}
.ws15{word-spacing:1.860000px;}
.ws17{word-spacing:1.920000px;}
.ws7c{word-spacing:1.980000px;}
.wsa5{word-spacing:2.040000px;}
.ws21{word-spacing:2.100000px;}
.ws1f{word-spacing:2.106000px;}
.wsc1{word-spacing:2.120400px;}
.ws1c{word-spacing:2.160000px;}
.ws39{word-spacing:2.220000px;}
.wsf0{word-spacing:2.280000px;}
.wsc2{word-spacing:2.287800px;}
.ws2a{word-spacing:2.340000px;}
.ws1b{word-spacing:2.400000px;}
.wsc3{word-spacing:2.455200px;}
.ws68{word-spacing:2.460000px;}
.ws49{word-spacing:2.520000px;}
.wsa7{word-spacing:2.580000px;}
.ws5b{word-spacing:2.640000px;}
.ws24{word-spacing:2.700000px;}
.ws30{word-spacing:2.760000px;}
.wsfa{word-spacing:2.790000px;}
.ws2b{word-spacing:2.820000px;}
.ws93{word-spacing:2.845800px;}
.ws41{word-spacing:2.880000px;}
.wsbe{word-spacing:2.901600px;}
.ws6b{word-spacing:2.940000px;}
.wsb2{word-spacing:3.000000px;}
.ws29{word-spacing:3.060000px;}
.ws48{word-spacing:3.120000px;}
.wsa9{word-spacing:3.180000px;}
.wscd{word-spacing:3.240000px;}
.wsfb{word-spacing:3.292200px;}
.wsb0{word-spacing:3.300000px;}
.wsda{word-spacing:3.360000px;}
.ws3a{word-spacing:3.420000px;}
.ws47{word-spacing:3.480000px;}
.ws28{word-spacing:3.540000px;}
.ws38{word-spacing:3.600000px;}
.wsb1{word-spacing:3.660000px;}
.ws31{word-spacing:3.720000px;}
.ws8d{word-spacing:3.900000px;}
.ws9f{word-spacing:4.020000px;}
.ws9d{word-spacing:4.080000px;}
.ws90{word-spacing:4.140000px;}
.ws2f{word-spacing:4.200000px;}
.ws6{word-spacing:4.335000px;}
.ws37{word-spacing:4.380000px;}
.ws102{word-spacing:4.440000px;}
.wsc9{word-spacing:4.500000px;}
.ws56{word-spacing:4.560000px;}
.ws2c{word-spacing:4.620000px;}
.ws7d{word-spacing:4.740000px;}
.ws1d{word-spacing:4.800000px;}
.ws5c{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.ws58{word-spacing:5.040000px;}
.ws25{word-spacing:5.100000px;}
.ws8b{word-spacing:5.160000px;}
.ws89{word-spacing:5.220000px;}
.ws23{word-spacing:5.340000px;}
.wsbd{word-spacing:5.400000px;}
.ws88{word-spacing:5.580000px;}
.wsbc{word-spacing:5.880000px;}
.wsed{word-spacing:5.940000px;}
.wsaa{word-spacing:6.249600px;}
.ws2d{word-spacing:6.600000px;}
.wsab{word-spacing:6.696000px;}
.ws8a{word-spacing:6.780000px;}
.ws6d{word-spacing:7.140000px;}
.ws107{word-spacing:7.380000px;}
.wsbb{word-spacing:7.680000px;}
.wsec{word-spacing:9.180000px;}
.ws36{word-spacing:12.840000px;}
.wsc0{word-spacing:36.102600px;}
.ws79{word-spacing:51.391800px;}
.ws99{word-spacing:304.779600px;}
.ws97{word-spacing:706.539600px;}
.wsf9{word-spacing:1001.646000px;}
.wsa2{word-spacing:1002.024000px;}
.ws10b{word-spacing:1002.078000px;}
.ws106{word-spacing:1002.186000px;}
.wse7{word-spacing:1002.294000px;}
.ws67{word-spacing:1002.348000px;}
.wsd9{word-spacing:1002.402000px;}
.ws10e{word-spacing:1002.456000px;}
.wsb8{word-spacing:1002.510000px;}
.wsef{word-spacing:1003.860000px;}
.ws3f{word-spacing:1003.914000px;}
.ws84{word-spacing:1004.454000px;}
.wsf4{word-spacing:1683.720000px;}
.ws100{word-spacing:1684.044000px;}
.ws9a{word-spacing:1684.962000px;}
.wsad{word-spacing:1685.286000px;}
.ws55{word-spacing:1686.258000px;}
.wsc8{word-spacing:1686.474000px;}
.wsdf{word-spacing:1687.770000px;}
.ws20{word-spacing:1688.310000px;}
.ws108{word-spacing:1688.796000px;}
.ws7b{word-spacing:1689.498000px;}
.ws111{word-spacing:1690.902000px;}
.wseb{word-spacing:1691.874000px;}
._b{margin-left:-1003.943400px;}
._26{margin-left:-1002.880200px;}
._f{margin-left:-1001.763000px;}
._12{margin-left:-52.918800px;}
._9{margin-left:-17.289600px;}
._24{margin-left:-14.520000px;}
._1d{margin-left:-11.773800px;}
._28{margin-left:-7.958400px;}
._8{margin-left:-6.903600px;}
._0{margin-left:-5.760000px;}
._3{margin-left:-4.329600px;}
._1{margin-left:-2.889600px;}
._2{margin-left:-1.430400px;}
._4{width:1.063200px;}
._5{width:2.325600px;}
._6{width:3.391500px;}
._7{width:4.992900px;}
._11{width:7.030800px;}
._10{width:8.066400px;}
._18{width:9.660000px;}
._19{width:11.760000px;}
._a{width:12.800400px;}
._21{width:22.041000px;}
._27{width:27.452400px;}
._22{width:28.624200px;}
._29{width:30.967800px;}
._1a{width:34.260600px;}
._23{width:36.380400px;}
._1c{width:38.110200px;}
._1f{width:39.417600px;}
._1b{width:43.579200px;}
._13{width:48.433800px;}
._e{width:50.219400px;}
._d{width:53.623200px;}
._c{width:59.538000px;}
._1e{width:72.930600px;}
._17{width:73.950000px;}
._14{width:75.799800px;}
._15{width:85.585200px;}
._16{width:204.921000px;}
._20{width:271.390800px;}
._25{width:352.021800px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:22.200000px;}
.fs9{font-size:32.531400px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:90.548700px;}
.y5e{bottom:90.561000px;}
.yc2{bottom:90.567000px;}
.y5c{bottom:90.567150px;}
.y8f{bottom:90.860850px;}
.y26{bottom:91.318050px;}
.y1b3{bottom:94.637550px;}
.y183{bottom:94.675800px;}
.y153{bottom:102.113550px;}
.y77{bottom:107.792550px;}
.y5b{bottom:107.804850px;}
.y9f{bottom:107.811000px;}
.y5d{bottom:107.817150px;}
.y8e{bottom:108.111600px;}
.y25{bottom:109.768050px;}
.y1b2{bottom:111.888300px;}
.y182{bottom:111.926550px;}
.y152{bottom:119.364300px;}
.y76{bottom:125.048700px;}
.y11f{bottom:125.054850px;}
.y5a{bottom:125.061000px;}
.y91{bottom:125.061150px;}
.y6c{bottom:125.067150px;}
.ya2{bottom:125.067300px;}
.y24{bottom:128.218050px;}
.y1b1{bottom:129.139050px;}
.y181{bottom:129.177300px;}
.y8d{bottom:130.035000px;}
.y151{bottom:136.615050px;}
.y75{bottom:142.304850px;}
.y6b{bottom:142.311000px;}
.yc1{bottom:142.311150px;}
.y59{bottom:142.317150px;}
.y90{bottom:142.317300px;}
.y8c{bottom:146.230950px;}
.y1b0{bottom:146.389800px;}
.y180{bottom:146.428050px;}
.y23{bottom:146.668050px;}
.y150{bottom:153.865800px;}
.y9e{bottom:159.548700px;}
.y58{bottom:159.561000px;}
.y6a{bottom:159.567150px;}
.y95{bottom:159.567300px;}
.y1af{bottom:163.640550px;}
.y17f{bottom:163.678800px;}
.y22{bottom:165.118050px;}
.y74{bottom:165.118200px;}
.y86{bottom:165.175050px;}
.y89{bottom:165.189000px;}
.y14f{bottom:171.116550px;}
.y9d{bottom:176.804850px;}
.y94{bottom:176.811150px;}
.y57{bottom:176.817150px;}
.y1ae{bottom:180.891300px;}
.y17e{bottom:180.929550px;}
.y85{bottom:181.371000px;}
.y88{bottom:181.384950px;}
.y8b{bottom:181.398900px;}
.y21{bottom:183.568050px;}
.y73{bottom:183.568200px;}
.y9c{bottom:194.061000px;}
.y56{bottom:194.061150px;}
.y69{bottom:194.067150px;}
.y93{bottom:194.067300px;}
.y84{bottom:197.566950px;}
.y87{bottom:197.580900px;}
.y8a{bottom:197.594850px;}
.y1ad{bottom:198.142050px;}
.y17d{bottom:198.180300px;}
.y20{bottom:202.018050px;}
.y72{bottom:202.018200px;}
.y14e{bottom:205.618050px;}
.y117{bottom:210.403200px;}
.y92{bottom:211.311150px;}
.y68{bottom:211.317150px;}
.y55{bottom:211.317300px;}
.ybe{bottom:214.790400px;}
.ycc{bottom:214.792950px;}
.y1ac{bottom:215.392800px;}
.y17c{bottom:215.431050px;}
.y80{bottom:216.525000px;}
.y83{bottom:216.538950px;}
.y1f{bottom:220.468050px;}
.y71{bottom:220.468200px;}
.y116{bottom:226.599150px;}
.y11e{bottom:226.627050px;}
.y67{bottom:228.561300px;}
.y9b{bottom:228.567150px;}
.y54{bottom:228.567300px;}
.ybd{bottom:230.986350px;}
.ycb{bottom:230.988900px;}
.yc0{bottom:231.000300px;}
.y1ab{bottom:232.643550px;}
.y17b{bottom:232.681800px;}
.y7f{bottom:232.720950px;}
.y82{bottom:232.734900px;}
.y1e{bottom:238.918050px;}
.y70{bottom:238.918200px;}
.y115{bottom:242.795100px;}
.y11d{bottom:242.823000px;}
.y9a{bottom:245.817150px;}
.y66{bottom:245.817450px;}
.ybc{bottom:247.182300px;}
.ybf{bottom:247.196250px;}
.y7e{bottom:248.916900px;}
.y81{bottom:248.930850px;}
.y1aa{bottom:249.894300px;}
.y17a{bottom:249.932550px;}
.yca{bottom:249.960900px;}
.y1d{bottom:257.368050px;}
.y6f{bottom:257.368200px;}
.y114{bottom:258.991050px;}
.y11c{bottom:259.018950px;}
.y99{bottom:263.061300px;}
.y65{bottom:263.067450px;}
.ybb{bottom:266.154300px;}
.yba{bottom:266.156850px;}
.y1a9{bottom:267.145050px;}
.y179{bottom:267.183300px;}
.y7d{bottom:267.888900px;}
.y113{bottom:275.187000px;}
.y11b{bottom:275.214900px;}
.y1c{bottom:275.818050px;}
.y6e{bottom:275.818200px;}
.y12f{bottom:276.933000px;}
.y133{bottom:276.946950px;}
.y64{bottom:280.305150px;}
.y98{bottom:280.317450px;}
.yb9{bottom:282.352800px;}
.y7c{bottom:284.084850px;}
.y1a8{bottom:284.395800px;}
.y178{bottom:284.434050px;}
.yc9{bottom:285.128850px;}
.y112{bottom:291.382950px;}
.y11a{bottom:291.410850px;}
.y12e{bottom:293.128950px;}
.y132{bottom:293.142900px;}
.y1b{bottom:294.268050px;}
.y63{bottom:297.561300px;}
.y97{bottom:297.567450px;}
.yb8{bottom:301.324800px;}
.y1a7{bottom:301.646550px;}
.y177{bottom:301.684800px;}
.y7b{bottom:303.056850px;}
.y111{bottom:307.578900px;}
.y119{bottom:307.606800px;}
.y12d{bottom:309.324900px;}
.y131{bottom:309.338850px;}
.y1a{bottom:312.718050px;}
.y6d{bottom:313.918050px;}
.y62{bottom:314.817450px;}
.yb7{bottom:317.520750px;}
.y1a6{bottom:318.897300px;}
.y176{bottom:318.935550px;}
.y7a{bottom:319.252800px;}
.y110{bottom:323.774850px;}
.y118{bottom:323.802750px;}
.y12c{bottom:325.520850px;}
.y130{bottom:325.534800px;}
.y48{bottom:331.168050px;}
.y61{bottom:332.055150px;}
.y79{bottom:335.448750px;}
.y1a5{bottom:336.148050px;}
.y175{bottom:336.186300px;}
.y10b{bottom:342.732900px;}
.y10f{bottom:342.746850px;}
.y128{bottom:344.478900px;}
.y12b{bottom:344.492850px;}
.y60{bottom:349.311300px;}
.y19{bottom:349.618050px;}
.y1a4{bottom:353.398800px;}
.y174{bottom:353.437050px;}
.y78{bottom:354.420750px;}
.y10a{bottom:358.928850px;}
.y10e{bottom:358.942800px;}
.y127{bottom:360.674850px;}
.y12a{bottom:360.688800px;}
.y5f{bottom:366.567450px;}
.y47{bottom:368.068050px;}
.y1a3{bottom:370.649550px;}
.y173{bottom:370.687800px;}
.y109{bottom:375.124800px;}
.y10d{bottom:375.138750px;}
.y126{bottom:376.870800px;}
.y129{bottom:376.884750px;}
.y46{bottom:386.518050px;}
.y1a2{bottom:387.900300px;}
.y172{bottom:387.938550px;}
.yb6{bottom:389.887050px;}
.y108{bottom:391.320750px;}
.y10c{bottom:391.334700px;}
.y122{bottom:395.828850px;}
.y125{bottom:395.842800px;}
.y45{bottom:404.968050px;}
.y14c{bottom:404.968200px;}
.y1a1{bottom:405.151050px;}
.y171{bottom:405.189300px;}
.yb5{bottom:408.859050px;}
.y121{bottom:412.024800px;}
.y124{bottom:412.038750px;}
.y18{bottom:412.902300px;}
.y1a0{bottom:422.401800px;}
.y170{bottom:422.440050px;}
.y44{bottom:423.418050px;}
.y14b{bottom:423.418200px;}
.yaf{bottom:425.041050px;}
.yb4{bottom:425.055000px;}
.y120{bottom:428.220750px;}
.y123{bottom:428.234700px;}
.y17{bottom:430.153050px;}
.y19f{bottom:439.652550px;}
.y16f{bottom:439.690800px;}
.yae{bottom:441.237000px;}
.yb3{bottom:441.250950px;}
.y43{bottom:441.868050px;}
.y14a{bottom:441.868200px;}
.y16{bottom:447.403800px;}
.y19e{bottom:456.903300px;}
.y16e{bottom:456.941550px;}
.yad{bottom:457.432950px;}
.yb2{bottom:457.446900px;}
.y42{bottom:460.318050px;}
.y149{bottom:460.318200px;}
.y15{bottom:464.654550px;}
.ye2{bottom:468.717150px;}
.yac{bottom:473.628900px;}
.yb1{bottom:473.642850px;}
.y19d{bottom:474.154050px;}
.y16d{bottom:474.192300px;}
.y14d{bottom:477.726300px;}
.y41{bottom:478.768050px;}
.y148{bottom:478.768200px;}
.y14{bottom:481.905300px;}
.ydc{bottom:484.899150px;}
.ye1{bottom:484.913100px;}
.yab{bottom:489.824850px;}
.yb0{bottom:489.838800px;}
.y19c{bottom:491.404800px;}
.y16c{bottom:491.443050px;}
.y40{bottom:497.218050px;}
.y147{bottom:497.218200px;}
.ydb{bottom:501.095100px;}
.ye0{bottom:501.109050px;}
.y19b{bottom:508.655550px;}
.y16b{bottom:508.693800px;}
.ya6{bottom:508.782900px;}
.yaa{bottom:508.796850px;}
.y3f{bottom:515.668050px;}
.y146{bottom:515.668200px;}
.y13{bottom:516.406800px;}
.yda{bottom:517.291050px;}
.ydf{bottom:517.305000px;}
.ya5{bottom:524.978850px;}
.ya9{bottom:524.992800px;}
.y19a{bottom:525.906300px;}
.y16a{bottom:525.944550px;}
.yd9{bottom:533.487000px;}
.yde{bottom:533.500950px;}
.y12{bottom:533.657550px;}
.y3e{bottom:534.118050px;}
.y145{bottom:534.118200px;}
.ya4{bottom:541.174800px;}
.ya8{bottom:541.188750px;}
.y199{bottom:543.157050px;}
.y169{bottom:543.195300px;}
.yd8{bottom:549.682950px;}
.ydd{bottom:549.696900px;}
.y11{bottom:550.908300px;}
.y3d{bottom:552.568050px;}
.y144{bottom:552.568200px;}
.y107{bottom:554.336850px;}
.ya3{bottom:557.370750px;}
.ya7{bottom:557.384700px;}
.y198{bottom:560.407800px;}
.y168{bottom:560.446050px;}
.y10{bottom:568.159050px;}
.yd2{bottom:568.641000px;}
.yfa{bottom:570.490950px;}
.y106{bottom:570.532800px;}
.y3c{bottom:571.018050px;}
.y53{bottom:571.018200px;}
.y197{bottom:577.658550px;}
.y167{bottom:577.696800px;}
.yd1{bottom:584.836950px;}
.yd7{bottom:584.850900px;}
.yf{bottom:585.409800px;}
.yf9{bottom:586.686900px;}
.y105{bottom:586.728750px;}
.y3b{bottom:589.468050px;}
.y52{bottom:589.468200px;}
.y196{bottom:594.909300px;}
.y166{bottom:594.947550px;}
.yd0{bottom:601.032900px;}
.yd6{bottom:601.046850px;}
.ye{bottom:602.660550px;}
.yf8{bottom:602.882850px;}
.y104{bottom:602.924700px;}
.y3a{bottom:607.918050px;}
.y51{bottom:607.918200px;}
.y195{bottom:612.160050px;}
.y165{bottom:612.198300px;}
.ycf{bottom:617.228850px;}
.yd5{bottom:617.242800px;}
.yf7{bottom:619.078800px;}
.y103{bottom:619.120650px;}
.yd{bottom:619.911300px;}
.y39{bottom:626.368050px;}
.y50{bottom:626.368200px;}
.y194{bottom:629.410800px;}
.y164{bottom:629.449050px;}
.yce{bottom:633.424800px;}
.yd4{bottom:633.438750px;}
.yf6{bottom:635.274750px;}
.y102{bottom:635.316600px;}
.yc{bottom:637.162050px;}
.ya1{bottom:637.676700px;}
.y143{bottom:643.678950px;}
.y38{bottom:644.818050px;}
.y4f{bottom:644.818200px;}
.y193{bottom:646.661550px;}
.y163{bottom:646.699800px;}
.ycd{bottom:649.620750px;}
.yd3{bottom:649.634700px;}
.yf5{bottom:651.470700px;}
.y101{bottom:651.512550px;}
.ya0{bottom:653.872650px;}
.yb{bottom:654.412800px;}
.y142{bottom:659.874900px;}
.y37{bottom:663.268050px;}
.y4e{bottom:663.268200px;}
.y192{bottom:663.912300px;}
.y162{bottom:663.950550px;}
.yf4{bottom:667.666650px;}
.y100{bottom:667.708500px;}
.ya{bottom:671.663550px;}
.y13d{bottom:678.832950px;}
.y141{bottom:678.846900px;}
.y191{bottom:681.163050px;}
.y1be{bottom:681.188550px;}
.y161{bottom:681.201300px;}
.y36{bottom:681.718050px;}
.y4d{bottom:681.718200px;}
.yf3{bottom:683.862600px;}
.yff{bottom:683.904450px;}
.y9{bottom:688.914300px;}
.y13c{bottom:695.028900px;}
.y140{bottom:695.042850px;}
.y190{bottom:698.413800px;}
.y1bd{bottom:698.439300px;}
.y160{bottom:698.452050px;}
.yf2{bottom:700.058550px;}
.yfe{bottom:700.100400px;}
.y35{bottom:700.168050px;}
.y4c{bottom:700.168200px;}
.y8{bottom:706.165050px;}
.y13b{bottom:711.224850px;}
.y13f{bottom:711.238800px;}
.y18f{bottom:715.664550px;}
.y15f{bottom:715.702800px;}
.yf1{bottom:716.254500px;}
.yfd{bottom:716.296350px;}
.y34{bottom:718.618050px;}
.y4b{bottom:718.618200px;}
.y7{bottom:723.415800px;}
.y13a{bottom:727.420800px;}
.y13e{bottom:727.434750px;}
.yf0{bottom:732.450450px;}
.yfc{bottom:732.492300px;}
.y18e{bottom:732.915300px;}
.y15e{bottom:732.953550px;}
.y33{bottom:737.068050px;}
.y4a{bottom:737.068200px;}
.y6{bottom:740.666550px;}
.y136{bottom:746.378850px;}
.y139{bottom:746.392800px;}
.yef{bottom:748.646400px;}
.yfb{bottom:748.688250px;}
.y18d{bottom:750.166050px;}
.y15d{bottom:750.204300px;}
.y32{bottom:755.518050px;}
.y5{bottom:757.917300px;}
.y135{bottom:762.574800px;}
.y138{bottom:762.588750px;}
.y18c{bottom:767.416800px;}
.y1bc{bottom:767.442300px;}
.y15c{bottom:767.455050px;}
.ye8{bottom:767.604450px;}
.yee{bottom:767.618400px;}
.y31{bottom:773.968050px;}
.y49{bottom:773.968200px;}
.y4{bottom:775.168050px;}
.y134{bottom:778.770750px;}
.y137{bottom:778.784700px;}
.ye7{bottom:783.800400px;}
.yed{bottom:783.814350px;}
.y18b{bottom:784.667550px;}
.y1bb{bottom:784.693050px;}
.y15b{bottom:784.705800px;}
.y30{bottom:792.418050px;}
.ye6{bottom:799.996350px;}
.yec{bottom:800.010300px;}
.y18a{bottom:801.918300px;}
.y1ba{bottom:801.943800px;}
.y15a{bottom:801.956550px;}
.y2f{bottom:810.868050px;}
.ye5{bottom:816.192300px;}
.yeb{bottom:816.206250px;}
.y189{bottom:819.169050px;}
.y1b9{bottom:819.194550px;}
.y159{bottom:819.207300px;}
.y3{bottom:828.803700px;}
.y2e{bottom:829.318050px;}
.ye4{bottom:832.388250px;}
.yea{bottom:832.402200px;}
.y188{bottom:836.419800px;}
.y1b8{bottom:836.445300px;}
.y158{bottom:836.458050px;}
.y2d{bottom:847.768050px;}
.ye3{bottom:848.584200px;}
.ye9{bottom:848.598150px;}
.y187{bottom:853.670550px;}
.y1b7{bottom:853.696050px;}
.y157{bottom:853.708800px;}
.y28{bottom:857.391000px;}
.y27{bottom:864.889050px;}
.y2c{bottom:866.218050px;}
.yc5{bottom:867.542250px;}
.yc8{bottom:867.556200px;}
.y2{bottom:870.815700px;}
.y186{bottom:870.921300px;}
.y1b6{bottom:870.946800px;}
.y156{bottom:870.959550px;}
.yc4{bottom:883.738200px;}
.yc7{bottom:883.752150px;}
.y2b{bottom:884.668050px;}
.y185{bottom:888.172050px;}
.y1b5{bottom:888.197550px;}
.y155{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.yc3{bottom:899.934150px;}
.yc6{bottom:899.948100px;}
.y2a{bottom:903.118050px;}
.y184{bottom:905.422800px;}
.y1b4{bottom:905.448300px;}
.y154{bottom:905.461050px;}
.y29{bottom:955.942350px;}
.h9{height:15.295800px;}
.h5{height:43.401000px;}
.h19{height:45.543000px;}
.h12{height:45.696000px;}
.h6{height:45.900000px;}
.hf{height:46.563000px;}
.h4{height:48.195000px;}
.hb{height:49.996800px;}
.hc{height:50.021400px;}
.hd{height:50.046000px;}
.h14{height:50.070600px;}
.h10{height:50.095200px;}
.ha{height:50.868000px;}
.h11{height:50.945400px;}
.h16{height:50.951400px;}
.h13{height:51.060000px;}
.h18{height:51.462000px;}
.h8{height:54.000000px;}
.he{height:56.520000px;}
.h7{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h15{height:114.780600px;}
.h17{height:115.729200px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.966350px;}
.x3{left:28.835700px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.x16{left:85.033500px;}
.x2{left:93.538500px;}
.xf{left:99.541800px;}
.x6{left:102.042450px;}
.x11{left:108.352650px;}
.x14{left:116.025150px;}
.xd{left:123.297000px;}
.xe{left:131.811000px;}
.x9{left:168.732000px;}
.xa{left:211.432950px;}
.x13{left:348.660900px;}
.x17{left:353.408250px;}
.xb{left:357.168600px;}
.x19{left:361.930800px;}
.x18{left:366.158250px;}
.x1a{left:374.680800px;}
.x10{left:376.756200px;}
.x12{left:385.567050px;}
.x15{left:392.402550px;}
.xc{left:481.435200px;}
.x8{left:651.643500px;}
.x7{left:654.512850px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v3{vertical-align:-16.494933pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.516800pt;}
.v1{vertical-align:17.760000pt;}
.v5{vertical-align:57.585600pt;}
.ls4b{letter-spacing:-2.666667pt;}
.ls1e{letter-spacing:-1.872000pt;}
.ls6d{letter-spacing:-1.706667pt;}
.ls62{letter-spacing:-1.632000pt;}
.ls67{letter-spacing:-1.600000pt;}
.ls6a{letter-spacing:-1.546667pt;}
.ls9{letter-spacing:-1.314667pt;}
.ls74{letter-spacing:-1.200000pt;}
.ls60{letter-spacing:-1.173333pt;}
.ls36{letter-spacing:-1.013333pt;}
.ls64{letter-spacing:-0.800000pt;}
.ls65{letter-spacing:-0.746667pt;}
.ls3a{letter-spacing:-0.694400pt;}
.ls37{letter-spacing:-0.644800pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.595200pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.545600pt;}
.ls2a{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.498667pt;}
.ls38{letter-spacing:-0.496000pt;}
.ls43{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.453333pt;}
.ls42{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.373333pt;}
.ls5b{letter-spacing:-0.368000pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls71{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls57{letter-spacing:-0.248000pt;}
.ls5a{letter-spacing:-0.217653pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.198400pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.148800pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.099200pt;}
.lsa{letter-spacing:-0.090667pt;}
.ls59{letter-spacing:-0.062187pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls2d{letter-spacing:-0.049600pt;}
.ls1f{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls6c{letter-spacing:-0.031093pt;}
.ls7{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.008800pt;}
.ls52{letter-spacing:0.024800pt;}
.ls13{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.062187pt;}
.ls1{letter-spacing:0.068000pt;}
.ls3e{letter-spacing:0.080000pt;}
.ls5f{letter-spacing:0.093280pt;}
.ls26{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.099200pt;}
.ls4{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.133333pt;}
.ls63{letter-spacing:0.144000pt;}
.ls30{letter-spacing:0.146133pt;}
.ls34{letter-spacing:0.148800pt;}
.ls70{letter-spacing:0.155467pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.181333pt;}
.ls54{letter-spacing:0.186560pt;}
.ls32{letter-spacing:0.186667pt;}
.ls5c{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.197333pt;}
.ls40{letter-spacing:0.198400pt;}
.ls5{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.217653pt;}
.ls44{letter-spacing:0.240000pt;}
.ls4e{letter-spacing:0.248000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls55{letter-spacing:0.279840pt;}
.ls25{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.296000pt;}
.ls4f{letter-spacing:0.297600pt;}
.ls15{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.346667pt;}
.ls41{letter-spacing:0.347200pt;}
.ls68{letter-spacing:0.372000pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.400000pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.498667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.560000pt;}
.ls14{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.693333pt;}
.ls48{letter-spacing:0.694400pt;}
.ls27{letter-spacing:0.720000pt;}
.ls46{letter-spacing:0.744000pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.773333pt;}
.ls6e{letter-spacing:0.800000pt;}
.ls4c{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.864000pt;}
.ls61{letter-spacing:0.986667pt;}
.lse{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls4a{letter-spacing:1.296000pt;}
.ls50{letter-spacing:1.344000pt;}
.ls58{letter-spacing:1.392000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls5d{letter-spacing:1.536000pt;}
.ls73{letter-spacing:1.586667pt;}
.ls6f{letter-spacing:1.632000pt;}
.ls72{letter-spacing:1.728000pt;}
.ls47{letter-spacing:1.776000pt;}
.ls6b{letter-spacing:1.824000pt;}
.ls66{letter-spacing:1.968000pt;}
.ls69{letter-spacing:2.112000pt;}
.ls51{letter-spacing:2.533333pt;}
.ls45{letter-spacing:45.681600pt;}
.wsf7{word-spacing:-13.488000pt;}
.wsa1{word-spacing:-13.152000pt;}
.ws109{word-spacing:-13.104000pt;}
.ws103{word-spacing:-13.008000pt;}
.wse1{word-spacing:-12.912000pt;}
.ws62{word-spacing:-12.816000pt;}
.wsd3{word-spacing:-12.768000pt;}
.wsb6{word-spacing:-12.720000pt;}
.wse5{word-spacing:-11.520000pt;}
.ws3c{word-spacing:-11.472000pt;}
.wse2{word-spacing:-11.253333pt;}
.wsee{word-spacing:-11.200000pt;}
.ws65{word-spacing:-11.146667pt;}
.wsf8{word-spacing:-11.036000pt;}
.ws83{word-spacing:-10.944000pt;}
.ws54{word-spacing:-10.664000pt;}
.wsea{word-spacing:-10.613333pt;}
.wsd4{word-spacing:-10.560000pt;}
.wsff{word-spacing:-10.453333pt;}
.ws95{word-spacing:-10.426667pt;}
.wsd7{word-spacing:-10.400000pt;}
.wsb7{word-spacing:-10.346667pt;}
.ws53{word-spacing:-10.320000pt;}
.ws64{word-spacing:-10.293333pt;}
.ws98{word-spacing:-10.267200pt;}
.ws2{word-spacing:-10.240000pt;}
.wse9{word-spacing:-10.133333pt;}
.wse6{word-spacing:-10.080000pt;}
.ws3d{word-spacing:-10.026667pt;}
.ws96{word-spacing:-9.973333pt;}
.wsac{word-spacing:-9.920000pt;}
.ws66{word-spacing:-9.813333pt;}
.ws10a{word-spacing:-9.746667pt;}
.ws1{word-spacing:-9.542667pt;}
.ws110{word-spacing:-9.474667pt;}
.ws105{word-spacing:-9.280000pt;}
.ws10f{word-spacing:-9.066667pt;}
.ws0{word-spacing:-8.704000pt;}
.ws3e{word-spacing:-7.912000pt;}
.wsd8{word-spacing:-7.544000pt;}
.wsc5{word-spacing:-6.778347pt;}
.wsc6{word-spacing:-6.716160pt;}
.wsc4{word-spacing:-6.685067pt;}
.ws104{word-spacing:-6.653973pt;}
.wse4{word-spacing:-6.591787pt;}
.wse3{word-spacing:-6.560693pt;}
.ws63{word-spacing:-6.498507pt;}
.wsfe{word-spacing:-6.467413pt;}
.wsd5{word-spacing:-6.436320pt;}
.wsd6{word-spacing:-6.280853pt;}
.wsc7{word-spacing:-6.217112pt;}
.wsf1{word-spacing:-3.840000pt;}
.wsf2{word-spacing:-3.466667pt;}
.wse0{word-spacing:-2.880000pt;}
.wsf3{word-spacing:-2.720000pt;}
.wsdc{word-spacing:-2.453333pt;}
.ws101{word-spacing:-2.240000pt;}
.wsf5{word-spacing:-2.133333pt;}
.ws86{word-spacing:-1.866667pt;}
.wsae{word-spacing:-1.813333pt;}
.ws59{word-spacing:-1.760000pt;}
.wsd1{word-spacing:-1.736000pt;}
.ws18{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.686400pt;}
.ws19{word-spacing:-1.653333pt;}
.ws70{word-spacing:-1.636800pt;}
.ws4e{word-spacing:-1.587200pt;}
.ws10c{word-spacing:-1.586667pt;}
.ws5a{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.537600pt;}
.ws7e{word-spacing:-1.493333pt;}
.wscf{word-spacing:-1.488000pt;}
.wsb{word-spacing:-1.450667pt;}
.ws82{word-spacing:-1.438400pt;}
.wsa{word-spacing:-1.405333pt;}
.ws9e{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.360000pt;}
.ws61{word-spacing:-1.339200pt;}
.ws5e{word-spacing:-1.333333pt;}
.ws9{word-spacing:-1.314667pt;}
.wse8{word-spacing:-1.280000pt;}
.ws69{word-spacing:-1.226667pt;}
.wsa4{word-spacing:-1.173333pt;}
.ws4c{word-spacing:-1.140800pt;}
.wsa3{word-spacing:-1.120000pt;}
.ws12{word-spacing:-1.066667pt;}
.ws74{word-spacing:-1.041600pt;}
.ws7f{word-spacing:-1.013333pt;}
.ws7a{word-spacing:-0.992000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws75{word-spacing:-0.942400pt;}
.ws45{word-spacing:-0.906667pt;}
.ws72{word-spacing:-0.892800pt;}
.ws34{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.800000pt;}
.wsa0{word-spacing:-0.746667pt;}
.wsb3{word-spacing:-0.693333pt;}
.ws5f{word-spacing:-0.640000pt;}
.ws10d{word-spacing:-0.634667pt;}
.ws35{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.545600pt;}
.ws40{word-spacing:-0.533333pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws77{word-spacing:-0.446400pt;}
.ws6a{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.320000pt;}
.ws3{word-spacing:-0.315733pt;}
.ws11{word-spacing:-0.272000pt;}
.wsa6{word-spacing:-0.266667pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws4d{word-spacing:-0.198400pt;}
.ws1e{word-spacing:-0.197333pt;}
.wsc{word-spacing:-0.181333pt;}
.ws46{word-spacing:-0.160000pt;}
.ws16{word-spacing:-0.106667pt;}
.wsbf{word-spacing:-0.099200pt;}
.ws5d{word-spacing:-0.053333pt;}
.ws51{word-spacing:-0.049600pt;}
.ws8{word-spacing:-0.045333pt;}
.ws4{word-spacing:0.000000pt;}
.wsde{word-spacing:0.049600pt;}
.wscb{word-spacing:0.053333pt;}
.ws50{word-spacing:0.099200pt;}
.ws80{word-spacing:0.106667pt;}
.ws9c{word-spacing:0.160000pt;}
.wsa8{word-spacing:0.213333pt;}
.wsd0{word-spacing:0.248000pt;}
.ws87{word-spacing:0.266667pt;}
.ws8e{word-spacing:0.320000pt;}
.ws4f{word-spacing:0.347200pt;}
.ws6e{word-spacing:0.373333pt;}
.ws8f{word-spacing:0.426667pt;}
.ws22{word-spacing:0.480000pt;}
.wsd2{word-spacing:0.496000pt;}
.ws2e{word-spacing:0.533333pt;}
.wsdd{word-spacing:0.545600pt;}
.ws26{word-spacing:0.586667pt;}
.ws5{word-spacing:0.640000pt;}
.wsce{word-spacing:0.644800pt;}
.wsd{word-spacing:0.680000pt;}
.ws32{word-spacing:0.693333pt;}
.wsfd{word-spacing:0.744000pt;}
.wsaf{word-spacing:0.746667pt;}
.wsfc{word-spacing:0.793600pt;}
.ws6c{word-spacing:0.800000pt;}
.ws6f{word-spacing:0.843200pt;}
.ws57{word-spacing:0.853333pt;}
.wsb4{word-spacing:0.906667pt;}
.wsba{word-spacing:0.960000pt;}
.ws8c{word-spacing:1.013333pt;}
.wsb9{word-spacing:1.066667pt;}
.ws78{word-spacing:1.091200pt;}
.ws81{word-spacing:1.120000pt;}
.ws76{word-spacing:1.140800pt;}
.wsdb{word-spacing:1.173333pt;}
.ws71{word-spacing:1.190400pt;}
.wsca{word-spacing:1.226667pt;}
.ws9b{word-spacing:1.280000pt;}
.ws91{word-spacing:1.333333pt;}
.wse{word-spacing:1.360000pt;}
.wscc{word-spacing:1.386667pt;}
.ws73{word-spacing:1.388800pt;}
.ws7{word-spacing:1.405333pt;}
.ws14{word-spacing:1.440000pt;}
.wsf{word-spacing:1.450667pt;}
.ws52{word-spacing:1.488000pt;}
.ws42{word-spacing:1.493333pt;}
.wsb5{word-spacing:1.537600pt;}
.ws85{word-spacing:1.546667pt;}
.ws60{word-spacing:1.587200pt;}
.wsf6{word-spacing:1.600000pt;}
.ws92{word-spacing:1.636800pt;}
.ws15{word-spacing:1.653333pt;}
.ws17{word-spacing:1.706667pt;}
.ws7c{word-spacing:1.760000pt;}
.wsa5{word-spacing:1.813333pt;}
.ws21{word-spacing:1.866667pt;}
.ws1f{word-spacing:1.872000pt;}
.wsc1{word-spacing:1.884800pt;}
.ws1c{word-spacing:1.920000pt;}
.ws39{word-spacing:1.973333pt;}
.wsf0{word-spacing:2.026667pt;}
.wsc2{word-spacing:2.033600pt;}
.ws2a{word-spacing:2.080000pt;}
.ws1b{word-spacing:2.133333pt;}
.wsc3{word-spacing:2.182400pt;}
.ws68{word-spacing:2.186667pt;}
.ws49{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.293333pt;}
.ws5b{word-spacing:2.346667pt;}
.ws24{word-spacing:2.400000pt;}
.ws30{word-spacing:2.453333pt;}
.wsfa{word-spacing:2.480000pt;}
.ws2b{word-spacing:2.506667pt;}
.ws93{word-spacing:2.529600pt;}
.ws41{word-spacing:2.560000pt;}
.wsbe{word-spacing:2.579200pt;}
.ws6b{word-spacing:2.613333pt;}
.wsb2{word-spacing:2.666667pt;}
.ws29{word-spacing:2.720000pt;}
.ws48{word-spacing:2.773333pt;}
.wsa9{word-spacing:2.826667pt;}
.wscd{word-spacing:2.880000pt;}
.wsfb{word-spacing:2.926400pt;}
.wsb0{word-spacing:2.933333pt;}
.wsda{word-spacing:2.986667pt;}
.ws3a{word-spacing:3.040000pt;}
.ws47{word-spacing:3.093333pt;}
.ws28{word-spacing:3.146667pt;}
.ws38{word-spacing:3.200000pt;}
.wsb1{word-spacing:3.253333pt;}
.ws31{word-spacing:3.306667pt;}
.ws8d{word-spacing:3.466667pt;}
.ws9f{word-spacing:3.573333pt;}
.ws9d{word-spacing:3.626667pt;}
.ws90{word-spacing:3.680000pt;}
.ws2f{word-spacing:3.733333pt;}
.ws6{word-spacing:3.853333pt;}
.ws37{word-spacing:3.893333pt;}
.ws102{word-spacing:3.946667pt;}
.wsc9{word-spacing:4.000000pt;}
.ws56{word-spacing:4.053333pt;}
.ws2c{word-spacing:4.106667pt;}
.ws7d{word-spacing:4.213333pt;}
.ws1d{word-spacing:4.266667pt;}
.ws5c{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.ws58{word-spacing:4.480000pt;}
.ws25{word-spacing:4.533333pt;}
.ws8b{word-spacing:4.586667pt;}
.ws89{word-spacing:4.640000pt;}
.ws23{word-spacing:4.746667pt;}
.wsbd{word-spacing:4.800000pt;}
.ws88{word-spacing:4.960000pt;}
.wsbc{word-spacing:5.226667pt;}
.wsed{word-spacing:5.280000pt;}
.wsaa{word-spacing:5.555200pt;}
.ws2d{word-spacing:5.866667pt;}
.wsab{word-spacing:5.952000pt;}
.ws8a{word-spacing:6.026667pt;}
.ws6d{word-spacing:6.346667pt;}
.ws107{word-spacing:6.560000pt;}
.wsbb{word-spacing:6.826667pt;}
.wsec{word-spacing:8.160000pt;}
.ws36{word-spacing:11.413333pt;}
.wsc0{word-spacing:32.091200pt;}
.ws79{word-spacing:45.681600pt;}
.ws99{word-spacing:270.915200pt;}
.ws97{word-spacing:628.035200pt;}
.wsf9{word-spacing:890.352000pt;}
.wsa2{word-spacing:890.688000pt;}
.ws10b{word-spacing:890.736000pt;}
.ws106{word-spacing:890.832000pt;}
.wse7{word-spacing:890.928000pt;}
.ws67{word-spacing:890.976000pt;}
.wsd9{word-spacing:891.024000pt;}
.ws10e{word-spacing:891.072000pt;}
.wsb8{word-spacing:891.120000pt;}
.wsef{word-spacing:892.320000pt;}
.ws3f{word-spacing:892.368000pt;}
.ws84{word-spacing:892.848000pt;}
.wsf4{word-spacing:1496.640000pt;}
.ws100{word-spacing:1496.928000pt;}
.ws9a{word-spacing:1497.744000pt;}
.wsad{word-spacing:1498.032000pt;}
.ws55{word-spacing:1498.896000pt;}
.wsc8{word-spacing:1499.088000pt;}
.wsdf{word-spacing:1500.240000pt;}
.ws20{word-spacing:1500.720000pt;}
.ws108{word-spacing:1501.152000pt;}
.ws7b{word-spacing:1501.776000pt;}
.ws111{word-spacing:1503.024000pt;}
.wseb{word-spacing:1503.888000pt;}
._b{margin-left:-892.394133pt;}
._26{margin-left:-891.449067pt;}
._f{margin-left:-890.456000pt;}
._12{margin-left:-47.038933pt;}
._9{margin-left:-15.368533pt;}
._24{margin-left:-12.906667pt;}
._1d{margin-left:-10.465600pt;}
._28{margin-left:-7.074133pt;}
._8{margin-left:-6.136533pt;}
._0{margin-left:-5.120000pt;}
._3{margin-left:-3.848533pt;}
._1{margin-left:-2.568533pt;}
._2{margin-left:-1.271467pt;}
._4{width:0.945067pt;}
._5{width:2.067200pt;}
._6{width:3.014667pt;}
._7{width:4.438133pt;}
._11{width:6.249600pt;}
._10{width:7.170133pt;}
._18{width:8.586667pt;}
._19{width:10.453333pt;}
._a{width:11.378133pt;}
._21{width:19.592000pt;}
._27{width:24.402133pt;}
._22{width:25.443733pt;}
._29{width:27.526933pt;}
._1a{width:30.453867pt;}
._23{width:32.338133pt;}
._1c{width:33.875733pt;}
._1f{width:35.037867pt;}
._1b{width:38.737067pt;}
._13{width:43.052267pt;}
._e{width:44.639467pt;}
._d{width:47.665067pt;}
._c{width:52.922667pt;}
._1e{width:64.827200pt;}
._17{width:65.733333pt;}
._14{width:67.377600pt;}
._15{width:76.075733pt;}
._16{width:182.152000pt;}
._20{width:241.236267pt;}
._25{width:312.908267pt;}
.fs4{font-size:19.733333pt;}
.fs9{font-size:28.916800pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:80.487733pt;}
.y5e{bottom:80.498667pt;}
.yc2{bottom:80.504000pt;}
.y5c{bottom:80.504133pt;}
.y8f{bottom:80.765200pt;}
.y26{bottom:81.171600pt;}
.y1b3{bottom:84.122267pt;}
.y183{bottom:84.156267pt;}
.y153{bottom:90.767600pt;}
.y77{bottom:95.815600pt;}
.y5b{bottom:95.826533pt;}
.y9f{bottom:95.832000pt;}
.y5d{bottom:95.837467pt;}
.y8e{bottom:96.099200pt;}
.y25{bottom:97.571600pt;}
.y1b2{bottom:99.456267pt;}
.y182{bottom:99.490267pt;}
.y152{bottom:106.101600pt;}
.y76{bottom:111.154400pt;}
.y11f{bottom:111.159867pt;}
.y5a{bottom:111.165333pt;}
.y91{bottom:111.165467pt;}
.y6c{bottom:111.170800pt;}
.ya2{bottom:111.170933pt;}
.y24{bottom:113.971600pt;}
.y1b1{bottom:114.790267pt;}
.y181{bottom:114.824267pt;}
.y8d{bottom:115.586667pt;}
.y151{bottom:121.435600pt;}
.y75{bottom:126.493200pt;}
.y6b{bottom:126.498667pt;}
.yc1{bottom:126.498800pt;}
.y59{bottom:126.504133pt;}
.y90{bottom:126.504267pt;}
.y8c{bottom:129.983067pt;}
.y1b0{bottom:130.124267pt;}
.y180{bottom:130.158267pt;}
.y23{bottom:130.371600pt;}
.y150{bottom:136.769600pt;}
.y9e{bottom:141.821067pt;}
.y58{bottom:141.832000pt;}
.y6a{bottom:141.837467pt;}
.y95{bottom:141.837600pt;}
.y1af{bottom:145.458267pt;}
.y17f{bottom:145.492267pt;}
.y22{bottom:146.771600pt;}
.y74{bottom:146.771733pt;}
.y86{bottom:146.822267pt;}
.y89{bottom:146.834667pt;}
.y14f{bottom:152.103600pt;}
.y9d{bottom:157.159867pt;}
.y94{bottom:157.165467pt;}
.y57{bottom:157.170800pt;}
.y1ae{bottom:160.792267pt;}
.y17e{bottom:160.826267pt;}
.y85{bottom:161.218667pt;}
.y88{bottom:161.231067pt;}
.y8b{bottom:161.243467pt;}
.y21{bottom:163.171600pt;}
.y73{bottom:163.171733pt;}
.y9c{bottom:172.498667pt;}
.y56{bottom:172.498800pt;}
.y69{bottom:172.504133pt;}
.y93{bottom:172.504267pt;}
.y84{bottom:175.615067pt;}
.y87{bottom:175.627467pt;}
.y8a{bottom:175.639867pt;}
.y1ad{bottom:176.126267pt;}
.y17d{bottom:176.160267pt;}
.y20{bottom:179.571600pt;}
.y72{bottom:179.571733pt;}
.y14e{bottom:182.771600pt;}
.y117{bottom:187.025067pt;}
.y92{bottom:187.832133pt;}
.y68{bottom:187.837467pt;}
.y55{bottom:187.837600pt;}
.ybe{bottom:190.924800pt;}
.ycc{bottom:190.927067pt;}
.y1ac{bottom:191.460267pt;}
.y17c{bottom:191.494267pt;}
.y80{bottom:192.466667pt;}
.y83{bottom:192.479067pt;}
.y1f{bottom:195.971600pt;}
.y71{bottom:195.971733pt;}
.y116{bottom:201.421467pt;}
.y11e{bottom:201.446267pt;}
.y67{bottom:203.165600pt;}
.y9b{bottom:203.170800pt;}
.y54{bottom:203.170933pt;}
.ybd{bottom:205.321200pt;}
.ycb{bottom:205.323467pt;}
.yc0{bottom:205.333600pt;}
.y1ab{bottom:206.794267pt;}
.y17b{bottom:206.828267pt;}
.y7f{bottom:206.863067pt;}
.y82{bottom:206.875467pt;}
.y1e{bottom:212.371600pt;}
.y70{bottom:212.371733pt;}
.y115{bottom:215.817867pt;}
.y11d{bottom:215.842667pt;}
.y9a{bottom:218.504133pt;}
.y66{bottom:218.504400pt;}
.ybc{bottom:219.717600pt;}
.ybf{bottom:219.730000pt;}
.y7e{bottom:221.259467pt;}
.y81{bottom:221.271867pt;}
.y1aa{bottom:222.128267pt;}
.y17a{bottom:222.162267pt;}
.yca{bottom:222.187467pt;}
.y1d{bottom:228.771600pt;}
.y6f{bottom:228.771733pt;}
.y114{bottom:230.214267pt;}
.y11c{bottom:230.239067pt;}
.y99{bottom:233.832267pt;}
.y65{bottom:233.837733pt;}
.ybb{bottom:236.581600pt;}
.yba{bottom:236.583867pt;}
.y1a9{bottom:237.462267pt;}
.y179{bottom:237.496267pt;}
.y7d{bottom:238.123467pt;}
.y113{bottom:244.610667pt;}
.y11b{bottom:244.635467pt;}
.y1c{bottom:245.171600pt;}
.y6e{bottom:245.171733pt;}
.y12f{bottom:246.162667pt;}
.y133{bottom:246.175067pt;}
.y64{bottom:249.160133pt;}
.y98{bottom:249.171067pt;}
.yb9{bottom:250.980267pt;}
.y7c{bottom:252.519867pt;}
.y1a8{bottom:252.796267pt;}
.y178{bottom:252.830267pt;}
.yc9{bottom:253.447867pt;}
.y112{bottom:259.007067pt;}
.y11a{bottom:259.031867pt;}
.y12e{bottom:260.559067pt;}
.y132{bottom:260.571467pt;}
.y1b{bottom:261.571600pt;}
.y63{bottom:264.498933pt;}
.y97{bottom:264.504400pt;}
.yb8{bottom:267.844267pt;}
.y1a7{bottom:268.130267pt;}
.y177{bottom:268.164267pt;}
.y7b{bottom:269.383867pt;}
.y111{bottom:273.403467pt;}
.y119{bottom:273.428267pt;}
.y12d{bottom:274.955467pt;}
.y131{bottom:274.967867pt;}
.y1a{bottom:277.971600pt;}
.y6d{bottom:279.038267pt;}
.y62{bottom:279.837733pt;}
.yb7{bottom:282.240667pt;}
.y1a6{bottom:283.464267pt;}
.y176{bottom:283.498267pt;}
.y7a{bottom:283.780267pt;}
.y110{bottom:287.799867pt;}
.y118{bottom:287.824667pt;}
.y12c{bottom:289.351867pt;}
.y130{bottom:289.364267pt;}
.y48{bottom:294.371600pt;}
.y61{bottom:295.160133pt;}
.y79{bottom:298.176667pt;}
.y1a5{bottom:298.798267pt;}
.y175{bottom:298.832267pt;}
.y10b{bottom:304.651467pt;}
.y10f{bottom:304.663867pt;}
.y128{bottom:306.203467pt;}
.y12b{bottom:306.215867pt;}
.y60{bottom:310.498933pt;}
.y19{bottom:310.771600pt;}
.y1a4{bottom:314.132267pt;}
.y174{bottom:314.166267pt;}
.y78{bottom:315.040667pt;}
.y10a{bottom:319.047867pt;}
.y10e{bottom:319.060267pt;}
.y127{bottom:320.599867pt;}
.y12a{bottom:320.612267pt;}
.y5f{bottom:325.837733pt;}
.y47{bottom:327.171600pt;}
.y1a3{bottom:329.466267pt;}
.y173{bottom:329.500267pt;}
.y109{bottom:333.444267pt;}
.y10d{bottom:333.456667pt;}
.y126{bottom:334.996267pt;}
.y129{bottom:335.008667pt;}
.y46{bottom:343.571600pt;}
.y1a2{bottom:344.800267pt;}
.y172{bottom:344.834267pt;}
.yb6{bottom:346.566267pt;}
.y108{bottom:347.840667pt;}
.y10c{bottom:347.853067pt;}
.y122{bottom:351.847867pt;}
.y125{bottom:351.860267pt;}
.y45{bottom:359.971600pt;}
.y14c{bottom:359.971733pt;}
.y1a1{bottom:360.134267pt;}
.y171{bottom:360.168267pt;}
.yb5{bottom:363.430267pt;}
.y121{bottom:366.244267pt;}
.y124{bottom:366.256667pt;}
.y18{bottom:367.024267pt;}
.y1a0{bottom:375.468267pt;}
.y170{bottom:375.502267pt;}
.y44{bottom:376.371600pt;}
.y14b{bottom:376.371733pt;}
.yaf{bottom:377.814267pt;}
.yb4{bottom:377.826667pt;}
.y120{bottom:380.640667pt;}
.y123{bottom:380.653067pt;}
.y17{bottom:382.358267pt;}
.y19f{bottom:390.802267pt;}
.y16f{bottom:390.836267pt;}
.yae{bottom:392.210667pt;}
.yb3{bottom:392.223067pt;}
.y43{bottom:392.771600pt;}
.y14a{bottom:392.771733pt;}
.y16{bottom:397.692267pt;}
.y19e{bottom:406.136267pt;}
.y16e{bottom:406.170267pt;}
.yad{bottom:406.607067pt;}
.yb2{bottom:406.619467pt;}
.y42{bottom:409.171600pt;}
.y149{bottom:409.171733pt;}
.y15{bottom:413.026267pt;}
.ye2{bottom:416.637467pt;}
.yac{bottom:421.003467pt;}
.yb1{bottom:421.015867pt;}
.y19d{bottom:421.470267pt;}
.y16d{bottom:421.504267pt;}
.y14d{bottom:424.645600pt;}
.y41{bottom:425.571600pt;}
.y148{bottom:425.571733pt;}
.y14{bottom:428.360267pt;}
.ydc{bottom:431.021467pt;}
.ye1{bottom:431.033867pt;}
.yab{bottom:435.399867pt;}
.yb0{bottom:435.412267pt;}
.y19c{bottom:436.804267pt;}
.y16c{bottom:436.838267pt;}
.y40{bottom:441.971600pt;}
.y147{bottom:441.971733pt;}
.ydb{bottom:445.417867pt;}
.ye0{bottom:445.430267pt;}
.y19b{bottom:452.138267pt;}
.y16b{bottom:452.172267pt;}
.ya6{bottom:452.251467pt;}
.yaa{bottom:452.263867pt;}
.y3f{bottom:458.371600pt;}
.y146{bottom:458.371733pt;}
.y13{bottom:459.028267pt;}
.yda{bottom:459.814267pt;}
.ydf{bottom:459.826667pt;}
.ya5{bottom:466.647867pt;}
.ya9{bottom:466.660267pt;}
.y19a{bottom:467.472267pt;}
.y16a{bottom:467.506267pt;}
.yd9{bottom:474.210667pt;}
.yde{bottom:474.223067pt;}
.y12{bottom:474.362267pt;}
.y3e{bottom:474.771600pt;}
.y145{bottom:474.771733pt;}
.ya4{bottom:481.044267pt;}
.ya8{bottom:481.056667pt;}
.y199{bottom:482.806267pt;}
.y169{bottom:482.840267pt;}
.yd8{bottom:488.607067pt;}
.ydd{bottom:488.619467pt;}
.y11{bottom:489.696267pt;}
.y3d{bottom:491.171600pt;}
.y144{bottom:491.171733pt;}
.y107{bottom:492.743867pt;}
.ya3{bottom:495.440667pt;}
.ya7{bottom:495.453067pt;}
.y198{bottom:498.140267pt;}
.y168{bottom:498.174267pt;}
.y10{bottom:505.030267pt;}
.yd2{bottom:505.458667pt;}
.yfa{bottom:507.103067pt;}
.y106{bottom:507.140267pt;}
.y3c{bottom:507.571600pt;}
.y53{bottom:507.571733pt;}
.y197{bottom:513.474267pt;}
.y167{bottom:513.508267pt;}
.yd1{bottom:519.855067pt;}
.yd7{bottom:519.867467pt;}
.yf{bottom:520.364267pt;}
.yf9{bottom:521.499467pt;}
.y105{bottom:521.536667pt;}
.y3b{bottom:523.971600pt;}
.y52{bottom:523.971733pt;}
.y196{bottom:528.808267pt;}
.y166{bottom:528.842267pt;}
.yd0{bottom:534.251467pt;}
.yd6{bottom:534.263867pt;}
.ye{bottom:535.698267pt;}
.yf8{bottom:535.895867pt;}
.y104{bottom:535.933067pt;}
.y3a{bottom:540.371600pt;}
.y51{bottom:540.371733pt;}
.y195{bottom:544.142267pt;}
.y165{bottom:544.176267pt;}
.ycf{bottom:548.647867pt;}
.yd5{bottom:548.660267pt;}
.yf7{bottom:550.292267pt;}
.y103{bottom:550.329467pt;}
.yd{bottom:551.032267pt;}
.y39{bottom:556.771600pt;}
.y50{bottom:556.771733pt;}
.y194{bottom:559.476267pt;}
.y164{bottom:559.510267pt;}
.yce{bottom:563.044267pt;}
.yd4{bottom:563.056667pt;}
.yf6{bottom:564.688667pt;}
.y102{bottom:564.725867pt;}
.yc{bottom:566.366267pt;}
.ya1{bottom:566.823733pt;}
.y143{bottom:572.159067pt;}
.y38{bottom:573.171600pt;}
.y4f{bottom:573.171733pt;}
.y193{bottom:574.810267pt;}
.y163{bottom:574.844267pt;}
.ycd{bottom:577.440667pt;}
.yd3{bottom:577.453067pt;}
.yf5{bottom:579.085067pt;}
.y101{bottom:579.122267pt;}
.ya0{bottom:581.220133pt;}
.yb{bottom:581.700267pt;}
.y142{bottom:586.555467pt;}
.y37{bottom:589.571600pt;}
.y4e{bottom:589.571733pt;}
.y192{bottom:590.144267pt;}
.y162{bottom:590.178267pt;}
.yf4{bottom:593.481467pt;}
.y100{bottom:593.518667pt;}
.ya{bottom:597.034267pt;}
.y13d{bottom:603.407067pt;}
.y141{bottom:603.419467pt;}
.y191{bottom:605.478267pt;}
.y1be{bottom:605.500933pt;}
.y161{bottom:605.512267pt;}
.y36{bottom:605.971600pt;}
.y4d{bottom:605.971733pt;}
.yf3{bottom:607.877867pt;}
.yff{bottom:607.915067pt;}
.y9{bottom:612.368267pt;}
.y13c{bottom:617.803467pt;}
.y140{bottom:617.815867pt;}
.y190{bottom:620.812267pt;}
.y1bd{bottom:620.834933pt;}
.y160{bottom:620.846267pt;}
.yf2{bottom:622.274267pt;}
.yfe{bottom:622.311467pt;}
.y35{bottom:622.371600pt;}
.y4c{bottom:622.371733pt;}
.y8{bottom:627.702267pt;}
.y13b{bottom:632.199867pt;}
.y13f{bottom:632.212267pt;}
.y18f{bottom:636.146267pt;}
.y15f{bottom:636.180267pt;}
.yf1{bottom:636.670667pt;}
.yfd{bottom:636.707867pt;}
.y34{bottom:638.771600pt;}
.y4b{bottom:638.771733pt;}
.y7{bottom:643.036267pt;}
.y13a{bottom:646.596267pt;}
.y13e{bottom:646.608667pt;}
.yf0{bottom:651.067067pt;}
.yfc{bottom:651.104267pt;}
.y18e{bottom:651.480267pt;}
.y15e{bottom:651.514267pt;}
.y33{bottom:655.171600pt;}
.y4a{bottom:655.171733pt;}
.y6{bottom:658.370267pt;}
.y136{bottom:663.447867pt;}
.y139{bottom:663.460267pt;}
.yef{bottom:665.463467pt;}
.yfb{bottom:665.500667pt;}
.y18d{bottom:666.814267pt;}
.y15d{bottom:666.848267pt;}
.y32{bottom:671.571600pt;}
.y5{bottom:673.704267pt;}
.y135{bottom:677.844267pt;}
.y138{bottom:677.856667pt;}
.y18c{bottom:682.148267pt;}
.y1bc{bottom:682.170933pt;}
.y15c{bottom:682.182267pt;}
.ye8{bottom:682.315067pt;}
.yee{bottom:682.327467pt;}
.y31{bottom:687.971600pt;}
.y49{bottom:687.971733pt;}
.y4{bottom:689.038267pt;}
.y134{bottom:692.240667pt;}
.y137{bottom:692.253067pt;}
.ye7{bottom:696.711467pt;}
.yed{bottom:696.723867pt;}
.y18b{bottom:697.482267pt;}
.y1bb{bottom:697.504933pt;}
.y15b{bottom:697.516267pt;}
.y30{bottom:704.371600pt;}
.ye6{bottom:711.107867pt;}
.yec{bottom:711.120267pt;}
.y18a{bottom:712.816267pt;}
.y1ba{bottom:712.838933pt;}
.y15a{bottom:712.850267pt;}
.y2f{bottom:720.771600pt;}
.ye5{bottom:725.504267pt;}
.yeb{bottom:725.516667pt;}
.y189{bottom:728.150267pt;}
.y1b9{bottom:728.172933pt;}
.y159{bottom:728.184267pt;}
.y3{bottom:736.714400pt;}
.y2e{bottom:737.171600pt;}
.ye4{bottom:739.900667pt;}
.yea{bottom:739.913067pt;}
.y188{bottom:743.484267pt;}
.y1b8{bottom:743.506933pt;}
.y158{bottom:743.518267pt;}
.y2d{bottom:753.571600pt;}
.ye3{bottom:754.297067pt;}
.ye9{bottom:754.309467pt;}
.y187{bottom:758.818267pt;}
.y1b7{bottom:758.840933pt;}
.y157{bottom:758.852267pt;}
.y28{bottom:762.125333pt;}
.y27{bottom:768.790267pt;}
.y2c{bottom:769.971600pt;}
.yc5{bottom:771.148667pt;}
.yc8{bottom:771.161067pt;}
.y2{bottom:774.058400pt;}
.y186{bottom:774.152267pt;}
.y1b6{bottom:774.174933pt;}
.y156{bottom:774.186267pt;}
.yc4{bottom:785.545067pt;}
.yc7{bottom:785.557467pt;}
.y2b{bottom:786.371600pt;}
.y185{bottom:789.486267pt;}
.y1b5{bottom:789.508933pt;}
.y155{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.yc3{bottom:799.941467pt;}
.yc6{bottom:799.953867pt;}
.y2a{bottom:802.771600pt;}
.y184{bottom:804.820267pt;}
.y1b4{bottom:804.842933pt;}
.y154{bottom:804.854267pt;}
.y29{bottom:849.726533pt;}
.h9{height:13.596267pt;}
.h5{height:38.578667pt;}
.h19{height:40.482667pt;}
.h12{height:40.618667pt;}
.h6{height:40.800000pt;}
.hf{height:41.389333pt;}
.h4{height:42.840000pt;}
.hb{height:44.441600pt;}
.hc{height:44.463467pt;}
.hd{height:44.485333pt;}
.h14{height:44.507200pt;}
.h10{height:44.529067pt;}
.ha{height:45.216000pt;}
.h11{height:45.284800pt;}
.h16{height:45.290133pt;}
.h13{height:45.386667pt;}
.h18{height:45.744000pt;}
.h8{height:48.000000pt;}
.he{height:50.240000pt;}
.h7{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h15{height:102.027200pt;}
.h17{height:102.870400pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:23.081200pt;}
.x3{left:25.631733pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.x16{left:75.585333pt;}
.x2{left:83.145333pt;}
.xf{left:88.481600pt;}
.x6{left:90.704400pt;}
.x11{left:96.313467pt;}
.x14{left:103.133467pt;}
.xd{left:109.597333pt;}
.xe{left:117.165333pt;}
.x9{left:149.984000pt;}
.xa{left:187.940400pt;}
.x13{left:309.920800pt;}
.x17{left:314.140667pt;}
.xb{left:317.483200pt;}
.x19{left:321.716267pt;}
.x18{left:325.474000pt;}
.x1a{left:333.049600pt;}
.x10{left:334.894400pt;}
.x12{left:342.726267pt;}
.x15{left:348.802267pt;}
.xc{left:427.942400pt;}
.x8{left:579.238667pt;}
.x7{left:581.789200pt;}
}




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