
    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_0af1ad38836dfb7dcbc8c955.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d1a117ad2531751b5e6e163c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760254;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_9209375aab2dd0dbe128b8d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_c9b4225f56f4e265065cc138.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_613f8d3f9703cb56bf79f8dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_37c1d31b07c0fc8676ed7e65.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_e4a41b0c06f8cdcfd136fcb5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f87553d90e38e65e545be319.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090820;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_7d939e9855298949ed4fa828.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3ddb5dd20f3236519983c69a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.090820;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_45761b98e50c580ecd84bf89.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.117188;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:fff;src:url('chunks/assets/font_8844c03c29edec873d6f88ad.woff2')format("woff");}.fff{font-family:fff;line-height:1.401855;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v7{vertical-align:26.640000px;}
.v1{vertical-align:33.120000px;}
.v8{vertical-align:48.240000px;}
.v4{vertical-align:54.720000px;}
.v5{vertical-align:57.600000px;}
.v6{vertical-align:81.360000px;}
.ls30{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-0.942000px;}
.ls2a{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.672000px;}
.ls25{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.306600px;}
.ls7{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.193800px;}
.ls6{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.078600px;}
.ls16{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.027360px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.043920px;}
.ls2b{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090720px;}
.ls3{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.220800px;}
.lse{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls13{letter-spacing:2.340000px;}
.ls23{letter-spacing:2.669040px;}
.ls22{letter-spacing:2.801520px;}
.ls29{letter-spacing:6.660000px;}
.ls27{letter-spacing:12.420000px;}
.ls10{letter-spacing:13.860000px;}
.ls28{letter-spacing:16.740000px;}
.ls12{letter-spacing:17.460000px;}
.ls1e{letter-spacing:18.720000px;}
.ls20{letter-spacing:20.376000px;}
.ls33{letter-spacing:23.760000px;}
.ls2f{letter-spacing:26.784000px;}
.ls19{letter-spacing:33.984000px;}
.lsb{letter-spacing:36.000000px;}
.ls1c{letter-spacing:44.784000px;}
.ls18{letter-spacing:54.864000px;}
.ls32{letter-spacing:62.784000px;}
.ls1f{letter-spacing:64.224000px;}
.lsa{letter-spacing:71.976000px;}
.ls1d{letter-spacing:87.984000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws1{word-spacing:-39.888000px;}
.ws0{word-spacing:-36.810480px;}
.ws3{word-spacing:-30.060000px;}
.ws2{word-spacing:-29.736000px;}
.ws24{word-spacing:-20.304000px;}
.ws13{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws21{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws22{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.280000px;}
.ws20{word-spacing:-17.208000px;}
.ws25{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.984000px;}
.ws19{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.552000px;}
.ws1a{word-spacing:-15.480000px;}
.ws14{word-spacing:-15.372000px;}
.ws8{word-spacing:-14.440800px;}
.ws6{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.192640px;}
.wsd{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.240000px;}
.ws10{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.wse{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.520000px;}
.ws23{word-spacing:-11.388000px;}
.ws12{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:3.216000px;}
.ws16{word-spacing:3.720000px;}
.ws1c{word-spacing:4.440000px;}
._15{margin-left:-16.236000px;}
._18{margin-left:-14.292000px;}
._1c{margin-left:-12.348000px;}
._17{margin-left:-10.332000px;}
._1b{margin-left:-8.907360px;}
._1a{margin-left:-7.135920px;}
._16{margin-left:-4.284000px;}
._e{margin-left:-2.529360px;}
._1{margin-left:-1.249920px;}
._0{width:1.449360px;}
._1e{width:2.755920px;}
._12{width:4.185360px;}
._11{width:5.760000px;}
._3{width:7.491840px;}
._2{width:8.688000px;}
._23{width:9.912000px;}
._27{width:11.291280px;}
._26{width:13.248000px;}
._4{width:14.256000px;}
._5{width:15.408000px;}
._f{width:16.920000px;}
._1d{width:18.343200px;}
._10{width:19.992000px;}
._c{width:21.436320px;}
._b{width:22.633920px;}
._d{width:23.788560px;}
._8{width:24.888000px;}
._9{width:26.496000px;}
._a{width:27.926640px;}
._24{width:29.545920px;}
._21{width:30.816000px;}
._22{width:32.112000px;}
._7{width:33.470640px;}
._6{width:34.848000px;}
._25{width:36.216000px;}
._28{width:37.512000px;}
._29{width:38.952000px;}
._2f{width:39.960000px;}
._35{width:41.400000px;}
._36{width:42.552000px;}
._6e{width:43.704000px;}
._33{width:44.784000px;}
._3d{width:45.864000px;}
._2c{width:47.136000px;}
._3b{width:49.176000px;}
._3c{width:50.400000px;}
._6b{width:51.624000px;}
._2b{width:53.496000px;}
._38{width:54.720000px;}
._37{width:55.897920px;}
._1f{width:56.952000px;}
._20{width:58.620000px;}
._58{width:59.688000px;}
._59{width:61.776000px;}
._4a{width:62.928000px;}
._42{width:65.232000px;}
._43{width:66.528000px;}
._13{width:68.400000px;}
._14{width:69.492000px;}
._2d{width:70.560000px;}
._2e{width:72.072000px;}
._30{width:74.510640px;}
._3f{width:76.032000px;}
._40{width:77.112000px;}
._32{width:78.624000px;}
._49{width:79.945920px;}
._4b{width:82.080000px;}
._39{width:84.904560px;}
._3a{width:86.472000px;}
._6f{width:87.624000px;}
._19{width:89.976000px;}
._41{width:91.344000px;}
._62{width:96.177360px;}
._31{width:97.272000px;}
._4d{width:100.249920px;}
._44{width:103.392000px;}
._45{width:104.570640px;}
._54{width:107.784000px;}
._5e{width:109.224000px;}
._60{width:112.536000px;}
._56{width:114.192000px;}
._57{width:116.064000px;}
._4e{width:117.360000px;}
._52{width:118.944000px;}
._4c{width:121.176000px;}
._55{width:125.521920px;}
._68{width:130.129920px;}
._50{width:132.912000px;}
._4f{width:134.280000px;}
._5c{width:139.248000px;}
._66{width:141.192000px;}
._64{width:146.880000px;}
._5d{width:151.896000px;}
._6d{width:154.584000px;}
._48{width:155.664000px;}
._51{width:158.904000px;}
._69{width:161.064000px;}
._65{width:164.736000px;}
._5a{width:170.305920px;}
._47{width:175.752000px;}
._6c{width:187.488000px;}
._53{width:189.144000px;}
._67{width:198.360000px;}
._6a{width:208.728000px;}
._72{width:220.968000px;}
._5f{width:225.072000px;}
._63{width:230.112000px;}
._70{width:237.096000px;}
._71{width:245.304000px;}
._5b{width:257.400000px;}
._46{width:326.772000px;}
._61{width:376.840560px;}
._3e{width:388.872000px;}
._2a{width:490.536000px;}
._34{width:560.018640px;}
.fc7{color:rgb(55,57,60);}
.fc6{color:transparent;}
.fc3{color:rgb(54,95,145);}
.fc5{color:rgb(115,115,115);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(154,0,64);}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsb{font-size:63.360000px;}
.fsd{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y19c{bottom:5.220000px;}
.y1ac{bottom:5.400000px;}
.y198{bottom:5.760000px;}
.y195{bottom:8.280000px;}
.y190{bottom:12.420000px;}
.y2d7{bottom:13.140000px;}
.y1a1{bottom:13.320000px;}
.y1b4{bottom:13.350000px;}
.y2f2{bottom:13.485000px;}
.y2fa{bottom:13.486500px;}
.y1af{bottom:13.500000px;}
.y1a7{bottom:13.530000px;}
.y343{bottom:14.565000px;}
.y325{bottom:14.566500px;}
.y31e{bottom:14.580000px;}
.y336{bottom:14.745000px;}
.y356{bottom:14.760000px;}
.y14a{bottom:17.640000px;}
.y34c{bottom:17.985000px;}
.yf6{bottom:18.900000px;}
.y14d{bottom:20.700000px;}
.y150{bottom:20.745000px;}
.y12d{bottom:23.400000px;}
.yec{bottom:23.445000px;}
.y133{bottom:23.580000px;}
.y12f{bottom:23.760000px;}
.y306{bottom:27.720000px;}
.y34f{bottom:31.845000px;}
.y18f{bottom:33.120000px;}
.y2f9{bottom:34.006500px;}
.y1b3{bottom:34.050000px;}
.y2e6{bottom:34.200000px;}
.yf1{bottom:34.380000px;}
.y19b{bottom:35.100000px;}
.y197{bottom:35.505000px;}
.y194{bottom:37.980000px;}
.y314{bottom:38.880000px;}
.y1a0{bottom:43.020000px;}
.y1ae{bottom:43.200000px;}
.y1a6{bottom:43.230000px;}
.y35c{bottom:45.525000px;}
.y324{bottom:45.526500px;}
.y333{bottom:45.705000px;}
.y31d{bottom:45.720000px;}
.y362{bottom:45.750000px;}
.y355{bottom:45.765000px;}
.y34d{bottom:47.325000px;}
.y149{bottom:48.780000px;}
.y34b{bottom:48.945000px;}
.y35e{bottom:49.140000px;}
.yf4{bottom:50.040000px;}
.y14f{bottom:51.705000px;}
.y14c{bottom:51.840000px;}
.y2f5{bottom:53.086500px;}
.y18e{bottom:53.820000px;}
.y311{bottom:54.360000px;}
.y131{bottom:54.720000px;}
.y1b2{bottom:54.750000px;}
.y19a{bottom:55.800000px;}
.y2ee{bottom:57.630000px;}
.y193{bottom:58.680000px;}
.y335{bottom:61.185000px;}
.y328{bottom:61.186500px;}
.y35d{bottom:61.230000px;}
.y34e{bottom:62.805000px;}
.y2f8{bottom:63.706500px;}
.y19f{bottom:63.720000px;}
.y1ad{bottom:63.900000px;}
.y1a5{bottom:63.930000px;}
.yf0{bottom:65.520000px;}
.y313{bottom:69.840000px;}
.y2dd{bottom:72.900000px;}
.y2f1{bottom:72.930000px;}
.y2f4{bottom:73.786500px;}
.y323{bottom:76.666500px;}
.y31c{bottom:76.680000px;}
.y341{bottom:76.710000px;}
.y33{bottom:76.716000px;}
.y359{bottom:76.860000px;}
.y332{bottom:76.890000px;}
.y354{bottom:76.905000px;}
.y2d9{bottom:78.300000px;}
.y2ed{bottom:78.330000px;}
.y192{bottom:79.380000px;}
.y32a{bottom:80.100000px;}
.y34a{bottom:80.130000px;}
.yf3{bottom:81.000000px;}
.y18d{bottom:83.520000px;}
.y19e{bottom:84.450000px;}
.y2e5{bottom:84.600000px;}
.y1a4{bottom:84.630000px;}
.y312{bottom:85.500000px;}
.y2e0{bottom:88.740000px;}
.y305{bottom:89.640000px;}
.y342{bottom:92.190000px;}
.y326{bottom:92.191500px;}
.y334{bottom:92.370000px;}
.y2e9{bottom:93.240000px;}
.y2f7{bottom:93.406500px;}
.y2dc{bottom:93.600000px;}
.yef{bottom:96.480000px;}
.y2eb{bottom:102.600000px;}
.y2f0{bottom:102.630000px;}
.y1b1{bottom:105.150000px;}
.y1a3{bottom:105.330000px;}
.y35b{bottom:107.670000px;}
.y322{bottom:107.671500px;}
.y33f{bottom:107.820000px;}
.y31b{bottom:107.850000px;}
.y353{bottom:107.865000px;}
.y2df{bottom:109.440000px;}
.yf2{bottom:111.960000px;}
.y18c{bottom:113.220000px;}
.y2e8{bottom:113.940000px;}
.y2f6{bottom:114.106500px;}
.y2e4{bottom:114.300000px;}
.y32{bottom:116.856000px;}
.y304{bottom:120.780000px;}
.y2db{bottom:123.300000px;}
.y2ef{bottom:123.330000px;}
.y327{bottom:123.331500px;}
.yee{bottom:127.620000px;}
.y18b{bottom:133.920000px;}
.y2e3{bottom:135.000000px;}
.y33e{bottom:138.780000px;}
.y31a{bottom:138.810000px;}
.y321{bottom:138.811500px;}
.y331{bottom:138.990000px;}
.y352{bottom:139.005000px;}
.y13{bottom:141.336000px;}
.yf5{bottom:143.100000px;}
.y2da{bottom:144.000000px;}
.y2f3{bottom:145.843500px;}
.y31f{bottom:146.203500px;}
.y1f9{bottom:149.616000px;}
.y104{bottom:150.870000px;}
.y303{bottom:151.740000px;}
.ye7{bottom:153.390000px;}
.y1cb{bottom:153.570000px;}
.y24e{bottom:153.750000px;}
.y81{bottom:154.290000px;}
.y160{bottom:154.470000px;}
.y237{bottom:154.650000px;}
.y189{bottom:156.450000px;}
.y4e{bottom:157.350000px;}
.y69{bottom:157.710000px;}
.y2a0{bottom:158.070000px;}
.y26b{bottom:158.430000px;}
.y1f0{bottom:158.610000px;}
.y21f{bottom:163.650000px;}
.y16b{bottom:163.830000px;}
.y2e2{bottom:164.700000px;}
.y349{bottom:166.545000px;}
.y2b9{bottom:167.070000px;}
.y116{bottom:168.150000px;}
.y320{bottom:169.771500px;}
.y330{bottom:169.785000px;}
.y33d{bottom:169.920000px;}
.y319{bottom:169.950000px;}
.y351{bottom:169.965000px;}
.y31{bottom:171.750000px;}
.y147{bottom:172.470000px;}
.y20e{bottom:172.650000px;}
.y287{bottom:173.190000px;}
.y35a{bottom:173.205000px;}
.y2ea{bottom:173.730000px;}
.y340{bottom:173.925000px;}
.y231{bottom:175.890000px;}
.yc9{bottom:176.610000px;}
.y1f8{bottom:180.750000px;}
.yb5{bottom:182.730000px;}
.y302{bottom:182.880000px;}
.y370{bottom:183.810000px;}
.y1ca{bottom:184.530000px;}
.y12b{bottom:184.710000px;}
.y2c4{bottom:185.070000px;}
.y2e1{bottom:185.400000px;}
.y32f{bottom:185.430000px;}
.y236{bottom:185.610000px;}
.y26a{bottom:189.390000px;}
.y1ef{bottom:189.750000px;}
.y9c{bottom:190.290000px;}
.y103{bottom:191.010000px;}
.ye6{bottom:193.350000px;}
.y24d{bottom:193.710000px;}
.y80{bottom:194.430000px;}
.y21e{bottom:194.610000px;}
.y188{bottom:196.590000px;}
.y4d{bottom:197.490000px;}
.y68{bottom:197.850000px;}
.y29f{bottom:198.210000px;}
.y318{bottom:200.910000px;}
.y33c{bottom:200.925000px;}
.y358{bottom:201.090000px;}
.y12{bottom:201.990000px;}
.y16a{bottom:202.710000px;}
.y1e6{bottom:203.430000px;}
.y20d{bottom:203.610000px;}
.y2b8{bottom:207.210000px;}
.yc8{bottom:207.750000px;}
.y115{bottom:208.290000px;}
.y30{bottom:211.710000px;}
.y146{bottom:212.610000px;}
.y286{bottom:213.150000px;}
.yb4{bottom:213.870000px;}
.y301{bottom:213.885000px;}
.y1c9{bottom:215.670000px;}
.y2c3{bottom:216.210000px;}
.y235{bottom:216.750000px;}
.y269{bottom:220.530000px;}
.y1ee{bottom:220.710000px;}
.y9b{bottom:221.250000px;}
.y36f{bottom:223.950000px;}
.y372{bottom:224.310000px;}
.y12a{bottom:224.850000px;}
.y21d{bottom:225.750000px;}
.y29e{bottom:229.170000px;}
.y102{bottom:230.970000px;}
.y317{bottom:231.870000px;}
.y32e{bottom:232.050000px;}
.y33b{bottom:232.065000px;}
.y361{bottom:232.095000px;}
.ye5{bottom:233.850000px;}
.y7f{bottom:234.390000px;}
.y15f{bottom:234.570000px;}
.y20c{bottom:234.750000px;}
.y187{bottom:236.550000px;}
.y4c{bottom:237.450000px;}
.y67{bottom:237.810000px;}
.y2b7{bottom:238.170000px;}
.y226{bottom:238.710000px;}
.y169{bottom:242.850000px;}
.y365{bottom:244.155000px;}
.yb3{bottom:244.830000px;}
.y300{bottom:245.025000px;}
.y2c2{bottom:247.170000px;}
.y234{bottom:247.710000px;}
.y114{bottom:248.250000px;}
.y268{bottom:251.490000px;}
.y2f{bottom:251.850000px;}
.y9a{bottom:252.390000px;}
.y145{bottom:252.570000px;}
.y285{bottom:253.290000px;}
.y24c{bottom:255.810000px;}
.y371{bottom:256.530000px;}
.y21c{bottom:256.710000px;}
.y1c8{bottom:257.070000px;}
.yc7{bottom:259.770000px;}
.y29d{bottom:260.310000px;}
.y1f7{bottom:260.850000px;}
.y316{bottom:263.010000px;}
.y33a{bottom:263.025000px;}
.y360{bottom:263.055000px;}
.y344{bottom:263.775000px;}
.y36e{bottom:263.910000px;}
.y129{bottom:264.810000px;}
.y1e5{bottom:265.530000px;}
.y22d{bottom:265.710000px;}
.y11{bottom:267.510000px;}
.y2b6{bottom:269.310000px;}
.y225{bottom:269.850000px;}
.y101{bottom:271.110000px;}
.ye4{bottom:273.810000px;}
.y7e{bottom:274.530000px;}
.y20b{bottom:274.710000px;}
.yb2{bottom:275.970000px;}
.y2ff{bottom:275.985000px;}
.y186{bottom:276.330000px;}
.yda{bottom:277.590000px;}
.y4b{bottom:277.950000px;}
.y2c1{bottom:278.310000px;}
.y233{bottom:278.850000px;}
.y267{bottom:282.630000px;}
.y168{bottom:282.810000px;}
.y99{bottom:283.350000px;}
.y364{bottom:284.295000px;}
.y2ec{bottom:286.065000px;}
.y2d5{bottom:287.310000px;}
.y22b{bottom:287.850000px;}
.y113{bottom:288.390000px;}
.yc6{bottom:290.730000px;}
.y2e{bottom:291.810000px;}
.y144{bottom:292.530000px;}
.y284{bottom:293.250000px;}
.y348{bottom:294.150000px;}
.y339{bottom:294.165000px;}
.y32d{bottom:294.195000px;}
.y24b{bottom:295.950000px;}
.y21b{bottom:296.850000px;}
.y1c7{bottom:297.570000px;}
.y29c{bottom:300.270000px;}
.y1f6{bottom:300.810000px;}
.y36d{bottom:304.050000px;}
.y128{bottom:304.950000px;}
.y1e4{bottom:305.670000px;}
.y20a{bottom:305.850000px;}
.y2fe{bottom:307.125000px;}
.y4a{bottom:308.910000px;}
.y2b5{bottom:309.270000px;}
.y224{bottom:309.810000px;}
.y100{bottom:311.070000px;}
.y185{bottom:312.690000px;}
.y266{bottom:313.590000px;}
.ye3{bottom:313.950000px;}
.y7d{bottom:314.490000px;}
.y15e{bottom:314.670000px;}
.y1b0{bottom:316.845000px;}
.y1a2{bottom:317.205000px;}
.yd9{bottom:317.550000px;}
.y66{bottom:317.910000px;}
.y2d4{bottom:318.270000px;}
.y2c0{bottom:318.450000px;}
.y22a{bottom:318.810000px;}
.yc5{bottom:321.870000px;}
.y167{bottom:322.950000px;}
.y363{bottom:324.255000px;}
.y347{bottom:325.110000px;}
.y338{bottom:325.125000px;}
.y32c{bottom:325.155000px;}
.y32b{bottom:325.875000px;}
.y24a{bottom:326.910000px;}
.y22c{bottom:327.855000px;}
.yb1{bottom:328.035000px;}
.y112{bottom:328.395000px;}
.y1c6{bottom:328.755000px;}
.y357{bottom:329.115000px;}
.y29b{bottom:331.455000px;}
.y1aa{bottom:331.950000px;}
.y2d{bottom:331.995000px;}
.y143{bottom:332.715000px;}
.y315{bottom:333.255000px;}
.y283{bottom:333.435000px;}
.y1e3{bottom:336.675000px;}
.y209{bottom:336.855000px;}
.y30e{bottom:337.575000px;}
.y2fd{bottom:338.085000px;}
.y10{bottom:338.655000px;}
.y49{bottom:339.915000px;}
.y2b4{bottom:340.455000px;}
.y230{bottom:340.995000px;}
.y36c{bottom:344.055000px;}
.y221{bottom:344.595000px;}
.y265{bottom:344.775000px;}
.y127{bottom:344.955000px;}
.y21a{bottom:345.135000px;}
.y2bf{bottom:349.455000px;}
.y223{bottom:349.635000px;}
.y229{bottom:349.995000px;}
.yff{bottom:351.075000px;}
.ye2{bottom:353.955000px;}
.y7c{bottom:354.675000px;}
.y346{bottom:356.295000px;}
.yd8{bottom:357.555000px;}
.y65{bottom:357.915000px;}
.yb0{bottom:358.995000px;}
.y111{bottom:359.535000px;}
.y1c5{bottom:359.715000px;}
.y29a{bottom:362.415000px;}
.y2c{bottom:362.955000px;}
.y98{bottom:366.555000px;}
.y1e2{bottom:367.815000px;}
.y208{bottom:367.995000px;}
.y48{bottom:371.055000px;}
.y2b3{bottom:371.595000px;}
.y22f{bottom:371.955000px;}
.y142{bottom:372.675000px;}
.y282{bottom:373.395000px;}
.yc4{bottom:373.935000px;}
.y30d{bottom:375.015000px;}
.y264{bottom:375.735000px;}
.y219{bottom:376.995000px;}
.y184{bottom:377.355000px;}
.y2fc{bottom:378.225000px;}
.y2be{bottom:380.595000px;}
.y23c{bottom:380.955000px;}
.y36b{bottom:384.195000px;}
.y126{bottom:384.915000px;}
.y345{bottom:387.255000px;}
.y35f{bottom:387.975000px;}
.y222{bottom:389.955000px;}
.yaf{bottom:390.135000px;}
.y1c4{bottom:390.855000px;}
.yfe{bottom:391.215000px;}
.y299{bottom:393.555000px;}
.ye1{bottom:393.915000px;}
.y15d{bottom:394.815000px;}
.y7b{bottom:395.895000px;}
.y97{bottom:397.515000px;}
.yd7{bottom:397.695000px;}
.y64{bottom:398.055000px;}
.y1e1{bottom:398.775000px;}
.y207{bottom:398.955000px;}
.y110{bottom:399.495000px;}
.y2b{bottom:402.915000px;}
.yc3{bottom:404.895000px;}
.y218{bottom:407.955000px;}
.y183{bottom:409.575000px;}
.yf{bottom:409.755000px;}
.y47{bottom:410.655000px;}
.y2b2{bottom:411.555000px;}
.y23b{bottom:411.915000px;}
.y30c{bottom:412.455000px;}
.y141{bottom:412.815000px;}
.y281{bottom:413.535000px;}
.y125{bottom:416.055000px;}
.y367{bottom:416.955000px;}
.y263{bottom:417.135000px;}
.y232{bottom:420.195000px;}
.y2d3{bottom:420.555000px;}
.y228{bottom:420.915000px;}
.yae{bottom:421.095000px;}
.y337{bottom:423.105000px;}
.y36a{bottom:424.155000px;}
.y298{bottom:424.695000px;}
.ye0{bottom:425.055000px;}
.y15c{bottom:425.775000px;}
.y96{bottom:428.655000px;}
.y249{bottom:429.015000px;}
.y1e0{bottom:429.915000px;}
.y10f{bottom:430.635000px;}
.yfd{bottom:431.175000px;}
.y1c3{bottom:432.255000px;}
.y2a{bottom:434.055000px;}
.y2e7{bottom:435.315000px;}
.yc2{bottom:436.035000px;}
.y7a{bottom:437.295000px;}
.yd6{bottom:437.655000px;}
.y63{bottom:438.015000px;}
.y217{bottom:438.915000px;}
.y182{bottom:441.795000px;}
.y2b1{bottom:442.695000px;}
.y166{bottom:443.055000px;}
.y140{bottom:443.775000px;}
.y124{bottom:447.015000px;}
.y262{bottom:448.095000px;}
.y30b{bottom:449.895000px;}
.y46{bottom:451.155000px;}
.y2d2{bottom:451.695000px;}
.y23a{bottom:452.055000px;}
.yad{bottom:452.235000px;}
.y366{bottom:453.135000px;}
.y280{bottom:453.495000px;}
.ydf{bottom:456.015000px;}
.y15b{bottom:456.915000px;}
.y95{bottom:459.615000px;}
.y248{bottom:460.155000px;}
.y1df{bottom:460.875000px;}
.y206{bottom:461.055000px;}
.y373{bottom:461.955000px;}
.y369{bottom:464.295000px;}
.y1f5{bottom:464.655000px;}
.y29{bottom:465.015000px;}
.yc1{bottom:466.995000px;}
.y216{bottom:470.055000px;}
.y10e{bottom:470.595000px;}
.yfc{bottom:471.315000px;}
.y1c2{bottom:472.755000px;}
.y2b0{bottom:473.835000px;}
.y165{bottom:474.015000px;}
.y181{bottom:474.195000px;}
.y13f{bottom:474.915000px;}
.yd5{bottom:477.795000px;}
.y62{bottom:478.155000px;}
.y79{bottom:478.695000px;}
.y261{bottom:479.235000px;}
.y45{bottom:482.115000px;}
.y2bd{bottom:482.835000px;}
.y239{bottom:483.015000px;}
.ye{bottom:483.375000px;}
.yde{bottom:487.155000px;}
.y30a{bottom:487.335000px;}
.y15a{bottom:487.875000px;}
.y94{bottom:490.755000px;}
.y205{bottom:492.015000px;}
.y27f{bottom:493.635000px;}
.y297{bottom:495.795000px;}
.y28{bottom:496.155000px;}
.yc0{bottom:498.135000px;}
.y247{bottom:500.115000px;}
.y1de{bottom:500.655000px;}
.y215{bottom:501.015000px;}
.y10d{bottom:501.735000px;}
.y1c1{bottom:503.895000px;}
.y164{bottom:505.155000px;}
.y368{bottom:505.335000px;}
.y180{bottom:506.415000px;}
.y260{bottom:510.195000px;}
.yfb{bottom:511.275000px;}
.y19d{bottom:511.455000px;}
.y44{bottom:513.255000px;}
.y2af{bottom:513.795000px;}
.y238{bottom:514.155000px;}
.y13e{bottom:514.515000px;}
.yac{bottom:515.595000px;}
.yd4{bottom:517.755000px;}
.y61{bottom:518.115000px;}
.y78{bottom:519.915000px;}
.y93{bottom:521.715000px;}
.y2d1{bottom:522.795000px;}
.y204{bottom:523.155000px;}
.y309{bottom:524.775000px;}
.y296{bottom:526.755000px;}
.y1ed{bottom:527.115000px;}
.y159{bottom:527.835000px;}
.ybf{bottom:529.095000px;}
.y246{bottom:531.255000px;}
.y214{bottom:532.155000px;}
.y27e{bottom:533.595000px;}
.y1c0{bottom:534.855000px;}
.y27{bottom:536.115000px;}
.y17f{bottom:538.635000px;}
.y1dd{bottom:540.975000px;}
.y25f{bottom:541.335000px;}
.y10c{bottom:541.695000px;}
.y43{bottom:544.215000px;}
.y23e{bottom:544.755000px;}
.y2ae{bottom:544.935000px;}
.y1f4{bottom:545.115000px;}
.yab{bottom:546.735000px;}
.y123{bottom:549.255000px;}
.yfa{bottom:551.415000px;}
.y92{bottom:552.855000px;}
.y13d{bottom:553.755000px;}
.y2d0{bottom:553.935000px;}
.y203{bottom:554.115000px;}
.y295{bottom:557.895000px;}
.y60{bottom:558.255000px;}
.y158{bottom:558.975000px;}
.yd{bottom:559.515000px;}
.ybe{bottom:560.235000px;}
.y77{bottom:561.315000px;}
.y245{bottom:562.215000px;}
.y213{bottom:563.115000px;}
.y1bf{bottom:565.995000px;}
.y26{bottom:567.255000px;}
.yd3{bottom:570.315000px;}
.y17e{bottom:571.035000px;}
.y25e{bottom:572.295000px;}
.y27d{bottom:573.735000px;}
.y42{bottom:575.355000px;}
.y2bc{bottom:575.895000px;}
.y1f3{bottom:576.255000px;}
.y13c{bottom:577.515000px;}
.yaa{bottom:577.695000px;}
.y350{bottom:578.265000px;}
.y122{bottom:580.215000px;}
.y1dc{bottom:581.115000px;}
.y10b{bottom:581.835000px;}
.yf9{bottom:582.375000px;}
.y91{bottom:583.815000px;}
.y22e{bottom:584.535000px;}
.y2ad{bottom:585.075000px;}
.y202{bottom:585.255000px;}
.ydd{bottom:589.215000px;}
.y157{bottom:589.935000px;}
.ybd{bottom:591.195000px;}
.y212{bottom:594.255000px;}
.y1be{bottom:596.985000px;}
.y5f{bottom:597.885000px;}
.y294{bottom:598.065000px;}
.y25{bottom:598.245000px;}
.y308{bottom:599.865000px;}
.yd2{bottom:601.305000px;}
.y244{bottom:602.025000px;}
.y76{bottom:602.745000px;}
.y17d{bottom:603.285000px;}
.y25d{bottom:603.465000px;}
.y41{bottom:606.345000px;}
.y2bb{bottom:607.065000px;}
.y1f2{bottom:607.245000px;}
.ya9{bottom:608.865000px;}
.y121{bottom:611.385000px;}
.y1db{bottom:612.105000px;}
.y310{bottom:613.410000px;}
.yf8{bottom:613.545000px;}
.y27c{bottom:613.725000px;}
.y2ac{bottom:616.065000px;}
.y201{bottom:616.245000px;}
.ydc{bottom:620.385000px;}
.ybc{bottom:622.365000px;}
.y10a{bottom:623.085000px;}
.y2cf{bottom:625.065000px;}
.y13b{bottom:625.245000px;}
.yc{bottom:626.865000px;}
.y1bd{bottom:628.125000px;}
.y293{bottom:629.025000px;}
.y24{bottom:629.385000px;}
.y156{bottom:629.745000px;}
.yd1{bottom:632.445000px;}
.y17c{bottom:635.685000px;}
.y90{bottom:635.865000px;}
.y307{bottom:637.305000px;}
.y1ec{bottom:637.665000px;}
.y5e{bottom:638.385000px;}
.ya8{bottom:639.825000px;}
.y120{bottom:642.345000px;}
.y1da{bottom:643.245000px;}
.y75{bottom:643.965000px;}
.y25c{bottom:644.865000px;}
.y40{bottom:646.125000px;}
.y2ab{bottom:647.205000px;}
.y1f1{bottom:647.385000px;}
.y13a{bottom:649.005000px;}
.y220{bottom:651.345000px;}
.y1a9{bottom:651.855000px;}
.yf7{bottom:653.145000px;}
.ybb{bottom:653.325000px;}
.y27b{bottom:653.865000px;}
.y2de{bottom:655.665000px;}
.y2ce{bottom:656.205000px;}
.y200{bottom:656.385000px;}
.y292{bottom:660.165000px;}
.y23{bottom:660.345000px;}
.y2fb{bottom:662.325000px;}
.y109{bottom:663.225000px;}
.yd0{bottom:663.405000px;}
.y8f{bottom:667.005000px;}
.y17b{bottom:667.905000px;}
.y329{bottom:668.130000px;}
.y163{bottom:669.345000px;}
.y155{bottom:670.065000px;}
.ya7{bottom:672.225000px;}
.y139{bottom:672.765000px;}
.y11f{bottom:673.485000px;}
.y1d9{bottom:674.205000px;}
.y25b{bottom:675.825000px;}
.y2aa{bottom:678.165000px;}
.y5d{bottom:678.345000px;}
.yed{bottom:679.785000px;}
.y243{bottom:682.485000px;}
.yba{bottom:684.465000px;}
.y74{bottom:685.365000px;}
.y1ab{bottom:685.725000px;}
.y199{bottom:685.905000px;}
.y3f{bottom:686.445000px;}
.y2cd{bottom:687.165000px;}
.y1ff{bottom:687.345000px;}
.y291{bottom:691.125000px;}
.y22{bottom:691.485000px;}
.y27a{bottom:693.825000px;}
.yb{bottom:694.185000px;}
.ycf{bottom:694.545000px;}
.y138{bottom:696.525000px;}
.y8e{bottom:697.965000px;}
.y17a{bottom:700.125000px;}
.y162{bottom:700.485000px;}
.ya6{bottom:703.185000px;}
.y11e{bottom:704.445000px;}
.y25a{bottom:706.965000px;}
.y2a9{bottom:709.305000px;}
.y5c{bottom:709.485000px;}
.y154{bottom:710.205000px;}
.y242{bottom:713.445000px;}
.y1d8{bottom:714.345000px;}
.y3e{bottom:717.585000px;}
.y2cc{bottom:718.305000px;}
.y1fe{bottom:718.485000px;}
.y137{bottom:720.465000px;}
.y290{bottom:722.265000px;}
.ydb{bottom:722.445000px;}
.y279{bottom:724.965000px;}
.y108{bottom:725.325000px;}
.y73{bottom:726.765000px;}
.y8d{bottom:729.105000px;}
.y21{bottom:731.445000px;}
.y179{bottom:732.525000px;}
.ya5{bottom:734.325000px;}
.yb9{bottom:736.485000px;}
.y259{bottom:737.925000px;}
.y2a8{bottom:740.265000px;}
.y5b{bottom:740.445000px;}
.y153{bottom:741.165000px;}
.y11d{bottom:744.585000px;}
.y1d7{bottom:745.305000px;}
.yce{bottom:746.565000px;}
.y3d{bottom:748.545000px;}
.y30f{bottom:748.950000px;}
.y2cb{bottom:749.265000px;}
.y1fd{bottom:749.445000px;}
.y278{bottom:755.925000px;}
.y23d{bottom:758.445000px;}
.y8c{bottom:760.065000px;}
.y136{bottom:760.425000px;}
.ya{bottom:761.505000px;}
.y28f{bottom:762.405000px;}
.y20{bottom:762.585000px;}
.y178{bottom:764.745000px;}
.ya4{bottom:765.285000px;}
.y227{bottom:766.725000px;}
.yb8{bottom:767.445000px;}
.y72{bottom:767.985000px;}
.y258{bottom:768.885000px;}
.y2ba{bottom:771.405000px;}
.y1bc{bottom:771.585000px;}
.y11c{bottom:775.545000px;}
.y1d6{bottom:776.445000px;}
.ycd{bottom:777.525000px;}
.y3c{bottom:779.685000px;}
.y5a{bottom:780.225000px;}
.y2a7{bottom:780.405000px;}
.y1fc{bottom:780.585000px;}
.y152{bottom:780.945000px;}
.y241{bottom:784.545000px;}
.y135{bottom:786.525000px;}
.y277{bottom:786.885000px;}
.y211{bottom:789.585000px;}
.y8b{bottom:791.205000px;}
.y28e{bottom:793.365000px;}
.y1f{bottom:793.545000px;}
.ya3{bottom:796.425000px;}
.y177{bottom:796.965000px;}
.yb7{bottom:798.585000px;}
.y257{bottom:800.025000px;}
.y1bb{bottom:802.545000px;}
.y107{bottom:806.685000px;}
.y1d5{bottom:807.405000px;}
.ycc{bottom:808.665000px;}
.y71{bottom:809.385000px;}
.y3b{bottom:810.645000px;}
.y2a6{bottom:811.365000px;}
.y1fb{bottom:811.545000px;}
.y240{bottom:815.685000px;}
.y276{bottom:818.025000px;}
.y59{bottom:820.545000px;}
.y151{bottom:821.265000px;}
.y8a{bottom:822.165000px;}
.y28d{bottom:824.325000px;}
.y1e{bottom:824.685000px;}
.y9{bottom:828.645000px;}
.y196{bottom:829.185000px;}
.y176{bottom:829.365000px;}
.yb6{bottom:829.545000px;}
.y256{bottom:831.165000px;}
.y1ba{bottom:833.685000px;}
.y134{bottom:836.385000px;}
.y11b{bottom:837.645000px;}
.y1d4{bottom:838.545000px;}
.ycb{bottom:839.625000px;}
.y2a5{bottom:842.505000px;}
.y1eb{bottom:842.685000px;}
.yeb{bottom:844.305000px;}
.y106{bottom:846.285000px;}
.y89{bottom:847.185000px;}
.y14e{bottom:847.545000px;}
.y275{bottom:848.985000px;}
.ya2{bottom:849.705000px;}
.y3a{bottom:850.425000px;}
.y70{bottom:850.785000px;}
.y2ca{bottom:851.505000px;}
.y210{bottom:851.685000px;}
.y28c{bottom:855.465000px;}
.y161{bottom:855.645000px;}
.y58{bottom:860.685000px;}
.y175{bottom:861.585000px;}
.y1d{bottom:864.690000px;}
.y2d8{bottom:867.030000px;}
.yca{bottom:870.810000px;}
.y255{bottom:872.430000px;}
.y2a4{bottom:873.510000px;}
.y1b9{bottom:873.690000px;}
.y11a{bottom:877.470000px;}
.y1d3{bottom:878.550000px;}
.y274{bottom:880.170000px;}
.y88{bottom:880.710000px;}
.y8{bottom:881.070000px;}
.y2c9{bottom:882.510000px;}
.y20f{bottom:882.690000px;}
.y132{bottom:886.290000px;}
.y105{bottom:886.830000px;}
.y39{bottom:890.430000px;}
.y57{bottom:891.690000px;}
.y6f{bottom:892.050000px;}
.y174{bottom:893.850000px;}
.y28b{bottom:895.650000px;}
.y1c{bottom:895.830000px;}
.ya1{bottom:901.770000px;}
.y254{bottom:903.570000px;}
.y2a3{bottom:904.650000px;}
.y1b8{bottom:904.830000px;}
.y1d2{bottom:909.510000px;}
.y273{bottom:911.130000px;}
.y87{bottom:911.850000px;}
.y2c8{bottom:913.650000px;}
.y1fa{bottom:913.830000px;}
.yea{bottom:917.790000px;}
.y14b{bottom:922.650000px;}
.y56{bottom:922.830000px;}
.y173{bottom:926.250000px;}
.y28a{bottom:926.610000px;}
.y1b{bottom:926.790000px;}
.y7{bottom:928.050000px;}
.y38{bottom:930.570000px;}
.ya0{bottom:932.910000px;}
.y6e{bottom:933.450000px;}
.y253{bottom:934.530000px;}
.y1b7{bottom:935.790000px;}
.y130{bottom:935.970000px;}
.y1d1{bottom:940.650000px;}
.y272{bottom:942.270000px;}
.y86{bottom:942.810000px;}
.y2c7{bottom:944.610000px;}
.y1ea{bottom:944.790000px;}
.y55{bottom:953.790000px;}
.y1a8{bottom:954.180000px;}
.y18a{bottom:957.390000px;}
.y23f{bottom:957.570000px;}
.y289{bottom:957.750000px;}
.ye9{bottom:957.930000px;}
.y172{bottom:958.470000px;}
.y9f{bottom:963.870000px;}
.y252{bottom:965.670000px;}
.y1a{bottom:966.930000px;}
.y37{bottom:970.530000px;}
.y1d0{bottom:971.610000px;}
.y85{bottom:973.950000px;}
.y6d{bottom:974.850000px;}
.y2a2{bottom:975.750000px;}
.y1e9{bottom:975.930000px;}
.y271{bottom:983.670000px;}
.y6{bottom:983.850000px;}
.y54{bottom:984.930000px;}
.y119{bottom:988.890000px;}
.y171{bottom:990.870000px;}
.y9e{bottom:995.010000px;}
.y251{bottom:996.630000px;}
.y148{bottom:997.710000px;}
.y19{bottom:997.890000px;}
.y1cf{bottom:1002.750000px;}
.y1e8{bottom:1006.890000px;}
.y36{bottom:1010.670000px;}
.y191{bottom:1011.930000px;}
.y270{bottom:1014.630000px;}
.y53{bottom:1015.890000px;}
.y6c{bottom:1016.070000px;}
.y12e{bottom:1016.790000px;}
.y118{bottom:1020.030000px;}
.y170{bottom:1023.090000px;}
.y84{bottom:1025.970000px;}
.y250{bottom:1027.770000px;}
.y288{bottom:1028.850000px;}
.y18{bottom:1029.030000px;}
.y5{bottom:1030.650000px;}
.y1ce{bottom:1033.710000px;}
.y2d6{bottom:1036.950000px;}
.y2a1{bottom:1037.850000px;}
.y1e7{bottom:1038.030000px;}
.y26f{bottom:1045.770000px;}
.y1b6{bottom:1046.310000px;}
.y2c6{bottom:1046.850000px;}
.y52{bottom:1047.030000px;}
.y35{bottom:1050.630000px;}
.y16f{bottom:1055.310000px;}
.y83{bottom:1057.110000px;}
.y6b{bottom:1057.470000px;}
.y24f{bottom:1058.730000px;}
.y117{bottom:1059.630000px;}
.y17{bottom:1059.990000px;}
.y12c{bottom:1066.650000px;}
.y4{bottom:1068.630000px;}
.y1b5{bottom:1068.990000px;}
.y1cd{bottom:1073.670000px;}
.y26e{bottom:1076.730000px;}
.y51{bottom:1077.990000px;}
.y1cc{bottom:1085.730000px;}
.y16e{bottom:1087.710000px;}
.y82{bottom:1088.070000px;}
.y34{bottom:1091.130000px;}
.y6a{bottom:1098.870000px;}
.y16{bottom:1099.770000px;}
.ye8{bottom:1100.130000px;}
.y3{bottom:1105.530000px;}
.y26d{bottom:1107.870000px;}
.y2c5{bottom:1108.950000px;}
.y50{bottom:1109.130000px;}
.y16d{bottom:1113.090000px;}
.y9d{bottom:1117.410000px;}
.y2{bottom:1138.500000px;}
.y26c{bottom:1138.860000px;}
.y15{bottom:1139.760000px;}
.y4f{bottom:1140.120000px;}
.y16c{bottom:1141.200000px;}
.y1{bottom:1179.180000px;}
.y14{bottom:1184.400000px;}
.hf{height:36.336094px;}
.h29{height:38.685000px;}
.h10{height:47.344922px;}
.h15{height:48.945000px;}
.h16{height:48.982500px;}
.h13{height:49.125000px;}
.h17{height:49.140000px;}
.h11{height:49.162500px;}
.h40{height:53.868164px;}
.h1c{height:56.320312px;}
.h1f{height:60.682500px;}
.h1b{height:62.184375px;}
.h27{height:64.546875px;}
.h18{height:68.205000px;}
.h30{height:69.086250px;}
.hb{height:70.628906px;}
.h9{height:70.664062px;}
.ha{height:72.562500px;}
.h1a{height:74.182500px;}
.h19{height:74.325000px;}
.hd{height:75.093750px;}
.h14{height:80.085000px;}
.h28{height:80.441367px;}
.he{height:80.464922px;}
.h20{height:81.000000px;}
.hc{height:82.676953px;}
.h36{height:96.465000px;}
.h3c{height:96.501000px;}
.h1e{height:104.565000px;}
.h21{height:109.650000px;}
.h23{height:109.830000px;}
.h33{height:111.225000px;}
.h4{height:112.640625px;}
.h8{height:118.008984px;}
.h26{height:118.904062px;}
.h25{height:125.840391px;}
.h5{height:129.315234px;}
.h24{height:130.341000px;}
.h22{height:130.521000px;}
.h2{height:137.421562px;}
.h2e{height:139.312500px;}
.h7{height:141.328125px;}
.h2d{height:148.521000px;}
.h3{height:150.187500px;}
.h6{height:153.341016px;}
.h3f{height:155.175000px;}
.h38{height:155.355000px;}
.h1d{height:159.105000px;}
.h12{height:163.800000px;}
.h2a{height:169.185000px;}
.h35{height:186.135000px;}
.h3d{height:186.330000px;}
.h2b{height:210.630000px;}
.h2c{height:219.630000px;}
.h3e{height:248.430000px;}
.h3a{height:248.460000px;}
.h34{height:279.420000px;}
.h39{height:341.490000px;}
.h37{height:341.520000px;}
.h2f{height:403.590000px;}
.h3b{height:403.620000px;}
.h31{height:892.980000px;}
.h32{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:105.501000px;}
.w19{width:116.280000px;}
.w16{width:124.414500px;}
.w1b{width:126.741000px;}
.w1c{width:137.505000px;}
.w2{width:161.269500px;}
.w5{width:161.295000px;}
.w4{width:161.310000px;}
.w3{width:161.475000px;}
.w17{width:169.365000px;}
.w7{width:209.730000px;}
.w6{width:214.039500px;}
.w8{width:216.015000px;}
.w10{width:235.815000px;}
.wf{width:237.435000px;}
.wb{width:257.055000px;}
.wc{width:257.115000px;}
.we{width:257.235000px;}
.w1a{width:275.790000px;}
.w12{width:283.879500px;}
.wa{width:323.355000px;}
.w9{width:323.479500px;}
.w13{width:362.955000px;}
.wd{width:544.410000px;}
.w11{width:647.550000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:1262.880000px;}
.w15{width:1263.000000px;}
.x0{left:0.000000px;}
.x30{left:7.729500px;}
.x53{left:9.210000px;}
.x25{left:10.470000px;}
.x49{left:12.229500px;}
.x5c{left:14.040000px;}
.x21{left:16.369500px;}
.x45{left:18.169500px;}
.x59{left:20.145000px;}
.x55{left:21.420000px;}
.x24{left:24.870000px;}
.x23{left:26.629500px;}
.x50{left:29.698500px;}
.x27{left:30.810000px;}
.x2e{left:33.660000px;}
.x4d{left:34.723500px;}
.x22{left:36.343500px;}
.x26{left:37.470000px;}
.x33{left:40.710000px;}
.x5d{left:42.120000px;}
.x32{left:43.183500px;}
.x20{left:46.603500px;}
.x28{left:49.845000px;}
.x2c{left:52.183500px;}
.x4c{left:55.423500px;}
.x5b{left:58.890000px;}
.x48{left:61.903500px;}
.x57{left:65.910000px;}
.x38{left:70.725000px;}
.x1f{left:73.650000px;}
.x1b{left:75.043500px;}
.x1d{left:77.070000px;}
.x47{left:80.443500px;}
.x4b{left:94.303500px;}
.x3f{left:95.565000px;}
.x4f{left:98.641500px;}
.x35{left:101.010000px;}
.x4a{left:103.303500px;}
.x3b{left:105.510000px;}
.x37{left:110.010000px;}
.x44{left:117.163500px;}
.x1a{left:119.926500px;}
.x2b{left:125.866500px;}
.x6{left:127.656000px;}
.x41{left:129.096000px;}
.x42{left:144.036000px;}
.x12{left:145.656000px;}
.x16{left:154.650000px;}
.x3d{left:156.060000px;}
.x3c{left:157.860000px;}
.x18{left:159.690000px;}
.x14{left:163.650000px;}
.x8{left:165.810000px;}
.x7{left:167.430000px;}
.xa{left:181.470000px;}
.x19{left:186.690000px;}
.x34{left:189.585000px;}
.x29{left:208.650000px;}
.x3{left:211.530000px;}
.x3a{left:214.425000px;}
.xc{left:216.750000px;}
.x51{left:223.785000px;}
.x9{left:224.850000px;}
.x2a{left:235.650000px;}
.x1{left:246.450000px;}
.x39{left:249.150000px;}
.x5{left:258.510000px;}
.x2{left:269.310000px;}
.x1c{left:281.925000px;}
.x4{left:289.695000px;}
.xf{left:295.455000px;}
.x10{left:323.895000px;}
.x43{left:333.615000px;}
.x2d{left:340.635000px;}
.xb{left:389.595000px;}
.x52{left:393.885000px;}
.x46{left:404.535000px;}
.xe{left:426.495000px;}
.x31{left:437.475000px;}
.x15{left:439.095000px;}
.x13{left:441.435000px;}
.x11{left:443.955000px;}
.x17{left:446.655000px;}
.x36{left:465.735000px;}
.x54{left:500.115000px;}
.x3e{left:524.100000px;}
.x40{left:525.720000px;}
.x2f{left:551.100000px;}
.x5e{left:566.385000px;}
.x1e{left:606.180000px;}
.x56{left:617.115000px;}
.x4e{left:622.515000px;}
.xd{left:765.510000px;}
.x60{left:769.470000px;}
.x5f{left:780.990000px;}
.x58{left:893.640000px;}
.x5a{left:1021.110000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v7{vertical-align:23.680000pt;}
.v1{vertical-align:29.440000pt;}
.v8{vertical-align:42.880000pt;}
.v4{vertical-align:48.640000pt;}
.v5{vertical-align:51.200000pt;}
.v6{vertical-align:72.320000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-0.837333pt;}
.ls2a{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.597333pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.272533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.172267pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.069867pt;}
.ls16{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.039040pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080640pt;}
.ls3{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.196267pt;}
.lse{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.372480pt;}
.ls22{letter-spacing:2.490240pt;}
.ls29{letter-spacing:5.920000pt;}
.ls27{letter-spacing:11.040000pt;}
.ls10{letter-spacing:12.320000pt;}
.ls28{letter-spacing:14.880000pt;}
.ls12{letter-spacing:15.520000pt;}
.ls1e{letter-spacing:16.640000pt;}
.ls20{letter-spacing:18.112000pt;}
.ls33{letter-spacing:21.120000pt;}
.ls2f{letter-spacing:23.808000pt;}
.ls19{letter-spacing:30.208000pt;}
.lsb{letter-spacing:32.000000pt;}
.ls1c{letter-spacing:39.808000pt;}
.ls18{letter-spacing:48.768000pt;}
.ls32{letter-spacing:55.808000pt;}
.ls1f{letter-spacing:57.088000pt;}
.lsa{letter-spacing:63.978667pt;}
.ls1d{letter-spacing:78.208000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws0{word-spacing:-32.720427pt;}
.ws3{word-spacing:-26.720000pt;}
.ws2{word-spacing:-26.432000pt;}
.ws24{word-spacing:-18.048000pt;}
.ws13{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws21{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws22{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.360000pt;}
.ws20{word-spacing:-15.296000pt;}
.ws25{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.208000pt;}
.ws19{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-13.824000pt;}
.ws1a{word-spacing:-13.760000pt;}
.ws14{word-spacing:-13.664000pt;}
.ws8{word-spacing:-12.836267pt;}
.ws6{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.615680pt;}
.wsd{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.880000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.wse{word-spacing:-10.400000pt;}
.wsf{word-spacing:-10.240000pt;}
.ws23{word-spacing:-10.122667pt;}
.ws12{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:2.858667pt;}
.ws16{word-spacing:3.306667pt;}
.ws1c{word-spacing:3.946667pt;}
._15{margin-left:-14.432000pt;}
._18{margin-left:-12.704000pt;}
._1c{margin-left:-10.976000pt;}
._17{margin-left:-9.184000pt;}
._1b{margin-left:-7.917653pt;}
._1a{margin-left:-6.343040pt;}
._16{margin-left:-3.808000pt;}
._e{margin-left:-2.248320pt;}
._1{margin-left:-1.111040pt;}
._0{width:1.288320pt;}
._1e{width:2.449707pt;}
._12{width:3.720320pt;}
._11{width:5.120000pt;}
._3{width:6.659413pt;}
._2{width:7.722667pt;}
._23{width:8.810667pt;}
._27{width:10.036693pt;}
._26{width:11.776000pt;}
._4{width:12.672000pt;}
._5{width:13.696000pt;}
._f{width:15.040000pt;}
._1d{width:16.305067pt;}
._10{width:17.770667pt;}
._c{width:19.054507pt;}
._b{width:20.119040pt;}
._d{width:21.145387pt;}
._8{width:22.122667pt;}
._9{width:23.552000pt;}
._a{width:24.823680pt;}
._24{width:26.263040pt;}
._21{width:27.392000pt;}
._22{width:28.544000pt;}
._7{width:29.751680pt;}
._6{width:30.976000pt;}
._25{width:32.192000pt;}
._28{width:33.344000pt;}
._29{width:34.624000pt;}
._2f{width:35.520000pt;}
._35{width:36.800000pt;}
._36{width:37.824000pt;}
._6e{width:38.848000pt;}
._33{width:39.808000pt;}
._3d{width:40.768000pt;}
._2c{width:41.898667pt;}
._3b{width:43.712000pt;}
._3c{width:44.800000pt;}
._6b{width:45.888000pt;}
._2b{width:47.552000pt;}
._38{width:48.640000pt;}
._37{width:49.687040pt;}
._1f{width:50.624000pt;}
._20{width:52.106667pt;}
._58{width:53.056000pt;}
._59{width:54.912000pt;}
._4a{width:55.936000pt;}
._42{width:57.984000pt;}
._43{width:59.136000pt;}
._13{width:60.800000pt;}
._14{width:61.770667pt;}
._2d{width:62.720000pt;}
._2e{width:64.064000pt;}
._30{width:66.231680pt;}
._3f{width:67.584000pt;}
._40{width:68.544000pt;}
._32{width:69.888000pt;}
._49{width:71.063040pt;}
._4b{width:72.960000pt;}
._39{width:75.470720pt;}
._3a{width:76.864000pt;}
._6f{width:77.888000pt;}
._19{width:79.978667pt;}
._41{width:81.194667pt;}
._62{width:85.490987pt;}
._31{width:86.464000pt;}
._4d{width:89.111040pt;}
._44{width:91.904000pt;}
._45{width:92.951680pt;}
._54{width:95.808000pt;}
._5e{width:97.088000pt;}
._60{width:100.032000pt;}
._56{width:101.504000pt;}
._57{width:103.168000pt;}
._4e{width:104.320000pt;}
._52{width:105.728000pt;}
._4c{width:107.712000pt;}
._55{width:111.575040pt;}
._68{width:115.671040pt;}
._50{width:118.144000pt;}
._4f{width:119.360000pt;}
._5c{width:123.776000pt;}
._66{width:125.504000pt;}
._64{width:130.560000pt;}
._5d{width:135.018667pt;}
._6d{width:137.408000pt;}
._48{width:138.368000pt;}
._51{width:141.248000pt;}
._69{width:143.168000pt;}
._65{width:146.432000pt;}
._5a{width:151.383040pt;}
._47{width:156.224000pt;}
._6c{width:166.656000pt;}
._53{width:168.128000pt;}
._67{width:176.320000pt;}
._6a{width:185.536000pt;}
._72{width:196.416000pt;}
._5f{width:200.064000pt;}
._63{width:204.544000pt;}
._70{width:210.752000pt;}
._71{width:218.048000pt;}
._5b{width:228.800000pt;}
._46{width:290.464000pt;}
._61{width:334.969387pt;}
._3e{width:345.664000pt;}
._2a{width:436.032000pt;}
._34{width:497.794347pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsb{font-size:56.320000pt;}
.fsd{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:4.640000pt;}
.y1ac{bottom:4.800000pt;}
.y198{bottom:5.120000pt;}
.y195{bottom:7.360000pt;}
.y190{bottom:11.040000pt;}
.y2d7{bottom:11.680000pt;}
.y1a1{bottom:11.840000pt;}
.y1b4{bottom:11.866667pt;}
.y2f2{bottom:11.986667pt;}
.y2fa{bottom:11.988000pt;}
.y1af{bottom:12.000000pt;}
.y1a7{bottom:12.026667pt;}
.y343{bottom:12.946667pt;}
.y325{bottom:12.948000pt;}
.y31e{bottom:12.960000pt;}
.y336{bottom:13.106667pt;}
.y356{bottom:13.120000pt;}
.y14a{bottom:15.680000pt;}
.y34c{bottom:15.986667pt;}
.yf6{bottom:16.800000pt;}
.y14d{bottom:18.400000pt;}
.y150{bottom:18.440000pt;}
.y12d{bottom:20.800000pt;}
.yec{bottom:20.840000pt;}
.y133{bottom:20.960000pt;}
.y12f{bottom:21.120000pt;}
.y306{bottom:24.640000pt;}
.y34f{bottom:28.306667pt;}
.y18f{bottom:29.440000pt;}
.y2f9{bottom:30.228000pt;}
.y1b3{bottom:30.266667pt;}
.y2e6{bottom:30.400000pt;}
.yf1{bottom:30.560000pt;}
.y19b{bottom:31.200000pt;}
.y197{bottom:31.560000pt;}
.y194{bottom:33.760000pt;}
.y314{bottom:34.560000pt;}
.y1a0{bottom:38.240000pt;}
.y1ae{bottom:38.400000pt;}
.y1a6{bottom:38.426667pt;}
.y35c{bottom:40.466667pt;}
.y324{bottom:40.468000pt;}
.y333{bottom:40.626667pt;}
.y31d{bottom:40.640000pt;}
.y362{bottom:40.666667pt;}
.y355{bottom:40.680000pt;}
.y34d{bottom:42.066667pt;}
.y149{bottom:43.360000pt;}
.y34b{bottom:43.506667pt;}
.y35e{bottom:43.680000pt;}
.yf4{bottom:44.480000pt;}
.y14f{bottom:45.960000pt;}
.y14c{bottom:46.080000pt;}
.y2f5{bottom:47.188000pt;}
.y18e{bottom:47.840000pt;}
.y311{bottom:48.320000pt;}
.y131{bottom:48.640000pt;}
.y1b2{bottom:48.666667pt;}
.y19a{bottom:49.600000pt;}
.y2ee{bottom:51.226667pt;}
.y193{bottom:52.160000pt;}
.y335{bottom:54.386667pt;}
.y328{bottom:54.388000pt;}
.y35d{bottom:54.426667pt;}
.y34e{bottom:55.826667pt;}
.y2f8{bottom:56.628000pt;}
.y19f{bottom:56.640000pt;}
.y1ad{bottom:56.800000pt;}
.y1a5{bottom:56.826667pt;}
.yf0{bottom:58.240000pt;}
.y313{bottom:62.080000pt;}
.y2dd{bottom:64.800000pt;}
.y2f1{bottom:64.826667pt;}
.y2f4{bottom:65.588000pt;}
.y323{bottom:68.148000pt;}
.y31c{bottom:68.160000pt;}
.y341{bottom:68.186667pt;}
.y33{bottom:68.192000pt;}
.y359{bottom:68.320000pt;}
.y332{bottom:68.346667pt;}
.y354{bottom:68.360000pt;}
.y2d9{bottom:69.600000pt;}
.y2ed{bottom:69.626667pt;}
.y192{bottom:70.560000pt;}
.y32a{bottom:71.200000pt;}
.y34a{bottom:71.226667pt;}
.yf3{bottom:72.000000pt;}
.y18d{bottom:74.240000pt;}
.y19e{bottom:75.066667pt;}
.y2e5{bottom:75.200000pt;}
.y1a4{bottom:75.226667pt;}
.y312{bottom:76.000000pt;}
.y2e0{bottom:78.880000pt;}
.y305{bottom:79.680000pt;}
.y342{bottom:81.946667pt;}
.y326{bottom:81.948000pt;}
.y334{bottom:82.106667pt;}
.y2e9{bottom:82.880000pt;}
.y2f7{bottom:83.028000pt;}
.y2dc{bottom:83.200000pt;}
.yef{bottom:85.760000pt;}
.y2eb{bottom:91.200000pt;}
.y2f0{bottom:91.226667pt;}
.y1b1{bottom:93.466667pt;}
.y1a3{bottom:93.626667pt;}
.y35b{bottom:95.706667pt;}
.y322{bottom:95.708000pt;}
.y33f{bottom:95.840000pt;}
.y31b{bottom:95.866667pt;}
.y353{bottom:95.880000pt;}
.y2df{bottom:97.280000pt;}
.yf2{bottom:99.520000pt;}
.y18c{bottom:100.640000pt;}
.y2e8{bottom:101.280000pt;}
.y2f6{bottom:101.428000pt;}
.y2e4{bottom:101.600000pt;}
.y32{bottom:103.872000pt;}
.y304{bottom:107.360000pt;}
.y2db{bottom:109.600000pt;}
.y2ef{bottom:109.626667pt;}
.y327{bottom:109.628000pt;}
.yee{bottom:113.440000pt;}
.y18b{bottom:119.040000pt;}
.y2e3{bottom:120.000000pt;}
.y33e{bottom:123.360000pt;}
.y31a{bottom:123.386667pt;}
.y321{bottom:123.388000pt;}
.y331{bottom:123.546667pt;}
.y352{bottom:123.560000pt;}
.y13{bottom:125.632000pt;}
.yf5{bottom:127.200000pt;}
.y2da{bottom:128.000000pt;}
.y2f3{bottom:129.638667pt;}
.y31f{bottom:129.958667pt;}
.y1f9{bottom:132.992000pt;}
.y104{bottom:134.106667pt;}
.y303{bottom:134.880000pt;}
.ye7{bottom:136.346667pt;}
.y1cb{bottom:136.506667pt;}
.y24e{bottom:136.666667pt;}
.y81{bottom:137.146667pt;}
.y160{bottom:137.306667pt;}
.y237{bottom:137.466667pt;}
.y189{bottom:139.066667pt;}
.y4e{bottom:139.866667pt;}
.y69{bottom:140.186667pt;}
.y2a0{bottom:140.506667pt;}
.y26b{bottom:140.826667pt;}
.y1f0{bottom:140.986667pt;}
.y21f{bottom:145.466667pt;}
.y16b{bottom:145.626667pt;}
.y2e2{bottom:146.400000pt;}
.y349{bottom:148.040000pt;}
.y2b9{bottom:148.506667pt;}
.y116{bottom:149.466667pt;}
.y320{bottom:150.908000pt;}
.y330{bottom:150.920000pt;}
.y33d{bottom:151.040000pt;}
.y319{bottom:151.066667pt;}
.y351{bottom:151.080000pt;}
.y31{bottom:152.666667pt;}
.y147{bottom:153.306667pt;}
.y20e{bottom:153.466667pt;}
.y287{bottom:153.946667pt;}
.y35a{bottom:153.960000pt;}
.y2ea{bottom:154.426667pt;}
.y340{bottom:154.600000pt;}
.y231{bottom:156.346667pt;}
.yc9{bottom:156.986667pt;}
.y1f8{bottom:160.666667pt;}
.yb5{bottom:162.426667pt;}
.y302{bottom:162.560000pt;}
.y370{bottom:163.386667pt;}
.y1ca{bottom:164.026667pt;}
.y12b{bottom:164.186667pt;}
.y2c4{bottom:164.506667pt;}
.y2e1{bottom:164.800000pt;}
.y32f{bottom:164.826667pt;}
.y236{bottom:164.986667pt;}
.y26a{bottom:168.346667pt;}
.y1ef{bottom:168.666667pt;}
.y9c{bottom:169.146667pt;}
.y103{bottom:169.786667pt;}
.ye6{bottom:171.866667pt;}
.y24d{bottom:172.186667pt;}
.y80{bottom:172.826667pt;}
.y21e{bottom:172.986667pt;}
.y188{bottom:174.746667pt;}
.y4d{bottom:175.546667pt;}
.y68{bottom:175.866667pt;}
.y29f{bottom:176.186667pt;}
.y318{bottom:178.586667pt;}
.y33c{bottom:178.600000pt;}
.y358{bottom:178.746667pt;}
.y12{bottom:179.546667pt;}
.y16a{bottom:180.186667pt;}
.y1e6{bottom:180.826667pt;}
.y20d{bottom:180.986667pt;}
.y2b8{bottom:184.186667pt;}
.yc8{bottom:184.666667pt;}
.y115{bottom:185.146667pt;}
.y30{bottom:188.186667pt;}
.y146{bottom:188.986667pt;}
.y286{bottom:189.466667pt;}
.yb4{bottom:190.106667pt;}
.y301{bottom:190.120000pt;}
.y1c9{bottom:191.706667pt;}
.y2c3{bottom:192.186667pt;}
.y235{bottom:192.666667pt;}
.y269{bottom:196.026667pt;}
.y1ee{bottom:196.186667pt;}
.y9b{bottom:196.666667pt;}
.y36f{bottom:199.066667pt;}
.y372{bottom:199.386667pt;}
.y12a{bottom:199.866667pt;}
.y21d{bottom:200.666667pt;}
.y29e{bottom:203.706667pt;}
.y102{bottom:205.306667pt;}
.y317{bottom:206.106667pt;}
.y32e{bottom:206.266667pt;}
.y33b{bottom:206.280000pt;}
.y361{bottom:206.306667pt;}
.ye5{bottom:207.866667pt;}
.y7f{bottom:208.346667pt;}
.y15f{bottom:208.506667pt;}
.y20c{bottom:208.666667pt;}
.y187{bottom:210.266667pt;}
.y4c{bottom:211.066667pt;}
.y67{bottom:211.386667pt;}
.y2b7{bottom:211.706667pt;}
.y226{bottom:212.186667pt;}
.y169{bottom:215.866667pt;}
.y365{bottom:217.026667pt;}
.yb3{bottom:217.626667pt;}
.y300{bottom:217.800000pt;}
.y2c2{bottom:219.706667pt;}
.y234{bottom:220.186667pt;}
.y114{bottom:220.666667pt;}
.y268{bottom:223.546667pt;}
.y2f{bottom:223.866667pt;}
.y9a{bottom:224.346667pt;}
.y145{bottom:224.506667pt;}
.y285{bottom:225.146667pt;}
.y24c{bottom:227.386667pt;}
.y371{bottom:228.026667pt;}
.y21c{bottom:228.186667pt;}
.y1c8{bottom:228.506667pt;}
.yc7{bottom:230.906667pt;}
.y29d{bottom:231.386667pt;}
.y1f7{bottom:231.866667pt;}
.y316{bottom:233.786667pt;}
.y33a{bottom:233.800000pt;}
.y360{bottom:233.826667pt;}
.y344{bottom:234.466667pt;}
.y36e{bottom:234.586667pt;}
.y129{bottom:235.386667pt;}
.y1e5{bottom:236.026667pt;}
.y22d{bottom:236.186667pt;}
.y11{bottom:237.786667pt;}
.y2b6{bottom:239.386667pt;}
.y225{bottom:239.866667pt;}
.y101{bottom:240.986667pt;}
.ye4{bottom:243.386667pt;}
.y7e{bottom:244.026667pt;}
.y20b{bottom:244.186667pt;}
.yb2{bottom:245.306667pt;}
.y2ff{bottom:245.320000pt;}
.y186{bottom:245.626667pt;}
.yda{bottom:246.746667pt;}
.y4b{bottom:247.066667pt;}
.y2c1{bottom:247.386667pt;}
.y233{bottom:247.866667pt;}
.y267{bottom:251.226667pt;}
.y168{bottom:251.386667pt;}
.y99{bottom:251.866667pt;}
.y364{bottom:252.706667pt;}
.y2ec{bottom:254.280000pt;}
.y2d5{bottom:255.386667pt;}
.y22b{bottom:255.866667pt;}
.y113{bottom:256.346667pt;}
.yc6{bottom:258.426667pt;}
.y2e{bottom:259.386667pt;}
.y144{bottom:260.026667pt;}
.y284{bottom:260.666667pt;}
.y348{bottom:261.466667pt;}
.y339{bottom:261.480000pt;}
.y32d{bottom:261.506667pt;}
.y24b{bottom:263.066667pt;}
.y21b{bottom:263.866667pt;}
.y1c7{bottom:264.506667pt;}
.y29c{bottom:266.906667pt;}
.y1f6{bottom:267.386667pt;}
.y36d{bottom:270.266667pt;}
.y128{bottom:271.066667pt;}
.y1e4{bottom:271.706667pt;}
.y20a{bottom:271.866667pt;}
.y2fe{bottom:273.000000pt;}
.y4a{bottom:274.586667pt;}
.y2b5{bottom:274.906667pt;}
.y224{bottom:275.386667pt;}
.y100{bottom:276.506667pt;}
.y185{bottom:277.946667pt;}
.y266{bottom:278.746667pt;}
.ye3{bottom:279.066667pt;}
.y7d{bottom:279.546667pt;}
.y15e{bottom:279.706667pt;}
.y1b0{bottom:281.640000pt;}
.y1a2{bottom:281.960000pt;}
.yd9{bottom:282.266667pt;}
.y66{bottom:282.586667pt;}
.y2d4{bottom:282.906667pt;}
.y2c0{bottom:283.066667pt;}
.y22a{bottom:283.386667pt;}
.yc5{bottom:286.106667pt;}
.y167{bottom:287.066667pt;}
.y363{bottom:288.226667pt;}
.y347{bottom:288.986667pt;}
.y338{bottom:289.000000pt;}
.y32c{bottom:289.026667pt;}
.y32b{bottom:289.666667pt;}
.y24a{bottom:290.586667pt;}
.y22c{bottom:291.426667pt;}
.yb1{bottom:291.586667pt;}
.y112{bottom:291.906667pt;}
.y1c6{bottom:292.226667pt;}
.y357{bottom:292.546667pt;}
.y29b{bottom:294.626667pt;}
.y1aa{bottom:295.066667pt;}
.y2d{bottom:295.106667pt;}
.y143{bottom:295.746667pt;}
.y315{bottom:296.226667pt;}
.y283{bottom:296.386667pt;}
.y1e3{bottom:299.266667pt;}
.y209{bottom:299.426667pt;}
.y30e{bottom:300.066667pt;}
.y2fd{bottom:300.520000pt;}
.y10{bottom:301.026667pt;}
.y49{bottom:302.146667pt;}
.y2b4{bottom:302.626667pt;}
.y230{bottom:303.106667pt;}
.y36c{bottom:305.826667pt;}
.y221{bottom:306.306667pt;}
.y265{bottom:306.466667pt;}
.y127{bottom:306.626667pt;}
.y21a{bottom:306.786667pt;}
.y2bf{bottom:310.626667pt;}
.y223{bottom:310.786667pt;}
.y229{bottom:311.106667pt;}
.yff{bottom:312.066667pt;}
.ye2{bottom:314.626667pt;}
.y7c{bottom:315.266667pt;}
.y346{bottom:316.706667pt;}
.yd8{bottom:317.826667pt;}
.y65{bottom:318.146667pt;}
.yb0{bottom:319.106667pt;}
.y111{bottom:319.586667pt;}
.y1c5{bottom:319.746667pt;}
.y29a{bottom:322.146667pt;}
.y2c{bottom:322.626667pt;}
.y98{bottom:325.826667pt;}
.y1e2{bottom:326.946667pt;}
.y208{bottom:327.106667pt;}
.y48{bottom:329.826667pt;}
.y2b3{bottom:330.306667pt;}
.y22f{bottom:330.626667pt;}
.y142{bottom:331.266667pt;}
.y282{bottom:331.906667pt;}
.yc4{bottom:332.386667pt;}
.y30d{bottom:333.346667pt;}
.y264{bottom:333.986667pt;}
.y219{bottom:335.106667pt;}
.y184{bottom:335.426667pt;}
.y2fc{bottom:336.200000pt;}
.y2be{bottom:338.306667pt;}
.y23c{bottom:338.626667pt;}
.y36b{bottom:341.506667pt;}
.y126{bottom:342.146667pt;}
.y345{bottom:344.226667pt;}
.y35f{bottom:344.866667pt;}
.y222{bottom:346.626667pt;}
.yaf{bottom:346.786667pt;}
.y1c4{bottom:347.426667pt;}
.yfe{bottom:347.746667pt;}
.y299{bottom:349.826667pt;}
.ye1{bottom:350.146667pt;}
.y15d{bottom:350.946667pt;}
.y7b{bottom:351.906667pt;}
.y97{bottom:353.346667pt;}
.yd7{bottom:353.506667pt;}
.y64{bottom:353.826667pt;}
.y1e1{bottom:354.466667pt;}
.y207{bottom:354.626667pt;}
.y110{bottom:355.106667pt;}
.y2b{bottom:358.146667pt;}
.yc3{bottom:359.906667pt;}
.y218{bottom:362.626667pt;}
.y183{bottom:364.066667pt;}
.yf{bottom:364.226667pt;}
.y47{bottom:365.026667pt;}
.y2b2{bottom:365.826667pt;}
.y23b{bottom:366.146667pt;}
.y30c{bottom:366.626667pt;}
.y141{bottom:366.946667pt;}
.y281{bottom:367.586667pt;}
.y125{bottom:369.826667pt;}
.y367{bottom:370.626667pt;}
.y263{bottom:370.786667pt;}
.y232{bottom:373.506667pt;}
.y2d3{bottom:373.826667pt;}
.y228{bottom:374.146667pt;}
.yae{bottom:374.306667pt;}
.y337{bottom:376.093333pt;}
.y36a{bottom:377.026667pt;}
.y298{bottom:377.506667pt;}
.ye0{bottom:377.826667pt;}
.y15c{bottom:378.466667pt;}
.y96{bottom:381.026667pt;}
.y249{bottom:381.346667pt;}
.y1e0{bottom:382.146667pt;}
.y10f{bottom:382.786667pt;}
.yfd{bottom:383.266667pt;}
.y1c3{bottom:384.226667pt;}
.y2a{bottom:385.826667pt;}
.y2e7{bottom:386.946667pt;}
.yc2{bottom:387.586667pt;}
.y7a{bottom:388.706667pt;}
.yd6{bottom:389.026667pt;}
.y63{bottom:389.346667pt;}
.y217{bottom:390.146667pt;}
.y182{bottom:392.706667pt;}
.y2b1{bottom:393.506667pt;}
.y166{bottom:393.826667pt;}
.y140{bottom:394.466667pt;}
.y124{bottom:397.346667pt;}
.y262{bottom:398.306667pt;}
.y30b{bottom:399.906667pt;}
.y46{bottom:401.026667pt;}
.y2d2{bottom:401.506667pt;}
.y23a{bottom:401.826667pt;}
.yad{bottom:401.986667pt;}
.y366{bottom:402.786667pt;}
.y280{bottom:403.106667pt;}
.ydf{bottom:405.346667pt;}
.y15b{bottom:406.146667pt;}
.y95{bottom:408.546667pt;}
.y248{bottom:409.026667pt;}
.y1df{bottom:409.666667pt;}
.y206{bottom:409.826667pt;}
.y373{bottom:410.626667pt;}
.y369{bottom:412.706667pt;}
.y1f5{bottom:413.026667pt;}
.y29{bottom:413.346667pt;}
.yc1{bottom:415.106667pt;}
.y216{bottom:417.826667pt;}
.y10e{bottom:418.306667pt;}
.yfc{bottom:418.946667pt;}
.y1c2{bottom:420.226667pt;}
.y2b0{bottom:421.186667pt;}
.y165{bottom:421.346667pt;}
.y181{bottom:421.506667pt;}
.y13f{bottom:422.146667pt;}
.yd5{bottom:424.706667pt;}
.y62{bottom:425.026667pt;}
.y79{bottom:425.506667pt;}
.y261{bottom:425.986667pt;}
.y45{bottom:428.546667pt;}
.y2bd{bottom:429.186667pt;}
.y239{bottom:429.346667pt;}
.ye{bottom:429.666667pt;}
.yde{bottom:433.026667pt;}
.y30a{bottom:433.186667pt;}
.y15a{bottom:433.666667pt;}
.y94{bottom:436.226667pt;}
.y205{bottom:437.346667pt;}
.y27f{bottom:438.786667pt;}
.y297{bottom:440.706667pt;}
.y28{bottom:441.026667pt;}
.yc0{bottom:442.786667pt;}
.y247{bottom:444.546667pt;}
.y1de{bottom:445.026667pt;}
.y215{bottom:445.346667pt;}
.y10d{bottom:445.986667pt;}
.y1c1{bottom:447.906667pt;}
.y164{bottom:449.026667pt;}
.y368{bottom:449.186667pt;}
.y180{bottom:450.146667pt;}
.y260{bottom:453.506667pt;}
.yfb{bottom:454.466667pt;}
.y19d{bottom:454.626667pt;}
.y44{bottom:456.226667pt;}
.y2af{bottom:456.706667pt;}
.y238{bottom:457.026667pt;}
.y13e{bottom:457.346667pt;}
.yac{bottom:458.306667pt;}
.yd4{bottom:460.226667pt;}
.y61{bottom:460.546667pt;}
.y78{bottom:462.146667pt;}
.y93{bottom:463.746667pt;}
.y2d1{bottom:464.706667pt;}
.y204{bottom:465.026667pt;}
.y309{bottom:466.466667pt;}
.y296{bottom:468.226667pt;}
.y1ed{bottom:468.546667pt;}
.y159{bottom:469.186667pt;}
.ybf{bottom:470.306667pt;}
.y246{bottom:472.226667pt;}
.y214{bottom:473.026667pt;}
.y27e{bottom:474.306667pt;}
.y1c0{bottom:475.426667pt;}
.y27{bottom:476.546667pt;}
.y17f{bottom:478.786667pt;}
.y1dd{bottom:480.866667pt;}
.y25f{bottom:481.186667pt;}
.y10c{bottom:481.506667pt;}
.y43{bottom:483.746667pt;}
.y23e{bottom:484.226667pt;}
.y2ae{bottom:484.386667pt;}
.y1f4{bottom:484.546667pt;}
.yab{bottom:485.986667pt;}
.y123{bottom:488.226667pt;}
.yfa{bottom:490.146667pt;}
.y92{bottom:491.426667pt;}
.y13d{bottom:492.226667pt;}
.y2d0{bottom:492.386667pt;}
.y203{bottom:492.546667pt;}
.y295{bottom:495.906667pt;}
.y60{bottom:496.226667pt;}
.y158{bottom:496.866667pt;}
.yd{bottom:497.346667pt;}
.ybe{bottom:497.986667pt;}
.y77{bottom:498.946667pt;}
.y245{bottom:499.746667pt;}
.y213{bottom:500.546667pt;}
.y1bf{bottom:503.106667pt;}
.y26{bottom:504.226667pt;}
.yd3{bottom:506.946667pt;}
.y17e{bottom:507.586667pt;}
.y25e{bottom:508.706667pt;}
.y27d{bottom:509.986667pt;}
.y42{bottom:511.426667pt;}
.y2bc{bottom:511.906667pt;}
.y1f3{bottom:512.226667pt;}
.y13c{bottom:513.346667pt;}
.yaa{bottom:513.506667pt;}
.y350{bottom:514.013333pt;}
.y122{bottom:515.746667pt;}
.y1dc{bottom:516.546667pt;}
.y10b{bottom:517.186667pt;}
.yf9{bottom:517.666667pt;}
.y91{bottom:518.946667pt;}
.y22e{bottom:519.586667pt;}
.y2ad{bottom:520.066667pt;}
.y202{bottom:520.226667pt;}
.ydd{bottom:523.746667pt;}
.y157{bottom:524.386667pt;}
.ybd{bottom:525.506667pt;}
.y212{bottom:528.226667pt;}
.y1be{bottom:530.653333pt;}
.y5f{bottom:531.453333pt;}
.y294{bottom:531.613333pt;}
.y25{bottom:531.773333pt;}
.y308{bottom:533.213333pt;}
.yd2{bottom:534.493333pt;}
.y244{bottom:535.133333pt;}
.y76{bottom:535.773333pt;}
.y17d{bottom:536.253333pt;}
.y25d{bottom:536.413333pt;}
.y41{bottom:538.973333pt;}
.y2bb{bottom:539.613333pt;}
.y1f2{bottom:539.773333pt;}
.ya9{bottom:541.213333pt;}
.y121{bottom:543.453333pt;}
.y1db{bottom:544.093333pt;}
.y310{bottom:545.253333pt;}
.yf8{bottom:545.373333pt;}
.y27c{bottom:545.533333pt;}
.y2ac{bottom:547.613333pt;}
.y201{bottom:547.773333pt;}
.ydc{bottom:551.453333pt;}
.ybc{bottom:553.213333pt;}
.y10a{bottom:553.853333pt;}
.y2cf{bottom:555.613333pt;}
.y13b{bottom:555.773333pt;}
.yc{bottom:557.213333pt;}
.y1bd{bottom:558.333333pt;}
.y293{bottom:559.133333pt;}
.y24{bottom:559.453333pt;}
.y156{bottom:559.773333pt;}
.yd1{bottom:562.173333pt;}
.y17c{bottom:565.053333pt;}
.y90{bottom:565.213333pt;}
.y307{bottom:566.493333pt;}
.y1ec{bottom:566.813333pt;}
.y5e{bottom:567.453333pt;}
.ya8{bottom:568.733333pt;}
.y120{bottom:570.973333pt;}
.y1da{bottom:571.773333pt;}
.y75{bottom:572.413333pt;}
.y25c{bottom:573.213333pt;}
.y40{bottom:574.333333pt;}
.y2ab{bottom:575.293333pt;}
.y1f1{bottom:575.453333pt;}
.y13a{bottom:576.893333pt;}
.y220{bottom:578.973333pt;}
.y1a9{bottom:579.426667pt;}
.yf7{bottom:580.573333pt;}
.ybb{bottom:580.733333pt;}
.y27b{bottom:581.213333pt;}
.y2de{bottom:582.813333pt;}
.y2ce{bottom:583.293333pt;}
.y200{bottom:583.453333pt;}
.y292{bottom:586.813333pt;}
.y23{bottom:586.973333pt;}
.y2fb{bottom:588.733333pt;}
.y109{bottom:589.533333pt;}
.yd0{bottom:589.693333pt;}
.y8f{bottom:592.893333pt;}
.y17b{bottom:593.693333pt;}
.y329{bottom:593.893333pt;}
.y163{bottom:594.973333pt;}
.y155{bottom:595.613333pt;}
.ya7{bottom:597.533333pt;}
.y139{bottom:598.013333pt;}
.y11f{bottom:598.653333pt;}
.y1d9{bottom:599.293333pt;}
.y25b{bottom:600.733333pt;}
.y2aa{bottom:602.813333pt;}
.y5d{bottom:602.973333pt;}
.yed{bottom:604.253333pt;}
.y243{bottom:606.653333pt;}
.yba{bottom:608.413333pt;}
.y74{bottom:609.213333pt;}
.y1ab{bottom:609.533333pt;}
.y199{bottom:609.693333pt;}
.y3f{bottom:610.173333pt;}
.y2cd{bottom:610.813333pt;}
.y1ff{bottom:610.973333pt;}
.y291{bottom:614.333333pt;}
.y22{bottom:614.653333pt;}
.y27a{bottom:616.733333pt;}
.yb{bottom:617.053333pt;}
.ycf{bottom:617.373333pt;}
.y138{bottom:619.133333pt;}
.y8e{bottom:620.413333pt;}
.y17a{bottom:622.333333pt;}
.y162{bottom:622.653333pt;}
.ya6{bottom:625.053333pt;}
.y11e{bottom:626.173333pt;}
.y25a{bottom:628.413333pt;}
.y2a9{bottom:630.493333pt;}
.y5c{bottom:630.653333pt;}
.y154{bottom:631.293333pt;}
.y242{bottom:634.173333pt;}
.y1d8{bottom:634.973333pt;}
.y3e{bottom:637.853333pt;}
.y2cc{bottom:638.493333pt;}
.y1fe{bottom:638.653333pt;}
.y137{bottom:640.413333pt;}
.y290{bottom:642.013333pt;}
.ydb{bottom:642.173333pt;}
.y279{bottom:644.413333pt;}
.y108{bottom:644.733333pt;}
.y73{bottom:646.013333pt;}
.y8d{bottom:648.093333pt;}
.y21{bottom:650.173333pt;}
.y179{bottom:651.133333pt;}
.ya5{bottom:652.733333pt;}
.yb9{bottom:654.653333pt;}
.y259{bottom:655.933333pt;}
.y2a8{bottom:658.013333pt;}
.y5b{bottom:658.173333pt;}
.y153{bottom:658.813333pt;}
.y11d{bottom:661.853333pt;}
.y1d7{bottom:662.493333pt;}
.yce{bottom:663.613333pt;}
.y3d{bottom:665.373333pt;}
.y30f{bottom:665.733333pt;}
.y2cb{bottom:666.013333pt;}
.y1fd{bottom:666.173333pt;}
.y278{bottom:671.933333pt;}
.y23d{bottom:674.173333pt;}
.y8c{bottom:675.613333pt;}
.y136{bottom:675.933333pt;}
.ya{bottom:676.893333pt;}
.y28f{bottom:677.693333pt;}
.y20{bottom:677.853333pt;}
.y178{bottom:679.773333pt;}
.ya4{bottom:680.253333pt;}
.y227{bottom:681.533333pt;}
.yb8{bottom:682.173333pt;}
.y72{bottom:682.653333pt;}
.y258{bottom:683.453333pt;}
.y2ba{bottom:685.693333pt;}
.y1bc{bottom:685.853333pt;}
.y11c{bottom:689.373333pt;}
.y1d6{bottom:690.173333pt;}
.ycd{bottom:691.133333pt;}
.y3c{bottom:693.053333pt;}
.y5a{bottom:693.533333pt;}
.y2a7{bottom:693.693333pt;}
.y1fc{bottom:693.853333pt;}
.y152{bottom:694.173333pt;}
.y241{bottom:697.373333pt;}
.y135{bottom:699.133333pt;}
.y277{bottom:699.453333pt;}
.y211{bottom:701.853333pt;}
.y8b{bottom:703.293333pt;}
.y28e{bottom:705.213333pt;}
.y1f{bottom:705.373333pt;}
.ya3{bottom:707.933333pt;}
.y177{bottom:708.413333pt;}
.yb7{bottom:709.853333pt;}
.y257{bottom:711.133333pt;}
.y1bb{bottom:713.373333pt;}
.y107{bottom:717.053333pt;}
.y1d5{bottom:717.693333pt;}
.ycc{bottom:718.813333pt;}
.y71{bottom:719.453333pt;}
.y3b{bottom:720.573333pt;}
.y2a6{bottom:721.213333pt;}
.y1fb{bottom:721.373333pt;}
.y240{bottom:725.053333pt;}
.y276{bottom:727.133333pt;}
.y59{bottom:729.373333pt;}
.y151{bottom:730.013333pt;}
.y8a{bottom:730.813333pt;}
.y28d{bottom:732.733333pt;}
.y1e{bottom:733.053333pt;}
.y9{bottom:736.573333pt;}
.y196{bottom:737.053333pt;}
.y176{bottom:737.213333pt;}
.yb6{bottom:737.373333pt;}
.y256{bottom:738.813333pt;}
.y1ba{bottom:741.053333pt;}
.y134{bottom:743.453333pt;}
.y11b{bottom:744.573333pt;}
.y1d4{bottom:745.373333pt;}
.ycb{bottom:746.333333pt;}
.y2a5{bottom:748.893333pt;}
.y1eb{bottom:749.053333pt;}
.yeb{bottom:750.493333pt;}
.y106{bottom:752.253333pt;}
.y89{bottom:753.053333pt;}
.y14e{bottom:753.373333pt;}
.y275{bottom:754.653333pt;}
.ya2{bottom:755.293333pt;}
.y3a{bottom:755.933333pt;}
.y70{bottom:756.253333pt;}
.y2ca{bottom:756.893333pt;}
.y210{bottom:757.053333pt;}
.y28c{bottom:760.413333pt;}
.y161{bottom:760.573333pt;}
.y58{bottom:765.053333pt;}
.y175{bottom:765.853333pt;}
.y1d{bottom:768.613333pt;}
.y2d8{bottom:770.693333pt;}
.yca{bottom:774.053333pt;}
.y255{bottom:775.493333pt;}
.y2a4{bottom:776.453333pt;}
.y1b9{bottom:776.613333pt;}
.y11a{bottom:779.973333pt;}
.y1d3{bottom:780.933333pt;}
.y274{bottom:782.373333pt;}
.y88{bottom:782.853333pt;}
.y8{bottom:783.173333pt;}
.y2c9{bottom:784.453333pt;}
.y20f{bottom:784.613333pt;}
.y132{bottom:787.813333pt;}
.y105{bottom:788.293333pt;}
.y39{bottom:791.493333pt;}
.y57{bottom:792.613333pt;}
.y6f{bottom:792.933333pt;}
.y174{bottom:794.533333pt;}
.y28b{bottom:796.133333pt;}
.y1c{bottom:796.293333pt;}
.ya1{bottom:801.573333pt;}
.y254{bottom:803.173333pt;}
.y2a3{bottom:804.133333pt;}
.y1b8{bottom:804.293333pt;}
.y1d2{bottom:808.453333pt;}
.y273{bottom:809.893333pt;}
.y87{bottom:810.533333pt;}
.y2c8{bottom:812.133333pt;}
.y1fa{bottom:812.293333pt;}
.yea{bottom:815.813333pt;}
.y14b{bottom:820.133333pt;}
.y56{bottom:820.293333pt;}
.y173{bottom:823.333333pt;}
.y28a{bottom:823.653333pt;}
.y1b{bottom:823.813333pt;}
.y7{bottom:824.933333pt;}
.y38{bottom:827.173333pt;}
.ya0{bottom:829.253333pt;}
.y6e{bottom:829.733333pt;}
.y253{bottom:830.693333pt;}
.y1b7{bottom:831.813333pt;}
.y130{bottom:831.973333pt;}
.y1d1{bottom:836.133333pt;}
.y272{bottom:837.573333pt;}
.y86{bottom:838.053333pt;}
.y2c7{bottom:839.653333pt;}
.y1ea{bottom:839.813333pt;}
.y55{bottom:847.813333pt;}
.y1a8{bottom:848.160000pt;}
.y18a{bottom:851.013333pt;}
.y23f{bottom:851.173333pt;}
.y289{bottom:851.333333pt;}
.ye9{bottom:851.493333pt;}
.y172{bottom:851.973333pt;}
.y9f{bottom:856.773333pt;}
.y252{bottom:858.373333pt;}
.y1a{bottom:859.493333pt;}
.y37{bottom:862.693333pt;}
.y1d0{bottom:863.653333pt;}
.y85{bottom:865.733333pt;}
.y6d{bottom:866.533333pt;}
.y2a2{bottom:867.333333pt;}
.y1e9{bottom:867.493333pt;}
.y271{bottom:874.373333pt;}
.y6{bottom:874.533333pt;}
.y54{bottom:875.493333pt;}
.y119{bottom:879.013333pt;}
.y171{bottom:880.773333pt;}
.y9e{bottom:884.453333pt;}
.y251{bottom:885.893333pt;}
.y148{bottom:886.853333pt;}
.y19{bottom:887.013333pt;}
.y1cf{bottom:891.333333pt;}
.y1e8{bottom:895.013333pt;}
.y36{bottom:898.373333pt;}
.y191{bottom:899.493333pt;}
.y270{bottom:901.893333pt;}
.y53{bottom:903.013333pt;}
.y6c{bottom:903.173333pt;}
.y12e{bottom:903.813333pt;}
.y118{bottom:906.693333pt;}
.y170{bottom:909.413333pt;}
.y84{bottom:911.973333pt;}
.y250{bottom:913.573333pt;}
.y288{bottom:914.533333pt;}
.y18{bottom:914.693333pt;}
.y5{bottom:916.133333pt;}
.y1ce{bottom:918.853333pt;}
.y2d6{bottom:921.733333pt;}
.y2a1{bottom:922.533333pt;}
.y1e7{bottom:922.693333pt;}
.y26f{bottom:929.573333pt;}
.y1b6{bottom:930.053333pt;}
.y2c6{bottom:930.533333pt;}
.y52{bottom:930.693333pt;}
.y35{bottom:933.893333pt;}
.y16f{bottom:938.053333pt;}
.y83{bottom:939.653333pt;}
.y6b{bottom:939.973333pt;}
.y24f{bottom:941.093333pt;}
.y117{bottom:941.893333pt;}
.y17{bottom:942.213333pt;}
.y12c{bottom:948.133333pt;}
.y4{bottom:949.893333pt;}
.y1b5{bottom:950.213333pt;}
.y1cd{bottom:954.373333pt;}
.y26e{bottom:957.093333pt;}
.y51{bottom:958.213333pt;}
.y1cc{bottom:965.093333pt;}
.y16e{bottom:966.853333pt;}
.y82{bottom:967.173333pt;}
.y34{bottom:969.893333pt;}
.y6a{bottom:976.773333pt;}
.y16{bottom:977.573333pt;}
.ye8{bottom:977.893333pt;}
.y3{bottom:982.693333pt;}
.y26d{bottom:984.773333pt;}
.y2c5{bottom:985.733333pt;}
.y50{bottom:985.893333pt;}
.y16d{bottom:989.413333pt;}
.y9d{bottom:993.253333pt;}
.y2{bottom:1012.000000pt;}
.y26c{bottom:1012.320000pt;}
.y15{bottom:1013.120000pt;}
.y4f{bottom:1013.440000pt;}
.y16c{bottom:1014.400000pt;}
.y1{bottom:1048.160000pt;}
.y14{bottom:1052.800000pt;}
.hf{height:32.298750pt;}
.h29{height:34.386667pt;}
.h10{height:42.084375pt;}
.h15{height:43.506667pt;}
.h16{height:43.540000pt;}
.h13{height:43.666667pt;}
.h17{height:43.680000pt;}
.h11{height:43.700000pt;}
.h40{height:47.882812pt;}
.h1c{height:50.062500pt;}
.h1f{height:53.940000pt;}
.h1b{height:55.275000pt;}
.h27{height:57.375000pt;}
.h18{height:60.626667pt;}
.h30{height:61.410000pt;}
.hb{height:62.781250pt;}
.h9{height:62.812500pt;}
.ha{height:64.500000pt;}
.h1a{height:65.940000pt;}
.h19{height:66.066667pt;}
.hd{height:66.750000pt;}
.h14{height:71.186667pt;}
.h28{height:71.503437pt;}
.he{height:71.524375pt;}
.h20{height:72.000000pt;}
.hc{height:73.490625pt;}
.h36{height:85.746667pt;}
.h3c{height:85.778667pt;}
.h1e{height:92.946667pt;}
.h21{height:97.466667pt;}
.h23{height:97.626667pt;}
.h33{height:98.866667pt;}
.h4{height:100.125000pt;}
.h8{height:104.896875pt;}
.h26{height:105.692500pt;}
.h25{height:111.858125pt;}
.h5{height:114.946875pt;}
.h24{height:115.858667pt;}
.h22{height:116.018667pt;}
.h2{height:122.152500pt;}
.h2e{height:123.833333pt;}
.h7{height:125.625000pt;}
.h2d{height:132.018667pt;}
.h3{height:133.500000pt;}
.h6{height:136.303125pt;}
.h3f{height:137.933333pt;}
.h38{height:138.093333pt;}
.h1d{height:141.426667pt;}
.h12{height:145.600000pt;}
.h2a{height:150.386667pt;}
.h35{height:165.453333pt;}
.h3d{height:165.626667pt;}
.h2b{height:187.226667pt;}
.h2c{height:195.226667pt;}
.h3e{height:220.826667pt;}
.h3a{height:220.853333pt;}
.h34{height:248.373333pt;}
.h39{height:303.546667pt;}
.h37{height:303.573333pt;}
.h2f{height:358.746667pt;}
.h3b{height:358.773333pt;}
.h31{height:793.760000pt;}
.h32{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:93.778667pt;}
.w19{width:103.360000pt;}
.w16{width:110.590667pt;}
.w1b{width:112.658667pt;}
.w1c{width:122.226667pt;}
.w2{width:143.350667pt;}
.w5{width:143.373333pt;}
.w4{width:143.386667pt;}
.w3{width:143.533333pt;}
.w17{width:150.546667pt;}
.w7{width:186.426667pt;}
.w6{width:190.257333pt;}
.w8{width:192.013333pt;}
.w10{width:209.613333pt;}
.wf{width:211.053333pt;}
.wb{width:228.493333pt;}
.wc{width:228.546667pt;}
.we{width:228.653333pt;}
.w1a{width:245.146667pt;}
.w12{width:252.337333pt;}
.wa{width:287.426667pt;}
.w9{width:287.537333pt;}
.w13{width:322.626667pt;}
.wd{width:483.920000pt;}
.w11{width:575.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:1122.560000pt;}
.w15{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x30{left:6.870667pt;}
.x53{left:8.186667pt;}
.x25{left:9.306667pt;}
.x49{left:10.870667pt;}
.x5c{left:12.480000pt;}
.x21{left:14.550667pt;}
.x45{left:16.150667pt;}
.x59{left:17.906667pt;}
.x55{left:19.040000pt;}
.x24{left:22.106667pt;}
.x23{left:23.670667pt;}
.x50{left:26.398667pt;}
.x27{left:27.386667pt;}
.x2e{left:29.920000pt;}
.x4d{left:30.865333pt;}
.x22{left:32.305333pt;}
.x26{left:33.306667pt;}
.x33{left:36.186667pt;}
.x5d{left:37.440000pt;}
.x32{left:38.385333pt;}
.x20{left:41.425333pt;}
.x28{left:44.306667pt;}
.x2c{left:46.385333pt;}
.x4c{left:49.265333pt;}
.x5b{left:52.346667pt;}
.x48{left:55.025333pt;}
.x57{left:58.586667pt;}
.x38{left:62.866667pt;}
.x1f{left:65.466667pt;}
.x1b{left:66.705333pt;}
.x1d{left:68.506667pt;}
.x47{left:71.505333pt;}
.x4b{left:83.825333pt;}
.x3f{left:84.946667pt;}
.x4f{left:87.681333pt;}
.x35{left:89.786667pt;}
.x4a{left:91.825333pt;}
.x3b{left:93.786667pt;}
.x37{left:97.786667pt;}
.x44{left:104.145333pt;}
.x1a{left:106.601333pt;}
.x2b{left:111.881333pt;}
.x6{left:113.472000pt;}
.x41{left:114.752000pt;}
.x42{left:128.032000pt;}
.x12{left:129.472000pt;}
.x16{left:137.466667pt;}
.x3d{left:138.720000pt;}
.x3c{left:140.320000pt;}
.x18{left:141.946667pt;}
.x14{left:145.466667pt;}
.x8{left:147.386667pt;}
.x7{left:148.826667pt;}
.xa{left:161.306667pt;}
.x19{left:165.946667pt;}
.x34{left:168.520000pt;}
.x29{left:185.466667pt;}
.x3{left:188.026667pt;}
.x3a{left:190.600000pt;}
.xc{left:192.666667pt;}
.x51{left:198.920000pt;}
.x9{left:199.866667pt;}
.x2a{left:209.466667pt;}
.x1{left:219.066667pt;}
.x39{left:221.466667pt;}
.x5{left:229.786667pt;}
.x2{left:239.386667pt;}
.x1c{left:250.600000pt;}
.x4{left:257.506667pt;}
.xf{left:262.626667pt;}
.x10{left:287.906667pt;}
.x43{left:296.546667pt;}
.x2d{left:302.786667pt;}
.xb{left:346.306667pt;}
.x52{left:350.120000pt;}
.x46{left:359.586667pt;}
.xe{left:379.106667pt;}
.x31{left:388.866667pt;}
.x15{left:390.306667pt;}
.x13{left:392.386667pt;}
.x11{left:394.626667pt;}
.x17{left:397.026667pt;}
.x36{left:413.986667pt;}
.x54{left:444.546667pt;}
.x3e{left:465.866667pt;}
.x40{left:467.306667pt;}
.x2f{left:489.866667pt;}
.x5e{left:503.453333pt;}
.x1e{left:538.826667pt;}
.x56{left:548.546667pt;}
.x4e{left:553.346667pt;}
.xd{left:680.453333pt;}
.x60{left:683.973333pt;}
.x5f{left:694.213333pt;}
.x58{left:794.346667pt;}
.x5a{left:907.653333pt;}
}




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