
    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_c491bd7ff17b3e59b4f008ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_511465f8d71c054cefff724c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966000;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_6f4e6fd297fce535a046f0ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_bce1a7baf0a527e9b7934508.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966000;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_9c4f17cf8a8458811a880f20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.676000;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_2ffb2132671122413ef17d2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966000;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_72f4238e3f0384f6a5b0d832.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_a79558dc8b4d309251d1fc8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730957;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_cb150d00ed90f9d6b767b18a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_cf48f181b2022a28914b1b6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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;}
.m1{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-3.364200px;}
.ls23{letter-spacing:-3.268080px;}
.ls13{letter-spacing:-2.979720px;}
.ls22{letter-spacing:-2.883600px;}
.lsa{letter-spacing:-1.717560px;}
.ls7{letter-spacing:-0.841680px;}
.ls8{letter-spacing:-0.781560px;}
.ls9{letter-spacing:-0.541080px;}
.ls21{letter-spacing:-0.480960px;}
.ls10{letter-spacing:-0.420840px;}
.ls30{letter-spacing:-0.379625px;}
.ls29{letter-spacing:-0.360720px;}
.ls18{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.300600px;}
.lsb{letter-spacing:-0.192240px;}
.lsf{letter-spacing:-0.180360px;}
.ls15{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.120240px;}
.ls16{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.060120px;}
.ls17{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.060120px;}
.ls32{letter-spacing:0.072144px;}
.ls28{letter-spacing:0.083880px;}
.ls2f{letter-spacing:0.084361px;}
.ls1{letter-spacing:0.096120px;}
.lsc{letter-spacing:0.119880px;}
.ls12{letter-spacing:0.120240px;}
.ls26{letter-spacing:0.126000px;}
.ls2e{letter-spacing:0.126542px;}
.ls35{letter-spacing:0.162000px;}
.ls2c{letter-spacing:0.168722px;}
.ls19{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.180360px;}
.ls1d{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.360720px;}
.ls38{letter-spacing:0.432864px;}
.ls27{letter-spacing:4.677336px;}
.ls4{letter-spacing:59.456400px;}
.ls2d{letter-spacing:81.497851px;}
.ls2b{letter-spacing:340.296734px;}
.ls0{letter-spacing:1128.040920px;}
.ls37{letter-spacing:2090.394000px;}
.ls3a{letter-spacing:2092.554000px;}
.ls39{letter-spacing:2102.994000px;}
.ls34{letter-spacing:2111.634000px;}
.ls25{letter-spacing:2111.994000px;}
.ls31{letter-spacing:2112.354000px;}
.ls1c{letter-spacing:2113.434000px;}
.ls2a{letter-spacing:2113.794000px;}
.ls33{letter-spacing:2114.874000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(96,96,96),0 0.015em rgb(96,96,96),0.015em 0 rgb(96,96,96),0 -0.015em  rgb(96,96,96);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(96,96,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws65{word-spacing:-60.120000px;}
.ws63{word-spacing:-60.059880px;}
.ws64{word-spacing:-59.699160px;}
.ws2{word-spacing:-38.961000px;}
.ws0{word-spacing:-32.873040px;}
.ws1{word-spacing:-32.584680px;}
.wsf{word-spacing:-31.239000px;}
.ws40{word-spacing:-28.355400px;}
.wse{word-spacing:-28.259280px;}
.ws41{word-spacing:-27.970920px;}
.ws10{word-spacing:-27.874800px;}
.ws42{word-spacing:-20.681280px;}
.wsc{word-spacing:-20.621160px;}
.ws61{word-spacing:-20.561040px;}
.ws3{word-spacing:-20.500920px;}
.ws12{word-spacing:-20.440920px;}
.wsa{word-spacing:-20.440800px;}
.ws11{word-spacing:-20.380920px;}
.wsb{word-spacing:-20.380680px;}
.wsd{word-spacing:-20.320560px;}
.ws4{word-spacing:-20.260440px;}
.ws5{word-spacing:-20.200320px;}
.ws13{word-spacing:-20.140920px;}
.ws8{word-spacing:-20.140200px;}
.ws9{word-spacing:-20.080080px;}
.ws3f{word-spacing:-20.019960px;}
.ws7{word-spacing:-19.899720px;}
.ws6{word-spacing:-19.779480px;}
.ws3e{word-spacing:-18.630000px;}
.ws62{word-spacing:-18.576000px;}
.ws3c{word-spacing:-18.468000px;}
.ws3b{word-spacing:-18.414000px;}
.ws3d{word-spacing:-18.252000px;}
.ws57{word-spacing:-11.894929px;}
.ws58{word-spacing:-11.852749px;}
.ws59{word-spacing:-11.726207px;}
.ws4f{word-spacing:-4.989960px;}
.ws4c{word-spacing:-1.082160px;}
.ws3a{word-spacing:-0.840000px;}
.ws5c{word-spacing:-0.632709px;}
.ws5e{word-spacing:-0.548348px;}
.ws48{word-spacing:-0.541080px;}
.ws1c{word-spacing:-0.480960px;}
.ws60{word-spacing:-0.420840px;}
.ws1f{word-spacing:-0.360720px;}
.ws2a{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300600px;}
.ws36{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.258000px;}
.ws38{word-spacing:-0.246000px;}
.ws20{word-spacing:-0.240480px;}
.ws1a{word-spacing:-0.239760px;}
.ws22{word-spacing:-0.192240px;}
.ws2b{word-spacing:-0.192000px;}
.ws31{word-spacing:-0.186000px;}
.ws17{word-spacing:-0.180360px;}
.ws39{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.168722px;}
.ws34{word-spacing:-0.150000px;}
.ws19{word-spacing:-0.132120px;}
.ws30{word-spacing:-0.132000px;}
.ws1e{word-spacing:-0.120240px;}
.ws1b{word-spacing:-0.119880px;}
.ws43{word-spacing:-0.108000px;}
.ws2e{word-spacing:-0.102000px;}
.ws5b{word-spacing:-0.084361px;}
.ws35{word-spacing:-0.072000px;}
.ws46{word-spacing:-0.060120px;}
.ws44{word-spacing:-0.054000px;}
.ws5d{word-spacing:-0.042181px;}
.ws2f{word-spacing:-0.006000px;}
.ws14{word-spacing:0.000000px;}
.ws37{word-spacing:0.006000px;}
.ws45{word-spacing:0.054000px;}
.ws25{word-spacing:0.060000px;}
.ws16{word-spacing:0.060120px;}
.ws28{word-spacing:0.090000px;}
.ws24{word-spacing:0.120000px;}
.ws15{word-spacing:0.120240px;}
.ws26{word-spacing:0.132000px;}
.ws23{word-spacing:0.180000px;}
.ws1d{word-spacing:0.180360px;}
.ws49{word-spacing:0.192240px;}
.ws32{word-spacing:0.252000px;}
.ws27{word-spacing:0.294000px;}
.ws2c{word-spacing:0.360000px;}
.ws54{word-spacing:0.360720px;}
.ws33{word-spacing:0.408000px;}
.ws29{word-spacing:0.414000px;}
.ws18{word-spacing:0.420840px;}
.ws5f{word-spacing:0.463987px;}
.ws55{word-spacing:0.576720px;}
.ws50{word-spacing:2.284560px;}
.ws47{word-spacing:2.979720px;}
.ws52{word-spacing:4.689360px;}
.ws51{word-spacing:4.749480px;}
.ws4d{word-spacing:8.416800px;}
.ws4b{word-spacing:9.859680px;}
.ws4e{word-spacing:10.220400px;}
.ws4a{word-spacing:10.460880px;}
.ws53{word-spacing:13.106160px;}
.ws56{word-spacing:316.340252px;}
._2{margin-left:-3.460320px;}
._1{margin-left:-1.017324px;}
._0{width:1.340676px;}
._4{width:10.521000px;}
._3{width:59.456395px;}
._5{width:80.926693px;}
._6{width:82.210690px;}
.fc9{color:rgb(0,40,110);}
.fc8{color:rgb(118,113,113);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(109,109,109);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.180600px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:83.880000px;}
.fs4{font-size:96.120000px;}
.fs3{font-size:119.880000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y16f{bottom:12.940200px;}
.ya{bottom:14.040000px;}
.y9{bottom:32.940000px;}
.y1{bottom:39.960000px;}
.y5a{bottom:40.050000px;}
.y15a{bottom:49.331250px;}
.y146{bottom:56.782350px;}
.y7{bottom:60.930000px;}
.y1cc{bottom:61.200000px;}
.y8e{bottom:61.899930px;}
.y10a{bottom:72.420120px;}
.y15c{bottom:72.835350px;}
.y253{bottom:73.011330px;}
.y145{bottom:75.765240px;}
.y196{bottom:76.410000px;}
.y148{bottom:78.478650px;}
.y6{bottom:79.920000px;}
.y1cb{bottom:80.190000px;}
.y8d{bottom:80.882820px;}
.y200{bottom:82.186920px;}
.y2b6{bottom:83.541330px;}
.y15b{bottom:84.956700px;}
.y109{bottom:91.403010px;}
.y252{bottom:91.994220px;}
.y283{bottom:93.524220px;}
.y144{bottom:94.748130px;}
.y195{bottom:95.400000px;}
.y1ca{bottom:99.180000px;}
.y8c{bottom:99.865710px;}
.y1ff{bottom:101.169810px;}
.y2b5{bottom:102.524220px;}
.y4{bottom:107.910000px;}
.y108{bottom:110.385900px;}
.y251{bottom:110.977110px;}
.y2{bottom:111.960000px;}
.y149{bottom:112.490400px;}
.y282{bottom:112.507110px;}
.y37{bottom:112.722660px;}
.y15d{bottom:112.907700px;}
.y143{bottom:113.731020px;}
.y194{bottom:114.390000px;}
.y1c9{bottom:118.170000px;}
.y1fe{bottom:120.152700px;}
.y2b4{bottom:121.507110px;}
.yb{bottom:126.000000px;}
.y3{bottom:126.900000px;}
.y107{bottom:129.368790px;}
.y250{bottom:129.960000px;}
.y281{bottom:131.490000px;}
.y36{bottom:131.705550px;}
.y142{bottom:132.713910px;}
.y193{bottom:133.380000px;}
.y8b{bottom:136.854540px;}
.y1c8{bottom:137.160000px;}
.y1fd{bottom:139.135590px;}
.y2b3{bottom:140.490000px;}
.y15f{bottom:140.859000px;}
.y154{bottom:146.502300px;}
.y14a{bottom:146.502450px;}
.y35{bottom:150.688440px;}
.y141{bottom:151.696800px;}
.y192{bottom:152.370000px;}
.y15e{bottom:152.980200px;}
.y8a{bottom:155.837430px;}
.y1c7{bottom:156.150000px;}
.y106{bottom:157.354650px;}
.y24f{bottom:157.950000px;}
.y1fc{bottom:158.118480px;}
.y280{bottom:159.501330px;}
.yd6{bottom:159.791760px;}
.y220{bottom:166.840830px;}
.y2b2{bottom:168.508440px;}
.y34{bottom:169.671330px;}
.y191{bottom:171.360000px;}
.y8{bottom:172.890000px;}
.y89{bottom:174.820320px;}
.y1c6{bottom:175.140000px;}
.y105{bottom:176.337540px;}
.y24e{bottom:176.947110px;}
.y1fb{bottom:177.101370px;}
.y27f{bottom:178.484220px;}
.yd5{bottom:178.774650px;}
.y140{bottom:179.682660px;}
.y14b{bottom:180.514050px;}
.y160{bottom:180.931350px;}
.y2b1{bottom:187.491330px;}
.y33{bottom:188.654220px;}
.y190{bottom:190.350000px;}
.y88{bottom:193.803210px;}
.y1c5{bottom:194.130000px;}
.y21f{bottom:194.826690px;}
.y104{bottom:195.320430px;}
.y24d{bottom:195.930000px;}
.y1fa{bottom:196.084260px;}
.y27e{bottom:197.467110px;}
.yd4{bottom:197.757540px;}
.y13f{bottom:198.665550px;}
.y2b0{bottom:206.474220px;}
.y32{bottom:207.637110px;}
.y18f{bottom:209.340000px;}
.y87{bottom:212.786100px;}
.y1c4{bottom:213.120000px;}
.y21e{bottom:213.809580px;}
.y103{bottom:214.303320px;}
.y155{bottom:214.525800px;}
.y14c{bottom:214.525950px;}
.y161{bottom:214.943250px;}
.y1f9{bottom:215.067150px;}
.y27d{bottom:216.450000px;}
.yd3{bottom:216.740430px;}
.y13e{bottom:217.648440px;}
.y5{bottom:219.870000px;}
.y24c{bottom:223.934220px;}
.y2af{bottom:225.457110px;}
.y31{bottom:226.620000px;}
.y18e{bottom:228.330000px;}
.y86{bottom:231.768990px;}
.y21d{bottom:232.792470px;}
.y102{bottom:233.286210px;}
.yd2{bottom:235.723320px;}
.y13d{bottom:236.631330px;}
.y1c3{bottom:241.110000px;}
.y163{bottom:242.894550px;}
.y24b{bottom:242.917110px;}
.y1f8{bottom:243.053010px;}
.y2ae{bottom:244.440000px;}
.y27c{bottom:244.533600px;}
.y18d{bottom:247.320000px;}
.y156{bottom:248.537550px;}
.y14d{bottom:248.537700px;}
.y85{bottom:250.751880px;}
.y21c{bottom:251.775360px;}
.y101{bottom:252.269100px;}
.y162{bottom:255.015750px;}
.y13c{bottom:255.614220px;}
.y1c2{bottom:260.100000px;}
.y24a{bottom:261.900000px;}
.y1f7{bottom:262.035900px;}
.y27b{bottom:263.516490px;}
.y18c{bottom:266.310000px;}
.y30{bottom:266.760000px;}
.y84{bottom:269.734770px;}
.y21b{bottom:270.758250px;}
.y100{bottom:271.251990px;}
.y2ad{bottom:272.458440px;}
.yd1{bottom:272.712150px;}
.y13b{bottom:274.597110px;}
.y1c1{bottom:279.090000px;}
.y1f6{bottom:281.018790px;}
.y27a{bottom:282.499380px;}
.y14e{bottom:282.549600px;}
.y164{bottom:282.966900px;}
.y21a{bottom:289.741140px;}
.y57{bottom:289.900500px;}
.y249{bottom:289.918440px;}
.yff{bottom:290.234880px;}
.y2ac{bottom:291.441330px;}
.yd0{bottom:291.695040px;}
.y13a{bottom:293.580000px;}
.y18b{bottom:294.300000px;}
.y1c0{bottom:298.080000px;}
.y1f5{bottom:300.001680px;}
.y279{bottom:301.482270px;}
.y83{bottom:306.723600px;}
.y219{bottom:308.724030px;}
.y248{bottom:308.901330px;}
.yfe{bottom:309.217770px;}
.y56{bottom:309.402000px;}
.y2ab{bottom:310.424220px;}
.ycf{bottom:310.677930px;}
.y166{bottom:310.918050px;}
.y2f{bottom:312.239880px;}
.y18a{bottom:313.290000px;}
.y157{bottom:316.561200px;}
.y14f{bottom:316.561350px;}
.y1bf{bottom:317.070000px;}
.y1f4{bottom:318.984570px;}
.y278{bottom:320.465160px;}
.y165{bottom:323.039250px;}
.y139{bottom:323.731980px;}
.y82{bottom:325.706490px;}
.y218{bottom:327.706920px;}
.y247{bottom:327.884220px;}
.yfd{bottom:328.200660px;}
.y55{bottom:328.903500px;}
.y2aa{bottom:329.407110px;}
.yce{bottom:329.660820px;}
.y2e{bottom:331.222770px;}
.y189{bottom:332.280000px;}
.y1be{bottom:336.060000px;}
.y1f3{bottom:337.967460px;}
.y81{bottom:344.689380px;}
.y168{bottom:344.929950px;}
.y246{bottom:346.867110px;}
.yfc{bottom:347.183550px;}
.y2a9{bottom:348.390000px;}
.y54{bottom:348.405000px;}
.y277{bottom:348.451020px;}
.ycd{bottom:348.643710px;}
.y2d{bottom:350.205660px;}
.y138{bottom:350.280000px;}
.y150{bottom:350.573250px;}
.y188{bottom:351.270000px;}
.y1bd{bottom:355.050000px;}
.y217{bottom:355.692780px;}
.y1f2{bottom:356.950350px;}
.y167{bottom:357.051300px;}
.y80{bottom:363.672270px;}
.y245{bottom:365.850000px;}
.y276{bottom:367.433910px;}
.ycc{bottom:367.626600px;}
.y53{bottom:367.906500px;}
.y2c{bottom:369.188550px;}
.y187{bottom:370.260000px;}
.y1bc{bottom:374.040000px;}
.y216{bottom:374.675670px;}
.yfb{bottom:375.169410px;}
.y2cf{bottom:375.570000px;}
.y1f1{bottom:375.933240px;}
.y2a8{bottom:376.380000px;}
.y16a{bottom:378.941700px;}
.y7f{bottom:382.655160px;}
.y151{bottom:384.585000px;}
.y275{bottom:386.416800px;}
.ycb{bottom:386.609490px;}
.y2b{bottom:388.171440px;}
.y186{bottom:389.250000px;}
.y137{bottom:389.840940px;}
.y169{bottom:391.062900px;}
.y1bb{bottom:393.030000px;}
.y215{bottom:393.658560px;}
.y244{bottom:393.861330px;}
.yfa{bottom:394.152300px;}
.y1f0{bottom:394.916130px;}
.y2a7{bottom:395.391330px;}
.y52{bottom:396.366000px;}
.y7e{bottom:401.638050px;}
.y2ce{bottom:403.571250px;}
.y274{bottom:405.399690px;}
.yca{bottom:405.592380px;}
.y2a{bottom:407.154330px;}
.y12f{bottom:408.026160px;}
.y185{bottom:408.240000px;}
.y136{bottom:408.823830px;}
.y214{bottom:412.641450px;}
.y243{bottom:412.844220px;}
.y16c{bottom:412.953450px;}
.yf9{bottom:413.135190px;}
.y1ef{bottom:413.899020px;}
.y2a6{bottom:414.374220px;}
.y51{bottom:415.890000px;}
.y158{bottom:418.596750px;}
.y152{bottom:418.596900px;}
.y7d{bottom:420.620940px;}
.y1ba{bottom:424.080000px;}
.y273{bottom:424.382580px;}
.yc9{bottom:424.575270px;}
.y16b{bottom:425.074800px;}
.y29{bottom:426.137220px;}
.y12e{bottom:426.918870px;}
.y184{bottom:427.230000px;}
.y135{bottom:427.806720px;}
.y2cd{bottom:431.557110px;}
.y213{bottom:431.624340px;}
.y242{bottom:431.827110px;}
.yf8{bottom:432.027900px;}
.y1ee{bottom:432.881910px;}
.y2a5{bottom:433.357110px;}
.y50{bottom:435.414000px;}
.y7c{bottom:439.603830px;}
.y272{bottom:443.365470px;}
.yc8{bottom:443.558160px;}
.y28{bottom:445.120110px;}
.y12d{bottom:445.901760px;}
.y183{bottom:446.220000px;}
.y134{bottom:446.789610px;}
.y16e{bottom:446.965500px;}
.y2cc{bottom:450.540000px;}
.y212{bottom:450.607230px;}
.y241{bottom:450.810000px;}
.yf7{bottom:451.010790px;}
.y2a4{bottom:452.340000px;}
.y159{bottom:452.608650px;}
.y153{bottom:452.608800px;}
.y4f{bottom:454.938000px;}
.y16d{bottom:459.086700px;}
.y1ed{bottom:460.867770px;}
.y27{bottom:464.103000px;}
.y12c{bottom:464.884650px;}
.y182{bottom:465.210000px;}
.y133{bottom:465.682320px;}
.y211{bottom:469.590120px;}
.yf6{bottom:469.993680px;}
.y271{bottom:471.351330px;}
.y1b9{bottom:473.351580px;}
.y7b{bottom:476.592660px;}
.y240{bottom:478.828440px;}
.y1ec{bottom:479.850660px;}
.y2a3{bottom:480.365550px;}
.yc7{bottom:480.546990px;}
.y26{bottom:483.085890px;}
.y4e{bottom:483.357000px;}
.y12b{bottom:483.867540px;}
.y181{bottom:484.200000px;}
.y2cb{bottom:487.530000px;}
.y210{bottom:488.573010px;}
.yf5{bottom:488.976570px;}
.y270{bottom:490.334220px;}
.y1b8{bottom:492.334470px;}
.y7a{bottom:495.575550px;}
.y23f{bottom:497.811330px;}
.y1eb{bottom:498.833550px;}
.y2a2{bottom:499.348440px;}
.yc6{bottom:499.529880px;}
.y25{bottom:502.068780px;}
.y12a{bottom:502.850430px;}
.y4d{bottom:502.863000px;}
.y180{bottom:503.190000px;}
.yf4{bottom:507.959460px;}
.y26f{bottom:509.317110px;}
.y1b7{bottom:511.317360px;}
.y2ca{bottom:512.022240px;}
.y79{bottom:514.558440px;}
.y20f{bottom:516.558870px;}
.y23e{bottom:516.794220px;}
.y1ea{bottom:517.816440px;}
.y2a1{bottom:518.331330px;}
.yc5{bottom:518.512770px;}
.y132{bottom:519.414570px;}
.y24{bottom:521.051670px;}
.y129{bottom:521.833320px;}
.y4c{bottom:522.369000px;}
.y26e{bottom:528.300000px;}
.y1b6{bottom:530.300250px;}
.y78{bottom:533.541330px;}
.y17f{bottom:534.240000px;}
.y20e{bottom:535.541760px;}
.y23d{bottom:535.777110px;}
.yf3{bottom:535.945320px;}
.y1e9{bottom:536.799330px;}
.y131{bottom:536.969610px;}
.y2a0{bottom:537.314220px;}
.yc4{bottom:537.495660px;}
.y128{bottom:540.816210px;}
.y4b{bottom:541.875000px;}
.ya8{bottom:547.240050px;}
.y1b5{bottom:549.283140px;}
.y77{bottom:552.524220px;}
.y20d{bottom:554.524650px;}
.y23c{bottom:554.760000px;}
.yf2{bottom:554.928210px;}
.y1e8{bottom:555.782220px;}
.y29f{bottom:556.297110px;}
.y26d{bottom:556.311330px;}
.yc3{bottom:556.478550px;}
.y23{bottom:557.950320px;}
.y127{bottom:559.799100px;}
.y130{bottom:561.273120px;}
.y4a{bottom:561.381000px;}
.y147{bottom:561.771000px;}
.ya7{bottom:566.132760px;}
.y1b4{bottom:568.266030px;}
.y76{bottom:571.507110px;}
.y20c{bottom:573.507540px;}
.yf1{bottom:573.911100px;}
.y1e7{bottom:574.765110px;}
.y29e{bottom:575.280000px;}
.y26c{bottom:575.294220px;}
.yc2{bottom:575.461440px;}
.y22{bottom:576.933210px;}
.y126{bottom:578.781990px;}
.y49{bottom:580.887000px;}
.y23b{bottom:582.771330px;}
.y17e{bottom:583.487460px;}
.y1b3{bottom:587.248920px;}
.y75{bottom:590.490000px;}
.y20b{bottom:592.490430px;}
.yf0{bottom:592.893990px;}
.ya6{bottom:594.118620px;}
.y26b{bottom:594.277110px;}
.yc1{bottom:594.444330px;}
.y21{bottom:595.916100px;}
.y125{bottom:597.764880px;}
.y23a{bottom:601.754220px;}
.y17d{bottom:602.470350px;}
.y1e6{bottom:602.750970px;}
.y29d{bottom:603.270000px;}
.y1b2{bottom:606.231810px;}
.y48{bottom:609.312000px;}
.y20a{bottom:611.473320px;}
.yef{bottom:611.876880px;}
.y26a{bottom:613.260000px;}
.y20{bottom:614.898990px;}
.y124{bottom:616.747770px;}
.y2c9{bottom:618.224220px;}
.y239{bottom:620.737110px;}
.y17c{bottom:621.453240px;}
.y1e5{bottom:621.733860px;}
.ya5{bottom:622.104480px;}
.y29c{bottom:622.313910px;}
.y1b1{bottom:625.214700px;}
.y47{bottom:628.806000px;}
.y209{bottom:630.456210px;}
.y74{bottom:630.538020px;}
.yee{bottom:630.859770px;}
.yc0{bottom:631.433160px;}
.y1f{bottom:633.881880px;}
.y123{bottom:635.730660px;}
.y2c8{bottom:637.207110px;}
.y238{bottom:639.720000px;}
.y1e4{bottom:640.716750px;}
.ya4{bottom:641.087370px;}
.y269{bottom:641.271330px;}
.y29b{bottom:641.296800px;}
.y1b0{bottom:644.197590px;}
.y46{bottom:648.300000px;}
.y17b{bottom:649.439100px;}
.yed{bottom:649.842660px;}
.ybf{bottom:650.416050px;}
.y1e{bottom:652.864770px;}
.y122{bottom:654.713550px;}
.y2c7{bottom:656.190000px;}
.y1e3{bottom:659.699640px;}
.y268{bottom:660.254220px;}
.y29a{bottom:660.279690px;}
.y73{bottom:660.960000px;}
.y1af{bottom:663.180480px;}
.y237{bottom:667.731330px;}
.y45{bottom:667.794000px;}
.y17a{bottom:668.421990px;}
.yec{bottom:668.825550px;}
.ya3{bottom:669.073230px;}
.ybe{bottom:669.398940px;}
.y1d{bottom:671.847660px;}
.y121{bottom:673.696440px;}
.y1e2{bottom:678.682530px;}
.y267{bottom:679.237110px;}
.y299{bottom:679.262580px;}
.y1ae{bottom:682.163370px;}
.y2c6{bottom:684.180000px;}
.y236{bottom:686.714220px;}
.y44{bottom:687.288000px;}
.y179{bottom:687.404880px;}
.yeb{bottom:687.808440px;}
.ya2{bottom:688.056120px;}
.ybd{bottom:688.381830px;}
.y1e1{bottom:697.665420px;}
.y266{bottom:698.220000px;}
.y1ad{bottom:701.146260px;}
.y120{bottom:701.682300px;}
.y235{bottom:705.697110px;}
.y72{bottom:706.387770px;}
.y43{bottom:706.782000px;}
.yea{bottom:706.791330px;}
.y298{bottom:707.248440px;}
.ybc{bottom:707.364720px;}
.y1c{bottom:708.836490px;}
.ya1{bottom:715.951800px;}
.y1e0{bottom:716.648310px;}
.y11f{bottom:720.665190px;}
.y234{bottom:724.680000px;}
.y71{bottom:725.370660px;}
.ye9{bottom:725.774220px;}
.y297{bottom:726.231330px;}
.y265{bottom:726.268050px;}
.y42{bottom:726.276000px;}
.ybb{bottom:726.347610px;}
.y1b{bottom:727.819380px;}
.y1ac{bottom:729.132120px;}
.y208{bottom:734.373630px;}
.ya0{bottom:734.934690px;}
.y11e{bottom:739.648080px;}
.y2c5{bottom:742.230000px;}
.y70{bottom:744.353550px;}
.y1df{bottom:744.543990px;}
.ye8{bottom:744.757110px;}
.y296{bottom:745.214220px;}
.y264{bottom:745.250940px;}
.yba{bottom:745.330500px;}
.y1a{bottom:746.802270px;}
.y1ab{bottom:748.115010px;}
.y233{bottom:752.691330px;}
.y207{bottom:753.356520px;}
.y9f{bottom:753.917580px;}
.y41{bottom:754.788000px;}
.y11d{bottom:758.630970px;}
.y6f{bottom:763.336440px;}
.y1de{bottom:763.526880px;}
.ye7{bottom:763.740000px;}
.y295{bottom:764.197110px;}
.y263{bottom:764.233830px;}
.yb9{bottom:764.313390px;}
.y19{bottom:765.785160px;}
.y1aa{bottom:767.097900px;}
.y232{bottom:771.674220px;}
.y206{bottom:772.339410px;}
.y40{bottom:774.267000px;}
.y11c{bottom:777.613860px;}
.y9e{bottom:781.903440px;}
.y6e{bottom:782.319330px;}
.y1dd{bottom:782.509770px;}
.y294{bottom:783.180000px;}
.y262{bottom:783.216720px;}
.yb8{bottom:783.296280px;}
.y18{bottom:784.768050px;}
.y1a9{bottom:786.080790px;}
.y231{bottom:790.657110px;}
.y205{bottom:791.322300px;}
.y3f{bottom:793.746000px;}
.ye6{bottom:793.800000px;}
.y11b{bottom:796.596750px;}
.y9d{bottom:800.886330px;}
.y6d{bottom:801.302220px;}
.y1dc{bottom:801.492660px;}
.y261{bottom:802.199610px;}
.yb7{bottom:802.279170px;}
.y17{bottom:803.750940px;}
.y1a8{bottom:805.063680px;}
.y230{bottom:809.640000px;}
.y204{bottom:810.305190px;}
.y293{bottom:811.205550px;}
.y2c4{bottom:811.223910px;}
.y11a{bottom:815.579640px;}
.y9c{bottom:819.869220px;}
.y6c{bottom:820.285110px;}
.y1db{bottom:820.475550px;}
.yb6{bottom:821.262060px;}
.y3e{bottom:822.282000px;}
.y16{bottom:822.733830px;}
.y1a7{bottom:824.046570px;}
.y203{bottom:829.288080px;}
.y260{bottom:830.185470px;}
.y292{bottom:830.188440px;}
.y2c3{bottom:830.206800px;}
.y119{bottom:834.562530px;}
.ye5{bottom:836.359380px;}
.y22f{bottom:837.651510px;}
.y6b{bottom:839.268000px;}
.y1da{bottom:839.458440px;}
.yb5{bottom:840.244950px;}
.y15{bottom:841.716720px;}
.y3d{bottom:841.770000px;}
.y1a6{bottom:843.029460px;}
.y9b{bottom:847.855080px;}
.y202{bottom:848.270970px;}
.y25f{bottom:849.168360px;}
.y291{bottom:849.171330px;}
.y2c2{bottom:849.189690px;}
.y118{bottom:853.545420px;}
.ye4{bottom:855.342270px;}
.y22e{bottom:856.634400px;}
.y6a{bottom:858.250890px;}
.y1d9{bottom:858.441330px;}
.yb4{bottom:859.227840px;}
.y14{bottom:860.699610px;}
.y3c{bottom:861.258000px;}
.y1a5{bottom:862.012350px;}
.y9a{bottom:866.837970px;}
.y201{bottom:867.253860px;}
.y25e{bottom:868.151250px;}
.y290{bottom:868.154220px;}
.y2c1{bottom:868.172580px;}
.y117{bottom:872.528310px;}
.ye3{bottom:874.325160px;}
.y22d{bottom:875.617290px;}
.y69{bottom:877.233780px;}
.y1d8{bottom:877.424220px;}
.yb3{bottom:878.210730px;}
.y3b{bottom:880.746000px;}
.y1a4{bottom:880.995240px;}
.y99{bottom:885.820860px;}
.y178{bottom:886.236750px;}
.y25d{bottom:887.134140px;}
.y28f{bottom:887.137110px;}
.y2c0{bottom:887.155470px;}
.y116{bottom:891.511200px;}
.ye2{bottom:893.308050px;}
.y22c{bottom:894.510000px;}
.y68{bottom:896.216670px;}
.y1d7{bottom:896.407110px;}
.yb2{bottom:897.193620px;}
.y13{bottom:897.688440px;}
.y1a3{bottom:899.978130px;}
.y3a{bottom:900.234000px;}
.y177{bottom:905.219640px;}
.y28e{bottom:906.120000px;}
.y115{bottom:910.494090px;}
.ye1{bottom:912.290940px;}
.y98{bottom:913.806720px;}
.y25c{bottom:915.120000px;}
.y2bf{bottom:915.141330px;}
.y1d6{bottom:915.390000px;}
.y12{bottom:916.671330px;}
.y1a2{bottom:918.961020px;}
.y39{bottom:919.722000px;}
.y22b{bottom:922.535550px;}
.y176{bottom:924.202530px;}
.ye0{bottom:931.273830px;}
.y97{bottom:932.789610px;}
.y67{bottom:933.205500px;}
.y25b{bottom:934.110000px;}
.y2be{bottom:934.124220px;}
.y28d{bottom:934.156170px;}
.yb1{bottom:934.182450px;}
.y11{bottom:935.654220px;}
.y1a1{bottom:937.943910px;}
.y114{bottom:938.479950px;}
.y22a{bottom:941.518440px;}
.y175{bottom:943.185420px;}
.y1d5{bottom:946.530000px;}
.y38{bottom:950.940000px;}
.y96{bottom:951.772500px;}
.y66{bottom:952.188390px;}
.y2bd{bottom:953.107110px;}
.y25a{bottom:953.114220px;}
.y28c{bottom:953.139060px;}
.yb0{bottom:953.165340px;}
.y10{bottom:954.637110px;}
.y1a0{bottom:956.926800px;}
.y113{bottom:957.462840px;}
.y229{bottom:960.501330px;}
.y174{bottom:962.168310px;}
.ydf{bottom:968.262660px;}
.y65{bottom:971.171280px;}
.y2bc{bottom:972.090000px;}
.y259{bottom:972.097110px;}
.y28b{bottom:972.121950px;}
.yaf{bottom:972.148230px;}
.yf{bottom:973.620000px;}
.y112{bottom:976.355550px;}
.y228{bottom:979.484220px;}
.y95{bottom:979.758360px;}
.y173{bottom:981.151200px;}
.y19f{bottom:984.912660px;}
.yde{bottom:987.245550px;}
.y64{bottom:990.154170px;}
.y258{bottom:991.080000px;}
.y28a{bottom:991.104840px;}
.yae{bottom:991.131120px;}
.y111{bottom:995.338440px;}
.y227{bottom:998.467110px;}
.y94{bottom:998.741250px;}
.y2bb{bottom:1000.080000px;}
.y172{bottom:1000.134090px;}
.y19e{bottom:1003.895550px;}
.ydd{bottom:1006.228440px;}
.y1d4{bottom:1009.080000px;}
.y63{bottom:1009.137060px;}
.y289{bottom:1010.012580px;}
.yad{bottom:1010.023830px;}
.y110{bottom:1014.321330px;}
.y226{bottom:1017.450000px;}
.y2ba{bottom:1019.001330px;}
.y257{bottom:1019.005470px;}
.y171{bottom:1019.026800px;}
.y19d{bottom:1022.878440px;}
.ydc{bottom:1025.211330px;}
.y93{bottom:1026.727110px;}
.y1d3{bottom:1027.980000px;}
.y62{bottom:1028.029770px;}
.y288{bottom:1028.995470px;}
.yac{bottom:1029.006720px;}
.y10f{bottom:1033.304220px;}
.y2b9{bottom:1037.984220px;}
.y256{bottom:1037.988360px;}
.y170{bottom:1038.009690px;}
.y19c{bottom:1041.861330px;}
.ydb{bottom:1044.194220px;}
.y225{bottom:1045.461330px;}
.y92{bottom:1045.710000px;}
.y1d2{bottom:1046.970000px;}
.y61{bottom:1047.012660px;}
.yab{bottom:1047.989610px;}
.y10e{bottom:1052.287110px;}
.y2b8{bottom:1056.967110px;}
.y255{bottom:1056.971250px;}
.y287{bottom:1056.981330px;}
.ye{bottom:1057.955220px;}
.y19b{bottom:1060.844220px;}
.yda{bottom:1063.177110px;}
.y224{bottom:1064.444220px;}
.y1d1{bottom:1065.960000px;}
.y60{bottom:1065.995550px;}
.yaa{bottom:1066.972500px;}
.y10d{bottom:1071.270000px;}
.y2b7{bottom:1075.950000px;}
.y286{bottom:1075.964220px;}
.y91{bottom:1076.852160px;}
.y19a{bottom:1079.827110px;}
.yd9{bottom:1082.160000px;}
.y223{bottom:1083.427110px;}
.y1d0{bottom:1084.950000px;}
.y254{bottom:1084.957110px;}
.y5f{bottom:1084.978440px;}
.ya9{bottom:1085.955390px;}
.yd{bottom:1093.140000px;}
.y285{bottom:1094.947110px;}
.y199{bottom:1098.810000px;}
.y222{bottom:1102.410000px;}
.y10c{bottom:1102.414140px;}
.y1cf{bottom:1103.940000px;}
.y5e{bottom:1103.961330px;}
.y90{bottom:1107.178020px;}
.y284{bottom:1113.930000px;}
.yd8{bottom:1122.304140px;}
.y1ce{bottom:1122.930000px;}
.y5d{bottom:1122.944220px;}
.y198{bottom:1128.871980px;}
.y10b{bottom:1132.740000px;}
.y221{bottom:1133.460000px;}
.y8f{bottom:1137.600000px;}
.y1cd{bottom:1141.920000px;}
.y5c{bottom:1141.927110px;}
.yd7{bottom:1152.630000px;}
.y197{bottom:1155.420000px;}
.y5b{bottom:1160.910000px;}
.yc{bottom:1192.050000px;}
.y59{bottom:1207.354500px;}
.y58{bottom:1223.190000px;}
.hd{height:30.317306px;}
.hc{height:30.708630px;}
.he{height:30.709230px;}
.h2{height:40.014000px;}
.h8{height:40.554000px;}
.ha{height:44.548920px;}
.h4{height:45.150120px;}
.h9{height:62.658360px;}
.h7{height:71.801640px;}
.h6{height:89.550360px;}
.h5{height:99.222120px;}
.h3{height:150.750000px;}
.hb{height:489.858000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:244.530000px;}
.w3{width:521.388000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:39.420000px;}
.xa{left:42.570000px;}
.x8{left:44.370000px;}
.x6{left:45.990000px;}
.x35{left:58.242000px;}
.x9{left:65.577000px;}
.x33{left:69.332700px;}
.x2b{left:74.052300px;}
.x2f{left:75.223350px;}
.x2e{left:90.164100px;}
.x31{left:93.967500px;}
.x2c{left:98.086950px;}
.x38{left:105.621900px;}
.x2a{left:119.146800px;}
.x5{left:127.530000px;}
.x2d{left:129.734250px;}
.x29{left:134.676150px;}
.x34{left:146.094750px;}
.x36{left:147.271650px;}
.x32{left:159.571650px;}
.x37{left:165.436050px;}
.x30{left:168.943500px;}
.x4{left:186.210000px;}
.x3{left:268.830000px;}
.x28{left:297.507900px;}
.xc{left:302.181600px;}
.xd{left:311.564250px;}
.xe{left:316.255500px;}
.xf{left:320.946900px;}
.x7{left:329.670000px;}
.x10{left:335.020650px;}
.x11{left:341.448900px;}
.x12{left:346.140150px;}
.x13{left:350.831400px;}
.x16{left:367.859550px;}
.x14{left:369.596550px;}
.x17{left:388.361550px;}
.x18{left:391.315800px;}
.x15{left:393.052800px;}
.x1e{left:405.389550px;}
.x1a{left:421.200300px;}
.x19{left:425.891700px;}
.x21{left:438.228450px;}
.x39{left:442.199610px;}
.x1b{left:444.656850px;}
.x1c{left:449.347950px;}
.x1d{left:452.302350px;}
.x1f{left:456.993300px;}
.x22{left:461.684700px;}
.x26{left:466.376100px;}
.x20{left:475.758600px;}
.x24{left:485.141250px;}
.x23{left:489.832350px;}
.x27{left:494.523750px;}
.x25{left:499.214850px;}
.xb{left:852.037650px;}
.x1{left:855.630000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.990400pt;}
.ls23{letter-spacing:-2.904960pt;}
.ls13{letter-spacing:-2.648640pt;}
.ls22{letter-spacing:-2.563200pt;}
.lsa{letter-spacing:-1.526720pt;}
.ls7{letter-spacing:-0.748160pt;}
.ls8{letter-spacing:-0.694720pt;}
.ls9{letter-spacing:-0.480960pt;}
.ls21{letter-spacing:-0.427520pt;}
.ls10{letter-spacing:-0.374080pt;}
.ls30{letter-spacing:-0.337445pt;}
.ls29{letter-spacing:-0.320640pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.267200pt;}
.lsb{letter-spacing:-0.170880pt;}
.lsf{letter-spacing:-0.160320pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.106880pt;}
.ls16{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.053440pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053440pt;}
.ls32{letter-spacing:0.064128pt;}
.ls28{letter-spacing:0.074560pt;}
.ls2f{letter-spacing:0.074988pt;}
.ls1{letter-spacing:0.085440pt;}
.lsc{letter-spacing:0.106560pt;}
.ls12{letter-spacing:0.106880pt;}
.ls26{letter-spacing:0.112000pt;}
.ls2e{letter-spacing:0.112482pt;}
.ls35{letter-spacing:0.144000pt;}
.ls2c{letter-spacing:0.149975pt;}
.ls19{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.160320pt;}
.ls1d{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.320640pt;}
.ls38{letter-spacing:0.384768pt;}
.ls27{letter-spacing:4.157632pt;}
.ls4{letter-spacing:52.850133pt;}
.ls2d{letter-spacing:72.442534pt;}
.ls2b{letter-spacing:302.485986pt;}
.ls0{letter-spacing:1002.703040pt;}
.ls37{letter-spacing:1858.128000pt;}
.ls3a{letter-spacing:1860.048000pt;}
.ls39{letter-spacing:1869.328000pt;}
.ls34{letter-spacing:1877.008000pt;}
.ls25{letter-spacing:1877.328000pt;}
.ls31{letter-spacing:1877.648000pt;}
.ls1c{letter-spacing:1878.608000pt;}
.ls2a{letter-spacing:1878.928000pt;}
.ls33{letter-spacing:1879.888000pt;}
.ws65{word-spacing:-53.440000pt;}
.ws63{word-spacing:-53.386560pt;}
.ws64{word-spacing:-53.065920pt;}
.ws2{word-spacing:-34.632000pt;}
.ws0{word-spacing:-29.220480pt;}
.ws1{word-spacing:-28.964160pt;}
.wsf{word-spacing:-27.768000pt;}
.ws40{word-spacing:-25.204800pt;}
.wse{word-spacing:-25.119360pt;}
.ws41{word-spacing:-24.863040pt;}
.ws10{word-spacing:-24.777600pt;}
.ws42{word-spacing:-18.383360pt;}
.wsc{word-spacing:-18.329920pt;}
.ws61{word-spacing:-18.276480pt;}
.ws3{word-spacing:-18.223040pt;}
.ws12{word-spacing:-18.169707pt;}
.wsa{word-spacing:-18.169600pt;}
.ws11{word-spacing:-18.116373pt;}
.wsb{word-spacing:-18.116160pt;}
.wsd{word-spacing:-18.062720pt;}
.ws4{word-spacing:-18.009280pt;}
.ws5{word-spacing:-17.955840pt;}
.ws13{word-spacing:-17.903040pt;}
.ws8{word-spacing:-17.902400pt;}
.ws9{word-spacing:-17.848960pt;}
.ws3f{word-spacing:-17.795520pt;}
.ws7{word-spacing:-17.688640pt;}
.ws6{word-spacing:-17.581760pt;}
.ws3e{word-spacing:-16.560000pt;}
.ws62{word-spacing:-16.512000pt;}
.ws3c{word-spacing:-16.416000pt;}
.ws3b{word-spacing:-16.368000pt;}
.ws3d{word-spacing:-16.224000pt;}
.ws57{word-spacing:-10.573270pt;}
.ws58{word-spacing:-10.535777pt;}
.ws59{word-spacing:-10.423295pt;}
.ws4f{word-spacing:-4.435520pt;}
.ws4c{word-spacing:-0.961920pt;}
.ws3a{word-spacing:-0.746667pt;}
.ws5c{word-spacing:-0.562408pt;}
.ws5e{word-spacing:-0.487420pt;}
.ws48{word-spacing:-0.480960pt;}
.ws1c{word-spacing:-0.427520pt;}
.ws60{word-spacing:-0.374080pt;}
.ws1f{word-spacing:-0.320640pt;}
.ws2a{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.267200pt;}
.ws36{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.229333pt;}
.ws38{word-spacing:-0.218667pt;}
.ws20{word-spacing:-0.213760pt;}
.ws1a{word-spacing:-0.213120pt;}
.ws22{word-spacing:-0.170880pt;}
.ws2b{word-spacing:-0.170667pt;}
.ws31{word-spacing:-0.165333pt;}
.ws17{word-spacing:-0.160320pt;}
.ws39{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.149975pt;}
.ws34{word-spacing:-0.133333pt;}
.ws19{word-spacing:-0.117440pt;}
.ws30{word-spacing:-0.117333pt;}
.ws1e{word-spacing:-0.106880pt;}
.ws1b{word-spacing:-0.106560pt;}
.ws43{word-spacing:-0.096000pt;}
.ws2e{word-spacing:-0.090667pt;}
.ws5b{word-spacing:-0.074988pt;}
.ws35{word-spacing:-0.064000pt;}
.ws46{word-spacing:-0.053440pt;}
.ws44{word-spacing:-0.048000pt;}
.ws5d{word-spacing:-0.037494pt;}
.ws2f{word-spacing:-0.005333pt;}
.ws14{word-spacing:0.000000pt;}
.ws37{word-spacing:0.005333pt;}
.ws45{word-spacing:0.048000pt;}
.ws25{word-spacing:0.053333pt;}
.ws16{word-spacing:0.053440pt;}
.ws28{word-spacing:0.080000pt;}
.ws24{word-spacing:0.106667pt;}
.ws15{word-spacing:0.106880pt;}
.ws26{word-spacing:0.117333pt;}
.ws23{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.160320pt;}
.ws49{word-spacing:0.170880pt;}
.ws32{word-spacing:0.224000pt;}
.ws27{word-spacing:0.261333pt;}
.ws2c{word-spacing:0.320000pt;}
.ws54{word-spacing:0.320640pt;}
.ws33{word-spacing:0.362667pt;}
.ws29{word-spacing:0.368000pt;}
.ws18{word-spacing:0.374080pt;}
.ws5f{word-spacing:0.412433pt;}
.ws55{word-spacing:0.512640pt;}
.ws50{word-spacing:2.030720pt;}
.ws47{word-spacing:2.648640pt;}
.ws52{word-spacing:4.168320pt;}
.ws51{word-spacing:4.221760pt;}
.ws4d{word-spacing:7.481600pt;}
.ws4b{word-spacing:8.764160pt;}
.ws4e{word-spacing:9.084800pt;}
.ws4a{word-spacing:9.298560pt;}
.ws53{word-spacing:11.649920pt;}
.ws56{word-spacing:281.191335pt;}
._2{margin-left:-3.075840pt;}
._1{margin-left:-0.904288pt;}
._0{width:1.191712pt;}
._4{width:9.352000pt;}
._3{width:52.850129pt;}
._5{width:71.934838pt;}
._6{width:73.076169pt;}
.fs6{font-size:37.493867pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:74.560000pt;}
.fs4{font-size:85.440000pt;}
.fs3{font-size:106.560000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:11.502400pt;}
.ya{bottom:12.480000pt;}
.y9{bottom:29.280000pt;}
.y1{bottom:35.520000pt;}
.y5a{bottom:35.600000pt;}
.y15a{bottom:43.850000pt;}
.y146{bottom:50.473200pt;}
.y7{bottom:54.160000pt;}
.y1cc{bottom:54.400000pt;}
.y8e{bottom:55.022160pt;}
.y10a{bottom:64.373440pt;}
.y15c{bottom:64.742533pt;}
.y253{bottom:64.898960pt;}
.y145{bottom:67.346880pt;}
.y196{bottom:67.920000pt;}
.y148{bottom:69.758800pt;}
.y6{bottom:71.040000pt;}
.y1cb{bottom:71.280000pt;}
.y8d{bottom:71.895840pt;}
.y200{bottom:73.055040pt;}
.y2b6{bottom:74.258960pt;}
.y15b{bottom:75.517067pt;}
.y109{bottom:81.247120pt;}
.y252{bottom:81.772640pt;}
.y283{bottom:83.132640pt;}
.y144{bottom:84.220560pt;}
.y195{bottom:84.800000pt;}
.y1ca{bottom:88.160000pt;}
.y8c{bottom:88.769520pt;}
.y1ff{bottom:89.928720pt;}
.y2b5{bottom:91.132640pt;}
.y4{bottom:95.920000pt;}
.y108{bottom:98.120800pt;}
.y251{bottom:98.646320pt;}
.y2{bottom:99.520000pt;}
.y149{bottom:99.991467pt;}
.y282{bottom:100.006320pt;}
.y37{bottom:100.197920pt;}
.y15d{bottom:100.362400pt;}
.y143{bottom:101.094240pt;}
.y194{bottom:101.680000pt;}
.y1c9{bottom:105.040000pt;}
.y1fe{bottom:106.802400pt;}
.y2b4{bottom:108.006320pt;}
.yb{bottom:112.000000pt;}
.y3{bottom:112.800000pt;}
.y107{bottom:114.994480pt;}
.y250{bottom:115.520000pt;}
.y281{bottom:116.880000pt;}
.y36{bottom:117.071600pt;}
.y142{bottom:117.967920pt;}
.y193{bottom:118.560000pt;}
.y8b{bottom:121.648480pt;}
.y1c8{bottom:121.920000pt;}
.y1fd{bottom:123.676080pt;}
.y2b3{bottom:124.880000pt;}
.y15f{bottom:125.208000pt;}
.y154{bottom:130.224267pt;}
.y14a{bottom:130.224400pt;}
.y35{bottom:133.945280pt;}
.y141{bottom:134.841600pt;}
.y192{bottom:135.440000pt;}
.y15e{bottom:135.982400pt;}
.y8a{bottom:138.522160pt;}
.y1c7{bottom:138.800000pt;}
.y106{bottom:139.870800pt;}
.y24f{bottom:140.400000pt;}
.y1fc{bottom:140.549760pt;}
.y280{bottom:141.778960pt;}
.yd6{bottom:142.037120pt;}
.y220{bottom:148.302960pt;}
.y2b2{bottom:149.785280pt;}
.y34{bottom:150.818960pt;}
.y191{bottom:152.320000pt;}
.y8{bottom:153.680000pt;}
.y89{bottom:155.395840pt;}
.y1c6{bottom:155.680000pt;}
.y105{bottom:156.744480pt;}
.y24e{bottom:157.286320pt;}
.y1fb{bottom:157.423440pt;}
.y27f{bottom:158.652640pt;}
.yd5{bottom:158.910800pt;}
.y140{bottom:159.717920pt;}
.y14b{bottom:160.456933pt;}
.y160{bottom:160.827867pt;}
.y2b1{bottom:166.658960pt;}
.y33{bottom:167.692640pt;}
.y190{bottom:169.200000pt;}
.y88{bottom:172.269520pt;}
.y1c5{bottom:172.560000pt;}
.y21f{bottom:173.179280pt;}
.y104{bottom:173.618160pt;}
.y24d{bottom:174.160000pt;}
.y1fa{bottom:174.297120pt;}
.y27e{bottom:175.526320pt;}
.yd4{bottom:175.784480pt;}
.y13f{bottom:176.591600pt;}
.y2b0{bottom:183.532640pt;}
.y32{bottom:184.566320pt;}
.y18f{bottom:186.080000pt;}
.y87{bottom:189.143200pt;}
.y1c4{bottom:189.440000pt;}
.y21e{bottom:190.052960pt;}
.y103{bottom:190.491840pt;}
.y155{bottom:190.689600pt;}
.y14c{bottom:190.689733pt;}
.y161{bottom:191.060667pt;}
.y1f9{bottom:191.170800pt;}
.y27d{bottom:192.400000pt;}
.yd3{bottom:192.658160pt;}
.y13e{bottom:193.465280pt;}
.y5{bottom:195.440000pt;}
.y24c{bottom:199.052640pt;}
.y2af{bottom:200.406320pt;}
.y31{bottom:201.440000pt;}
.y18e{bottom:202.960000pt;}
.y86{bottom:206.016880pt;}
.y21d{bottom:206.926640pt;}
.y102{bottom:207.365520pt;}
.yd2{bottom:209.531840pt;}
.y13d{bottom:210.338960pt;}
.y1c3{bottom:214.320000pt;}
.y163{bottom:215.906267pt;}
.y24b{bottom:215.926320pt;}
.y1f8{bottom:216.047120pt;}
.y2ae{bottom:217.280000pt;}
.y27c{bottom:217.363200pt;}
.y18d{bottom:219.840000pt;}
.y156{bottom:220.922267pt;}
.y14d{bottom:220.922400pt;}
.y85{bottom:222.890560pt;}
.y21c{bottom:223.800320pt;}
.y101{bottom:224.239200pt;}
.y162{bottom:226.680667pt;}
.y13c{bottom:227.212640pt;}
.y1c2{bottom:231.200000pt;}
.y24a{bottom:232.800000pt;}
.y1f7{bottom:232.920800pt;}
.y27b{bottom:234.236880pt;}
.y18c{bottom:236.720000pt;}
.y30{bottom:237.120000pt;}
.y84{bottom:239.764240pt;}
.y21b{bottom:240.674000pt;}
.y100{bottom:241.112880pt;}
.y2ad{bottom:242.185280pt;}
.yd1{bottom:242.410800pt;}
.y13b{bottom:244.086320pt;}
.y1c1{bottom:248.080000pt;}
.y1f6{bottom:249.794480pt;}
.y27a{bottom:251.110560pt;}
.y14e{bottom:251.155200pt;}
.y164{bottom:251.526133pt;}
.y21a{bottom:257.547680pt;}
.y57{bottom:257.689333pt;}
.y249{bottom:257.705280pt;}
.yff{bottom:257.986560pt;}
.y2ac{bottom:259.058960pt;}
.yd0{bottom:259.284480pt;}
.y13a{bottom:260.960000pt;}
.y18b{bottom:261.600000pt;}
.y1c0{bottom:264.960000pt;}
.y1f5{bottom:266.668160pt;}
.y279{bottom:267.984240pt;}
.y83{bottom:272.643200pt;}
.y219{bottom:274.421360pt;}
.y248{bottom:274.578960pt;}
.yfe{bottom:274.860240pt;}
.y56{bottom:275.024000pt;}
.y2ab{bottom:275.932640pt;}
.ycf{bottom:276.158160pt;}
.y166{bottom:276.371600pt;}
.y2f{bottom:277.546560pt;}
.y18a{bottom:278.480000pt;}
.y157{bottom:281.387733pt;}
.y14f{bottom:281.387867pt;}
.y1bf{bottom:281.840000pt;}
.y1f4{bottom:283.541840pt;}
.y278{bottom:284.857920pt;}
.y165{bottom:287.146000pt;}
.y139{bottom:287.761760pt;}
.y82{bottom:289.516880pt;}
.y218{bottom:291.295040pt;}
.y247{bottom:291.452640pt;}
.yfd{bottom:291.733920pt;}
.y55{bottom:292.358667pt;}
.y2aa{bottom:292.806320pt;}
.yce{bottom:293.031840pt;}
.y2e{bottom:294.420240pt;}
.y189{bottom:295.360000pt;}
.y1be{bottom:298.720000pt;}
.y1f3{bottom:300.415520pt;}
.y81{bottom:306.390560pt;}
.y168{bottom:306.604400pt;}
.y246{bottom:308.326320pt;}
.yfc{bottom:308.607600pt;}
.y2a9{bottom:309.680000pt;}
.y54{bottom:309.693333pt;}
.y277{bottom:309.734240pt;}
.ycd{bottom:309.905520pt;}
.y2d{bottom:311.293920pt;}
.y138{bottom:311.360000pt;}
.y150{bottom:311.620667pt;}
.y188{bottom:312.240000pt;}
.y1bd{bottom:315.600000pt;}
.y217{bottom:316.171360pt;}
.y1f2{bottom:317.289200pt;}
.y167{bottom:317.378933pt;}
.y80{bottom:323.264240pt;}
.y245{bottom:325.200000pt;}
.y276{bottom:326.607920pt;}
.ycc{bottom:326.779200pt;}
.y53{bottom:327.028000pt;}
.y2c{bottom:328.167600pt;}
.y187{bottom:329.120000pt;}
.y1bc{bottom:332.480000pt;}
.y216{bottom:333.045040pt;}
.yfb{bottom:333.483920pt;}
.y2cf{bottom:333.840000pt;}
.y1f1{bottom:334.162880pt;}
.y2a8{bottom:334.560000pt;}
.y16a{bottom:336.837067pt;}
.y7f{bottom:340.137920pt;}
.y151{bottom:341.853333pt;}
.y275{bottom:343.481600pt;}
.ycb{bottom:343.652880pt;}
.y2b{bottom:345.041280pt;}
.y186{bottom:346.000000pt;}
.y137{bottom:346.525280pt;}
.y169{bottom:347.611467pt;}
.y1bb{bottom:349.360000pt;}
.y215{bottom:349.918720pt;}
.y244{bottom:350.098960pt;}
.yfa{bottom:350.357600pt;}
.y1f0{bottom:351.036560pt;}
.y2a7{bottom:351.458960pt;}
.y52{bottom:352.325333pt;}
.y7e{bottom:357.011600pt;}
.y2ce{bottom:358.730000pt;}
.y274{bottom:360.355280pt;}
.yca{bottom:360.526560pt;}
.y2a{bottom:361.914960pt;}
.y12f{bottom:362.689920pt;}
.y185{bottom:362.880000pt;}
.y136{bottom:363.398960pt;}
.y214{bottom:366.792400pt;}
.y243{bottom:366.972640pt;}
.y16c{bottom:367.069733pt;}
.yf9{bottom:367.231280pt;}
.y1ef{bottom:367.910240pt;}
.y2a6{bottom:368.332640pt;}
.y51{bottom:369.680000pt;}
.y158{bottom:372.086000pt;}
.y152{bottom:372.086133pt;}
.y7d{bottom:373.885280pt;}
.y1ba{bottom:376.960000pt;}
.y273{bottom:377.228960pt;}
.yc9{bottom:377.400240pt;}
.y16b{bottom:377.844267pt;}
.y29{bottom:378.788640pt;}
.y12e{bottom:379.483440pt;}
.y184{bottom:379.760000pt;}
.y135{bottom:380.272640pt;}
.y2cd{bottom:383.606320pt;}
.y213{bottom:383.666080pt;}
.y242{bottom:383.846320pt;}
.yf8{bottom:384.024800pt;}
.y1ee{bottom:384.783920pt;}
.y2a5{bottom:385.206320pt;}
.y50{bottom:387.034667pt;}
.y7c{bottom:390.758960pt;}
.y272{bottom:394.102640pt;}
.yc8{bottom:394.273920pt;}
.y28{bottom:395.662320pt;}
.y12d{bottom:396.357120pt;}
.y183{bottom:396.640000pt;}
.y134{bottom:397.146320pt;}
.y16e{bottom:397.302667pt;}
.y2cc{bottom:400.480000pt;}
.y212{bottom:400.539760pt;}
.y241{bottom:400.720000pt;}
.yf7{bottom:400.898480pt;}
.y2a4{bottom:402.080000pt;}
.y159{bottom:402.318800pt;}
.y153{bottom:402.318933pt;}
.y4f{bottom:404.389333pt;}
.y16d{bottom:408.077067pt;}
.y1ed{bottom:409.660240pt;}
.y27{bottom:412.536000pt;}
.y12c{bottom:413.230800pt;}
.y182{bottom:413.520000pt;}
.y133{bottom:413.939840pt;}
.y211{bottom:417.413440pt;}
.yf6{bottom:417.772160pt;}
.y271{bottom:418.978960pt;}
.y1b9{bottom:420.756960pt;}
.y7b{bottom:423.637920pt;}
.y240{bottom:425.625280pt;}
.y1ec{bottom:426.533920pt;}
.y2a3{bottom:426.991600pt;}
.yc7{bottom:427.152880pt;}
.y26{bottom:429.409680pt;}
.y4e{bottom:429.650667pt;}
.y12b{bottom:430.104480pt;}
.y181{bottom:430.400000pt;}
.y2cb{bottom:433.360000pt;}
.y210{bottom:434.287120pt;}
.yf5{bottom:434.645840pt;}
.y270{bottom:435.852640pt;}
.y1b8{bottom:437.630640pt;}
.y7a{bottom:440.511600pt;}
.y23f{bottom:442.498960pt;}
.y1eb{bottom:443.407600pt;}
.y2a2{bottom:443.865280pt;}
.yc6{bottom:444.026560pt;}
.y25{bottom:446.283360pt;}
.y12a{bottom:446.978160pt;}
.y4d{bottom:446.989333pt;}
.y180{bottom:447.280000pt;}
.yf4{bottom:451.519520pt;}
.y26f{bottom:452.726320pt;}
.y1b7{bottom:454.504320pt;}
.y2ca{bottom:455.130880pt;}
.y79{bottom:457.385280pt;}
.y20f{bottom:459.163440pt;}
.y23e{bottom:459.372640pt;}
.y1ea{bottom:460.281280pt;}
.y2a1{bottom:460.738960pt;}
.yc5{bottom:460.900240pt;}
.y132{bottom:461.701840pt;}
.y24{bottom:463.157040pt;}
.y129{bottom:463.851840pt;}
.y4c{bottom:464.328000pt;}
.y26e{bottom:469.600000pt;}
.y1b6{bottom:471.378000pt;}
.y78{bottom:474.258960pt;}
.y17f{bottom:474.880000pt;}
.y20e{bottom:476.037120pt;}
.y23d{bottom:476.246320pt;}
.yf3{bottom:476.395840pt;}
.y1e9{bottom:477.154960pt;}
.y131{bottom:477.306320pt;}
.y2a0{bottom:477.612640pt;}
.yc4{bottom:477.773920pt;}
.y128{bottom:480.725520pt;}
.y4b{bottom:481.666667pt;}
.ya8{bottom:486.435600pt;}
.y1b5{bottom:488.251680pt;}
.y77{bottom:491.132640pt;}
.y20d{bottom:492.910800pt;}
.y23c{bottom:493.120000pt;}
.yf2{bottom:493.269520pt;}
.y1e8{bottom:494.028640pt;}
.y29f{bottom:494.486320pt;}
.y26d{bottom:494.498960pt;}
.yc3{bottom:494.647600pt;}
.y23{bottom:495.955840pt;}
.y127{bottom:497.599200pt;}
.y130{bottom:498.909440pt;}
.y4a{bottom:499.005333pt;}
.y147{bottom:499.352000pt;}
.ya7{bottom:503.229120pt;}
.y1b4{bottom:505.125360pt;}
.y76{bottom:508.006320pt;}
.y20c{bottom:509.784480pt;}
.yf1{bottom:510.143200pt;}
.y1e7{bottom:510.902320pt;}
.y29e{bottom:511.360000pt;}
.y26c{bottom:511.372640pt;}
.yc2{bottom:511.521280pt;}
.y22{bottom:512.829520pt;}
.y126{bottom:514.472880pt;}
.y49{bottom:516.344000pt;}
.y23b{bottom:518.018960pt;}
.y17e{bottom:518.655520pt;}
.y1b3{bottom:521.999040pt;}
.y75{bottom:524.880000pt;}
.y20b{bottom:526.658160pt;}
.yf0{bottom:527.016880pt;}
.ya6{bottom:528.105440pt;}
.y26b{bottom:528.246320pt;}
.yc1{bottom:528.394960pt;}
.y21{bottom:529.703200pt;}
.y125{bottom:531.346560pt;}
.y23a{bottom:534.892640pt;}
.y17d{bottom:535.529200pt;}
.y1e6{bottom:535.778640pt;}
.y29d{bottom:536.240000pt;}
.y1b2{bottom:538.872720pt;}
.y48{bottom:541.610667pt;}
.y20a{bottom:543.531840pt;}
.yef{bottom:543.890560pt;}
.y26a{bottom:545.120000pt;}
.y20{bottom:546.576880pt;}
.y124{bottom:548.220240pt;}
.y2c9{bottom:549.532640pt;}
.y239{bottom:551.766320pt;}
.y17c{bottom:552.402880pt;}
.y1e5{bottom:552.652320pt;}
.ya5{bottom:552.981760pt;}
.y29c{bottom:553.167920pt;}
.y1b1{bottom:555.746400pt;}
.y47{bottom:558.938667pt;}
.y209{bottom:560.405520pt;}
.y74{bottom:560.478240pt;}
.yee{bottom:560.764240pt;}
.yc0{bottom:561.273920pt;}
.y1f{bottom:563.450560pt;}
.y123{bottom:565.093920pt;}
.y2c8{bottom:566.406320pt;}
.y238{bottom:568.640000pt;}
.y1e4{bottom:569.526000pt;}
.ya4{bottom:569.855440pt;}
.y269{bottom:570.018960pt;}
.y29b{bottom:570.041600pt;}
.y1b0{bottom:572.620080pt;}
.y46{bottom:576.266667pt;}
.y17b{bottom:577.279200pt;}
.yed{bottom:577.637920pt;}
.ybf{bottom:578.147600pt;}
.y1e{bottom:580.324240pt;}
.y122{bottom:581.967600pt;}
.y2c7{bottom:583.280000pt;}
.y1e3{bottom:586.399680pt;}
.y268{bottom:586.892640pt;}
.y29a{bottom:586.915280pt;}
.y73{bottom:587.520000pt;}
.y1af{bottom:589.493760pt;}
.y237{bottom:593.538960pt;}
.y45{bottom:593.594667pt;}
.y17a{bottom:594.152880pt;}
.yec{bottom:594.511600pt;}
.ya3{bottom:594.731760pt;}
.ybe{bottom:595.021280pt;}
.y1d{bottom:597.197920pt;}
.y121{bottom:598.841280pt;}
.y1e2{bottom:603.273360pt;}
.y267{bottom:603.766320pt;}
.y299{bottom:603.788960pt;}
.y1ae{bottom:606.367440pt;}
.y2c6{bottom:608.160000pt;}
.y236{bottom:610.412640pt;}
.y44{bottom:610.922667pt;}
.y179{bottom:611.026560pt;}
.yeb{bottom:611.385280pt;}
.ya2{bottom:611.605440pt;}
.ybd{bottom:611.894960pt;}
.y1e1{bottom:620.147040pt;}
.y266{bottom:620.640000pt;}
.y1ad{bottom:623.241120pt;}
.y120{bottom:623.717600pt;}
.y235{bottom:627.286320pt;}
.y72{bottom:627.900240pt;}
.y43{bottom:628.250667pt;}
.yea{bottom:628.258960pt;}
.y298{bottom:628.665280pt;}
.ybc{bottom:628.768640pt;}
.y1c{bottom:630.076880pt;}
.ya1{bottom:636.401600pt;}
.y1e0{bottom:637.020720pt;}
.y11f{bottom:640.591280pt;}
.y234{bottom:644.160000pt;}
.y71{bottom:644.773920pt;}
.ye9{bottom:645.132640pt;}
.y297{bottom:645.538960pt;}
.y265{bottom:645.571600pt;}
.y42{bottom:645.578667pt;}
.ybb{bottom:645.642320pt;}
.y1b{bottom:646.950560pt;}
.y1ac{bottom:648.117440pt;}
.y208{bottom:652.776560pt;}
.ya0{bottom:653.275280pt;}
.y11e{bottom:657.464960pt;}
.y2c5{bottom:659.760000pt;}
.y70{bottom:661.647600pt;}
.y1df{bottom:661.816880pt;}
.ye8{bottom:662.006320pt;}
.y296{bottom:662.412640pt;}
.y264{bottom:662.445280pt;}
.yba{bottom:662.516000pt;}
.y1a{bottom:663.824240pt;}
.y1ab{bottom:664.991120pt;}
.y233{bottom:669.058960pt;}
.y207{bottom:669.650240pt;}
.y9f{bottom:670.148960pt;}
.y41{bottom:670.922667pt;}
.y11d{bottom:674.338640pt;}
.y6f{bottom:678.521280pt;}
.y1de{bottom:678.690560pt;}
.ye7{bottom:678.880000pt;}
.y295{bottom:679.286320pt;}
.y263{bottom:679.318960pt;}
.yb9{bottom:679.389680pt;}
.y19{bottom:680.697920pt;}
.y1aa{bottom:681.864800pt;}
.y232{bottom:685.932640pt;}
.y206{bottom:686.523920pt;}
.y40{bottom:688.237333pt;}
.y11c{bottom:691.212320pt;}
.y9e{bottom:695.025280pt;}
.y6e{bottom:695.394960pt;}
.y1dd{bottom:695.564240pt;}
.y294{bottom:696.160000pt;}
.y262{bottom:696.192640pt;}
.yb8{bottom:696.263360pt;}
.y18{bottom:697.571600pt;}
.y1a9{bottom:698.738480pt;}
.y231{bottom:702.806320pt;}
.y205{bottom:703.397600pt;}
.y3f{bottom:705.552000pt;}
.ye6{bottom:705.600000pt;}
.y11b{bottom:708.086000pt;}
.y9d{bottom:711.898960pt;}
.y6d{bottom:712.268640pt;}
.y1dc{bottom:712.437920pt;}
.y261{bottom:713.066320pt;}
.yb7{bottom:713.137040pt;}
.y17{bottom:714.445280pt;}
.y1a8{bottom:715.612160pt;}
.y230{bottom:719.680000pt;}
.y204{bottom:720.271280pt;}
.y293{bottom:721.071600pt;}
.y2c4{bottom:721.087920pt;}
.y11a{bottom:724.959680pt;}
.y9c{bottom:728.772640pt;}
.y6c{bottom:729.142320pt;}
.y1db{bottom:729.311600pt;}
.yb6{bottom:730.010720pt;}
.y3e{bottom:730.917333pt;}
.y16{bottom:731.318960pt;}
.y1a7{bottom:732.485840pt;}
.y203{bottom:737.144960pt;}
.y260{bottom:737.942640pt;}
.y292{bottom:737.945280pt;}
.y2c3{bottom:737.961600pt;}
.y119{bottom:741.833360pt;}
.ye5{bottom:743.430560pt;}
.y22f{bottom:744.579120pt;}
.y6b{bottom:746.016000pt;}
.y1da{bottom:746.185280pt;}
.yb5{bottom:746.884400pt;}
.y15{bottom:748.192640pt;}
.y3d{bottom:748.240000pt;}
.y1a6{bottom:749.359520pt;}
.y9b{bottom:753.648960pt;}
.y202{bottom:754.018640pt;}
.y25f{bottom:754.816320pt;}
.y291{bottom:754.818960pt;}
.y2c2{bottom:754.835280pt;}
.y118{bottom:758.707040pt;}
.ye4{bottom:760.304240pt;}
.y22e{bottom:761.452800pt;}
.y6a{bottom:762.889680pt;}
.y1d9{bottom:763.058960pt;}
.yb4{bottom:763.758080pt;}
.y14{bottom:765.066320pt;}
.y3c{bottom:765.562667pt;}
.y1a5{bottom:766.233200pt;}
.y9a{bottom:770.522640pt;}
.y201{bottom:770.892320pt;}
.y25e{bottom:771.690000pt;}
.y290{bottom:771.692640pt;}
.y2c1{bottom:771.708960pt;}
.y117{bottom:775.580720pt;}
.ye3{bottom:777.177920pt;}
.y22d{bottom:778.326480pt;}
.y69{bottom:779.763360pt;}
.y1d8{bottom:779.932640pt;}
.yb3{bottom:780.631760pt;}
.y3b{bottom:782.885333pt;}
.y1a4{bottom:783.106880pt;}
.y99{bottom:787.396320pt;}
.y178{bottom:787.766000pt;}
.y25d{bottom:788.563680pt;}
.y28f{bottom:788.566320pt;}
.y2c0{bottom:788.582640pt;}
.y116{bottom:792.454400pt;}
.ye2{bottom:794.051600pt;}
.y22c{bottom:795.120000pt;}
.y68{bottom:796.637040pt;}
.y1d7{bottom:796.806320pt;}
.yb2{bottom:797.505440pt;}
.y13{bottom:797.945280pt;}
.y1a3{bottom:799.980560pt;}
.y3a{bottom:800.208000pt;}
.y177{bottom:804.639680pt;}
.y28e{bottom:805.440000pt;}
.y115{bottom:809.328080pt;}
.ye1{bottom:810.925280pt;}
.y98{bottom:812.272640pt;}
.y25c{bottom:813.440000pt;}
.y2bf{bottom:813.458960pt;}
.y1d6{bottom:813.680000pt;}
.y12{bottom:814.818960pt;}
.y1a2{bottom:816.854240pt;}
.y39{bottom:817.530667pt;}
.y22b{bottom:820.031600pt;}
.y176{bottom:821.513360pt;}
.ye0{bottom:827.798960pt;}
.y97{bottom:829.146320pt;}
.y67{bottom:829.516000pt;}
.y25b{bottom:830.320000pt;}
.y2be{bottom:830.332640pt;}
.y28d{bottom:830.361040pt;}
.yb1{bottom:830.384400pt;}
.y11{bottom:831.692640pt;}
.y1a1{bottom:833.727920pt;}
.y114{bottom:834.204400pt;}
.y22a{bottom:836.905280pt;}
.y175{bottom:838.387040pt;}
.y1d5{bottom:841.360000pt;}
.y38{bottom:845.280000pt;}
.y96{bottom:846.020000pt;}
.y66{bottom:846.389680pt;}
.y2bd{bottom:847.206320pt;}
.y25a{bottom:847.212640pt;}
.y28c{bottom:847.234720pt;}
.yb0{bottom:847.258080pt;}
.y10{bottom:848.566320pt;}
.y1a0{bottom:850.601600pt;}
.y113{bottom:851.078080pt;}
.y229{bottom:853.778960pt;}
.y174{bottom:855.260720pt;}
.ydf{bottom:860.677920pt;}
.y65{bottom:863.263360pt;}
.y2bc{bottom:864.080000pt;}
.y259{bottom:864.086320pt;}
.y28b{bottom:864.108400pt;}
.yaf{bottom:864.131760pt;}
.yf{bottom:865.440000pt;}
.y112{bottom:867.871600pt;}
.y228{bottom:870.652640pt;}
.y95{bottom:870.896320pt;}
.y173{bottom:872.134400pt;}
.y19f{bottom:875.477920pt;}
.yde{bottom:877.551600pt;}
.y64{bottom:880.137040pt;}
.y258{bottom:880.960000pt;}
.y28a{bottom:880.982080pt;}
.yae{bottom:881.005440pt;}
.y111{bottom:884.745280pt;}
.y227{bottom:887.526320pt;}
.y94{bottom:887.770000pt;}
.y2bb{bottom:888.960000pt;}
.y172{bottom:889.008080pt;}
.y19e{bottom:892.351600pt;}
.ydd{bottom:894.425280pt;}
.y1d4{bottom:896.960000pt;}
.y63{bottom:897.010720pt;}
.y289{bottom:897.788960pt;}
.yad{bottom:897.798960pt;}
.y110{bottom:901.618960pt;}
.y226{bottom:904.400000pt;}
.y2ba{bottom:905.778960pt;}
.y257{bottom:905.782640pt;}
.y171{bottom:905.801600pt;}
.y19d{bottom:909.225280pt;}
.ydc{bottom:911.298960pt;}
.y93{bottom:912.646320pt;}
.y1d3{bottom:913.760000pt;}
.y62{bottom:913.804240pt;}
.y288{bottom:914.662640pt;}
.yac{bottom:914.672640pt;}
.y10f{bottom:918.492640pt;}
.y2b9{bottom:922.652640pt;}
.y256{bottom:922.656320pt;}
.y170{bottom:922.675280pt;}
.y19c{bottom:926.098960pt;}
.ydb{bottom:928.172640pt;}
.y225{bottom:929.298960pt;}
.y92{bottom:929.520000pt;}
.y1d2{bottom:930.640000pt;}
.y61{bottom:930.677920pt;}
.yab{bottom:931.546320pt;}
.y10e{bottom:935.366320pt;}
.y2b8{bottom:939.526320pt;}
.y255{bottom:939.530000pt;}
.y287{bottom:939.538960pt;}
.ye{bottom:940.404640pt;}
.y19b{bottom:942.972640pt;}
.yda{bottom:945.046320pt;}
.y224{bottom:946.172640pt;}
.y1d1{bottom:947.520000pt;}
.y60{bottom:947.551600pt;}
.yaa{bottom:948.420000pt;}
.y10d{bottom:952.240000pt;}
.y2b7{bottom:956.400000pt;}
.y286{bottom:956.412640pt;}
.y91{bottom:957.201920pt;}
.y19a{bottom:959.846320pt;}
.yd9{bottom:961.920000pt;}
.y223{bottom:963.046320pt;}
.y1d0{bottom:964.400000pt;}
.y254{bottom:964.406320pt;}
.y5f{bottom:964.425280pt;}
.ya9{bottom:965.293680pt;}
.yd{bottom:971.680000pt;}
.y285{bottom:973.286320pt;}
.y199{bottom:976.720000pt;}
.y222{bottom:979.920000pt;}
.y10c{bottom:979.923680pt;}
.y1cf{bottom:981.280000pt;}
.y5e{bottom:981.298960pt;}
.y90{bottom:984.158240pt;}
.y284{bottom:990.160000pt;}
.yd8{bottom:997.603680pt;}
.y1ce{bottom:998.160000pt;}
.y5d{bottom:998.172640pt;}
.y198{bottom:1003.441760pt;}
.y10b{bottom:1006.880000pt;}
.y221{bottom:1007.520000pt;}
.y8f{bottom:1011.200000pt;}
.y1cd{bottom:1015.040000pt;}
.y5c{bottom:1015.046320pt;}
.yd7{bottom:1024.560000pt;}
.y197{bottom:1027.040000pt;}
.y5b{bottom:1031.920000pt;}
.yc{bottom:1059.600000pt;}
.y59{bottom:1073.204000pt;}
.y58{bottom:1087.280000pt;}
.hd{height:26.948717pt;}
.hc{height:27.296560pt;}
.he{height:27.297093pt;}
.h2{height:35.568000pt;}
.h8{height:36.048000pt;}
.ha{height:39.599040pt;}
.h4{height:40.133440pt;}
.h9{height:55.696320pt;}
.h7{height:63.823680pt;}
.h6{height:79.600320pt;}
.h5{height:88.197440pt;}
.h3{height:134.000000pt;}
.hb{height:435.429333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:217.360000pt;}
.w3{width:463.456000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:35.040000pt;}
.xa{left:37.840000pt;}
.x8{left:39.440000pt;}
.x6{left:40.880000pt;}
.x35{left:51.770667pt;}
.x9{left:58.290667pt;}
.x33{left:61.629067pt;}
.x2b{left:65.824267pt;}
.x2f{left:66.865200pt;}
.x2e{left:80.145867pt;}
.x31{left:83.526667pt;}
.x2c{left:87.188400pt;}
.x38{left:93.886133pt;}
.x2a{left:105.908267pt;}
.x5{left:113.360000pt;}
.x2d{left:115.319333pt;}
.x29{left:119.712133pt;}
.x34{left:129.862000pt;}
.x36{left:130.908133pt;}
.x32{left:141.841467pt;}
.x37{left:147.054267pt;}
.x30{left:150.172000pt;}
.x4{left:165.520000pt;}
.x3{left:238.960000pt;}
.x28{left:264.451467pt;}
.xc{left:268.605867pt;}
.xd{left:276.946000pt;}
.xe{left:281.116000pt;}
.xf{left:285.286133pt;}
.x7{left:293.040000pt;}
.x10{left:297.796133pt;}
.x11{left:303.510133pt;}
.x12{left:307.680133pt;}
.x13{left:311.850133pt;}
.x16{left:326.986267pt;}
.x14{left:328.530267pt;}
.x17{left:345.210267pt;}
.x18{left:347.836267pt;}
.x15{left:349.380267pt;}
.x1e{left:360.346267pt;}
.x1a{left:374.400267pt;}
.x19{left:378.570400pt;}
.x21{left:389.536400pt;}
.x39{left:393.066320pt;}
.x1b{left:395.250533pt;}
.x1c{left:399.420400pt;}
.x1d{left:402.046533pt;}
.x1f{left:406.216267pt;}
.x22{left:410.386400pt;}
.x26{left:414.556533pt;}
.x20{left:422.896533pt;}
.x24{left:431.236667pt;}
.x23{left:435.406533pt;}
.x27{left:439.576667pt;}
.x25{left:443.746533pt;}
.xb{left:757.366800pt;}
.x1{left:760.560000pt;}
}




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