
    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_988f440bd98e12ddd26cc9ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_0eef466a30bba691853662f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_8a03721c15fca34e063d99c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_d076736d4072089ebe16ff76.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_40ccb6c5abb5ab3f37a3de7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_136a8ece7338f3891d9b3a97.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_ae6c54a97078e237d86461f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_97489ff4c3deba466f43ea49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_6188f0e18b3e71faef1800f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_c9374102fc96032ac3d45e57.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0cc6ef2e7db61e23ff6498f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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:ffd;src:url('chunks/assets/font_0c0c9d1934c0fd01384d908d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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:ffe;src:url('chunks/assets/font_f4fc358f896ebe6f2208e4f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113770;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);}
.v3{vertical-align:-50.940000px;}
.v2{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.180000px;}
.v1{vertical-align:13.440000px;}
.v4{vertical-align:28.620000px;}
.v6{vertical-align:69.000000px;}
.ls25{letter-spacing:-1.746000px;}
.ls20{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.186600px;}
.ls1{letter-spacing:-0.177600px;}
.ls26{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.256200px;}
.ls21{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.504000px;}
.ls14{letter-spacing:3.000000px;}
.ls15{letter-spacing:3.744000px;}
.ls1a{letter-spacing:5.184000px;}
.lsb{letter-spacing:5.904000px;}
.ls11{letter-spacing:23.880000px;}
.ls22{letter-spacing:25.344000px;}
.ls24{letter-spacing:28.224000px;}
.ls12{letter-spacing:31.104000px;}
.ls19{letter-spacing:54.864000px;}
.ls2{letter-spacing:849.185760px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws0{word-spacing:-30.060000px;}
.ws1c{word-spacing:-23.418720px;}
.ws5{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.800000px;}
.ws16{word-spacing:-19.728000px;}
.wsa{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.296000px;}
.wsd{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.305520px;}
.ws12{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.506480px;}
.wsb{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.837640px;}
.wsf{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:164.828640px;}
.ws1b{word-spacing:169.870320px;}
.ws13{word-spacing:198.853920px;}
.ws15{word-spacing:215.165184px;}
.ws18{word-spacing:399.107760px;}
.ws17{word-spacing:399.167760px;}
.ws19{word-spacing:415.667760px;}
.ws1a{word-spacing:415.847520px;}
._16{margin-left:-18.096240px;}
._15{margin-left:-16.596000px;}
._46{margin-left:-14.881680px;}
._13{margin-left:-13.572000px;}
._18{margin-left:-11.592000px;}
._12{margin-left:-10.512000px;}
._14{margin-left:-9.468000px;}
._17{margin-left:-6.936240px;}
._d{margin-left:-5.064000px;}
._3{margin-left:-3.688080px;}
._4{margin-left:-2.653440px;}
._1{margin-left:-1.322640px;}
._2{width:1.814880px;}
._5{width:2.907360px;}
._e{width:4.428240px;}
._6{width:5.462400px;}
._f{width:6.609600px;}
._10{width:8.166960px;}
._23{width:9.461280px;}
._24{width:10.728000px;}
._20{width:12.113280px;}
._1f{width:13.248000px;}
._1e{width:14.616000px;}
._21{width:15.851760px;}
._22{width:17.848080px;}
._1d{width:18.890640px;}
._45{width:19.910160px;}
._25{width:21.098640px;}
._9{width:22.368000px;}
._a{width:23.616000px;}
._27{width:24.672000px;}
._1a{width:25.682640px;}
._11{width:27.336000px;}
._c{width:28.426560px;}
._b{width:29.448000px;}
._2b{width:31.142640px;}
._26{width:32.616000px;}
._8{width:34.241280px;}
._7{width:35.832000px;}
._2a{width:37.152000px;}
._3a{width:38.622240px;}
._2f{width:40.032000px;}
._2e{width:41.112000px;}
._55{width:42.455040px;}
._29{width:43.704000px;}
._1b{width:45.552000px;}
._1c{width:46.652880px;}
._28{width:48.010560px;}
._30{width:49.248000px;}
._39{width:50.402400px;}
._38{width:51.552000px;}
._19{width:54.864000px;}
._4b{width:59.748480px;}
._52{width:61.210560px;}
._51{width:62.234640px;}
._49{width:63.391680px;}
._33{width:66.842640px;}
._32{width:68.184000px;}
._3f{width:74.376000px;}
._40{width:77.915040px;}
._41{width:78.958080px;}
._4f{width:84.124800px;}
._3e{width:90.360000px;}
._3d{width:91.656000px;}
._53{width:94.898880px;}
._42{width:115.422960px;}
._47{width:122.873040px;}
._35{width:128.162880px;}
._44{width:130.494912px;}
._4c{width:142.283520px;}
._43{width:149.061600px;}
._48{width:192.384000px;}
._34{width:198.540240px;}
._3b{width:210.528000px;}
._3c{width:211.536000px;}
._4a{width:217.863360px;}
._36{width:246.912240px;}
._4d{width:312.851520px;}
._50{width:348.596400px;}
._4e{width:366.505920px;}
._37{width:378.227040px;}
._2d{width:396.577440px;}
._2c{width:422.186400px;}
._31{width:437.106720px;}
._54{width:1001.646720px;}
._0{width:1261.025760px;}
.fc9{color:rgb(78,59,48);}
.fc7{color:rgb(243,204,95);}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(161,113,66);}
.fc1{color:rgb(154,0,64);}
.fca{color:rgb(64,64,64);}
.fc8{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y235{bottom:-36.720000px;}
.y24c{bottom:-24.840000px;}
.y6f{bottom:-19.125000px;}
.y233{bottom:-10.980000px;}
.y234{bottom:-10.800000px;}
.y0{bottom:0.000000px;}
.y24b{bottom:4.860000px;}
.y6e{bottom:9.360000px;}
.ya2{bottom:10.440000px;}
.y96{bottom:11.700000px;}
.ya9{bottom:11.880000px;}
.yb4{bottom:12.780000px;}
.y62{bottom:12.960000px;}
.y1ef{bottom:13.005000px;}
.y1d6{bottom:13.140000px;}
.yba{bottom:13.680000px;}
.ybc{bottom:13.860000px;}
.y99{bottom:14.040000px;}
.ya0{bottom:14.220000px;}
.ye6{bottom:14.610000px;}
.y22e{bottom:14.940000px;}
.y94{bottom:15.120000px;}
.y238{bottom:15.165000px;}
.y201{bottom:15.840000px;}
.y1fd{bottom:16.740000px;}
.y112{bottom:16.815000px;}
.y22b{bottom:16.920000px;}
.y128{bottom:16.950000px;}
.y9b{bottom:18.390000px;}
.y22a{bottom:18.540000px;}
.y228{bottom:23.220000px;}
.y222{bottom:24.300000px;}
.y21e{bottom:25.560000px;}
.y207{bottom:25.740000px;}
.y206{bottom:27.900000px;}
.y21d{bottom:28.080000px;}
.y221{bottom:29.160000px;}
.y60{bottom:34.920000px;}
.y1fe{bottom:36.720000px;}
.yb0{bottom:37.620000px;}
.y1d1{bottom:38.340000px;}
.y118{bottom:39.705000px;}
.ye5{bottom:40.215000px;}
.y1f6{bottom:40.680000px;}
.y1d3{bottom:40.710000px;}
.y1ec{bottom:41.400000px;}
.y21a{bottom:41.445000px;}
.y1d5{bottom:41.580000px;}
.y1f1{bottom:42.120000px;}
.y223{bottom:42.150000px;}
.y115{bottom:42.300000px;}
.y1ed{bottom:42.345000px;}
.y22d{bottom:43.425000px;}
.y200{bottom:44.280000px;}
.ye8{bottom:45.930000px;}
.y111{bottom:47.310000px;}
.y127{bottom:47.445000px;}
.y227{bottom:51.660000px;}
.y2{bottom:57.420000px;}
.y114{bottom:61.050000px;}
.yaf{bottom:63.540000px;}
.y126{bottom:64.695000px;}
.yb5{bottom:65.010000px;}
.y106{bottom:65.160000px;}
.ye4{bottom:65.805000px;}
.y1eb{bottom:69.840000px;}
.y1f8{bottom:69.870000px;}
.y219{bottom:69.885000px;}
.y1f4{bottom:70.020000px;}
.y1{bottom:77.580000px;}
.y11f{bottom:82.545000px;}
.yae{bottom:89.460000px;}
.y107{bottom:90.150000px;}
.y208{bottom:108.900000px;}
.y1e7{bottom:110.520000px;}
.y1c7{bottom:111.240000px;}
.y5f{bottom:112.500000px;}
.y11c{bottom:113.145000px;}
.y85{bottom:113.220000px;}
.y5e{bottom:115.020000px;}
.y108{bottom:115.170000px;}
.yad{bottom:115.200000px;}
.ye1{bottom:118.650000px;}
.y6c{bottom:121.500000px;}
.yd8{bottom:122.220000px;}
.y120{bottom:122.400000px;}
.y38{bottom:124.740000px;}
.yb2{bottom:124.920000px;}
.y81{bottom:126.540000px;}
.yb6{bottom:133.710000px;}
.y197{bottom:134.280000px;}
.y146{bottom:137.160000px;}
.y102{bottom:137.340000px;}
.y209{bottom:138.240000px;}
.y213{bottom:139.140000px;}
.y109{bottom:140.145000px;}
.yac{bottom:141.120000px;}
.y1e6{bottom:141.480000px;}
.y1c6{bottom:142.380000px;}
.y84{bottom:144.180000px;}
.y5d{bottom:145.980000px;}
.y6b{bottom:152.640000px;}
.yd7{bottom:153.180000px;}
.ye2{bottom:153.540000px;}
.y37{bottom:155.700000px;}
.yb1{bottom:156.060000px;}
.y80{bottom:157.680000px;}
.y17c{bottom:160.380000px;}
.y121{bottom:162.210000px;}
.y145{bottom:163.080000px;}
.y10a{bottom:165.135000px;}
.y15{bottom:166.140000px;}
.y204{bottom:167.400000px;}
.y196{bottom:167.940000px;}
.y101{bottom:168.480000px;}
.y212{bottom:168.840000px;}
.y1e5{bottom:172.440000px;}
.y1c5{bottom:173.340000px;}
.y83{bottom:175.320000px;}
.y163{bottom:176.040000px;}
.y5c{bottom:177.120000px;}
.y11b{bottom:180.030000px;}
.y105{bottom:180.750000px;}
.y6a{bottom:183.600000px;}
.yd6{bottom:184.320000px;}
.y1b3{bottom:184.860000px;}
.y17b{bottom:186.120000px;}
.y36{bottom:186.840000px;}
.y92{bottom:187.020000px;}
.y7f{bottom:188.640000px;}
.y10b{bottom:190.110000px;}
.y113{bottom:190.620000px;}
.ye0{bottom:191.805000px;}
.ye3{bottom:192.930000px;}
.y100{bottom:199.440000px;}
.y211{bottom:199.980000px;}
.y195{bottom:201.780000px;}
.y162{bottom:201.960000px;}
.y122{bottom:202.035000px;}
.yb7{bottom:202.395000px;}
.y1e4{bottom:203.580000px;}
.y1c4{bottom:204.480000px;}
.y82{bottom:206.820000px;}
.y5b{bottom:208.080000px;}
.y205{bottom:209.340000px;}
.y24a{bottom:209.880000px;}
.y17a{bottom:212.040000px;}
.y116{bottom:214.380000px;}
.y14{bottom:214.740000px;}
.y10c{bottom:215.100000px;}
.yd5{bottom:215.280000px;}
.y1b2{bottom:216.000000px;}
.y35{bottom:217.800000px;}
.y91{bottom:218.160000px;}
.y7e{bottom:219.780000px;}
.y11e{bottom:221.430000px;}
.ydf{bottom:225.570000px;}
.y161{bottom:227.880000px;}
.yff{bottom:230.580000px;}
.y210{bottom:230.940000px;}
.y144{bottom:232.740000px;}
.y1e3{bottom:234.540000px;}
.y194{bottom:235.440000px;}
.y5a{bottom:239.220000px;}
.y10d{bottom:240.090000px;}
.y123{bottom:241.845000px;}
.y249{bottom:243.720000px;}
.y69{bottom:245.730000px;}
.yd4{bottom:246.270000px;}
.ye7{bottom:246.420000px;}
.y1b1{bottom:246.990000px;}
.y34{bottom:248.970000px;}
.y90{bottom:249.150000px;}
.y7d{bottom:250.770000px;}
.y203{bottom:253.650000px;}
.y179{bottom:255.990000px;}
.y11d{bottom:257.295000px;}
.y143{bottom:258.690000px;}
.yfe{bottom:261.570000px;}
.y20f{bottom:262.110000px;}
.y13{bottom:263.550000px;}
.y10e{bottom:265.065000px;}
.y1e2{bottom:265.710000px;}
.y1c3{bottom:266.610000px;}
.y193{bottom:269.310000px;}
.y59{bottom:270.210000px;}
.yb8{bottom:271.080000px;}
.y160{bottom:271.650000px;}
.y68{bottom:276.870000px;}
.yd3{bottom:277.410000px;}
.y103{bottom:278.100000px;}
.y1b0{bottom:278.130000px;}
.y33{bottom:279.930000px;}
.y8f{bottom:280.290000px;}
.y124{bottom:281.670000px;}
.y7c{bottom:281.910000px;}
.y10f{bottom:290.055000px;}
.yfd{bottom:292.710000px;}
.y20e{bottom:293.070000px;}
.y1e1{bottom:296.670000px;}
.y15f{bottom:297.570000px;}
.y58{bottom:301.170000px;}
.y142{bottom:302.610000px;}
.y192{bottom:302.970000px;}
.y178{bottom:307.650000px;}
.y67{bottom:307.830000px;}
.yd2{bottom:308.370000px;}
.y1af{bottom:309.090000px;}
.y32{bottom:311.070000px;}
.y8e{bottom:311.250000px;}
.y7b{bottom:312.870000px;}
.y12{bottom:314.130000px;}
.yde{bottom:314.460000px;}
.y110{bottom:315.030000px;}
.y104{bottom:315.690000px;}
.y125{bottom:321.510000px;}
.y15e{bottom:323.490000px;}
.yfc{bottom:323.670000px;}
.y20d{bottom:324.210000px;}
.y1e0{bottom:327.810000px;}
.y141{bottom:328.350000px;}
.y1c2{bottom:328.710000px;}
.y57{bottom:332.310000px;}
.y191{bottom:336.630000px;}
.y66{bottom:338.970000px;}
.yd1{bottom:339.510000px;}
.y1ae{bottom:340.230000px;}
.y31{bottom:342.030000px;}
.y8d{bottom:342.390000px;}
.y7a{bottom:344.010000px;}
.y248{bottom:344.910000px;}
.y177{bottom:351.570000px;}
.yfb{bottom:354.810000px;}
.y20c{bottom:355.170000px;}
.y65{bottom:356.610000px;}
.y1df{bottom:358.770000px;}
.y1c1{bottom:359.670000px;}
.y56{bottom:363.270000px;}
.y15d{bottom:367.410000px;}
.y1e9{bottom:369.390000px;}
.y11{bottom:370.290000px;}
.yd0{bottom:370.470000px;}
.y1ad{bottom:371.190000px;}
.y140{bottom:372.270000px;}
.y230{bottom:372.810000px;}
.y30{bottom:373.170000px;}
.y8c{bottom:373.350000px;}
.y79{bottom:374.970000px;}
.y176{bottom:377.490000px;}
.y247{bottom:378.570000px;}
.y64{bottom:385.770000px;}
.y1de{bottom:389.910000px;}
.y1c0{bottom:390.810000px;}
.y15c{bottom:393.150000px;}
.y55{bottom:394.410000px;}
.y13f{bottom:398.190000px;}
.y1e8{bottom:400.530000px;}
.ycf{bottom:401.610000px;}
.y231{bottom:402.150000px;}
.y1ac{bottom:402.330000px;}
.y175{bottom:403.410000px;}
.y2f{bottom:404.130000px;}
.y8b{bottom:404.490000px;}
.y78{bottom:406.110000px;}
.y246{bottom:412.410000px;}
.y63{bottom:414.930000px;}
.yfa{bottom:416.910000px;}
.y1ff{bottom:418.170000px;}
.y1dd{bottom:420.870000px;}
.y1bf{bottom:421.770000px;}
.y54{bottom:425.370000px;}
.y10{bottom:426.990000px;}
.y22c{bottom:431.310000px;}
.yce{bottom:432.570000px;}
.y1ab{bottom:433.290000px;}
.y2e{bottom:435.270000px;}
.y8a{bottom:435.450000px;}
.y77{bottom:437.070000px;}
.y190{bottom:437.970000px;}
.y13e{bottom:442.110000px;}
.y61{bottom:444.270000px;}
.y245{bottom:446.070000px;}
.y174{bottom:447.150000px;}
.y202{bottom:447.330000px;}
.yf9{bottom:447.870000px;}
.y1dc{bottom:452.010000px;}
.y1be{bottom:452.910000px;}
.y53{bottom:456.510000px;}
.y22f{bottom:461.730000px;}
.y15b{bottom:462.990000px;}
.ycd{bottom:463.710000px;}
.y1aa{bottom:464.430000px;}
.y2d{bottom:466.230000px;}
.y89{bottom:466.590000px;}
.y13d{bottom:467.850000px;}
.y76{bottom:468.210000px;}
.y18f{bottom:471.675000px;}
.y173{bottom:473.115000px;}
.yf{bottom:474.735000px;}
.y6d{bottom:477.795000px;}
.y1fb{bottom:478.695000px;}
.yf8{bottom:479.055000px;}
.y244{bottom:479.955000px;}
.y1db{bottom:483.015000px;}
.y1bd{bottom:483.915000px;}
.yab{bottom:484.275000px;}
.y52{bottom:487.515000px;}
.y226{bottom:490.935000px;}
.ycc{bottom:494.715000px;}
.y1a9{bottom:495.435000px;}
.y2c{bottom:497.415000px;}
.y88{bottom:497.595000px;}
.y172{bottom:499.035000px;}
.y75{bottom:499.215000px;}
.y18e{bottom:505.515000px;}
.y15a{bottom:506.955000px;}
.yf7{bottom:510.015000px;}
.y13c{bottom:511.815000px;}
.y243{bottom:513.615000px;}
.y1da{bottom:514.155000px;}
.y1bc{bottom:515.055000px;}
.y51{bottom:518.655000px;}
.ye{bottom:522.615000px;}
.y229{bottom:524.055000px;}
.y171{bottom:524.955000px;}
.y87{bottom:525.315000px;}
.ycb{bottom:525.855000px;}
.y1a8{bottom:526.575000px;}
.y2b{bottom:528.375000px;}
.y74{bottom:530.355000px;}
.y1fc{bottom:531.795000px;}
.y159{bottom:532.695000px;}
.y13b{bottom:537.735000px;}
.y18d{bottom:539.175000px;}
.yf6{bottom:541.155000px;}
.y1d9{bottom:545.115000px;}
.y1bb{bottom:546.015000px;}
.y242{bottom:547.275000px;}
.y50{bottom:549.615000px;}
.y86{bottom:551.955000px;}
.yca{bottom:556.815000px;}
.y1a7{bottom:557.535000px;}
.y225{bottom:558.795000px;}
.y2a{bottom:559.515000px;}
.y13a{bottom:563.655000px;}
.y1f9{bottom:564.735000px;}
.y170{bottom:568.695000px;}
.y9f{bottom:569.595000px;}
.yd{bottom:570.315000px;}
.yf5{bottom:572.115000px;}
.y18c{bottom:572.835000px;}
.y73{bottom:573.375000px;}
.y1d8{bottom:576.255000px;}
.y158{bottom:576.615000px;}
.y1ba{bottom:577.155000px;}
.y4f{bottom:580.755000px;}
.y241{bottom:581.115000px;}
.yc9{bottom:587.955000px;}
.y1a6{bottom:588.675000px;}
.y139{bottom:589.395000px;}
.y29{bottom:590.475000px;}
.y16f{bottom:594.615000px;}
.y9e{bottom:598.575000px;}
.y157{bottom:602.535000px;}
.yf4{bottom:603.255000px;}
.y18b{bottom:606.675000px;}
.y1d7{bottom:607.215000px;}
.y1b9{bottom:608.115000px;}
.y4e{bottom:611.715000px;}
.y3c{bottom:612.975000px;}
.y240{bottom:614.775000px;}
.y138{bottom:615.315000px;}
.y72{bottom:616.395000px;}
.yc{bottom:618.015000px;}
.yc8{bottom:618.915000px;}
.y1a5{bottom:619.635000px;}
.y16e{bottom:620.535000px;}
.y28{bottom:621.435000px;}
.y1fa{bottom:621.795000px;}
.y1d4{bottom:624.855000px;}
.y9d{bottom:625.215000px;}
.yf3{bottom:634.215000px;}
.y1b8{bottom:639.255000px;}
.yaa{bottom:640.155000px;}
.y18a{bottom:640.335000px;}
.y137{bottom:641.235000px;}
.y4d{bottom:642.855000px;}
.y156{bottom:646.455000px;}
.y3b{bottom:647.355000px;}
.y23f{bottom:648.615000px;}
.yc7{bottom:650.055000px;}
.y1a4{bottom:650.775000px;}
.y1f7{bottom:650.955000px;}
.y27{bottom:652.575000px;}
.y9c{bottom:654.015000px;}
.y20b{bottom:656.535000px;}
.yf2{bottom:665.355000px;}
.ya8{bottom:666.795000px;}
.y1b7{bottom:670.215000px;}
.y155{bottom:672.195000px;}
.y4c{bottom:673.815000px;}
.y189{bottom:674.175000px;}
.yb{bottom:677.595000px;}
.yc6{bottom:681.015000px;}
.y1a3{bottom:681.735000px;}
.y3a{bottom:682.275000px;}
.y1d2{bottom:682.635000px;}
.y9a{bottom:682.815000px;}
.y26{bottom:683.535000px;}
.y136{bottom:685.155000px;}
.y16d{bottom:690.195000px;}
.y71{bottom:691.635000px;}
.yf1{bottom:696.315000px;}
.y154{bottom:698.145000px;}
.y1b6{bottom:701.205000px;}
.y224{bottom:703.365000px;}
.y4b{bottom:704.985000px;}
.yb9{bottom:706.605000px;}
.ya7{bottom:707.685000px;}
.y188{bottom:707.865000px;}
.y135{bottom:710.925000px;}
.yc5{bottom:712.185000px;}
.y1a2{bottom:712.905000px;}
.y25{bottom:714.705000px;}
.y39{bottom:715.965000px;}
.y16c{bottom:716.145000px;}
.y117{bottom:721.260000px;}
.y70{bottom:722.805000px;}
.yf0{bottom:727.305000px;}
.y21f{bottom:732.705000px;}
.y1b5{bottom:733.605000px;}
.y119{bottom:735.045000px;}
.y4a{bottom:735.945000px;}
.y1f3{bottom:737.025000px;}
.ya{bottom:737.385000px;}
.ya6{bottom:738.645000px;}
.y1d0{bottom:739.725000px;}
.y187{bottom:741.705000px;}
.y153{bottom:742.065000px;}
.yc4{bottom:743.145000px;}
.y1a1{bottom:743.865000px;}
.y98{bottom:744.765000px;}
.y24{bottom:745.665000px;}
.y23e{bottom:745.845000px;}
.y134{bottom:754.845000px;}
.yef{bottom:759.705000px;}
.y16b{bottom:760.065000px;}
.y23d{bottom:763.485000px;}
.y1b4{bottom:765.825000px;}
.y49{bottom:767.085000px;}
.y152{bottom:767.805000px;}
.ya5{bottom:769.785000px;}
.y220{bottom:773.385000px;}
.y97{bottom:773.745000px;}
.yc3{bottom:774.285000px;}
.y1a0{bottom:774.825000px;}
.y186{bottom:775.365000px;}
.y23{bottom:776.805000px;}
.y133{bottom:780.765000px;}
.ybb{bottom:784.905000px;}
.y16a{bottom:785.805000px;}
.y11a{bottom:788.400000px;}
.yee{bottom:790.665000px;}
.y23c{bottom:793.365000px;}
.y151{bottom:793.725000px;}
.y1f5{bottom:794.085000px;}
.y9{bottom:797.145000px;}
.y48{bottom:798.045000px;}
.y95{bottom:800.385000px;}
.ya4{bottom:800.745000px;}
.yc2{bottom:805.245000px;}
.y22{bottom:807.765000px;}
.y19f{bottom:808.485000px;}
.y185{bottom:809.025000px;}
.y21b{bottom:818.745000px;}
.y23b{bottom:823.065000px;}
.y1f0{bottom:823.245000px;}
.y132{bottom:824.505000px;}
.y93{bottom:826.845000px;}
.ya3{bottom:828.105000px;}
.y47{bottom:829.185000px;}
.y169{bottom:829.725000px;}
.yb3{bottom:829.980000px;}
.yc1{bottom:836.385000px;}
.y150{bottom:837.645000px;}
.y21{bottom:838.905000px;}
.y1cf{bottom:839.445000px;}
.yed{bottom:840.885000px;}
.y184{bottom:842.865000px;}
.y19e{bottom:844.665000px;}
.y131{bottom:850.425000px;}
.y1f2{bottom:852.405000px;}
.y23a{bottom:852.945000px;}
.y168{bottom:855.645000px;}
.y8{bottom:856.005000px;}
.ya1{bottom:859.425000px;}
.y46{bottom:860.145000px;}
.y21c{bottom:860.505000px;}
.y14f{bottom:863.565000px;}
.yc0{bottom:867.345000px;}
.y20{bottom:869.865000px;}
.y1ce{bottom:870.585000px;}
.yec{bottom:872.025000px;}
.y183{bottom:876.525000px;}
.y19d{bottom:880.845000px;}
.y167{bottom:881.565000px;}
.y239{bottom:882.645000px;}
.y45{bottom:891.285000px;}
.y130{bottom:894.345000px;}
.ybf{bottom:898.485000px;}
.y1f{bottom:901.005000px;}
.y1cd{bottom:901.545000px;}
.yeb{bottom:902.985000px;}
.y218{bottom:904.965000px;}
.y14e{bottom:907.305000px;}
.y182{bottom:910.365000px;}
.y1ee{bottom:910.905000px;}
.y7{bottom:911.085000px;}
.y237{bottom:912.345000px;}
.y19c{bottom:917.025000px;}
.y12f{bottom:920.265000px;}
.y44{bottom:922.245000px;}
.y166{bottom:925.350000px;}
.ybe{bottom:929.490000px;}
.y1e{bottom:932.010000px;}
.y1cc{bottom:932.730000px;}
.y14d{bottom:933.270000px;}
.yea{bottom:934.170000px;}
.y1ea{bottom:940.110000px;}
.y236{bottom:942.270000px;}
.y181{bottom:944.070000px;}
.y12e{bottom:946.050000px;}
.y165{bottom:951.270000px;}
.y43{bottom:953.430000px;}
.ybd{bottom:960.630000px;}
.y1d{bottom:963.150000px;}
.y6{bottom:963.510000px;}
.y1cb{bottom:963.690000px;}
.ye9{bottom:965.130000px;}
.y12d{bottom:971.970000px;}
.y14c{bottom:977.190000px;}
.y180{bottom:977.910000px;}
.ydc{bottom:978.270000px;}
.y42{bottom:984.390000px;}
.y19b{bottom:989.610000px;}
.y1c{bottom:994.110000px;}
.y1ca{bottom:994.830000px;}
.y232{bottom:1001.850000px;}
.y14b{bottom:1003.110000px;}
.ydb{bottom:1004.910000px;}
.y17f{bottom:1011.570000px;}
.y5{bottom:1014.990000px;}
.y41{bottom:1015.530000px;}
.y12c{bottom:1015.890000px;}
.y164{bottom:1021.110000px;}
.y20a{bottom:1022.010000px;}
.y1b{bottom:1025.250000px;}
.y19a{bottom:1025.790000px;}
.y1c9{bottom:1030.650000px;}
.y17{bottom:1031.190000px;}
.yda{bottom:1031.550000px;}
.y216{bottom:1039.650000px;}
.y12b{bottom:1041.810000px;}
.y17e{bottom:1045.230000px;}
.y40{bottom:1046.490000px;}
.y14a{bottom:1046.850000px;}
.y4{bottom:1051.710000px;}
.y1a{bottom:1056.210000px;}
.yd9{bottom:1058.190000px;}
.y199{bottom:1059.630000px;}
.y16{bottom:1062.330000px;}
.y217{bottom:1068.990000px;}
.y1c8{bottom:1072.050000px;}
.y149{bottom:1072.770000px;}
.y3f{bottom:1077.630000px;}
.y12a{bottom:1085.550000px;}
.y19{bottom:1087.350000px;}
.y198{bottom:1090.590000px;}
.y17d{bottom:1090.770000px;}
.y214{bottom:1098.150000px;}
.y3{bottom:1102.290000px;}
.y3e{bottom:1108.590000px;}
.ydd{bottom:1111.110000px;}
.y129{bottom:1111.470000px;}
.y148{bottom:1116.690000px;}
.y18{bottom:1118.310000px;}
.y215{bottom:1127.310000px;}
.y3d{bottom:1139.730000px;}
.y147{bottom:1142.610000px;}
.h47{height:21.780000px;}
.h16{height:24.480000px;}
.hf{height:24.840000px;}
.h12{height:25.740000px;}
.h17{height:25.920000px;}
.h1a{height:27.720000px;}
.h1b{height:27.900000px;}
.h13{height:28.080000px;}
.h15{height:28.260000px;}
.he{height:28.440000px;}
.hc{height:28.476000px;}
.h2f{height:28.620000px;}
.h45{height:28.980000px;}
.h11{height:29.160000px;}
.h46{height:29.196000px;}
.h44{height:29.700000px;}
.h37{height:30.636000px;}
.h34{height:32.220000px;}
.h42{height:32.400000px;}
.h14{height:32.436000px;}
.h41{height:34.020000px;}
.h3f{height:39.780000px;}
.h3d{height:41.040000px;}
.h39{height:41.220000px;}
.h38{height:43.416000px;}
.h3c{height:43.560000px;}
.h3e{height:44.640000px;}
.ha{height:49.320000px;}
.h1c{height:51.660000px;}
.h35{height:52.200000px;}
.h2a{height:53.820000px;}
.h23{height:54.000000px;}
.h32{height:56.160000px;}
.h2b{height:56.196000px;}
.h10{height:56.320312px;}
.h2c{height:57.060000px;}
.h30{height:57.600000px;}
.h3b{height:57.636000px;}
.h3a{height:57.780000px;}
.h2e{height:57.816000px;}
.h43{height:58.896000px;}
.h36{height:59.796000px;}
.h1f{height:60.300000px;}
.hb{height:62.327813px;}
.h21{height:62.478000px;}
.h9{height:64.582031px;}
.h2{height:65.884219px;}
.h40{height:67.140000px;}
.hd{height:69.086250px;}
.h8{height:74.953125px;}
.h7{height:75.093750px;}
.h22{height:75.240000px;}
.h1e{height:75.767813px;}
.h2d{height:85.320000px;}
.h33{height:85.356000px;}
.h31{height:85.500000px;}
.h27{height:87.859687px;}
.h25{height:90.947812px;}
.h29{height:99.874688px;}
.h4{height:111.198516px;}
.h5{height:121.852266px;}
.h26{height:131.327812px;}
.h3{height:133.171875px;}
.h6{height:144.491484px;}
.h18{height:155.160000px;}
.h28{height:162.953438px;}
.h1d{height:279.180000px;}
.h19{height:326.700000px;}
.h20{height:336.420000px;}
.h24{height:342.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w52{width:52.380000px;}
.w4d{width:52.740000px;}
.w4e{width:62.460000px;}
.w46{width:63.000000px;}
.w30{width:63.180000px;}
.w2a{width:63.900000px;}
.w41{width:64.080000px;}
.w3c{width:74.916000px;}
.w37{width:75.636000px;}
.w47{width:76.176000px;}
.w3d{width:76.320000px;}
.w42{width:76.896000px;}
.w38{width:77.040000px;}
.w48{width:77.580000px;}
.w43{width:78.300000px;}
.w3f{width:80.640000px;}
.w4f{width:80.856000px;}
.w3a{width:81.000000px;}
.w4a{width:81.756000px;}
.w51{width:86.616000px;}
.w4c{width:87.336000px;}
.w34{width:92.376000px;}
.w2e{width:92.736000px;}
.w31{width:93.060000px;}
.w2b{width:93.780000px;}
.w9{width:94.320000px;}
.w6{width:94.680000px;}
.w33{width:98.280000px;}
.w2d{width:99.180000px;}
.w49{width:99.216000px;}
.w44{width:100.116000px;}
.w32{width:100.836000px;}
.w2c{width:101.556000px;}
.w3e{width:102.096000px;}
.w39{width:102.996000px;}
.w50{width:114.660000px;}
.w4b{width:115.380000px;}
.w59{width:124.596000px;}
.w56{width:124.956000px;}
.w1e{width:129.276000px;}
.w1b{width:129.636000px;}
.w16{width:131.976000px;}
.w1d{width:133.020000px;}
.w1a{width:133.740000px;}
.w10{width:146.376000px;}
.wd{width:146.736000px;}
.w8{width:152.490000px;}
.w5{width:153.210000px;}
.w2f{width:153.390000px;}
.w29{width:153.750000px;}
.w13{width:158.430000px;}
.w14{width:158.580000px;}
.w15{width:158.610000px;}
.w58{width:187.950000px;}
.w55{width:188.670000px;}
.w7{width:193.350000px;}
.w4{width:193.710000px;}
.w3b{width:204.150000px;}
.w45{width:204.330000px;}
.w36{width:204.510000px;}
.w40{width:204.690000px;}
.w27{width:211.890000px;}
.w28{width:212.070000px;}
.w25{width:212.430000px;}
.w26{width:212.610000px;}
.we{width:238.170000px;}
.wb{width:238.530000px;}
.wf{width:250.410000px;}
.wc{width:251.130000px;}
.w57{width:270.030000px;}
.w54{width:270.390000px;}
.w21{width:302.580000px;}
.w22{width:328.320000px;}
.w1c{width:335.955000px;}
.w19{width:336.315000px;}
.w53{width:336.675000px;}
.w35{width:386.895000px;}
.wa{width:461.415000px;}
.w11{width:463.935000px;}
.w1f{width:487.440000px;}
.w20{width:495.000000px;}
.w23{width:554.400000px;}
.w17{width:577.620000px;}
.w24{width:591.480000px;}
.w5a{width:593.025000px;}
.w12{width:609.765000px;}
.w18{width:620.385000px;}
.w3{width:624.960000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x15{left:10.830000px;}
.x3a{left:12.780000px;}
.x27{left:13.860000px;}
.x32{left:17.640000px;}
.x34{left:20.160000px;}
.x20{left:21.420000px;}
.x4b{left:22.470000px;}
.x2b{left:26.280000px;}
.x33{left:27.900000px;}
.x68{left:29.520000px;}
.x31{left:33.870000px;}
.x45{left:34.920000px;}
.x25{left:36.360000px;}
.x2d{left:42.480000px;}
.x2c{left:45.000000px;}
.x2a{left:46.260000px;}
.x2e{left:47.520000px;}
.x36{left:49.110000px;}
.x2f{left:50.940000px;}
.x30{left:54.210000px;}
.x22{left:58.140000px;}
.x1e{left:61.560000px;}
.x4c{left:74.265000px;}
.x48{left:76.710000px;}
.x4d{left:80.130000px;}
.x69{left:89.850000px;}
.x40{left:106.050000px;}
.x24{left:113.940000px;}
.x21{left:120.990000px;}
.x1{left:127.655987px;}
.x35{left:133.710000px;}
.x9{left:135.035987px;}
.x3f{left:139.755000px;}
.x37{left:141.336000px;}
.x44{left:147.855000px;}
.x4f{left:148.895987px;}
.x14{left:149.940000px;}
.x10{left:154.649987px;}
.x57{left:159.870000px;}
.xa{left:163.829987px;}
.x47{left:165.600000px;}
.x43{left:167.970000px;}
.x1b{left:173.190000px;}
.x41{left:180.000000px;}
.x12{left:181.649987px;}
.x11{left:187.049987px;}
.x17{left:191.730000px;}
.x8{left:204.869987px;}
.x1c{left:208.649987px;}
.x51{left:214.049987px;}
.x52{left:220.709987px;}
.x56{left:234.749987px;}
.x3b{left:255.630000px;}
.x3e{left:267.990000px;}
.x50{left:286.949987px;}
.x26{left:314.535000px;}
.x3c{left:318.675000px;}
.x53{left:320.114987px;}
.x2{left:325.694987px;}
.xe{left:327.134987px;}
.x3d{left:332.130000px;}
.xb{left:345.854987px;}
.x5b{left:363.495000px;}
.x62{left:364.575000px;}
.x1d{left:366.915000px;}
.x58{left:377.535000px;}
.xd{left:381.134987px;}
.x18{left:385.455000px;}
.x54{left:393.915000px;}
.x3{left:425.054987px;}
.x5c{left:427.395000px;}
.x63{left:428.475000px;}
.x16{left:438.194987px;}
.xf{left:440.354987px;}
.x13{left:441.794987px;}
.x7{left:446.474987px;}
.x67{left:451.515000px;}
.x46{left:459.900000px;}
.x42{left:468.360000px;}
.x5{left:471.494987px;}
.x28{left:473.835000px;}
.x49{left:479.520000px;}
.x38{left:485.565000px;}
.x4e{left:490.860000px;}
.x5d{left:503.025000px;}
.x60{left:505.005000px;}
.x64{left:509.325000px;}
.x4a{left:513.210000px;}
.x1a{left:538.665000px;}
.x6{left:544.964987px;}
.x59{left:572.865000px;}
.x5e{left:580.065000px;}
.x61{left:583.305000px;}
.x55{left:606.525000px;}
.x1f{left:618.045000px;}
.x39{left:619.305000px;}
.x65{left:624.705000px;}
.x29{left:633.165000px;}
.x4{left:639.284987px;}
.x6a{left:640.545000px;}
.x5a{left:672.045000px;}
.x5f{left:683.070000px;}
.x66{left:712.050000px;}
.x23{left:732.929987px;}
.xc{left:765.509987px;}
@media print{
.v3{vertical-align:-45.280000pt;}
.v2{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.826667pt;}
.v1{vertical-align:11.946667pt;}
.v4{vertical-align:25.440000pt;}
.v6{vertical-align:61.333333pt;}
.ls25{letter-spacing:-1.552000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.165867pt;}
.ls1{letter-spacing:-0.157867pt;}
.ls26{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls21{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls14{letter-spacing:2.666667pt;}
.ls15{letter-spacing:3.328000pt;}
.ls1a{letter-spacing:4.608000pt;}
.lsb{letter-spacing:5.248000pt;}
.ls11{letter-spacing:21.226667pt;}
.ls22{letter-spacing:22.528000pt;}
.ls24{letter-spacing:25.088000pt;}
.ls12{letter-spacing:27.648000pt;}
.ls19{letter-spacing:48.768000pt;}
.ls2{letter-spacing:754.831787pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws1c{word-spacing:-20.816640pt;}
.ws5{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.600000pt;}
.ws16{word-spacing:-17.536000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.152000pt;}
.wsd{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.271573pt;}
.ws12{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.672427pt;}
.wsb{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.189013pt;}
.wsf{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:146.514347pt;}
.ws1b{word-spacing:150.995840pt;}
.ws13{word-spacing:176.759040pt;}
.ws15{word-spacing:191.257941pt;}
.ws18{word-spacing:354.762453pt;}
.ws17{word-spacing:354.815787pt;}
.ws19{word-spacing:369.482453pt;}
.ws1a{word-spacing:369.642240pt;}
._16{margin-left:-16.085547pt;}
._15{margin-left:-14.752000pt;}
._46{margin-left:-13.228160pt;}
._13{margin-left:-12.064000pt;}
._18{margin-left:-10.304000pt;}
._12{margin-left:-9.344000pt;}
._14{margin-left:-8.416000pt;}
._17{margin-left:-6.165547pt;}
._d{margin-left:-4.501333pt;}
._3{margin-left:-3.278293pt;}
._4{margin-left:-2.358613pt;}
._1{margin-left:-1.175680pt;}
._2{width:1.613227pt;}
._5{width:2.584320pt;}
._e{width:3.936213pt;}
._6{width:4.855467pt;}
._f{width:5.875200pt;}
._10{width:7.259520pt;}
._23{width:8.410027pt;}
._24{width:9.536000pt;}
._20{width:10.767360pt;}
._1f{width:11.776000pt;}
._1e{width:12.992000pt;}
._21{width:14.090453pt;}
._22{width:15.864960pt;}
._1d{width:16.791680pt;}
._45{width:17.697920pt;}
._25{width:18.754347pt;}
._9{width:19.882667pt;}
._a{width:20.992000pt;}
._27{width:21.930667pt;}
._1a{width:22.829013pt;}
._11{width:24.298667pt;}
._c{width:25.268053pt;}
._b{width:26.176000pt;}
._2b{width:27.682347pt;}
._26{width:28.992000pt;}
._8{width:30.436693pt;}
._7{width:31.850667pt;}
._2a{width:33.024000pt;}
._3a{width:34.330880pt;}
._2f{width:35.584000pt;}
._2e{width:36.544000pt;}
._55{width:37.737813pt;}
._29{width:38.848000pt;}
._1b{width:40.490667pt;}
._1c{width:41.469227pt;}
._28{width:42.676053pt;}
._30{width:43.776000pt;}
._39{width:44.802133pt;}
._38{width:45.824000pt;}
._19{width:48.768000pt;}
._4b{width:53.109760pt;}
._52{width:54.409387pt;}
._51{width:55.319680pt;}
._49{width:56.348160pt;}
._33{width:59.415680pt;}
._32{width:60.608000pt;}
._3f{width:66.112000pt;}
._40{width:69.257813pt;}
._41{width:70.184960pt;}
._4f{width:74.777600pt;}
._3e{width:80.320000pt;}
._3d{width:81.472000pt;}
._53{width:84.354560pt;}
._42{width:102.598187pt;}
._47{width:109.220480pt;}
._35{width:113.922560pt;}
._44{width:115.995477pt;}
._4c{width:126.474240pt;}
._43{width:132.499200pt;}
._48{width:171.008000pt;}
._34{width:176.480213pt;}
._3b{width:187.136000pt;}
._3c{width:188.032000pt;}
._4a{width:193.656320pt;}
._36{width:219.477547pt;}
._4d{width:278.090240pt;}
._50{width:309.863467pt;}
._4e{width:325.783040pt;}
._37{width:336.201813pt;}
._2d{width:352.513280pt;}
._2c{width:375.276800pt;}
._31{width:388.539307pt;}
._54{width:890.352640pt;}
._0{width:1120.911787pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y235{bottom:-32.640000pt;}
.y24c{bottom:-22.080000pt;}
.y6f{bottom:-17.000000pt;}
.y233{bottom:-9.760000pt;}
.y234{bottom:-9.600000pt;}
.y0{bottom:0.000000pt;}
.y24b{bottom:4.320000pt;}
.y6e{bottom:8.320000pt;}
.ya2{bottom:9.280000pt;}
.y96{bottom:10.400000pt;}
.ya9{bottom:10.560000pt;}
.yb4{bottom:11.360000pt;}
.y62{bottom:11.520000pt;}
.y1ef{bottom:11.560000pt;}
.y1d6{bottom:11.680000pt;}
.yba{bottom:12.160000pt;}
.ybc{bottom:12.320000pt;}
.y99{bottom:12.480000pt;}
.ya0{bottom:12.640000pt;}
.ye6{bottom:12.986667pt;}
.y22e{bottom:13.280000pt;}
.y94{bottom:13.440000pt;}
.y238{bottom:13.480000pt;}
.y201{bottom:14.080000pt;}
.y1fd{bottom:14.880000pt;}
.y112{bottom:14.946667pt;}
.y22b{bottom:15.040000pt;}
.y128{bottom:15.066667pt;}
.y9b{bottom:16.346667pt;}
.y22a{bottom:16.480000pt;}
.y228{bottom:20.640000pt;}
.y222{bottom:21.600000pt;}
.y21e{bottom:22.720000pt;}
.y207{bottom:22.880000pt;}
.y206{bottom:24.800000pt;}
.y21d{bottom:24.960000pt;}
.y221{bottom:25.920000pt;}
.y60{bottom:31.040000pt;}
.y1fe{bottom:32.640000pt;}
.yb0{bottom:33.440000pt;}
.y1d1{bottom:34.080000pt;}
.y118{bottom:35.293333pt;}
.ye5{bottom:35.746667pt;}
.y1f6{bottom:36.160000pt;}
.y1d3{bottom:36.186667pt;}
.y1ec{bottom:36.800000pt;}
.y21a{bottom:36.840000pt;}
.y1d5{bottom:36.960000pt;}
.y1f1{bottom:37.440000pt;}
.y223{bottom:37.466667pt;}
.y115{bottom:37.600000pt;}
.y1ed{bottom:37.640000pt;}
.y22d{bottom:38.600000pt;}
.y200{bottom:39.360000pt;}
.ye8{bottom:40.826667pt;}
.y111{bottom:42.053333pt;}
.y127{bottom:42.173333pt;}
.y227{bottom:45.920000pt;}
.y2{bottom:51.040000pt;}
.y114{bottom:54.266667pt;}
.yaf{bottom:56.480000pt;}
.y126{bottom:57.506667pt;}
.yb5{bottom:57.786667pt;}
.y106{bottom:57.920000pt;}
.ye4{bottom:58.493333pt;}
.y1eb{bottom:62.080000pt;}
.y1f8{bottom:62.106667pt;}
.y219{bottom:62.120000pt;}
.y1f4{bottom:62.240000pt;}
.y1{bottom:68.960000pt;}
.y11f{bottom:73.373333pt;}
.yae{bottom:79.520000pt;}
.y107{bottom:80.133333pt;}
.y208{bottom:96.800000pt;}
.y1e7{bottom:98.240000pt;}
.y1c7{bottom:98.880000pt;}
.y5f{bottom:100.000000pt;}
.y11c{bottom:100.573333pt;}
.y85{bottom:100.640000pt;}
.y5e{bottom:102.240000pt;}
.y108{bottom:102.373333pt;}
.yad{bottom:102.400000pt;}
.ye1{bottom:105.466667pt;}
.y6c{bottom:108.000000pt;}
.yd8{bottom:108.640000pt;}
.y120{bottom:108.800000pt;}
.y38{bottom:110.880000pt;}
.yb2{bottom:111.040000pt;}
.y81{bottom:112.480000pt;}
.yb6{bottom:118.853333pt;}
.y197{bottom:119.360000pt;}
.y146{bottom:121.920000pt;}
.y102{bottom:122.080000pt;}
.y209{bottom:122.880000pt;}
.y213{bottom:123.680000pt;}
.y109{bottom:124.573333pt;}
.yac{bottom:125.440000pt;}
.y1e6{bottom:125.760000pt;}
.y1c6{bottom:126.560000pt;}
.y84{bottom:128.160000pt;}
.y5d{bottom:129.760000pt;}
.y6b{bottom:135.680000pt;}
.yd7{bottom:136.160000pt;}
.ye2{bottom:136.480000pt;}
.y37{bottom:138.400000pt;}
.yb1{bottom:138.720000pt;}
.y80{bottom:140.160000pt;}
.y17c{bottom:142.560000pt;}
.y121{bottom:144.186667pt;}
.y145{bottom:144.960000pt;}
.y10a{bottom:146.786667pt;}
.y15{bottom:147.680000pt;}
.y204{bottom:148.800000pt;}
.y196{bottom:149.280000pt;}
.y101{bottom:149.760000pt;}
.y212{bottom:150.080000pt;}
.y1e5{bottom:153.280000pt;}
.y1c5{bottom:154.080000pt;}
.y83{bottom:155.840000pt;}
.y163{bottom:156.480000pt;}
.y5c{bottom:157.440000pt;}
.y11b{bottom:160.026667pt;}
.y105{bottom:160.666667pt;}
.y6a{bottom:163.200000pt;}
.yd6{bottom:163.840000pt;}
.y1b3{bottom:164.320000pt;}
.y17b{bottom:165.440000pt;}
.y36{bottom:166.080000pt;}
.y92{bottom:166.240000pt;}
.y7f{bottom:167.680000pt;}
.y10b{bottom:168.986667pt;}
.y113{bottom:169.440000pt;}
.ye0{bottom:170.493333pt;}
.ye3{bottom:171.493333pt;}
.y100{bottom:177.280000pt;}
.y211{bottom:177.760000pt;}
.y195{bottom:179.360000pt;}
.y162{bottom:179.520000pt;}
.y122{bottom:179.586667pt;}
.yb7{bottom:179.906667pt;}
.y1e4{bottom:180.960000pt;}
.y1c4{bottom:181.760000pt;}
.y82{bottom:183.840000pt;}
.y5b{bottom:184.960000pt;}
.y205{bottom:186.080000pt;}
.y24a{bottom:186.560000pt;}
.y17a{bottom:188.480000pt;}
.y116{bottom:190.560000pt;}
.y14{bottom:190.880000pt;}
.y10c{bottom:191.200000pt;}
.yd5{bottom:191.360000pt;}
.y1b2{bottom:192.000000pt;}
.y35{bottom:193.600000pt;}
.y91{bottom:193.920000pt;}
.y7e{bottom:195.360000pt;}
.y11e{bottom:196.826667pt;}
.ydf{bottom:200.506667pt;}
.y161{bottom:202.560000pt;}
.yff{bottom:204.960000pt;}
.y210{bottom:205.280000pt;}
.y144{bottom:206.880000pt;}
.y1e3{bottom:208.480000pt;}
.y194{bottom:209.280000pt;}
.y5a{bottom:212.640000pt;}
.y10d{bottom:213.413333pt;}
.y123{bottom:214.973333pt;}
.y249{bottom:216.640000pt;}
.y69{bottom:218.426667pt;}
.yd4{bottom:218.906667pt;}
.ye7{bottom:219.040000pt;}
.y1b1{bottom:219.546667pt;}
.y34{bottom:221.306667pt;}
.y90{bottom:221.466667pt;}
.y7d{bottom:222.906667pt;}
.y203{bottom:225.466667pt;}
.y179{bottom:227.546667pt;}
.y11d{bottom:228.706667pt;}
.y143{bottom:229.946667pt;}
.yfe{bottom:232.506667pt;}
.y20f{bottom:232.986667pt;}
.y13{bottom:234.266667pt;}
.y10e{bottom:235.613333pt;}
.y1e2{bottom:236.186667pt;}
.y1c3{bottom:236.986667pt;}
.y193{bottom:239.386667pt;}
.y59{bottom:240.186667pt;}
.yb8{bottom:240.960000pt;}
.y160{bottom:241.466667pt;}
.y68{bottom:246.106667pt;}
.yd3{bottom:246.586667pt;}
.y103{bottom:247.200000pt;}
.y1b0{bottom:247.226667pt;}
.y33{bottom:248.826667pt;}
.y8f{bottom:249.146667pt;}
.y124{bottom:250.373333pt;}
.y7c{bottom:250.586667pt;}
.y10f{bottom:257.826667pt;}
.yfd{bottom:260.186667pt;}
.y20e{bottom:260.506667pt;}
.y1e1{bottom:263.706667pt;}
.y15f{bottom:264.506667pt;}
.y58{bottom:267.706667pt;}
.y142{bottom:268.986667pt;}
.y192{bottom:269.306667pt;}
.y178{bottom:273.466667pt;}
.y67{bottom:273.626667pt;}
.yd2{bottom:274.106667pt;}
.y1af{bottom:274.746667pt;}
.y32{bottom:276.506667pt;}
.y8e{bottom:276.666667pt;}
.y7b{bottom:278.106667pt;}
.y12{bottom:279.226667pt;}
.yde{bottom:279.520000pt;}
.y110{bottom:280.026667pt;}
.y104{bottom:280.613333pt;}
.y125{bottom:285.786667pt;}
.y15e{bottom:287.546667pt;}
.yfc{bottom:287.706667pt;}
.y20d{bottom:288.186667pt;}
.y1e0{bottom:291.386667pt;}
.y141{bottom:291.866667pt;}
.y1c2{bottom:292.186667pt;}
.y57{bottom:295.386667pt;}
.y191{bottom:299.226667pt;}
.y66{bottom:301.306667pt;}
.yd1{bottom:301.786667pt;}
.y1ae{bottom:302.426667pt;}
.y31{bottom:304.026667pt;}
.y8d{bottom:304.346667pt;}
.y7a{bottom:305.786667pt;}
.y248{bottom:306.586667pt;}
.y177{bottom:312.506667pt;}
.yfb{bottom:315.386667pt;}
.y20c{bottom:315.706667pt;}
.y65{bottom:316.986667pt;}
.y1df{bottom:318.906667pt;}
.y1c1{bottom:319.706667pt;}
.y56{bottom:322.906667pt;}
.y15d{bottom:326.586667pt;}
.y1e9{bottom:328.346667pt;}
.y11{bottom:329.146667pt;}
.yd0{bottom:329.306667pt;}
.y1ad{bottom:329.946667pt;}
.y140{bottom:330.906667pt;}
.y230{bottom:331.386667pt;}
.y30{bottom:331.706667pt;}
.y8c{bottom:331.866667pt;}
.y79{bottom:333.306667pt;}
.y176{bottom:335.546667pt;}
.y247{bottom:336.506667pt;}
.y64{bottom:342.906667pt;}
.y1de{bottom:346.586667pt;}
.y1c0{bottom:347.386667pt;}
.y15c{bottom:349.466667pt;}
.y55{bottom:350.586667pt;}
.y13f{bottom:353.946667pt;}
.y1e8{bottom:356.026667pt;}
.ycf{bottom:356.986667pt;}
.y231{bottom:357.466667pt;}
.y1ac{bottom:357.626667pt;}
.y175{bottom:358.586667pt;}
.y2f{bottom:359.226667pt;}
.y8b{bottom:359.546667pt;}
.y78{bottom:360.986667pt;}
.y246{bottom:366.586667pt;}
.y63{bottom:368.826667pt;}
.yfa{bottom:370.586667pt;}
.y1ff{bottom:371.706667pt;}
.y1dd{bottom:374.106667pt;}
.y1bf{bottom:374.906667pt;}
.y54{bottom:378.106667pt;}
.y10{bottom:379.546667pt;}
.y22c{bottom:383.386667pt;}
.yce{bottom:384.506667pt;}
.y1ab{bottom:385.146667pt;}
.y2e{bottom:386.906667pt;}
.y8a{bottom:387.066667pt;}
.y77{bottom:388.506667pt;}
.y190{bottom:389.306667pt;}
.y13e{bottom:392.986667pt;}
.y61{bottom:394.906667pt;}
.y245{bottom:396.506667pt;}
.y174{bottom:397.466667pt;}
.y202{bottom:397.626667pt;}
.yf9{bottom:398.106667pt;}
.y1dc{bottom:401.786667pt;}
.y1be{bottom:402.586667pt;}
.y53{bottom:405.786667pt;}
.y22f{bottom:410.426667pt;}
.y15b{bottom:411.546667pt;}
.ycd{bottom:412.186667pt;}
.y1aa{bottom:412.826667pt;}
.y2d{bottom:414.426667pt;}
.y89{bottom:414.746667pt;}
.y13d{bottom:415.866667pt;}
.y76{bottom:416.186667pt;}
.y18f{bottom:419.266667pt;}
.y173{bottom:420.546667pt;}
.yf{bottom:421.986667pt;}
.y6d{bottom:424.706667pt;}
.y1fb{bottom:425.506667pt;}
.yf8{bottom:425.826667pt;}
.y244{bottom:426.626667pt;}
.y1db{bottom:429.346667pt;}
.y1bd{bottom:430.146667pt;}
.yab{bottom:430.466667pt;}
.y52{bottom:433.346667pt;}
.y226{bottom:436.386667pt;}
.ycc{bottom:439.746667pt;}
.y1a9{bottom:440.386667pt;}
.y2c{bottom:442.146667pt;}
.y88{bottom:442.306667pt;}
.y172{bottom:443.586667pt;}
.y75{bottom:443.746667pt;}
.y18e{bottom:449.346667pt;}
.y15a{bottom:450.626667pt;}
.yf7{bottom:453.346667pt;}
.y13c{bottom:454.946667pt;}
.y243{bottom:456.546667pt;}
.y1da{bottom:457.026667pt;}
.y1bc{bottom:457.826667pt;}
.y51{bottom:461.026667pt;}
.ye{bottom:464.546667pt;}
.y229{bottom:465.826667pt;}
.y171{bottom:466.626667pt;}
.y87{bottom:466.946667pt;}
.ycb{bottom:467.426667pt;}
.y1a8{bottom:468.066667pt;}
.y2b{bottom:469.666667pt;}
.y74{bottom:471.426667pt;}
.y1fc{bottom:472.706667pt;}
.y159{bottom:473.506667pt;}
.y13b{bottom:477.986667pt;}
.y18d{bottom:479.266667pt;}
.yf6{bottom:481.026667pt;}
.y1d9{bottom:484.546667pt;}
.y1bb{bottom:485.346667pt;}
.y242{bottom:486.466667pt;}
.y50{bottom:488.546667pt;}
.y86{bottom:490.626667pt;}
.yca{bottom:494.946667pt;}
.y1a7{bottom:495.586667pt;}
.y225{bottom:496.706667pt;}
.y2a{bottom:497.346667pt;}
.y13a{bottom:501.026667pt;}
.y1f9{bottom:501.986667pt;}
.y170{bottom:505.506667pt;}
.y9f{bottom:506.306667pt;}
.yd{bottom:506.946667pt;}
.yf5{bottom:508.546667pt;}
.y18c{bottom:509.186667pt;}
.y73{bottom:509.666667pt;}
.y1d8{bottom:512.226667pt;}
.y158{bottom:512.546667pt;}
.y1ba{bottom:513.026667pt;}
.y4f{bottom:516.226667pt;}
.y241{bottom:516.546667pt;}
.yc9{bottom:522.626667pt;}
.y1a6{bottom:523.266667pt;}
.y139{bottom:523.906667pt;}
.y29{bottom:524.866667pt;}
.y16f{bottom:528.546667pt;}
.y9e{bottom:532.066667pt;}
.y157{bottom:535.586667pt;}
.yf4{bottom:536.226667pt;}
.y18b{bottom:539.266667pt;}
.y1d7{bottom:539.746667pt;}
.y1b9{bottom:540.546667pt;}
.y4e{bottom:543.746667pt;}
.y3c{bottom:544.866667pt;}
.y240{bottom:546.466667pt;}
.y138{bottom:546.946667pt;}
.y72{bottom:547.906667pt;}
.yc{bottom:549.346667pt;}
.yc8{bottom:550.146667pt;}
.y1a5{bottom:550.786667pt;}
.y16e{bottom:551.586667pt;}
.y28{bottom:552.386667pt;}
.y1fa{bottom:552.706667pt;}
.y1d4{bottom:555.426667pt;}
.y9d{bottom:555.746667pt;}
.yf3{bottom:563.746667pt;}
.y1b8{bottom:568.226667pt;}
.yaa{bottom:569.026667pt;}
.y18a{bottom:569.186667pt;}
.y137{bottom:569.986667pt;}
.y4d{bottom:571.426667pt;}
.y156{bottom:574.626667pt;}
.y3b{bottom:575.426667pt;}
.y23f{bottom:576.546667pt;}
.yc7{bottom:577.826667pt;}
.y1a4{bottom:578.466667pt;}
.y1f7{bottom:578.626667pt;}
.y27{bottom:580.066667pt;}
.y9c{bottom:581.346667pt;}
.y20b{bottom:583.586667pt;}
.yf2{bottom:591.426667pt;}
.ya8{bottom:592.706667pt;}
.y1b7{bottom:595.746667pt;}
.y155{bottom:597.506667pt;}
.y4c{bottom:598.946667pt;}
.y189{bottom:599.266667pt;}
.yb{bottom:602.306667pt;}
.yc6{bottom:605.346667pt;}
.y1a3{bottom:605.986667pt;}
.y3a{bottom:606.466667pt;}
.y1d2{bottom:606.786667pt;}
.y9a{bottom:606.946667pt;}
.y26{bottom:607.586667pt;}
.y136{bottom:609.026667pt;}
.y16d{bottom:613.506667pt;}
.y71{bottom:614.786667pt;}
.yf1{bottom:618.946667pt;}
.y154{bottom:620.573333pt;}
.y1b6{bottom:623.293333pt;}
.y224{bottom:625.213333pt;}
.y4b{bottom:626.653333pt;}
.yb9{bottom:628.093333pt;}
.ya7{bottom:629.053333pt;}
.y188{bottom:629.213333pt;}
.y135{bottom:631.933333pt;}
.yc5{bottom:633.053333pt;}
.y1a2{bottom:633.693333pt;}
.y25{bottom:635.293333pt;}
.y39{bottom:636.413333pt;}
.y16c{bottom:636.573333pt;}
.y117{bottom:641.120000pt;}
.y70{bottom:642.493333pt;}
.yf0{bottom:646.493333pt;}
.y21f{bottom:651.293333pt;}
.y1b5{bottom:652.093333pt;}
.y119{bottom:653.373333pt;}
.y4a{bottom:654.173333pt;}
.y1f3{bottom:655.133333pt;}
.ya{bottom:655.453333pt;}
.ya6{bottom:656.573333pt;}
.y1d0{bottom:657.533333pt;}
.y187{bottom:659.293333pt;}
.y153{bottom:659.613333pt;}
.yc4{bottom:660.573333pt;}
.y1a1{bottom:661.213333pt;}
.y98{bottom:662.013333pt;}
.y24{bottom:662.813333pt;}
.y23e{bottom:662.973333pt;}
.y134{bottom:670.973333pt;}
.yef{bottom:675.293333pt;}
.y16b{bottom:675.613333pt;}
.y23d{bottom:678.653333pt;}
.y1b4{bottom:680.733333pt;}
.y49{bottom:681.853333pt;}
.y152{bottom:682.493333pt;}
.ya5{bottom:684.253333pt;}
.y220{bottom:687.453333pt;}
.y97{bottom:687.773333pt;}
.yc3{bottom:688.253333pt;}
.y1a0{bottom:688.733333pt;}
.y186{bottom:689.213333pt;}
.y23{bottom:690.493333pt;}
.y133{bottom:694.013333pt;}
.ybb{bottom:697.693333pt;}
.y16a{bottom:698.493333pt;}
.y11a{bottom:700.800000pt;}
.yee{bottom:702.813333pt;}
.y23c{bottom:705.213333pt;}
.y151{bottom:705.533333pt;}
.y1f5{bottom:705.853333pt;}
.y9{bottom:708.573333pt;}
.y48{bottom:709.373333pt;}
.y95{bottom:711.453333pt;}
.ya4{bottom:711.773333pt;}
.yc2{bottom:715.773333pt;}
.y22{bottom:718.013333pt;}
.y19f{bottom:718.653333pt;}
.y185{bottom:719.133333pt;}
.y21b{bottom:727.773333pt;}
.y23b{bottom:731.613333pt;}
.y1f0{bottom:731.773333pt;}
.y132{bottom:732.893333pt;}
.y93{bottom:734.973333pt;}
.ya3{bottom:736.093333pt;}
.y47{bottom:737.053333pt;}
.y169{bottom:737.533333pt;}
.yb3{bottom:737.760000pt;}
.yc1{bottom:743.453333pt;}
.y150{bottom:744.573333pt;}
.y21{bottom:745.693333pt;}
.y1cf{bottom:746.173333pt;}
.yed{bottom:747.453333pt;}
.y184{bottom:749.213333pt;}
.y19e{bottom:750.813333pt;}
.y131{bottom:755.933333pt;}
.y1f2{bottom:757.693333pt;}
.y23a{bottom:758.173333pt;}
.y168{bottom:760.573333pt;}
.y8{bottom:760.893333pt;}
.ya1{bottom:763.933333pt;}
.y46{bottom:764.573333pt;}
.y21c{bottom:764.893333pt;}
.y14f{bottom:767.613333pt;}
.yc0{bottom:770.973333pt;}
.y20{bottom:773.213333pt;}
.y1ce{bottom:773.853333pt;}
.yec{bottom:775.133333pt;}
.y183{bottom:779.133333pt;}
.y19d{bottom:782.973333pt;}
.y167{bottom:783.613333pt;}
.y239{bottom:784.573333pt;}
.y45{bottom:792.253333pt;}
.y130{bottom:794.973333pt;}
.ybf{bottom:798.653333pt;}
.y1f{bottom:800.893333pt;}
.y1cd{bottom:801.373333pt;}
.yeb{bottom:802.653333pt;}
.y218{bottom:804.413333pt;}
.y14e{bottom:806.493333pt;}
.y182{bottom:809.213333pt;}
.y1ee{bottom:809.693333pt;}
.y7{bottom:809.853333pt;}
.y237{bottom:810.973333pt;}
.y19c{bottom:815.133333pt;}
.y12f{bottom:818.013333pt;}
.y44{bottom:819.773333pt;}
.y166{bottom:822.533333pt;}
.ybe{bottom:826.213333pt;}
.y1e{bottom:828.453333pt;}
.y1cc{bottom:829.093333pt;}
.y14d{bottom:829.573333pt;}
.yea{bottom:830.373333pt;}
.y1ea{bottom:835.653333pt;}
.y236{bottom:837.573333pt;}
.y181{bottom:839.173333pt;}
.y12e{bottom:840.933333pt;}
.y165{bottom:845.573333pt;}
.y43{bottom:847.493333pt;}
.ybd{bottom:853.893333pt;}
.y1d{bottom:856.133333pt;}
.y6{bottom:856.453333pt;}
.y1cb{bottom:856.613333pt;}
.ye9{bottom:857.893333pt;}
.y12d{bottom:863.973333pt;}
.y14c{bottom:868.613333pt;}
.y180{bottom:869.253333pt;}
.ydc{bottom:869.573333pt;}
.y42{bottom:875.013333pt;}
.y19b{bottom:879.653333pt;}
.y1c{bottom:883.653333pt;}
.y1ca{bottom:884.293333pt;}
.y232{bottom:890.533333pt;}
.y14b{bottom:891.653333pt;}
.ydb{bottom:893.253333pt;}
.y17f{bottom:899.173333pt;}
.y5{bottom:902.213333pt;}
.y41{bottom:902.693333pt;}
.y12c{bottom:903.013333pt;}
.y164{bottom:907.653333pt;}
.y20a{bottom:908.453333pt;}
.y1b{bottom:911.333333pt;}
.y19a{bottom:911.813333pt;}
.y1c9{bottom:916.133333pt;}
.y17{bottom:916.613333pt;}
.yda{bottom:916.933333pt;}
.y216{bottom:924.133333pt;}
.y12b{bottom:926.053333pt;}
.y17e{bottom:929.093333pt;}
.y40{bottom:930.213333pt;}
.y14a{bottom:930.533333pt;}
.y4{bottom:934.853333pt;}
.y1a{bottom:938.853333pt;}
.yd9{bottom:940.613333pt;}
.y199{bottom:941.893333pt;}
.y16{bottom:944.293333pt;}
.y217{bottom:950.213333pt;}
.y1c8{bottom:952.933333pt;}
.y149{bottom:953.573333pt;}
.y3f{bottom:957.893333pt;}
.y12a{bottom:964.933333pt;}
.y19{bottom:966.533333pt;}
.y198{bottom:969.413333pt;}
.y17d{bottom:969.573333pt;}
.y214{bottom:976.133333pt;}
.y3{bottom:979.813333pt;}
.y3e{bottom:985.413333pt;}
.ydd{bottom:987.653333pt;}
.y129{bottom:987.973333pt;}
.y148{bottom:992.613333pt;}
.y18{bottom:994.053333pt;}
.y215{bottom:1002.053333pt;}
.y3d{bottom:1013.093333pt;}
.y147{bottom:1015.653333pt;}
.h47{height:19.360000pt;}
.h16{height:21.760000pt;}
.hf{height:22.080000pt;}
.h12{height:22.880000pt;}
.h17{height:23.040000pt;}
.h1a{height:24.640000pt;}
.h1b{height:24.800000pt;}
.h13{height:24.960000pt;}
.h15{height:25.120000pt;}
.he{height:25.280000pt;}
.hc{height:25.312000pt;}
.h2f{height:25.440000pt;}
.h45{height:25.760000pt;}
.h11{height:25.920000pt;}
.h46{height:25.952000pt;}
.h44{height:26.400000pt;}
.h37{height:27.232000pt;}
.h34{height:28.640000pt;}
.h42{height:28.800000pt;}
.h14{height:28.832000pt;}
.h41{height:30.240000pt;}
.h3f{height:35.360000pt;}
.h3d{height:36.480000pt;}
.h39{height:36.640000pt;}
.h38{height:38.592000pt;}
.h3c{height:38.720000pt;}
.h3e{height:39.680000pt;}
.ha{height:43.840000pt;}
.h1c{height:45.920000pt;}
.h35{height:46.400000pt;}
.h2a{height:47.840000pt;}
.h23{height:48.000000pt;}
.h32{height:49.920000pt;}
.h2b{height:49.952000pt;}
.h10{height:50.062500pt;}
.h2c{height:50.720000pt;}
.h30{height:51.200000pt;}
.h3b{height:51.232000pt;}
.h3a{height:51.360000pt;}
.h2e{height:51.392000pt;}
.h43{height:52.352000pt;}
.h36{height:53.152000pt;}
.h1f{height:53.600000pt;}
.hb{height:55.402500pt;}
.h21{height:55.536000pt;}
.h9{height:57.406250pt;}
.h2{height:58.563750pt;}
.h40{height:59.680000pt;}
.hd{height:61.410000pt;}
.h8{height:66.625000pt;}
.h7{height:66.750000pt;}
.h22{height:66.880000pt;}
.h1e{height:67.349167pt;}
.h2d{height:75.840000pt;}
.h33{height:75.872000pt;}
.h31{height:76.000000pt;}
.h27{height:78.097500pt;}
.h25{height:80.842500pt;}
.h29{height:88.777500pt;}
.h4{height:98.843125pt;}
.h5{height:108.313125pt;}
.h26{height:116.735833pt;}
.h3{height:118.375000pt;}
.h6{height:128.436875pt;}
.h18{height:137.920000pt;}
.h28{height:144.847500pt;}
.h1d{height:248.160000pt;}
.h19{height:290.400000pt;}
.h20{height:299.040000pt;}
.h24{height:304.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w52{width:46.560000pt;}
.w4d{width:46.880000pt;}
.w4e{width:55.520000pt;}
.w46{width:56.000000pt;}
.w30{width:56.160000pt;}
.w2a{width:56.800000pt;}
.w41{width:56.960000pt;}
.w3c{width:66.592000pt;}
.w37{width:67.232000pt;}
.w47{width:67.712000pt;}
.w3d{width:67.840000pt;}
.w42{width:68.352000pt;}
.w38{width:68.480000pt;}
.w48{width:68.960000pt;}
.w43{width:69.600000pt;}
.w3f{width:71.680000pt;}
.w4f{width:71.872000pt;}
.w3a{width:72.000000pt;}
.w4a{width:72.672000pt;}
.w51{width:76.992000pt;}
.w4c{width:77.632000pt;}
.w34{width:82.112000pt;}
.w2e{width:82.432000pt;}
.w31{width:82.720000pt;}
.w2b{width:83.360000pt;}
.w9{width:83.840000pt;}
.w6{width:84.160000pt;}
.w33{width:87.360000pt;}
.w2d{width:88.160000pt;}
.w49{width:88.192000pt;}
.w44{width:88.992000pt;}
.w32{width:89.632000pt;}
.w2c{width:90.272000pt;}
.w3e{width:90.752000pt;}
.w39{width:91.552000pt;}
.w50{width:101.920000pt;}
.w4b{width:102.560000pt;}
.w59{width:110.752000pt;}
.w56{width:111.072000pt;}
.w1e{width:114.912000pt;}
.w1b{width:115.232000pt;}
.w16{width:117.312000pt;}
.w1d{width:118.240000pt;}
.w1a{width:118.880000pt;}
.w10{width:130.112000pt;}
.wd{width:130.432000pt;}
.w8{width:135.546667pt;}
.w5{width:136.186667pt;}
.w2f{width:136.346667pt;}
.w29{width:136.666667pt;}
.w13{width:140.826667pt;}
.w14{width:140.960000pt;}
.w15{width:140.986667pt;}
.w58{width:167.066667pt;}
.w55{width:167.706667pt;}
.w7{width:171.866667pt;}
.w4{width:172.186667pt;}
.w3b{width:181.466667pt;}
.w45{width:181.626667pt;}
.w36{width:181.786667pt;}
.w40{width:181.946667pt;}
.w27{width:188.346667pt;}
.w28{width:188.506667pt;}
.w25{width:188.826667pt;}
.w26{width:188.986667pt;}
.we{width:211.706667pt;}
.wb{width:212.026667pt;}
.wf{width:222.586667pt;}
.wc{width:223.226667pt;}
.w57{width:240.026667pt;}
.w54{width:240.346667pt;}
.w21{width:268.960000pt;}
.w22{width:291.840000pt;}
.w1c{width:298.626667pt;}
.w19{width:298.946667pt;}
.w53{width:299.266667pt;}
.w35{width:343.906667pt;}
.wa{width:410.146667pt;}
.w11{width:412.386667pt;}
.w1f{width:433.280000pt;}
.w20{width:440.000000pt;}
.w23{width:492.800000pt;}
.w17{width:513.440000pt;}
.w24{width:525.760000pt;}
.w5a{width:527.133333pt;}
.w12{width:542.013333pt;}
.w18{width:551.453333pt;}
.w3{width:555.520000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x15{left:9.626667pt;}
.x3a{left:11.360000pt;}
.x27{left:12.320000pt;}
.x32{left:15.680000pt;}
.x34{left:17.920000pt;}
.x20{left:19.040000pt;}
.x4b{left:19.973333pt;}
.x2b{left:23.360000pt;}
.x33{left:24.800000pt;}
.x68{left:26.240000pt;}
.x31{left:30.106667pt;}
.x45{left:31.040000pt;}
.x25{left:32.320000pt;}
.x2d{left:37.760000pt;}
.x2c{left:40.000000pt;}
.x2a{left:41.120000pt;}
.x2e{left:42.240000pt;}
.x36{left:43.653333pt;}
.x2f{left:45.280000pt;}
.x30{left:48.186667pt;}
.x22{left:51.680000pt;}
.x1e{left:54.720000pt;}
.x4c{left:66.013333pt;}
.x48{left:68.186667pt;}
.x4d{left:71.226667pt;}
.x69{left:79.866667pt;}
.x40{left:94.266667pt;}
.x24{left:101.280000pt;}
.x21{left:107.546667pt;}
.x1{left:113.471988pt;}
.x35{left:118.853333pt;}
.x9{left:120.031988pt;}
.x3f{left:124.226667pt;}
.x37{left:125.632000pt;}
.x44{left:131.426667pt;}
.x4f{left:132.351988pt;}
.x14{left:133.280000pt;}
.x10{left:137.466655pt;}
.x57{left:142.106667pt;}
.xa{left:145.626655pt;}
.x47{left:147.200000pt;}
.x43{left:149.306667pt;}
.x1b{left:153.946667pt;}
.x41{left:160.000000pt;}
.x12{left:161.466655pt;}
.x11{left:166.266655pt;}
.x17{left:170.426667pt;}
.x8{left:182.106655pt;}
.x1c{left:185.466655pt;}
.x51{left:190.266655pt;}
.x52{left:196.186655pt;}
.x56{left:208.666655pt;}
.x3b{left:227.226667pt;}
.x3e{left:238.213333pt;}
.x50{left:255.066655pt;}
.x26{left:279.586667pt;}
.x3c{left:283.266667pt;}
.x53{left:284.546655pt;}
.x2{left:289.506655pt;}
.xe{left:290.786655pt;}
.x3d{left:295.226667pt;}
.xb{left:307.426655pt;}
.x5b{left:323.106667pt;}
.x62{left:324.066667pt;}
.x1d{left:326.146667pt;}
.x58{left:335.586667pt;}
.xd{left:338.786655pt;}
.x18{left:342.626667pt;}
.x54{left:350.146667pt;}
.x3{left:377.826655pt;}
.x5c{left:379.906667pt;}
.x63{left:380.866667pt;}
.x16{left:389.506655pt;}
.xf{left:391.426655pt;}
.x13{left:392.706655pt;}
.x7{left:396.866655pt;}
.x67{left:401.346667pt;}
.x46{left:408.800000pt;}
.x42{left:416.320000pt;}
.x5{left:419.106655pt;}
.x28{left:421.186667pt;}
.x49{left:426.240000pt;}
.x38{left:431.613333pt;}
.x4e{left:436.320000pt;}
.x5d{left:447.133333pt;}
.x60{left:448.893333pt;}
.x64{left:452.733333pt;}
.x4a{left:456.186667pt;}
.x1a{left:478.813333pt;}
.x6{left:484.413322pt;}
.x59{left:509.213333pt;}
.x5e{left:515.613333pt;}
.x61{left:518.493333pt;}
.x55{left:539.133333pt;}
.x1f{left:549.373333pt;}
.x39{left:550.493333pt;}
.x65{left:555.293333pt;}
.x29{left:562.813333pt;}
.x4{left:568.253322pt;}
.x6a{left:569.373333pt;}
.x5a{left:597.373333pt;}
.x5f{left:607.173333pt;}
.x66{left:632.933333pt;}
.x23{left:651.493322pt;}
.xc{left:680.453322pt;}
}




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