
    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_102c7d3c8e998a26ce01018e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d821d4c8aae6ac19023f4aa6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45e60292d1016f1cfdd567c7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b3c817a56b9bc3cb7640611.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_73c12e3af9eec957d1ab8d73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_01303189142f9d5ebe6a3cfe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_7dde050cecd8e58af9c0888c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_d892e2dbc4bac0733f9c71c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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_e7d6283642383407a0a9fb9c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e60aa6de6009fb25148ed0a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls3d{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.205200px;}
.ls1f{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.147600px;}
.lsd{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.132600px;}
.ls4{letter-spacing:-0.115200px;}
.ls27{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.028080px;}
.ls20{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.299400px;}
.ls2e{letter-spacing:0.313800px;}
.ls33{letter-spacing:0.322800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls3b{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.869760px;}
.ls21{letter-spacing:1.440000px;}
.lsf{letter-spacing:3.600000px;}
.ls3f{letter-spacing:4.320000px;}
.ls3c{letter-spacing:5.040000px;}
.ls41{letter-spacing:5.160000px;}
.ls25{letter-spacing:15.840000px;}
.ls22{letter-spacing:17.280000px;}
.ls26{letter-spacing:18.000000px;}
.ls34{letter-spacing:20.304000px;}
.ls31{letter-spacing:21.024000px;}
.ls36{letter-spacing:24.624000px;}
.ls3{letter-spacing:25.200000px;}
.ls30{letter-spacing:25.344000px;}
.ls24{letter-spacing:27.360000px;}
.ls32{letter-spacing:28.944000px;}
.ls23{letter-spacing:30.240000px;}
.ls2f{letter-spacing:30.464640px;}
.ls28{letter-spacing:33.344640px;}
.ls35{letter-spacing:39.024000px;}
.ls37{letter-spacing:40.464000px;}
.ls38{letter-spacing:41.184000px;}
.ls40{letter-spacing:41.220000px;}
.ls1e{letter-spacing:51.984000px;}
.ls11{letter-spacing:54.864000px;}
.ls1d{letter-spacing:72.144000px;}
.ls1a{letter-spacing:87.984000px;}
.ls1b{letter-spacing:92.304000px;}
.ls19{letter-spacing:108.144000px;}
.ls1c{letter-spacing:111.744000px;}
.ls18{letter-spacing:128.304000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.031920px;}
.wsf{word-spacing:-18.792000px;}
.ws6{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.432000px;}
.ws27{word-spacing:-18.288000px;}
.ws15{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws28{word-spacing:-17.496000px;}
.ws16{word-spacing:-17.280000px;}
.ws25{word-spacing:-16.669200px;}
.ws26{word-spacing:-16.560000px;}
.ws1d{word-spacing:-15.943920px;}
.ws17{word-spacing:-15.315720px;}
.wsb{word-spacing:-15.269640px;}
.wsa{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.837640px;}
.ws19{word-spacing:-12.222000px;}
.ws1a{word-spacing:-12.204000px;}
.ws1c{word-spacing:-10.902240px;}
.ws18{word-spacing:-10.754640px;}
.ws1b{word-spacing:-10.697040px;}
.wse{word-spacing:-9.720000px;}
.ws10{word-spacing:-8.786880px;}
.ws24{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.216000px;}
.ws2{word-spacing:0.000000px;}
.ws23{word-spacing:0.072000px;}
.ws21{word-spacing:0.144000px;}
.ws22{word-spacing:0.216000px;}
.ws20{word-spacing:0.288000px;}
._1f{margin-left:-14.477280px;}
._1b{margin-left:-12.871680px;}
._20{margin-left:-10.886400px;}
._1e{margin-left:-9.614880px;}
._1d{margin-left:-7.519200px;}
._1c{margin-left:-5.623200px;}
._1a{margin-left:-3.544800px;}
._1{margin-left:-2.190240px;}
._0{margin-left:-1.010880px;}
._2{width:1.179360px;}
._8{width:2.184000px;}
._a{width:3.432000px;}
._5{width:4.824000px;}
._9{width:6.480000px;}
._13{width:7.752000px;}
._b{width:9.144000px;}
._19{width:10.296000px;}
._18{width:12.218400px;}
._6{width:13.248000px;}
._c{width:14.976000px;}
._d{width:16.056000px;}
._2d{width:17.637600px;}
._3{width:19.944000px;}
._4{width:21.024000px;}
._7{width:22.080000px;}
._14{width:23.810880px;}
._e{width:24.924000px;}
._f{width:25.988640px;}
._2c{width:27.264960px;}
._21{width:28.296000px;}
._22{width:29.520000px;}
._24{width:30.744000px;}
._2a{width:31.896000px;}
._2b{width:32.976000px;}
._11{width:34.278720px;}
._10{width:35.426880px;}
._12{width:36.876000px;}
._27{width:38.304000px;}
._23{width:39.600000px;}
._25{width:41.832000px;}
._26{width:42.944640px;}
._15{width:44.724000px;}
._17{width:45.926880px;}
._16{width:46.980000px;}
._3e{width:48.600000px;}
._28{width:50.544000px;}
._29{width:51.713280px;}
._3a{width:53.856000px;}
._41{width:55.728000px;}
._33{width:64.440000px;}
._34{width:65.556000px;}
._40{width:69.408000px;}
._3f{width:71.568000px;}
._35{width:74.160000px;}
._3b{width:77.688000px;}
._3c{width:78.768000px;}
._3d{width:90.144000px;}
._37{width:110.016000px;}
._31{width:113.934240px;}
._43{width:123.048000px;}
._44{width:124.116000px;}
._2f{width:128.810880px;}
._32{width:200.808000px;}
._39{width:206.424000px;}
._30{width:221.328000px;}
._36{width:238.464000px;}
._2e{width:284.976000px;}
._42{width:356.328000px;}
._38{width:364.248000px;}
._45{width:2063.304000px;}
.fc2{color:transparent;}
.fc1{color:rgb(79,129,189);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(166,166,166);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.y1d5{bottom:-37.620000px;}
.y1d1{bottom:-37.440000px;}
.y1b7{bottom:-36.900000px;}
.y1c1{bottom:-34.560000px;}
.y1db{bottom:-33.330000px;}
.y325{bottom:-32.760000px;}
.y2da{bottom:-31.530000px;}
.y1c3{bottom:-31.185000px;}
.y1ba{bottom:-31.140000px;}
.y157{bottom:-30.600000px;}
.y2c4{bottom:-30.420000px;}
.y15c{bottom:-29.910000px;}
.y151{bottom:-29.880000px;}
.y1f8{bottom:-29.160000px;}
.y1ff{bottom:-28.800000px;}
.y409{bottom:-27.180000px;}
.y2d2{bottom:-25.200000px;}
.y153{bottom:-25.020000px;}
.y2d7{bottom:-23.040000px;}
.y1f1{bottom:-22.140000px;}
.y1ca{bottom:-21.780000px;}
.y404{bottom:-20.700000px;}
.y1e9{bottom:-19.620000px;}
.y2ac{bottom:-17.100000px;}
.y413{bottom:-14.400000px;}
.y2cc{bottom:-10.980000px;}
.y2d9{bottom:-8.100000px;}
.y2c3{bottom:-7.020000px;}
.y3f7{bottom:-6.834000px;}
.y418{bottom:-5.760000px;}
.y2d1{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.y1c0{bottom:0.360000px;}
.y1d4{bottom:0.540000px;}
.y1d0{bottom:0.720000px;}
.y2d3{bottom:1.080000px;}
.y2b3{bottom:1.440000px;}
.y3f2{bottom:1.620000px;}
.y2a8{bottom:1.980000px;}
.y1dd{bottom:2.160000px;}
.y1b6{bottom:2.340000px;}
.y2b8{bottom:2.700000px;}
.y34d{bottom:3.600000px;}
.y2b0{bottom:3.960000px;}
.y1da{bottom:4.860000px;}
.y2ab{bottom:5.400000px;}
.y1f7{bottom:5.940000px;}
.y40e{bottom:6.660000px;}
.y1eb{bottom:6.840000px;}
.y1b9{bottom:7.020000px;}
.y403{bottom:7.200000px;}
.y156{bottom:7.560000px;}
.y150{bottom:8.280000px;}
.y2cb{bottom:8.460000px;}
.y1fe{bottom:9.360000px;}
.y412{bottom:9.540000px;}
.y338{bottom:10.620000px;}
.y3f5{bottom:10.800000px;}
.y2bb{bottom:10.980000px;}
.y1c9{bottom:12.960000px;}
.y14c{bottom:13.140000px;}
.y26b{bottom:13.320000px;}
.y223{bottom:13.500000px;}
.y269{bottom:13.545000px;}
.y2c7{bottom:13.860000px;}
.y2bf{bottom:14.940000px;}
.y2d8{bottom:15.120000px;}
.y2c2{bottom:15.300000px;}
.y1f0{bottom:16.020000px;}
.y419{bottom:16.920000px;}
.y2d6{bottom:17.820000px;}
.y2dc{bottom:18.000000px;}
.y1e8{bottom:18.360000px;}
.y2af{bottom:18.720000px;}
.y3fd{bottom:18.900000px;}
.y2b5{bottom:19.080000px;}
.y2d0{bottom:19.260000px;}
.y35b{bottom:19.980000px;}
.y34c{bottom:20.880000px;}
.y1bf{bottom:21.240000px;}
.y3de{bottom:21.420000px;}
.y2b7{bottom:21.600000px;}
.y3a4{bottom:22.500000px;}
.y2de{bottom:22.680000px;}
.y1fa{bottom:24.120000px;}
.y1d3{bottom:24.300000px;}
.y1cf{bottom:24.480000px;}
.y227{bottom:24.840000px;}
.y3a8{bottom:25.200000px;}
.y2a7{bottom:25.380000px;}
.y2bd{bottom:25.740000px;}
.y2aa{bottom:26.280000px;}
.y417{bottom:26.460000px;}
.y324{bottom:26.640000px;}
.y1f6{bottom:26.820000px;}
.y317{bottom:27.360000px;}
.y402{bottom:27.900000px;}
.y1d9{bottom:28.620000px;}
.y40d{bottom:29.160000px;}
.y337{bottom:30.420000px;}
.y155{bottom:31.005000px;}
.y14f{bottom:31.680000px;}
.y1c8{bottom:31.860000px;}
.y1fd{bottom:33.150000px;}
.y2ae{bottom:33.300000px;}
.y368{bottom:33.525000px;}
.y263{bottom:33.840000px;}
.y228{bottom:34.200000px;}
.y396{bottom:34.230000px;}
.y3b8{bottom:34.245000px;}
.y2ba{bottom:34.380000px;}
.y2d5{bottom:34.740000px;}
.y2db{bottom:34.920000px;}
.y2c6{bottom:35.100000px;}
.y2b2{bottom:35.280000px;}
.y2b4{bottom:35.820000px;}
.y2cf{bottom:36.000000px;}
.y2be{bottom:36.180000px;}
.y2c1{bottom:36.360000px;}
.y2c9{bottom:36.540000px;}
.y2e1{bottom:36.570000px;}
.y3f0{bottom:36.900000px;}
.y35a{bottom:37.665000px;}
.y34b{bottom:38.010000px;}
.y3fc{bottom:38.700000px;}
.y2ca{bottom:39.240000px;}
.y1ef{bottom:39.780000px;}
.y3f9{bottom:41.805000px;}
.y1be{bottom:41.940000px;}
.y3dd{bottom:42.120000px;}
.y1e7{bottom:42.300000px;}
.y38b{bottom:43.200000px;}
.y229{bottom:45.540000px;}
.y32b{bottom:45.570000px;}
.y323{bottom:45.585000px;}
.y3be{bottom:45.945000px;}
.y340{bottom:46.110000px;}
.y2dd{bottom:46.260000px;}
.y316{bottom:47.025000px;}
.y1f5{bottom:47.520000px;}
.y1ce{bottom:48.240000px;}
.y401{bottom:48.600000px;}
.y336{bottom:49.350000px;}
.y416{bottom:50.220000px;}
.y1c7{bottom:50.940000px;}
.y3dc{bottom:51.120000px;}
.y367{bottom:51.165000px;}
.y2d4{bottom:51.660000px;}
.y1d8{bottom:52.380000px;}
.y408{bottom:52.560000px;}
.y2ce{bottom:52.920000px;}
.y359{bottom:54.765000px;}
.y226{bottom:54.900000px;}
.y3bf{bottom:54.945000px;}
.y34a{bottom:55.290000px;}
.y1fc{bottom:56.910000px;}
.y410{bottom:57.060000px;}
.y2{bottom:57.636000px;}
.y3fb{bottom:58.500000px;}
.y1bd{bottom:62.640000px;}
.y1ee{bottom:63.540000px;}
.y38a{bottom:63.900000px;}
.y395{bottom:63.930000px;}
.y3b7{bottom:63.945000px;}
.y322{bottom:64.665000px;}
.y33f{bottom:65.370000px;}
.y315{bottom:65.925000px;}
.y1e6{bottom:66.060000px;}
.y22c{bottom:66.240000px;}
.y1f4{bottom:68.220000px;}
.y335{bottom:68.430000px;}
.y366{bottom:68.445000px;}
.y400{bottom:69.300000px;}
.y1c6{bottom:69.840000px;}
.y3db{bottom:71.820000px;}
.y358{bottom:72.045000px;}
.y1cd{bottom:72.180000px;}
.y349{bottom:72.570000px;}
.y40c{bottom:72.720000px;}
.y415{bottom:73.980000px;}
.y225{bottom:75.600000px;}
.y231{bottom:75.630000px;}
.y3a7{bottom:75.645000px;}
.y1d7{bottom:76.140000px;}
.y407{bottom:76.320000px;}
.y1{bottom:77.796000px;}
.y3fa{bottom:78.300000px;}
.y32a{bottom:83.010000px;}
.y1bc{bottom:83.340000px;}
.y321{bottom:83.565000px;}
.y33e{bottom:84.450000px;}
.y3d3{bottom:84.600000px;}
.y394{bottom:84.630000px;}
.y384{bottom:84.645000px;}
.y314{bottom:85.005000px;}
.y365{bottom:85.725000px;}
.y22f{bottom:86.940000px;}
.y334{bottom:87.330000px;}
.y1ed{bottom:87.480000px;}
.y1c5{bottom:88.740000px;}
.y1f3{bottom:88.920000px;}
.y357{bottom:89.325000px;}
.y1e5{bottom:89.820000px;}
.y348{bottom:89.850000px;}
.y3ff{bottom:90.000000px;}
.y3da{bottom:92.520000px;}
.y389{bottom:93.645000px;}
.y40b{bottom:94.500000px;}
.y22b{bottom:96.300000px;}
.y3b1{bottom:96.330000px;}
.y3a6{bottom:96.345000px;}
.y414{bottom:97.740000px;}
.y406{bottom:100.080000px;}
.y320{bottom:102.645000px;}
.y364{bottom:102.825000px;}
.y33d{bottom:103.350000px;}
.y313{bottom:103.905000px;}
.y3d7{bottom:105.300000px;}
.y393{bottom:105.330000px;}
.y383{bottom:105.345000px;}
.y333{bottom:106.230000px;}
.y356{bottom:106.605000px;}
.y347{bottom:107.130000px;}
.y3d9{bottom:113.220000px;}
.y3d2{bottom:114.300000px;}
.y3b6{bottom:114.345000px;}
.y22e{bottom:117.000000px;}
.y3a5{bottom:117.045000px;}
.y329{bottom:119.910000px;}
.y363{bottom:120.105000px;}
.y31f{bottom:121.545000px;}
.y33c{bottom:122.430000px;}
.y312{bottom:122.805000px;}
.y388{bottom:123.345000px;}
.y355{bottom:123.885000px;}
.y346{bottom:124.410000px;}
.y332{bottom:125.310000px;}
.y3d6{bottom:126.000000px;}
.y3b0{bottom:126.030000px;}
.y382{bottom:126.045000px;}
.y3a0{bottom:132.516000px;}
.yae{bottom:133.236000px;}
.y175{bottom:133.416000px;}
.y3d1{bottom:135.000000px;}
.y392{bottom:135.030000px;}
.yf3{bottom:135.036000px;}
.y3b5{bottom:135.045000px;}
.y171{bottom:135.936000px;}
.y362{bottom:137.385000px;}
.yca{bottom:138.096000px;}
.y213{bottom:138.276000px;}
.y10c{bottom:139.176000px;}
.y4c{bottom:139.356000px;}
.y2a5{bottom:139.716000px;}
.y31e{bottom:140.445000px;}
.y354{bottom:140.985000px;}
.y33b{bottom:141.330000px;}
.y345{bottom:141.510000px;}
.y193{bottom:141.516000px;}
.y328{bottom:141.690000px;}
.y311{bottom:141.885000px;}
.y390{bottom:144.030000px;}
.y387{bottom:144.045000px;}
.y331{bottom:144.210000px;}
.y452{bottom:144.576000px;}
.y14{bottom:145.116000px;}
.y69{bottom:145.656000px;}
.y219{bottom:146.376000px;}
.y3af{bottom:146.730000px;}
.y3a3{bottom:146.745000px;}
.yc9{bottom:149.436000px;}
.y10b{bottom:150.510000px;}
.y18b{bottom:151.410000px;}
.y305{bottom:153.930000px;}
.y3bc{bottom:154.470000px;}
.y361{bottom:154.665000px;}
.y23b{bottom:155.370000px;}
.y391{bottom:155.730000px;}
.y381{bottom:155.745000px;}
.y3f6{bottom:155.910000px;}
.y221{bottom:157.710000px;}
.y353{bottom:158.265000px;}
.y344{bottom:158.790000px;}
.y31d{bottom:159.525000px;}
.y33a{bottom:160.230000px;}
.y2b{bottom:160.590000px;}
.y310{bottom:160.785000px;}
.y253{bottom:161.130000px;}
.y45e{bottom:162.570000px;}
.y330{bottom:163.290000px;}
.y39f{bottom:163.470000px;}
.yad{bottom:164.370000px;}
.y38f{bottom:164.730000px;}
.y386{bottom:164.745000px;}
.yf2{bottom:165.990000px;}
.y23a{bottom:166.530000px;}
.y170{bottom:166.890000px;}
.y379{bottom:167.430000px;}
.y92{bottom:168.690000px;}
.y212{bottom:169.230000px;}
.y2a4{bottom:170.670000px;}
.y7f{bottom:171.930000px;}
.y360{bottom:171.945000px;}
.y1b1{bottom:172.470000px;}
.y133{bottom:174.090000px;}
.y42{bottom:175.350000px;}
.y352{bottom:175.545000px;}
.y451{bottom:175.710000px;}
.y14a{bottom:176.070000px;}
.y3ad{bottom:176.430000px;}
.y380{bottom:176.445000px;}
.y3ee{bottom:177.150000px;}
.y218{bottom:177.510000px;}
.y327{bottom:178.410000px;}
.y31c{bottom:178.425000px;}
.y28f{bottom:178.950000px;}
.y428{bottom:179.130000px;}
.y30f{bottom:179.865000px;}
.y32f{bottom:182.190000px;}
.y18a{bottom:182.370000px;}
.y2ef{bottom:182.910000px;}
.y68{bottom:183.810000px;}
.yc8{bottom:185.250000px;}
.y38e{bottom:185.430000px;}
.y385{bottom:185.445000px;}
.y3ae{bottom:188.130000px;}
.y4b{bottom:188.490000px;}
.y282{bottom:188.850000px;}
.y11a{bottom:189.210000px;}
.y35f{bottom:189.225000px;}
.y3cd{bottom:189.930000px;}
.y10a{bottom:190.470000px;}
.y252{bottom:192.090000px;}
.y351{bottom:192.825000px;}
.y343{bottom:193.350000px;}
.y1ae{bottom:193.710000px;}
.y39e{bottom:194.610000px;}
.yac{bottom:195.330000px;}
.y174{bottom:195.510000px;}
.y239{bottom:195.690000px;}
.y13{bottom:196.590000px;}
.y444{bottom:196.950000px;}
.y3ac{bottom:197.130000px;}
.y37f{bottom:197.145000px;}
.y3e0{bottom:197.490000px;}
.y31b{bottom:197.505000px;}
.y16f{bottom:198.030000px;}
.y30e{bottom:198.765000px;}
.yde{bottom:200.370000px;}
.y32e{bottom:201.270000px;}
.y2a3{bottom:201.810000px;}
.y1b4{bottom:202.170000px;}
.y304{bottom:202.890000px;}
.y3bb{bottom:203.610000px;}
.y3b4{bottom:205.965000px;}
.y38d{bottom:206.130000px;}
.y37e{bottom:206.145000px;}
.y35e{bottom:206.325000px;}
.y220{bottom:206.670000px;}
.y1e1{bottom:207.210000px;}
.y217{bottom:208.470000px;}
.yc7{bottom:209.190000px;}
.y2a{bottom:209.550000px;}
.y425{bottom:209.910000px;}
.y427{bottom:210.090000px;}
.y350{bottom:210.105000px;}
.y342{bottom:210.630000px;}
.y3b9{bottom:211.710000px;}
.y189{bottom:213.510000px;}
.y2ee{bottom:214.230000px;}
.yf1{bottom:215.130000px;}
.y30a{bottom:215.310000px;}
.y31a{bottom:216.405000px;}
.y378{bottom:216.570000px;}
.y91{bottom:217.650000px;}
.y3ab{bottom:217.830000px;}
.y30d{bottom:217.845000px;}
.y276{bottom:219.630000px;}
.y281{bottom:219.810000px;}
.y32d{bottom:220.170000px;}
.y119{bottom:220.350000px;}
.y7e{bottom:220.890000px;}
.y109{bottom:221.610000px;}
.y67{bottom:221.970000px;}
.y132{bottom:223.230000px;}
.y35d{bottom:223.605000px;}
.y41{bottom:224.490000px;}
.y450{bottom:224.670000px;}
.y1ad{bottom:224.850000px;}
.y149{bottom:225.210000px;}
.y39d{bottom:225.570000px;}
.y3ed{bottom:226.110000px;}
.yab{bottom:226.470000px;}
.y3b3{bottom:226.665000px;}
.y238{bottom:226.830000px;}
.y37d{bottom:226.845000px;}
.y34f{bottom:227.385000px;}
.y28e{bottom:227.910000px;}
.y16e{bottom:228.990000px;}
.y211{bottom:231.330000px;}
.y2a2{bottom:232.770000px;}
.y319{bottom:235.305000px;}
.y30c{bottom:236.745000px;}
.y4a{bottom:237.450000px;}
.y3aa{bottom:238.530000px;}
.y216{bottom:239.610000px;}
.y35c{bottom:240.885000px;}
.y251{bottom:241.230000px;}
.ydd{bottom:242.130000px;}
.y45d{bottom:242.670000px;}
.y439{bottom:244.290000px;}
.y188{bottom:244.470000px;}
.y2ed{bottom:245.550000px;}
.yf0{bottom:246.090000px;}
.y3df{bottom:246.630000px;}
.y3b2{bottom:246.990000px;}
.y3d5{bottom:247.530000px;}
.y261{bottom:249.330000px;}
.y12{bottom:250.770000px;}
.yc6{bottom:250.950000px;}
.y1b3{bottom:251.310000px;}
.y303{bottom:252.030000px;}
.y108{bottom:252.570000px;}
.y3f8{bottom:253.110000px;}
.y318{bottom:254.385000px;}
.y275{bottom:254.730000px;}
.y30b{bottom:255.645000px;}
.y1ac{bottom:255.810000px;}
.y148{bottom:256.170000px;}
.yaa{bottom:257.430000px;}
.y173{bottom:257.610000px;}
.y237{bottom:257.790000px;}
.y29{bottom:258.690000px;}
.y424{bottom:258.870000px;}
.y66{bottom:260.130000px;}
.y210{bottom:262.470000px;}
.y2a1{bottom:263.910000px;}
.y309{bottom:264.270000px;}
.y377{bottom:265.530000px;}
.y90{bottom:266.790000px;}
.y7d{bottom:270.030000px;}
.y118{bottom:270.570000px;}
.y131{bottom:272.235000px;}
.y40{bottom:273.495000px;}
.y45c{bottom:273.855000px;}
.yc5{bottom:274.755000px;}
.y3ec{bottom:275.295000px;}
.y187{bottom:275.655000px;}
.y28d{bottom:277.095000px;}
.yef{bottom:277.275000px;}
.y3d8{bottom:281.775000px;}
.y107{bottom:283.755000px;}
.ydc{bottom:283.935000px;}
.y49{bottom:286.635000px;}
.y44f{bottom:286.815000px;}
.y1ab{bottom:286.995000px;}
.y147{bottom:287.355000px;}
.ya9{bottom:288.615000px;}
.y16d{bottom:291.135000px;}
.y438{bottom:293.295000px;}
.y20f{bottom:293.475000px;}
.y280{bottom:293.655000px;}
.y274{bottom:294.195000px;}
.y2ec{bottom:294.735000px;}
.y2a0{bottom:294.915000px;}
.y65{bottom:297.975000px;}
.y260{bottom:298.335000px;}
.yc4{bottom:298.515000px;}
.y1b2{bottom:300.315000px;}
.y302{bottom:301.035000px;}
.y192{bottom:301.755000px;}
.y24a{bottom:303.015000px;}
.y250{bottom:303.375000px;}
.y21f{bottom:304.815000px;}
.y11{bottom:305.175000px;}
.y39c{bottom:305.715000px;}
.y186{bottom:306.615000px;}
.y236{bottom:306.975000px;}
.y28{bottom:307.695000px;}
.y423{bottom:308.055000px;}
.yee{bottom:308.235000px;}
.y308{bottom:313.275000px;}
.y27e{bottom:314.715000px;}
.y8f{bottom:315.795000px;}
.y1aa{bottom:317.955000px;}
.y146{bottom:318.315000px;}
.y7c{bottom:319.035000px;}
.y117{bottom:319.755000px;}
.y130{bottom:321.375000px;}
.y16c{bottom:322.275000px;}
.y3f{bottom:322.635000px;}
.y45b{bottom:322.815000px;}
.y3eb{bottom:324.255000px;}
.y20e{bottom:324.615000px;}
.ydb{bottom:325.695000px;}
.y28c{bottom:326.055000px;}
.y64{bottom:329.655000px;}
.ya8{bottom:331.275000px;}
.y3cc{bottom:332.175000px;}
.y106{bottom:332.715000px;}
.y273{bottom:333.615000px;}
.y24f{bottom:334.335000px;}
.y48{bottom:335.595000px;}
.y44e{bottom:335.955000px;}
.y39b{bottom:336.855000px;}
.y185{bottom:337.755000px;}
.y235{bottom:337.935000px;}
.yed{bottom:339.375000px;}
.yc3{bottom:340.455000px;}
.y437{bottom:342.435000px;}
.y2eb{bottom:344.055000px;}
.y27f{bottom:345.855000px;}
.y25f{bottom:347.295000px;}
.y1a9{bottom:349.095000px;}
.y145{bottom:349.275000px;}
.y301{bottom:350.175000px;}
.y116{bottom:350.715000px;}
.y249{bottom:351.975000px;}
.y426{bottom:352.335000px;}
.y16b{bottom:353.235000px;}
.y21e{bottom:353.955000px;}
.y20d{bottom:355.575000px;}
.y27{bottom:356.835000px;}
.y29f{bottom:357.015000px;}
.y443{bottom:357.195000px;}
.y10{bottom:359.355000px;}
.y63{bottom:360.255000px;}
.y307{bottom:362.415000px;}
.y3cb{bottom:363.135000px;}
.y376{bottom:363.675000px;}
.y105{bottom:363.855000px;}
.yc2{bottom:364.215000px;}
.y8e{bottom:364.935000px;}
.yda{bottom:367.635000px;}
.y39a{bottom:367.815000px;}
.y7b{bottom:368.175000px;}
.y184{bottom:368.715000px;}
.y234{bottom:369.075000px;}
.yec{bottom:370.335000px;}
.y3e{bottom:371.595000px;}
.y272{bottom:373.035000px;}
.y3ea{bottom:373.395000px;}
.y28b{bottom:375.195000px;}
.y1a8{bottom:380.055000px;}
.y1e0{bottom:380.415000px;}
.y115{bottom:381.855000px;}
.ya7{bottom:383.295000px;}
.y16a{bottom:384.375000px;}
.y47{bottom:384.735000px;}
.y44d{bottom:384.915000px;}
.y20c{bottom:386.715000px;}
.y29e{bottom:387.975000px;}
.y442{bottom:388.155000px;}
.y62{bottom:390.855000px;}
.y436{bottom:391.395000px;}
.y306{bottom:393.375000px;}
.y3ca{bottom:394.275000px;}
.y104{bottom:394.815000px;}
.y25e{bottom:396.435000px;}
.y144{bottom:398.415000px;}
.y399{bottom:398.775000px;}
.y300{bottom:399.135000px;}
.y183{bottom:399.855000px;}
.y233{bottom:400.035000px;}
.y248{bottom:401.115000px;}
.yeb{bottom:401.295000px;}
.y21d{bottom:402.915000px;}
.y26{bottom:405.795000px;}
.yc1{bottom:405.975000px;}
.y2ea{bottom:406.155000px;}
.yd9{bottom:409.395000px;}
.y1df{bottom:411.375000px;}
.y271{bottom:412.455000px;}
.y114{bottom:412.815000px;}
.yf{bottom:413.175000px;}
.y8d{bottom:413.895000px;}
.y3f4{bottom:414.255000px;}
.ya6{bottom:414.435000px;}
.y44c{bottom:416.055000px;}
.y7a{bottom:417.135000px;}
.y29d{bottom:419.115000px;}
.y12f{bottom:419.475000px;}
.y3d{bottom:420.735000px;}
.y3d4{bottom:420.915000px;}
.y61{bottom:421.635000px;}
.y3e9{bottom:422.355000px;}
.y28a{bottom:424.155000px;}
.y191{bottom:425.955000px;}
.y169{bottom:427.035000px;}
.y1a7{bottom:429.195000px;}
.y143{bottom:429.375000px;}
.y182{bottom:430.815000px;}
.yea{bottom:432.435000px;}
.y46{bottom:433.695000px;}
.y45a{bottom:434.055000px;}
.y20b{bottom:435.855000px;}
.y2e9{bottom:437.295000px;}
.y435{bottom:440.535000px;}
.y1de{bottom:442.515000px;}
.y3c9{bottom:443.235000px;}
.y103{bottom:443.955000px;}
.ya5{bottom:445.395000px;}
.y411{bottom:446.655000px;}
.y398{bottom:447.915000px;}
.y2ff{bottom:448.275000px;}
.yc0{bottom:448.635000px;}
.y40f{bottom:448.815000px;}
.y232{bottom:449.175000px;}
.y247{bottom:450.075000px;}
.yd8{bottom:451.155000px;}
.y21c{bottom:452.055000px;}
.y60{bottom:452.235000px;}
.y25{bottom:454.935000px;}
.y422{bottom:455.115000px;}
.y289{bottom:455.295000px;}
.y190{bottom:456.915000px;}
.y1a6{bottom:460.155000px;}
.y142{bottom:460.515000px;}
.y375{bottom:461.775000px;}
.y181{bottom:461.955000px;}
.y8c{bottom:463.035000px;}
.ye9{bottom:463.395000px;}
.y44b{bottom:465.015000px;}
.y79{bottom:466.275000px;}
.ye{bottom:467.715000px;}
.y20a{bottom:468.075000px;}
.y2e8{bottom:468.255000px;}
.y12e{bottom:468.435000px;}
.y3c{bottom:469.695000px;}
.y3e8{bottom:471.495000px;}
.y3c8{bottom:474.375000px;}
.y102{bottom:474.915000px;}
.ya4{bottom:476.535000px;}
.y168{bottom:479.055000px;}
.y29c{bottom:480.855000px;}
.y45{bottom:482.835000px;}
.y230{bottom:484.275000px;}
.y18f{bottom:488.055000px;}
.y1a5{bottom:491.295000px;}
.y141{bottom:491.475000px;}
.yd7{bottom:492.915000px;}
.ye8{bottom:494.535000px;}
.y44a{bottom:495.975000px;}
.y397{bottom:496.875000px;}
.y2fe{bottom:497.235000px;}
.y246{bottom:499.215000px;}
.y441{bottom:499.395000px;}
.y3a9{bottom:499.755000px;}
.y209{bottom:500.475000px;}
.y3b{bottom:500.835000px;}
.y21b{bottom:501.015000px;}
.y434{bottom:502.635000px;}
.y24{bottom:503.895000px;}
.y421{bottom:504.075000px;}
.y288{bottom:504.255000px;}
.y3c7{bottom:505.335000px;}
.y101{bottom:506.055000px;}
.ya3{bottom:507.495000px;}
.y374{bottom:510.915000px;}
.y8b{bottom:511.995000px;}
.y270{bottom:512.175000px;}
.y5f{bottom:513.615000px;}
.y78{bottom:515.235000px;}
.y2e7{bottom:517.035000px;}
.y12d{bottom:517.575000px;}
.y27d{bottom:519.015000px;}
.y3e7{bottom:520.455000px;}
.yd{bottom:522.075000px;}
.y326{bottom:523.155000px;}
.y32c{bottom:523.335000px;}
.y180{bottom:524.055000px;}
.y341{bottom:525.135000px;}
.ye7{bottom:525.495000px;}
.y167{bottom:528.195000px;}
.y29b{bottom:530.175000px;}
.y440{bottom:530.355000px;}
.y208{bottom:531.435000px;}
.y44{bottom:531.795000px;}
.y38c{bottom:532.155000px;}
.y433{bottom:533.595000px;}
.yd6{bottom:534.855000px;}
.y1fb{bottom:535.575000px;}
.y3c6{bottom:536.475000px;}
.y100{bottom:537.015000px;}
.ya2{bottom:538.635000px;}
.y1a4{bottom:540.255000px;}
.y140{bottom:540.615000px;}
.y373{bottom:541.875000px;}
.y5e{bottom:544.215000px;}
.y449{bottom:545.115000px;}
.y2fd{bottom:546.375000px;}
.y245{bottom:548.175000px;}
.y12c{bottom:548.535000px;}
.y3a{bottom:549.795000px;}
.y21a{bottom:549.975000px;}
.y339{bottom:551.235000px;}
.y23{bottom:553.035000px;}
.y420{bottom:553.215000px;}
.y287{bottom:553.395000px;}
.y215{bottom:555.015000px;}
.y166{bottom:559.185000px;}
.y8a{bottom:561.165000px;}
.ybf{bottom:562.965000px;}
.y207{bottom:563.865000px;}
.y77{bottom:564.405000px;}
.y432{bottom:564.765000px;}
.y2e6{bottom:566.385000px;}
.y3c5{bottom:567.465000px;}
.yff{bottom:568.005000px;}
.y24e{bottom:569.625000px;}
.y1a3{bottom:571.425000px;}
.y26f{bottom:572.325000px;}
.y17f{bottom:573.045000px;}
.y1d6{bottom:573.945000px;}
.ye6{bottom:574.665000px;}
.y5d{bottom:574.845000px;}
.y448{bottom:576.105000px;}
.yc{bottom:576.285000px;}
.yd5{bottom:576.645000px;}
.y29a{bottom:579.345000px;}
.y43f{bottom:579.525000px;}
.y12b{bottom:579.705000px;}
.y15b{bottom:579.885000px;}
.y43{bottom:580.965000px;}
.y27c{bottom:581.145000px;}
.y22{bottom:584.025000px;}
.y2df{bottom:584.205000px;}
.y286{bottom:584.385000px;}
.y2cd{bottom:584.565000px;}
.y22d{bottom:585.825000px;}
.y214{bottom:586.005000px;}
.ya1{bottom:587.625000px;}
.y13f{bottom:589.605000px;}
.y459{bottom:594.105000px;}
.ybe{bottom:595.185000px;}
.y2fc{bottom:595.365000px;}
.y206{bottom:596.265000px;}
.y244{bottom:597.345000px;}
.y2e5{bottom:597.525000px;}
.y3c4{bottom:598.605000px;}
.y39{bottom:598.965000px;}
.yfe{bottom:599.145000px;}
.y24d{bottom:600.765000px;}
.y41f{bottom:602.205000px;}
.y1a2{bottom:602.385000px;}
.y17e{bottom:604.005000px;}
.y5c{bottom:605.625000px;}
.y165{bottom:608.325000px;}
.y89{bottom:610.125000px;}
.y12a{bottom:610.665000px;}
.y27b{bottom:612.105000px;}
.y76{bottom:613.365000px;}
.y431{bottom:613.725000px;}
.y285{bottom:615.525000px;}
.y1b0{bottom:617.145000px;}
.yd4{bottom:618.405000px;}
.y3e6{bottom:618.585000px;}
.ya0{bottom:618.765000px;}
.y1f9{bottom:621.465000px;}
.y447{bottom:625.245000px;}
.ybd{bottom:626.325000px;}
.y299{bottom:628.305000px;}
.y2e4{bottom:628.485000px;}
.y3c3{bottom:629.565000px;}
.y38{bottom:629.925000px;}
.yfd{bottom:630.105000px;}
.yb{bottom:630.465000px;}
.y24c{bottom:631.725000px;}
.y26e{bottom:632.445000px;}
.y21{bottom:633.165000px;}
.y1a1{bottom:633.525000px;}
.y17d{bottom:635.145000px;}
.y5b{bottom:636.225000px;}
.ye5{bottom:636.765000px;}
.y13e{bottom:638.745000px;}
.y164{bottom:639.285000px;}
.y15a{bottom:639.465000px;}
.y88{bottom:641.265000px;}
.y129{bottom:641.805000px;}
.y27a{bottom:643.245000px;}
.y2fb{bottom:644.505000px;}
.y430{bottom:644.865000px;}
.y243{bottom:646.305000px;}
.y205{bottom:646.485000px;}
.y1af{bottom:648.105000px;}
.y9f{bottom:649.725000px;}
.y41e{bottom:651.345000px;}
.y446{bottom:656.205000px;}
.ybc{bottom:658.725000px;}
.y43e{bottom:659.625000px;}
.yd3{bottom:660.165000px;}
.y37{bottom:661.065000px;}
.yfc{bottom:661.245000px;}
.y75{bottom:662.325000px;}
.y405{bottom:662.505000px;}
.y25d{bottom:662.865000px;}
.y20{bottom:664.125000px;}
.y284{bottom:664.485000px;}
.y17c{bottom:666.105000px;}
.y5a{bottom:666.825000px;}
.y40a{bottom:667.005000px;}
.ye4{bottom:667.725000px;}
.y3fe{bottom:669.705000px;}
.y279{bottom:674.205000px;}
.y42f{bottom:675.825000px;}
.y2e3{bottom:677.265000px;}
.y298{bottom:677.445000px;}
.y3c2{bottom:678.705000px;}
.y1d2{bottom:679.065000px;}
.y113{bottom:679.245000px;}
.y9e{bottom:680.865000px;}
.y1a0{bottom:682.485000px;}
.y372{bottom:684.105000px;}
.ya{bottom:684.285000px;}
.y458{bottom:687.345000px;}
.y13d{bottom:687.705000px;}
.y163{bottom:688.425000px;}
.y87{bottom:690.225000px;}
.y128{bottom:690.765000px;}
.ybb{bottom:690.945000px;}
.y36{bottom:692.025000px;}
.yfb{bottom:692.205000px;}
.y26d{bottom:692.565000px;}
.y2fa{bottom:693.465000px;}
.y25c{bottom:693.825000px;}
.y3d0{bottom:694.365000px;}
.y242{bottom:695.445000px;}
.y204{bottom:695.625000px;}
.y17b{bottom:697.245000px;}
.y59{bottom:697.605000px;}
.y1ec{bottom:698.145000px;}
.ye3{bottom:698.865000px;}
.y159{bottom:699.765000px;}
.y41d{bottom:700.305000px;}
.yd2{bottom:702.105000px;}
.y2bc{bottom:703.005000px;}
.y2c0{bottom:704.085000px;}
.y2c8{bottom:704.265000px;}
.y2c5{bottom:705.165000px;}
.y278{bottom:705.345000px;}
.y42e{bottom:706.965000px;}
.y43d{bottom:708.585000px;}
.y3c1{bottom:709.665000px;}
.y112{bottom:710.205000px;}
.y74{bottom:711.465000px;}
.y1f{bottom:713.265000px;}
.y19f{bottom:713.625000px;}
.y371{bottom:715.245000px;}
.y3e5{bottom:716.685000px;}
.y457{bottom:718.305000px;}
.y2e2{bottom:720.285000px;}
.y127{bottom:721.905000px;}
.yba{bottom:722.085000px;}
.y35{bottom:723.165000px;}
.yfa{bottom:723.345000px;}
.y25b{bottom:724.965000px;}
.y297{bottom:726.405000px;}
.y203{bottom:726.585000px;}
.y58{bottom:728.205000px;}
.y22a{bottom:728.745000px;}
.y9d{bottom:729.825000px;}
.y1c4{bottom:732.525000px;}
.y445{bottom:736.305000px;}
.y13c{bottom:736.845000px;}
.y162{bottom:737.385000px;}
.y9{bottom:739.005000px;}
.y86{bottom:739.365000px;}
.y43c{bottom:739.725000px;}
.y111{bottom:741.345000px;}
.y2f9{bottom:742.425000px;}
.yd1{bottom:743.865000px;}
.y1e{bottom:744.225000px;}
.y241{bottom:744.405000px;}
.y19e{bottom:744.585000px;}
.y17a{bottom:746.205000px;}
.y1cc{bottom:746.745000px;}
.y41c{bottom:749.445000px;}
.y42d{bottom:749.625000px;}
.y26c{bottom:752.685000px;}
.y126{bottom:752.865000px;}
.y277{bottom:753.945000px;}
.y34{bottom:754.125000px;}
.yf9{bottom:754.305000px;}
.y25a{bottom:755.925000px;}
.y202{bottom:757.725000px;}
.y3c0{bottom:758.805000px;}
.y57{bottom:758.985000px;}
.y158{bottom:759.345000px;}
.y73{bottom:760.425000px;}
.y9c{bottom:760.965000px;}
.y37c{bottom:764.205000px;}
.y3e4{bottom:765.825000px;}
.y456{bottom:767.445000px;}
.y161{bottom:768.525000px;}
.y43b{bottom:770.685000px;}
.yb9{bottom:772.305000px;}
.y2f8{bottom:773.565000px;}
.y369{bottom:774.105000px;}
.y296{bottom:775.545000px;}
.y19d{bottom:775.725000px;}
.y179{bottom:777.345000px;}
.ye2{bottom:778.965000px;}
.y2b9{bottom:779.505000px;}
.y125{bottom:784.005000px;}
.y33{bottom:785.265000px;}
.yf8{bottom:785.445000px;}
.yd0{bottom:785.625000px;}
.y13b{bottom:785.805000px;}
.y259{bottom:787.065000px;}
.y85{bottom:788.325000px;}
.y283{bottom:788.685000px;}
.y1dc{bottom:788.865000px;}
.y56{bottom:789.585000px;}
.y172{bottom:790.305000px;}
.y9b{bottom:791.925000px;}
.y26a{bottom:792.285000px;}
.y8{bottom:793.185000px;}
.y1d{bottom:793.365000px;}
.y240{bottom:793.545000px;}
.y3bd{bottom:793.905000px;}
.y370{bottom:795.345000px;}
.y2b6{bottom:796.065000px;}
.y41b{bottom:798.405000px;}
.y42c{bottom:801.825000px;}
.y110{bottom:803.445000px;}
.y2f7{bottom:804.525000px;}
.y19c{bottom:806.685000px;}
.y178{bottom:808.305000px;}
.y72{bottom:809.565000px;}
.ye1{bottom:809.925000px;}
.y1ea{bottom:814.605000px;}
.y3e3{bottom:814.785000px;}
.y34e{bottom:814.965000px;}
.y32{bottom:816.225000px;}
.yf7{bottom:816.405000px;}
.y160{bottom:817.485000px;}
.y258{bottom:818.025000px;}
.y154{bottom:819.105000px;}
.y43a{bottom:819.825000px;}
.y55{bottom:820.185000px;}
.yb8{bottom:821.445000px;}
.y9a{bottom:823.065000px;}
.y295{bottom:824.505000px;}
.y36f{bottom:826.305000px;}
.ycf{bottom:827.385000px;}
.y3f3{bottom:827.745000px;}
.y455{bottom:829.545000px;}
.y3f1{bottom:831.165000px;}
.y268{bottom:831.705000px;}
.y124{bottom:832.965000px;}
.y18e{bottom:834.405000px;}
.y13a{bottom:834.945000px;}
.y84{bottom:837.465000px;}
.y19b{bottom:837.825000px;}
.y177{bottom:839.490000px;}
.ye0{bottom:841.110000px;}
.y1c{bottom:842.370000px;}
.y23f{bottom:842.550000px;}
.y7{bottom:847.050000px;}
.y31{bottom:847.410000px;}
.y41a{bottom:847.590000px;}
.y1cb{bottom:848.130000px;}
.y15f{bottom:848.670000px;}
.y1c2{bottom:848.850000px;}
.y2b1{bottom:850.290000px;}
.y42b{bottom:850.830000px;}
.y54{bottom:851.010000px;}
.yb7{bottom:852.450000px;}
.y99{bottom:854.070000px;}
.y36e{bottom:857.310000px;}
.y71{bottom:858.570000px;}
.y3e2{bottom:863.970000px;}
.y123{bottom:864.150000px;}
.yf6{bottom:865.590000px;}
.y257{bottom:867.210000px;}
.y19a{bottom:868.830000px;}
.yce{bottom:869.370000px;}
.y176{bottom:870.450000px;}
.y267{bottom:871.170000px;}
.ydf{bottom:872.070000px;}
.y1b{bottom:873.510000px;}
.y294{bottom:873.690000px;}
.y1e4{bottom:874.950000px;}
.y152{bottom:878.010000px;}
.y30{bottom:878.370000px;}
.y454{bottom:878.550000px;}
.y15e{bottom:879.630000px;}
.y53{bottom:881.610000px;}
.y42a{bottom:881.970000px;}
.y6{bottom:883.230000px;}
.y10f{bottom:883.590000px;}
.y139{bottom:883.950000px;}
.y24b{bottom:885.210000px;}
.y83{bottom:886.470000px;}
.y1bb{bottom:891.510000px;}
.y23e{bottom:891.690000px;}
.y122{bottom:896.370000px;}
.yf5{bottom:896.550000px;}
.y256{bottom:898.170000px;}
.y2f6{bottom:899.430000px;}
.y199{bottom:899.970000px;}
.yb6{bottom:901.590000px;}
.y98{bottom:903.210000px;}
.y3cf{bottom:905.730000px;}
.y36d{bottom:906.450000px;}
.y70{bottom:907.710000px;}
.y2f{bottom:909.510000px;}
.y453{bottom:909.690000px;}
.y266{bottom:910.590000px;}
.ycd{bottom:911.130000px;}
.y52{bottom:912.210000px;}
.y3e1{bottom:912.930000px;}
.y10e{bottom:914.550000px;}
.y2ad{bottom:917.250000px;}
.y5{bottom:919.410000px;}
.y1a{bottom:922.470000px;}
.y293{bottom:922.650000px;}
.y121{bottom:927.510000px;}
.yf4{bottom:927.690000px;}
.y15d{bottom:928.770000px;}
.y2f5{bottom:930.390000px;}
.y201{bottom:930.930000px;}
.yb5{bottom:932.550000px;}
.y138{bottom:933.090000px;}
.y97{bottom:934.170000px;}
.y82{bottom:935.610000px;}
.y3a2{bottom:936.870000px;}
.y36c{bottom:937.410000px;}
.y14e{bottom:938.310000px;}
.y3ef{bottom:940.110000px;}
.y2e{bottom:940.470000px;}
.y23d{bottom:940.650000px;}
.y255{bottom:941.010000px;}
.y51{bottom:942.990000px;}
.y3ce{bottom:945.150000px;}
.y10d{bottom:945.690000px;}
.y198{bottom:948.930000px;}
.y6f{bottom:949.830000px;}
.y265{bottom:950.010000px;}
.y224{bottom:952.530000px;}
.ycc{bottom:952.890000px;}
.y19{bottom:953.610000px;}
.y3ba{bottom:958.650000px;}
.y120{bottom:959.730000px;}
.y2a6{bottom:961.710000px;}
.y2f4{bottom:961.890000px;}
.y200{bottom:962.070000px;}
.yb4{bottom:963.690000px;}
.y96{bottom:965.310000px;}
.y81{bottom:966.570000px;}
.y36b{bottom:968.550000px;}
.y2d{bottom:971.610000px;}
.y292{bottom:971.790000px;}
.y6e{bottom:972.870000px;}
.y50{bottom:973.590000px;}
.y4{bottom:973.770000px;}
.y3a1{bottom:976.290000px;}
.ycb{bottom:976.650000px;}
.y197{bottom:980.070000px;}
.y137{bottom:982.050000px;}
.y18{bottom:984.570000px;}
.y254{bottom:986.730000px;}
.y264{bottom:989.430000px;}
.y23c{bottom:989.790000px;}
.y11f{bottom:990.870000px;}
.y1f2{bottom:992.850000px;}
.y429{bottom:993.030000px;}
.y2f3{bottom:993.210000px;}
.y1e3{bottom:993.930000px;}
.yb3{bottom:994.650000px;}
.y6d{bottom:996.090000px;}
.y95{bottom:996.270000px;}
.y14d{bottom:997.890000px;}
.y36a{bottom:999.510000px;}
.y2c{bottom:1002.570000px;}
.y1b8{bottom:1004.010000px;}
.y4f{bottom:1004.190000px;}
.y18d{bottom:1007.790000px;}
.y196{bottom:1011.030000px;}
.y80{bottom:1015.710000px;}
.y37b{bottom:1016.970000px;}
.y6c{bottom:1019.310000px;}
.y291{bottom:1020.750000px;}
.y3{bottom:1021.470000px;}
.y11e{bottom:1023.090000px;}
.y2f2{bottom:1024.530000px;}
.yb2{bottom:1025.790000px;}
.y94{bottom:1027.410000px;}
.y136{bottom:1031.190000px;}
.y262{bottom:1032.630000px;}
.y17{bottom:1033.710000px;}
.y2a9{bottom:1034.610000px;}
.y4e{bottom:1034.970000px;}
.y18c{bottom:1038.750000px;}
.y195{bottom:1041.990000px;}
.y6b{bottom:1042.350000px;}
.y222{bottom:1053.330000px;}
.y11d{bottom:1054.230000px;}
.y14b{bottom:1055.850000px;}
.y37a{bottom:1056.390000px;}
.yb1{bottom:1056.750000px;}
.y1e2{bottom:1061.250000px;}
.y16{bottom:1064.670000px;}
.y4d{bottom:1065.570000px;}
.y290{bottom:1069.890000px;}
.y93{bottom:1070.070000px;}
.y1b5{bottom:1072.230000px;}
.y194{bottom:1073.130000px;}
.y135{bottom:1080.150000px;}
.y11c{bottom:1086.630000px;}
.y2f1{bottom:1087.170000px;}
.yb0{bottom:1087.890000px;}
.y2e0{bottom:1103.370000px;}
.y15{bottom:1115.790000px;}
.y6a{bottom:1115.970000px;}
.y11b{bottom:1117.590000px;}
.y2f0{bottom:1118.490000px;}
.yaf{bottom:1118.850000px;}
.y134{bottom:1119.030000px;}
.h4f{height:15.696000px;}
.h4e{height:16.596000px;}
.h42{height:17.640000px;}
.h10{height:21.420000px;}
.h17{height:21.600000px;}
.h19{height:23.220000px;}
.h11{height:23.400000px;}
.hd{height:28.800000px;}
.h52{height:29.520000px;}
.hc{height:32.064609px;}
.h2e{height:34.380000px;}
.hb{height:38.158594px;}
.h26{height:38.520000px;}
.h1e{height:38.700000px;}
.h25{height:38.736000px;}
.h5b{height:39.240000px;}
.h2c{height:39.783867px;}
.h23{height:40.424062px;}
.h1c{height:40.500000px;}
.h15{height:40.680000px;}
.h29{height:40.860000px;}
.h31{height:41.400000px;}
.h2f{height:44.534180px;}
.h2b{height:44.640000px;}
.hf{height:46.476000px;}
.h2d{height:46.620000px;}
.he{height:47.160000px;}
.h2a{height:49.284492px;}
.h34{height:49.320000px;}
.h30{height:49.860000px;}
.h32{height:50.400000px;}
.h33{height:50.580000px;}
.h43{height:53.237812px;}
.h38{height:53.856000px;}
.h4d{height:54.000000px;}
.h2{height:54.628594px;}
.h53{height:58.176000px;}
.h3f{height:58.651172px;}
.h24{height:59.400000px;}
.h27{height:59.436000px;}
.h37{height:61.740000px;}
.h36{height:63.000000px;}
.h35{height:64.260000px;}
.h7{height:65.010937px;}
.h55{height:67.837500px;}
.h8{height:70.628906px;}
.h3{height:70.664062px;}
.h28{height:71.955000px;}
.h6{height:72.562500px;}
.h1d{height:73.296000px;}
.h59{height:73.440000px;}
.ha{height:74.004654px;}
.h9{height:80.464922px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.h14{height:88.560000px;}
.h16{height:92.520000px;}
.h54{height:93.960000px;}
.h5c{height:96.508125px;}
.h12{height:99.540000px;}
.h1f{height:100.800000px;}
.h22{height:100.836000px;}
.h13{height:103.680000px;}
.h1a{height:103.860000px;}
.h1b{height:105.120000px;}
.h18{height:106.200000px;}
.h56{height:115.200000px;}
.h58{height:118.440000px;}
.h20{height:121.536000px;}
.h5a{height:123.120000px;}
.h57{height:125.460000px;}
.h4c{height:138.420000px;}
.h51{height:140.436000px;}
.h21{height:142.200000px;}
.h50{height:152.670000px;}
.h46{height:171.930000px;}
.h3d{height:175.170000px;}
.h4a{height:210.630000px;}
.h49{height:222.330000px;}
.h3e{height:224.130000px;}
.h3b{height:230.250000px;}
.h45{height:231.330000px;}
.h3c{height:235.110000px;}
.h40{height:240.870000px;}
.h48{height:251.850000px;}
.h44{height:252.030000px;}
.h41{height:254.370000px;}
.h47{height:263.730000px;}
.h3a{height:269.310000px;}
.h39{height:270.570000px;}
.h4b{height:272.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w40{width:23.400000px;}
.w3f{width:23.580000px;}
.w32{width:24.696000px;}
.w3e{width:25.020000px;}
.w33{width:27.900000px;}
.w37{width:29.160000px;}
.w38{width:30.276000px;}
.w34{width:31.320000px;}
.w31{width:31.500000px;}
.w35{width:32.580000px;}
.w36{width:34.956000px;}
.w2f{width:41.400000px;}
.w2d{width:44.820000px;}
.w2c{width:45.000000px;}
.w2e{width:46.116000px;}
.w51{width:55.800000px;}
.w2b{width:56.196000px;}
.w52{width:64.080000px;}
.w41{width:66.600000px;}
.w30{width:79.740000px;}
.w2a{width:82.080000px;}
.w24{width:86.616000px;}
.w16{width:92.880000px;}
.w1a{width:93.240000px;}
.w18{width:98.100000px;}
.w21{width:98.496000px;}
.w22{width:98.820000px;}
.w1e{width:99.216000px;}
.w58{width:100.476000px;}
.w29{width:101.196000px;}
.w5d{width:101.376000px;}
.w27{width:102.240000px;}
.w5c{width:105.840000px;}
.w59{width:107.496000px;}
.w25{width:109.116000px;}
.w28{width:113.616000px;}
.wf{width:115.056000px;}
.w20{width:116.316000px;}
.w1d{width:116.856000px;}
.w26{width:118.116000px;}
.w5a{width:126.540000px;}
.w5b{width:128.160000px;}
.w43{width:135.036000px;}
.w46{width:136.476000px;}
.w4b{width:138.456000px;}
.w57{width:138.600000px;}
.w4c{width:144.756000px;}
.w23{width:145.116000px;}
.w47{width:146.736000px;}
.w44{width:148.176000px;}
.w56{width:168.510000px;}
.w54{width:170.850000px;}
.w14{width:179.130000px;}
.w13{width:180.030000px;}
.we{width:181.650000px;}
.wd{width:182.550000px;}
.w6{width:186.330000px;}
.w8{width:187.590000px;}
.w10{width:187.770000px;}
.w7{width:188.490000px;}
.w55{width:189.390000px;}
.wc{width:194.430000px;}
.wb{width:195.150000px;}
.w12{width:209.370000px;}
.wa{width:209.415000px;}
.w53{width:209.550000px;}
.w15{width:210.090000px;}
.w11{width:210.270000px;}
.w9{width:210.315000px;}
.w4f{width:213.690000px;}
.w17{width:230.115000px;}
.w1b{width:230.475000px;}
.w19{width:230.835000px;}
.w50{width:247.575000px;}
.w3a{width:263.955000px;}
.w3d{width:274.035000px;}
.w3b{width:288.255000px;}
.w3c{width:292.215000px;}
.w45{width:362.955000px;}
.w49{width:368.715000px;}
.w4d{width:370.695000px;}
.w3{width:398.055000px;}
.w5{width:398.235000px;}
.w2{width:399.135000px;}
.w4{width:399.315000px;}
.w1c{width:433.335000px;}
.w1f{width:433.515000px;}
.w39{width:544.605000px;}
.w42{width:648.330000px;}
.w48{width:654.090000px;}
.w4a{width:656.070000px;}
.w4e{width:670.470000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:8.100000px;}
.x1e{left:10.800000px;}
.x4c{left:12.240000px;}
.x43{left:13.680000px;}
.x3f{left:16.425000px;}
.x41{left:18.225000px;}
.x38{left:20.340000px;}
.x51{left:21.960000px;}
.x3b{left:23.400000px;}
.x4a{left:28.080000px;}
.x3c{left:35.460000px;}
.x40{left:36.765000px;}
.x6d{left:37.980000px;}
.x52{left:39.960000px;}
.x48{left:41.034000px;}
.x6a{left:44.640000px;}
.x39{left:49.500000px;}
.x21{left:55.440000px;}
.x6e{left:60.300000px;}
.x27{left:62.850000px;}
.x3d{left:72.540000px;}
.x6b{left:74.160000px;}
.x6f{left:82.980000px;}
.x60{left:119.196000px;}
.x1d{left:122.580000px;}
.x1f{left:126.360000px;}
.x45{left:128.556000px;}
.x20{left:138.240000px;}
.x30{left:140.796000px;}
.x68{left:143.496000px;}
.x2{left:148.896000px;}
.x6c{left:157.530000px;}
.x5{left:159.330000px;}
.x10{left:165.450000px;}
.x5f{left:166.710000px;}
.x75{left:169.410000px;}
.x2a{left:171.750000px;}
.x18{left:175.890000px;}
.x42{left:178.050000px;}
.x11{left:181.830000px;}
.x53{left:184.710000px;}
.x24{left:189.030000px;}
.x66{left:193.539000px;}
.x70{left:194.610000px;}
.x17{left:201.990000px;}
.x5c{left:212.790000px;}
.x49{left:217.470000px;}
.x67{left:227.019000px;}
.x23{left:229.890000px;}
.x32{left:234.390000px;}
.x1a{left:243.390000px;}
.x62{left:254.775000px;}
.x2f{left:263.055000px;}
.x1c{left:265.935000px;}
.x63{left:276.915000px;}
.x65{left:278.355000px;}
.x54{left:280.515000px;}
.x4b{left:282.675000px;}
.x77{left:285.915000px;}
.x78{left:290.595000px;}
.x1b{left:303.735000px;}
.x72{left:319.395000px;}
.x79{left:327.495000px;}
.x19{left:329.115000px;}
.x15{left:332.355000px;}
.x4d{left:334.515000px;}
.x8{left:335.595000px;}
.x2c{left:351.795000px;}
.x2e{left:356.115000px;}
.x13{left:360.975000px;}
.x12{left:362.775000px;}
.xb{left:365.115000px;}
.x28{left:378.975000px;}
.x26{left:380.235000px;}
.x16{left:384.375000px;}
.x4e{left:386.175000px;}
.x25{left:394.275000px;}
.xe{left:410.655000px;}
.x2b{left:415.155000px;}
.x9{left:418.755000px;}
.x76{left:420.015000px;}
.x6{left:421.635000px;}
.x64{left:425.805000px;}
.xf{left:429.945000px;}
.x4f{left:438.045000px;}
.x55{left:443.625000px;}
.x7{left:453.705000px;}
.x3a{left:454.785000px;}
.x33{left:465.225000px;}
.x4{left:467.745000px;}
.x37{left:470.625000px;}
.x5e{left:476.925000px;}
.x5d{left:478.905000px;}
.x56{left:485.205000px;}
.x50{left:487.545000px;}
.x2d{left:489.345000px;}
.x57{left:542.625000px;}
.x69{left:555.585000px;}
.x71{left:560.625000px;}
.x34{left:564.045000px;}
.x35{left:574.305000px;}
.x29{left:575.385000px;}
.x3e{left:577.545000px;}
.x58{left:587.625000px;}
.x73{left:589.605000px;}
.x3{left:598.830000px;}
.x74{left:607.650000px;}
.x59{left:648.330000px;}
.x44{left:665.250000px;}
.x47{left:668.670000px;}
.x36{left:691.350000px;}
.x5a{left:706.830000px;}
.x46{left:729.330000px;}
.x5b{left:757.590000px;}
.x22{left:770.040000px;}
.x14{left:771.840000px;}
.xd{left:775.440000px;}
.xc{left:779.220000px;}
.xa{left:783.000000px;}
.x1{left:786.780000px;}
.x61{left:791.100000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.182400pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.131200pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls4{letter-spacing:-0.102400pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.024960pt;}
.ls20{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.266133pt;}
.ls2e{letter-spacing:0.278933pt;}
.ls33{letter-spacing:0.286933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls3b{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.773120pt;}
.ls21{letter-spacing:1.280000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls3c{letter-spacing:4.480000pt;}
.ls41{letter-spacing:4.586667pt;}
.ls25{letter-spacing:14.080000pt;}
.ls22{letter-spacing:15.360000pt;}
.ls26{letter-spacing:16.000000pt;}
.ls34{letter-spacing:18.048000pt;}
.ls31{letter-spacing:18.688000pt;}
.ls36{letter-spacing:21.888000pt;}
.ls3{letter-spacing:22.400000pt;}
.ls30{letter-spacing:22.528000pt;}
.ls24{letter-spacing:24.320000pt;}
.ls32{letter-spacing:25.728000pt;}
.ls23{letter-spacing:26.880000pt;}
.ls2f{letter-spacing:27.079680pt;}
.ls28{letter-spacing:29.639680pt;}
.ls35{letter-spacing:34.688000pt;}
.ls37{letter-spacing:35.968000pt;}
.ls38{letter-spacing:36.608000pt;}
.ls40{letter-spacing:36.640000pt;}
.ls1e{letter-spacing:46.208000pt;}
.ls11{letter-spacing:48.768000pt;}
.ls1d{letter-spacing:64.128000pt;}
.ls1a{letter-spacing:78.208000pt;}
.ls1b{letter-spacing:82.048000pt;}
.ls19{letter-spacing:96.128000pt;}
.ls1c{letter-spacing:99.328000pt;}
.ls18{letter-spacing:114.048000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.695040pt;}
.wsf{word-spacing:-16.704000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.384000pt;}
.ws27{word-spacing:-16.256000pt;}
.ws15{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws28{word-spacing:-15.552000pt;}
.ws16{word-spacing:-15.360000pt;}
.ws25{word-spacing:-14.817067pt;}
.ws26{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.172373pt;}
.ws17{word-spacing:-13.613973pt;}
.wsb{word-spacing:-13.573013pt;}
.wsa{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.189013pt;}
.ws19{word-spacing:-10.864000pt;}
.ws1a{word-spacing:-10.848000pt;}
.ws1c{word-spacing:-9.690880pt;}
.ws18{word-spacing:-9.559680pt;}
.ws1b{word-spacing:-9.508480pt;}
.wse{word-spacing:-8.640000pt;}
.ws10{word-spacing:-7.810560pt;}
.ws24{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws2{word-spacing:0.000000pt;}
.ws23{word-spacing:0.064000pt;}
.ws21{word-spacing:0.128000pt;}
.ws22{word-spacing:0.192000pt;}
.ws20{word-spacing:0.256000pt;}
._1f{margin-left:-12.868693pt;}
._1b{margin-left:-11.441493pt;}
._20{margin-left:-9.676800pt;}
._1e{margin-left:-8.546560pt;}
._1d{margin-left:-6.683733pt;}
._1c{margin-left:-4.998400pt;}
._1a{margin-left:-3.150933pt;}
._1{margin-left:-1.946880pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.048320pt;}
._8{width:1.941333pt;}
._a{width:3.050667pt;}
._5{width:4.288000pt;}
._9{width:5.760000pt;}
._13{width:6.890667pt;}
._b{width:8.128000pt;}
._19{width:9.152000pt;}
._18{width:10.860800pt;}
._6{width:11.776000pt;}
._c{width:13.312000pt;}
._d{width:14.272000pt;}
._2d{width:15.677867pt;}
._3{width:17.728000pt;}
._4{width:18.688000pt;}
._7{width:19.626667pt;}
._14{width:21.165227pt;}
._e{width:22.154667pt;}
._f{width:23.101013pt;}
._2c{width:24.235520pt;}
._21{width:25.152000pt;}
._22{width:26.240000pt;}
._24{width:27.328000pt;}
._2a{width:28.352000pt;}
._2b{width:29.312000pt;}
._11{width:30.469973pt;}
._10{width:31.490560pt;}
._12{width:32.778667pt;}
._27{width:34.048000pt;}
._23{width:35.200000pt;}
._25{width:37.184000pt;}
._26{width:38.173013pt;}
._15{width:39.754667pt;}
._17{width:40.823893pt;}
._16{width:41.760000pt;}
._3e{width:43.200000pt;}
._28{width:44.928000pt;}
._29{width:45.967360pt;}
._3a{width:47.872000pt;}
._41{width:49.536000pt;}
._33{width:57.280000pt;}
._34{width:58.272000pt;}
._40{width:61.696000pt;}
._3f{width:63.616000pt;}
._35{width:65.920000pt;}
._3b{width:69.056000pt;}
._3c{width:70.016000pt;}
._3d{width:80.128000pt;}
._37{width:97.792000pt;}
._31{width:101.274880pt;}
._43{width:109.376000pt;}
._44{width:110.325333pt;}
._2f{width:114.498560pt;}
._32{width:178.496000pt;}
._39{width:183.488000pt;}
._30{width:196.736000pt;}
._36{width:211.968000pt;}
._2e{width:253.312000pt;}
._42{width:316.736000pt;}
._38{width:323.776000pt;}
._45{width:1834.048000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.y1d5{bottom:-33.440000pt;}
.y1d1{bottom:-33.280000pt;}
.y1b7{bottom:-32.800000pt;}
.y1c1{bottom:-30.720000pt;}
.y1db{bottom:-29.626667pt;}
.y325{bottom:-29.120000pt;}
.y2da{bottom:-28.026667pt;}
.y1c3{bottom:-27.720000pt;}
.y1ba{bottom:-27.680000pt;}
.y157{bottom:-27.200000pt;}
.y2c4{bottom:-27.040000pt;}
.y15c{bottom:-26.586667pt;}
.y151{bottom:-26.560000pt;}
.y1f8{bottom:-25.920000pt;}
.y1ff{bottom:-25.600000pt;}
.y409{bottom:-24.160000pt;}
.y2d2{bottom:-22.400000pt;}
.y153{bottom:-22.240000pt;}
.y2d7{bottom:-20.480000pt;}
.y1f1{bottom:-19.680000pt;}
.y1ca{bottom:-19.360000pt;}
.y404{bottom:-18.400000pt;}
.y1e9{bottom:-17.440000pt;}
.y2ac{bottom:-15.200000pt;}
.y413{bottom:-12.800000pt;}
.y2cc{bottom:-9.760000pt;}
.y2d9{bottom:-7.200000pt;}
.y2c3{bottom:-6.240000pt;}
.y3f7{bottom:-6.074667pt;}
.y418{bottom:-5.120000pt;}
.y2d1{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.y1c0{bottom:0.320000pt;}
.y1d4{bottom:0.480000pt;}
.y1d0{bottom:0.640000pt;}
.y2d3{bottom:0.960000pt;}
.y2b3{bottom:1.280000pt;}
.y3f2{bottom:1.440000pt;}
.y2a8{bottom:1.760000pt;}
.y1dd{bottom:1.920000pt;}
.y1b6{bottom:2.080000pt;}
.y2b8{bottom:2.400000pt;}
.y34d{bottom:3.200000pt;}
.y2b0{bottom:3.520000pt;}
.y1da{bottom:4.320000pt;}
.y2ab{bottom:4.800000pt;}
.y1f7{bottom:5.280000pt;}
.y40e{bottom:5.920000pt;}
.y1eb{bottom:6.080000pt;}
.y1b9{bottom:6.240000pt;}
.y403{bottom:6.400000pt;}
.y156{bottom:6.720000pt;}
.y150{bottom:7.360000pt;}
.y2cb{bottom:7.520000pt;}
.y1fe{bottom:8.320000pt;}
.y412{bottom:8.480000pt;}
.y338{bottom:9.440000pt;}
.y3f5{bottom:9.600000pt;}
.y2bb{bottom:9.760000pt;}
.y1c9{bottom:11.520000pt;}
.y14c{bottom:11.680000pt;}
.y26b{bottom:11.840000pt;}
.y223{bottom:12.000000pt;}
.y269{bottom:12.040000pt;}
.y2c7{bottom:12.320000pt;}
.y2bf{bottom:13.280000pt;}
.y2d8{bottom:13.440000pt;}
.y2c2{bottom:13.600000pt;}
.y1f0{bottom:14.240000pt;}
.y419{bottom:15.040000pt;}
.y2d6{bottom:15.840000pt;}
.y2dc{bottom:16.000000pt;}
.y1e8{bottom:16.320000pt;}
.y2af{bottom:16.640000pt;}
.y3fd{bottom:16.800000pt;}
.y2b5{bottom:16.960000pt;}
.y2d0{bottom:17.120000pt;}
.y35b{bottom:17.760000pt;}
.y34c{bottom:18.560000pt;}
.y1bf{bottom:18.880000pt;}
.y3de{bottom:19.040000pt;}
.y2b7{bottom:19.200000pt;}
.y3a4{bottom:20.000000pt;}
.y2de{bottom:20.160000pt;}
.y1fa{bottom:21.440000pt;}
.y1d3{bottom:21.600000pt;}
.y1cf{bottom:21.760000pt;}
.y227{bottom:22.080000pt;}
.y3a8{bottom:22.400000pt;}
.y2a7{bottom:22.560000pt;}
.y2bd{bottom:22.880000pt;}
.y2aa{bottom:23.360000pt;}
.y417{bottom:23.520000pt;}
.y324{bottom:23.680000pt;}
.y1f6{bottom:23.840000pt;}
.y317{bottom:24.320000pt;}
.y402{bottom:24.800000pt;}
.y1d9{bottom:25.440000pt;}
.y40d{bottom:25.920000pt;}
.y337{bottom:27.040000pt;}
.y155{bottom:27.560000pt;}
.y14f{bottom:28.160000pt;}
.y1c8{bottom:28.320000pt;}
.y1fd{bottom:29.466667pt;}
.y2ae{bottom:29.600000pt;}
.y368{bottom:29.800000pt;}
.y263{bottom:30.080000pt;}
.y228{bottom:30.400000pt;}
.y396{bottom:30.426667pt;}
.y3b8{bottom:30.440000pt;}
.y2ba{bottom:30.560000pt;}
.y2d5{bottom:30.880000pt;}
.y2db{bottom:31.040000pt;}
.y2c6{bottom:31.200000pt;}
.y2b2{bottom:31.360000pt;}
.y2b4{bottom:31.840000pt;}
.y2cf{bottom:32.000000pt;}
.y2be{bottom:32.160000pt;}
.y2c1{bottom:32.320000pt;}
.y2c9{bottom:32.480000pt;}
.y2e1{bottom:32.506667pt;}
.y3f0{bottom:32.800000pt;}
.y35a{bottom:33.480000pt;}
.y34b{bottom:33.786667pt;}
.y3fc{bottom:34.400000pt;}
.y2ca{bottom:34.880000pt;}
.y1ef{bottom:35.360000pt;}
.y3f9{bottom:37.160000pt;}
.y1be{bottom:37.280000pt;}
.y3dd{bottom:37.440000pt;}
.y1e7{bottom:37.600000pt;}
.y38b{bottom:38.400000pt;}
.y229{bottom:40.480000pt;}
.y32b{bottom:40.506667pt;}
.y323{bottom:40.520000pt;}
.y3be{bottom:40.840000pt;}
.y340{bottom:40.986667pt;}
.y2dd{bottom:41.120000pt;}
.y316{bottom:41.800000pt;}
.y1f5{bottom:42.240000pt;}
.y1ce{bottom:42.880000pt;}
.y401{bottom:43.200000pt;}
.y336{bottom:43.866667pt;}
.y416{bottom:44.640000pt;}
.y1c7{bottom:45.280000pt;}
.y3dc{bottom:45.440000pt;}
.y367{bottom:45.480000pt;}
.y2d4{bottom:45.920000pt;}
.y1d8{bottom:46.560000pt;}
.y408{bottom:46.720000pt;}
.y2ce{bottom:47.040000pt;}
.y359{bottom:48.680000pt;}
.y226{bottom:48.800000pt;}
.y3bf{bottom:48.840000pt;}
.y34a{bottom:49.146667pt;}
.y1fc{bottom:50.586667pt;}
.y410{bottom:50.720000pt;}
.y2{bottom:51.232000pt;}
.y3fb{bottom:52.000000pt;}
.y1bd{bottom:55.680000pt;}
.y1ee{bottom:56.480000pt;}
.y38a{bottom:56.800000pt;}
.y395{bottom:56.826667pt;}
.y3b7{bottom:56.840000pt;}
.y322{bottom:57.480000pt;}
.y33f{bottom:58.106667pt;}
.y315{bottom:58.600000pt;}
.y1e6{bottom:58.720000pt;}
.y22c{bottom:58.880000pt;}
.y1f4{bottom:60.640000pt;}
.y335{bottom:60.826667pt;}
.y366{bottom:60.840000pt;}
.y400{bottom:61.600000pt;}
.y1c6{bottom:62.080000pt;}
.y3db{bottom:63.840000pt;}
.y358{bottom:64.040000pt;}
.y1cd{bottom:64.160000pt;}
.y349{bottom:64.506667pt;}
.y40c{bottom:64.640000pt;}
.y415{bottom:65.760000pt;}
.y225{bottom:67.200000pt;}
.y231{bottom:67.226667pt;}
.y3a7{bottom:67.240000pt;}
.y1d7{bottom:67.680000pt;}
.y407{bottom:67.840000pt;}
.y1{bottom:69.152000pt;}
.y3fa{bottom:69.600000pt;}
.y32a{bottom:73.786667pt;}
.y1bc{bottom:74.080000pt;}
.y321{bottom:74.280000pt;}
.y33e{bottom:75.066667pt;}
.y3d3{bottom:75.200000pt;}
.y394{bottom:75.226667pt;}
.y384{bottom:75.240000pt;}
.y314{bottom:75.560000pt;}
.y365{bottom:76.200000pt;}
.y22f{bottom:77.280000pt;}
.y334{bottom:77.626667pt;}
.y1ed{bottom:77.760000pt;}
.y1c5{bottom:78.880000pt;}
.y1f3{bottom:79.040000pt;}
.y357{bottom:79.400000pt;}
.y1e5{bottom:79.840000pt;}
.y348{bottom:79.866667pt;}
.y3ff{bottom:80.000000pt;}
.y3da{bottom:82.240000pt;}
.y389{bottom:83.240000pt;}
.y40b{bottom:84.000000pt;}
.y22b{bottom:85.600000pt;}
.y3b1{bottom:85.626667pt;}
.y3a6{bottom:85.640000pt;}
.y414{bottom:86.880000pt;}
.y406{bottom:88.960000pt;}
.y320{bottom:91.240000pt;}
.y364{bottom:91.400000pt;}
.y33d{bottom:91.866667pt;}
.y313{bottom:92.360000pt;}
.y3d7{bottom:93.600000pt;}
.y393{bottom:93.626667pt;}
.y383{bottom:93.640000pt;}
.y333{bottom:94.426667pt;}
.y356{bottom:94.760000pt;}
.y347{bottom:95.226667pt;}
.y3d9{bottom:100.640000pt;}
.y3d2{bottom:101.600000pt;}
.y3b6{bottom:101.640000pt;}
.y22e{bottom:104.000000pt;}
.y3a5{bottom:104.040000pt;}
.y329{bottom:106.586667pt;}
.y363{bottom:106.760000pt;}
.y31f{bottom:108.040000pt;}
.y33c{bottom:108.826667pt;}
.y312{bottom:109.160000pt;}
.y388{bottom:109.640000pt;}
.y355{bottom:110.120000pt;}
.y346{bottom:110.586667pt;}
.y332{bottom:111.386667pt;}
.y3d6{bottom:112.000000pt;}
.y3b0{bottom:112.026667pt;}
.y382{bottom:112.040000pt;}
.y3a0{bottom:117.792000pt;}
.yae{bottom:118.432000pt;}
.y175{bottom:118.592000pt;}
.y3d1{bottom:120.000000pt;}
.y392{bottom:120.026667pt;}
.yf3{bottom:120.032000pt;}
.y3b5{bottom:120.040000pt;}
.y171{bottom:120.832000pt;}
.y362{bottom:122.120000pt;}
.yca{bottom:122.752000pt;}
.y213{bottom:122.912000pt;}
.y10c{bottom:123.712000pt;}
.y4c{bottom:123.872000pt;}
.y2a5{bottom:124.192000pt;}
.y31e{bottom:124.840000pt;}
.y354{bottom:125.320000pt;}
.y33b{bottom:125.626667pt;}
.y345{bottom:125.786667pt;}
.y193{bottom:125.792000pt;}
.y328{bottom:125.946667pt;}
.y311{bottom:126.120000pt;}
.y390{bottom:128.026667pt;}
.y387{bottom:128.040000pt;}
.y331{bottom:128.186667pt;}
.y452{bottom:128.512000pt;}
.y14{bottom:128.992000pt;}
.y69{bottom:129.472000pt;}
.y219{bottom:130.112000pt;}
.y3af{bottom:130.426667pt;}
.y3a3{bottom:130.440000pt;}
.yc9{bottom:132.832000pt;}
.y10b{bottom:133.786667pt;}
.y18b{bottom:134.586667pt;}
.y305{bottom:136.826667pt;}
.y3bc{bottom:137.306667pt;}
.y361{bottom:137.480000pt;}
.y23b{bottom:138.106667pt;}
.y391{bottom:138.426667pt;}
.y381{bottom:138.440000pt;}
.y3f6{bottom:138.586667pt;}
.y221{bottom:140.186667pt;}
.y353{bottom:140.680000pt;}
.y344{bottom:141.146667pt;}
.y31d{bottom:141.800000pt;}
.y33a{bottom:142.426667pt;}
.y2b{bottom:142.746667pt;}
.y310{bottom:142.920000pt;}
.y253{bottom:143.226667pt;}
.y45e{bottom:144.506667pt;}
.y330{bottom:145.146667pt;}
.y39f{bottom:145.306667pt;}
.yad{bottom:146.106667pt;}
.y38f{bottom:146.426667pt;}
.y386{bottom:146.440000pt;}
.yf2{bottom:147.546667pt;}
.y23a{bottom:148.026667pt;}
.y170{bottom:148.346667pt;}
.y379{bottom:148.826667pt;}
.y92{bottom:149.946667pt;}
.y212{bottom:150.426667pt;}
.y2a4{bottom:151.706667pt;}
.y7f{bottom:152.826667pt;}
.y360{bottom:152.840000pt;}
.y1b1{bottom:153.306667pt;}
.y133{bottom:154.746667pt;}
.y42{bottom:155.866667pt;}
.y352{bottom:156.040000pt;}
.y451{bottom:156.186667pt;}
.y14a{bottom:156.506667pt;}
.y3ad{bottom:156.826667pt;}
.y380{bottom:156.840000pt;}
.y3ee{bottom:157.466667pt;}
.y218{bottom:157.786667pt;}
.y327{bottom:158.586667pt;}
.y31c{bottom:158.600000pt;}
.y28f{bottom:159.066667pt;}
.y428{bottom:159.226667pt;}
.y30f{bottom:159.880000pt;}
.y32f{bottom:161.946667pt;}
.y18a{bottom:162.106667pt;}
.y2ef{bottom:162.586667pt;}
.y68{bottom:163.386667pt;}
.yc8{bottom:164.666667pt;}
.y38e{bottom:164.826667pt;}
.y385{bottom:164.840000pt;}
.y3ae{bottom:167.226667pt;}
.y4b{bottom:167.546667pt;}
.y282{bottom:167.866667pt;}
.y11a{bottom:168.186667pt;}
.y35f{bottom:168.200000pt;}
.y3cd{bottom:168.826667pt;}
.y10a{bottom:169.306667pt;}
.y252{bottom:170.746667pt;}
.y351{bottom:171.400000pt;}
.y343{bottom:171.866667pt;}
.y1ae{bottom:172.186667pt;}
.y39e{bottom:172.986667pt;}
.yac{bottom:173.626667pt;}
.y174{bottom:173.786667pt;}
.y239{bottom:173.946667pt;}
.y13{bottom:174.746667pt;}
.y444{bottom:175.066667pt;}
.y3ac{bottom:175.226667pt;}
.y37f{bottom:175.240000pt;}
.y3e0{bottom:175.546667pt;}
.y31b{bottom:175.560000pt;}
.y16f{bottom:176.026667pt;}
.y30e{bottom:176.680000pt;}
.yde{bottom:178.106667pt;}
.y32e{bottom:178.906667pt;}
.y2a3{bottom:179.386667pt;}
.y1b4{bottom:179.706667pt;}
.y304{bottom:180.346667pt;}
.y3bb{bottom:180.986667pt;}
.y3b4{bottom:183.080000pt;}
.y38d{bottom:183.226667pt;}
.y37e{bottom:183.240000pt;}
.y35e{bottom:183.400000pt;}
.y220{bottom:183.706667pt;}
.y1e1{bottom:184.186667pt;}
.y217{bottom:185.306667pt;}
.yc7{bottom:185.946667pt;}
.y2a{bottom:186.266667pt;}
.y425{bottom:186.586667pt;}
.y427{bottom:186.746667pt;}
.y350{bottom:186.760000pt;}
.y342{bottom:187.226667pt;}
.y3b9{bottom:188.186667pt;}
.y189{bottom:189.786667pt;}
.y2ee{bottom:190.426667pt;}
.yf1{bottom:191.226667pt;}
.y30a{bottom:191.386667pt;}
.y31a{bottom:192.360000pt;}
.y378{bottom:192.506667pt;}
.y91{bottom:193.466667pt;}
.y3ab{bottom:193.626667pt;}
.y30d{bottom:193.640000pt;}
.y276{bottom:195.226667pt;}
.y281{bottom:195.386667pt;}
.y32d{bottom:195.706667pt;}
.y119{bottom:195.866667pt;}
.y7e{bottom:196.346667pt;}
.y109{bottom:196.986667pt;}
.y67{bottom:197.306667pt;}
.y132{bottom:198.426667pt;}
.y35d{bottom:198.760000pt;}
.y41{bottom:199.546667pt;}
.y450{bottom:199.706667pt;}
.y1ad{bottom:199.866667pt;}
.y149{bottom:200.186667pt;}
.y39d{bottom:200.506667pt;}
.y3ed{bottom:200.986667pt;}
.yab{bottom:201.306667pt;}
.y3b3{bottom:201.480000pt;}
.y238{bottom:201.626667pt;}
.y37d{bottom:201.640000pt;}
.y34f{bottom:202.120000pt;}
.y28e{bottom:202.586667pt;}
.y16e{bottom:203.546667pt;}
.y211{bottom:205.626667pt;}
.y2a2{bottom:206.906667pt;}
.y319{bottom:209.160000pt;}
.y30c{bottom:210.440000pt;}
.y4a{bottom:211.066667pt;}
.y3aa{bottom:212.026667pt;}
.y216{bottom:212.986667pt;}
.y35c{bottom:214.120000pt;}
.y251{bottom:214.426667pt;}
.ydd{bottom:215.226667pt;}
.y45d{bottom:215.706667pt;}
.y439{bottom:217.146667pt;}
.y188{bottom:217.306667pt;}
.y2ed{bottom:218.266667pt;}
.yf0{bottom:218.746667pt;}
.y3df{bottom:219.226667pt;}
.y3b2{bottom:219.546667pt;}
.y3d5{bottom:220.026667pt;}
.y261{bottom:221.626667pt;}
.y12{bottom:222.906667pt;}
.yc6{bottom:223.066667pt;}
.y1b3{bottom:223.386667pt;}
.y303{bottom:224.026667pt;}
.y108{bottom:224.506667pt;}
.y3f8{bottom:224.986667pt;}
.y318{bottom:226.120000pt;}
.y275{bottom:226.426667pt;}
.y30b{bottom:227.240000pt;}
.y1ac{bottom:227.386667pt;}
.y148{bottom:227.706667pt;}
.yaa{bottom:228.826667pt;}
.y173{bottom:228.986667pt;}
.y237{bottom:229.146667pt;}
.y29{bottom:229.946667pt;}
.y424{bottom:230.106667pt;}
.y66{bottom:231.226667pt;}
.y210{bottom:233.306667pt;}
.y2a1{bottom:234.586667pt;}
.y309{bottom:234.906667pt;}
.y377{bottom:236.026667pt;}
.y90{bottom:237.146667pt;}
.y7d{bottom:240.026667pt;}
.y118{bottom:240.506667pt;}
.y131{bottom:241.986667pt;}
.y40{bottom:243.106667pt;}
.y45c{bottom:243.426667pt;}
.yc5{bottom:244.226667pt;}
.y3ec{bottom:244.706667pt;}
.y187{bottom:245.026667pt;}
.y28d{bottom:246.306667pt;}
.yef{bottom:246.466667pt;}
.y3d8{bottom:250.466667pt;}
.y107{bottom:252.226667pt;}
.ydc{bottom:252.386667pt;}
.y49{bottom:254.786667pt;}
.y44f{bottom:254.946667pt;}
.y1ab{bottom:255.106667pt;}
.y147{bottom:255.426667pt;}
.ya9{bottom:256.546667pt;}
.y16d{bottom:258.786667pt;}
.y438{bottom:260.706667pt;}
.y20f{bottom:260.866667pt;}
.y280{bottom:261.026667pt;}
.y274{bottom:261.506667pt;}
.y2ec{bottom:261.986667pt;}
.y2a0{bottom:262.146667pt;}
.y65{bottom:264.866667pt;}
.y260{bottom:265.186667pt;}
.yc4{bottom:265.346667pt;}
.y1b2{bottom:266.946667pt;}
.y302{bottom:267.586667pt;}
.y192{bottom:268.226667pt;}
.y24a{bottom:269.346667pt;}
.y250{bottom:269.666667pt;}
.y21f{bottom:270.946667pt;}
.y11{bottom:271.266667pt;}
.y39c{bottom:271.746667pt;}
.y186{bottom:272.546667pt;}
.y236{bottom:272.866667pt;}
.y28{bottom:273.506667pt;}
.y423{bottom:273.826667pt;}
.yee{bottom:273.986667pt;}
.y308{bottom:278.466667pt;}
.y27e{bottom:279.746667pt;}
.y8f{bottom:280.706667pt;}
.y1aa{bottom:282.626667pt;}
.y146{bottom:282.946667pt;}
.y7c{bottom:283.586667pt;}
.y117{bottom:284.226667pt;}
.y130{bottom:285.666667pt;}
.y16c{bottom:286.466667pt;}
.y3f{bottom:286.786667pt;}
.y45b{bottom:286.946667pt;}
.y3eb{bottom:288.226667pt;}
.y20e{bottom:288.546667pt;}
.ydb{bottom:289.506667pt;}
.y28c{bottom:289.826667pt;}
.y64{bottom:293.026667pt;}
.ya8{bottom:294.466667pt;}
.y3cc{bottom:295.266667pt;}
.y106{bottom:295.746667pt;}
.y273{bottom:296.546667pt;}
.y24f{bottom:297.186667pt;}
.y48{bottom:298.306667pt;}
.y44e{bottom:298.626667pt;}
.y39b{bottom:299.426667pt;}
.y185{bottom:300.226667pt;}
.y235{bottom:300.386667pt;}
.yed{bottom:301.666667pt;}
.yc3{bottom:302.626667pt;}
.y437{bottom:304.386667pt;}
.y2eb{bottom:305.826667pt;}
.y27f{bottom:307.426667pt;}
.y25f{bottom:308.706667pt;}
.y1a9{bottom:310.306667pt;}
.y145{bottom:310.466667pt;}
.y301{bottom:311.266667pt;}
.y116{bottom:311.746667pt;}
.y249{bottom:312.866667pt;}
.y426{bottom:313.186667pt;}
.y16b{bottom:313.986667pt;}
.y21e{bottom:314.626667pt;}
.y20d{bottom:316.066667pt;}
.y27{bottom:317.186667pt;}
.y29f{bottom:317.346667pt;}
.y443{bottom:317.506667pt;}
.y10{bottom:319.426667pt;}
.y63{bottom:320.226667pt;}
.y307{bottom:322.146667pt;}
.y3cb{bottom:322.786667pt;}
.y376{bottom:323.266667pt;}
.y105{bottom:323.426667pt;}
.yc2{bottom:323.746667pt;}
.y8e{bottom:324.386667pt;}
.yda{bottom:326.786667pt;}
.y39a{bottom:326.946667pt;}
.y7b{bottom:327.266667pt;}
.y184{bottom:327.746667pt;}
.y234{bottom:328.066667pt;}
.yec{bottom:329.186667pt;}
.y3e{bottom:330.306667pt;}
.y272{bottom:331.586667pt;}
.y3ea{bottom:331.906667pt;}
.y28b{bottom:333.506667pt;}
.y1a8{bottom:337.826667pt;}
.y1e0{bottom:338.146667pt;}
.y115{bottom:339.426667pt;}
.ya7{bottom:340.706667pt;}
.y16a{bottom:341.666667pt;}
.y47{bottom:341.986667pt;}
.y44d{bottom:342.146667pt;}
.y20c{bottom:343.746667pt;}
.y29e{bottom:344.866667pt;}
.y442{bottom:345.026667pt;}
.y62{bottom:347.426667pt;}
.y436{bottom:347.906667pt;}
.y306{bottom:349.666667pt;}
.y3ca{bottom:350.466667pt;}
.y104{bottom:350.946667pt;}
.y25e{bottom:352.386667pt;}
.y144{bottom:354.146667pt;}
.y399{bottom:354.466667pt;}
.y300{bottom:354.786667pt;}
.y183{bottom:355.426667pt;}
.y233{bottom:355.586667pt;}
.y248{bottom:356.546667pt;}
.yeb{bottom:356.706667pt;}
.y21d{bottom:358.146667pt;}
.y26{bottom:360.706667pt;}
.yc1{bottom:360.866667pt;}
.y2ea{bottom:361.026667pt;}
.yd9{bottom:363.906667pt;}
.y1df{bottom:365.666667pt;}
.y271{bottom:366.626667pt;}
.y114{bottom:366.946667pt;}
.yf{bottom:367.266667pt;}
.y8d{bottom:367.906667pt;}
.y3f4{bottom:368.226667pt;}
.ya6{bottom:368.386667pt;}
.y44c{bottom:369.826667pt;}
.y7a{bottom:370.786667pt;}
.y29d{bottom:372.546667pt;}
.y12f{bottom:372.866667pt;}
.y3d{bottom:373.986667pt;}
.y3d4{bottom:374.146667pt;}
.y61{bottom:374.786667pt;}
.y3e9{bottom:375.426667pt;}
.y28a{bottom:377.026667pt;}
.y191{bottom:378.626667pt;}
.y169{bottom:379.586667pt;}
.y1a7{bottom:381.506667pt;}
.y143{bottom:381.666667pt;}
.y182{bottom:382.946667pt;}
.yea{bottom:384.386667pt;}
.y46{bottom:385.506667pt;}
.y45a{bottom:385.826667pt;}
.y20b{bottom:387.426667pt;}
.y2e9{bottom:388.706667pt;}
.y435{bottom:391.586667pt;}
.y1de{bottom:393.346667pt;}
.y3c9{bottom:393.986667pt;}
.y103{bottom:394.626667pt;}
.ya5{bottom:395.906667pt;}
.y411{bottom:397.026667pt;}
.y398{bottom:398.146667pt;}
.y2ff{bottom:398.466667pt;}
.yc0{bottom:398.786667pt;}
.y40f{bottom:398.946667pt;}
.y232{bottom:399.266667pt;}
.y247{bottom:400.066667pt;}
.yd8{bottom:401.026667pt;}
.y21c{bottom:401.826667pt;}
.y60{bottom:401.986667pt;}
.y25{bottom:404.386667pt;}
.y422{bottom:404.546667pt;}
.y289{bottom:404.706667pt;}
.y190{bottom:406.146667pt;}
.y1a6{bottom:409.026667pt;}
.y142{bottom:409.346667pt;}
.y375{bottom:410.466667pt;}
.y181{bottom:410.626667pt;}
.y8c{bottom:411.586667pt;}
.ye9{bottom:411.906667pt;}
.y44b{bottom:413.346667pt;}
.y79{bottom:414.466667pt;}
.ye{bottom:415.746667pt;}
.y20a{bottom:416.066667pt;}
.y2e8{bottom:416.226667pt;}
.y12e{bottom:416.386667pt;}
.y3c{bottom:417.506667pt;}
.y3e8{bottom:419.106667pt;}
.y3c8{bottom:421.666667pt;}
.y102{bottom:422.146667pt;}
.ya4{bottom:423.586667pt;}
.y168{bottom:425.826667pt;}
.y29c{bottom:427.426667pt;}
.y45{bottom:429.186667pt;}
.y230{bottom:430.466667pt;}
.y18f{bottom:433.826667pt;}
.y1a5{bottom:436.706667pt;}
.y141{bottom:436.866667pt;}
.yd7{bottom:438.146667pt;}
.ye8{bottom:439.586667pt;}
.y44a{bottom:440.866667pt;}
.y397{bottom:441.666667pt;}
.y2fe{bottom:441.986667pt;}
.y246{bottom:443.746667pt;}
.y441{bottom:443.906667pt;}
.y3a9{bottom:444.226667pt;}
.y209{bottom:444.866667pt;}
.y3b{bottom:445.186667pt;}
.y21b{bottom:445.346667pt;}
.y434{bottom:446.786667pt;}
.y24{bottom:447.906667pt;}
.y421{bottom:448.066667pt;}
.y288{bottom:448.226667pt;}
.y3c7{bottom:449.186667pt;}
.y101{bottom:449.826667pt;}
.ya3{bottom:451.106667pt;}
.y374{bottom:454.146667pt;}
.y8b{bottom:455.106667pt;}
.y270{bottom:455.266667pt;}
.y5f{bottom:456.546667pt;}
.y78{bottom:457.986667pt;}
.y2e7{bottom:459.586667pt;}
.y12d{bottom:460.066667pt;}
.y27d{bottom:461.346667pt;}
.y3e7{bottom:462.626667pt;}
.yd{bottom:464.066667pt;}
.y326{bottom:465.026667pt;}
.y32c{bottom:465.186667pt;}
.y180{bottom:465.826667pt;}
.y341{bottom:466.786667pt;}
.ye7{bottom:467.106667pt;}
.y167{bottom:469.506667pt;}
.y29b{bottom:471.266667pt;}
.y440{bottom:471.426667pt;}
.y208{bottom:472.386667pt;}
.y44{bottom:472.706667pt;}
.y38c{bottom:473.026667pt;}
.y433{bottom:474.306667pt;}
.yd6{bottom:475.426667pt;}
.y1fb{bottom:476.066667pt;}
.y3c6{bottom:476.866667pt;}
.y100{bottom:477.346667pt;}
.ya2{bottom:478.786667pt;}
.y1a4{bottom:480.226667pt;}
.y140{bottom:480.546667pt;}
.y373{bottom:481.666667pt;}
.y5e{bottom:483.746667pt;}
.y449{bottom:484.546667pt;}
.y2fd{bottom:485.666667pt;}
.y245{bottom:487.266667pt;}
.y12c{bottom:487.586667pt;}
.y3a{bottom:488.706667pt;}
.y21a{bottom:488.866667pt;}
.y339{bottom:489.986667pt;}
.y23{bottom:491.586667pt;}
.y420{bottom:491.746667pt;}
.y287{bottom:491.906667pt;}
.y215{bottom:493.346667pt;}
.y166{bottom:497.053333pt;}
.y8a{bottom:498.813333pt;}
.ybf{bottom:500.413333pt;}
.y207{bottom:501.213333pt;}
.y77{bottom:501.693333pt;}
.y432{bottom:502.013333pt;}
.y2e6{bottom:503.453333pt;}
.y3c5{bottom:504.413333pt;}
.yff{bottom:504.893333pt;}
.y24e{bottom:506.333333pt;}
.y1a3{bottom:507.933333pt;}
.y26f{bottom:508.733333pt;}
.y17f{bottom:509.373333pt;}
.y1d6{bottom:510.173333pt;}
.ye6{bottom:510.813333pt;}
.y5d{bottom:510.973333pt;}
.y448{bottom:512.093333pt;}
.yc{bottom:512.253333pt;}
.yd5{bottom:512.573333pt;}
.y29a{bottom:514.973333pt;}
.y43f{bottom:515.133333pt;}
.y12b{bottom:515.293333pt;}
.y15b{bottom:515.453333pt;}
.y43{bottom:516.413333pt;}
.y27c{bottom:516.573333pt;}
.y22{bottom:519.133333pt;}
.y2df{bottom:519.293333pt;}
.y286{bottom:519.453333pt;}
.y2cd{bottom:519.613333pt;}
.y22d{bottom:520.733333pt;}
.y214{bottom:520.893333pt;}
.ya1{bottom:522.333333pt;}
.y13f{bottom:524.093333pt;}
.y459{bottom:528.093333pt;}
.ybe{bottom:529.053333pt;}
.y2fc{bottom:529.213333pt;}
.y206{bottom:530.013333pt;}
.y244{bottom:530.973333pt;}
.y2e5{bottom:531.133333pt;}
.y3c4{bottom:532.093333pt;}
.y39{bottom:532.413333pt;}
.yfe{bottom:532.573333pt;}
.y24d{bottom:534.013333pt;}
.y41f{bottom:535.293333pt;}
.y1a2{bottom:535.453333pt;}
.y17e{bottom:536.893333pt;}
.y5c{bottom:538.333333pt;}
.y165{bottom:540.733333pt;}
.y89{bottom:542.333333pt;}
.y12a{bottom:542.813333pt;}
.y27b{bottom:544.093333pt;}
.y76{bottom:545.213333pt;}
.y431{bottom:545.533333pt;}
.y285{bottom:547.133333pt;}
.y1b0{bottom:548.573333pt;}
.yd4{bottom:549.693333pt;}
.y3e6{bottom:549.853333pt;}
.ya0{bottom:550.013333pt;}
.y1f9{bottom:552.413333pt;}
.y447{bottom:555.773333pt;}
.ybd{bottom:556.733333pt;}
.y299{bottom:558.493333pt;}
.y2e4{bottom:558.653333pt;}
.y3c3{bottom:559.613333pt;}
.y38{bottom:559.933333pt;}
.yfd{bottom:560.093333pt;}
.yb{bottom:560.413333pt;}
.y24c{bottom:561.533333pt;}
.y26e{bottom:562.173333pt;}
.y21{bottom:562.813333pt;}
.y1a1{bottom:563.133333pt;}
.y17d{bottom:564.573333pt;}
.y5b{bottom:565.533333pt;}
.ye5{bottom:566.013333pt;}
.y13e{bottom:567.773333pt;}
.y164{bottom:568.253333pt;}
.y15a{bottom:568.413333pt;}
.y88{bottom:570.013333pt;}
.y129{bottom:570.493333pt;}
.y27a{bottom:571.773333pt;}
.y2fb{bottom:572.893333pt;}
.y430{bottom:573.213333pt;}
.y243{bottom:574.493333pt;}
.y205{bottom:574.653333pt;}
.y1af{bottom:576.093333pt;}
.y9f{bottom:577.533333pt;}
.y41e{bottom:578.973333pt;}
.y446{bottom:583.293333pt;}
.ybc{bottom:585.533333pt;}
.y43e{bottom:586.333333pt;}
.yd3{bottom:586.813333pt;}
.y37{bottom:587.613333pt;}
.yfc{bottom:587.773333pt;}
.y75{bottom:588.733333pt;}
.y405{bottom:588.893333pt;}
.y25d{bottom:589.213333pt;}
.y20{bottom:590.333333pt;}
.y284{bottom:590.653333pt;}
.y17c{bottom:592.093333pt;}
.y5a{bottom:592.733333pt;}
.y40a{bottom:592.893333pt;}
.ye4{bottom:593.533333pt;}
.y3fe{bottom:595.293333pt;}
.y279{bottom:599.293333pt;}
.y42f{bottom:600.733333pt;}
.y2e3{bottom:602.013333pt;}
.y298{bottom:602.173333pt;}
.y3c2{bottom:603.293333pt;}
.y1d2{bottom:603.613333pt;}
.y113{bottom:603.773333pt;}
.y9e{bottom:605.213333pt;}
.y1a0{bottom:606.653333pt;}
.y372{bottom:608.093333pt;}
.ya{bottom:608.253333pt;}
.y458{bottom:610.973333pt;}
.y13d{bottom:611.293333pt;}
.y163{bottom:611.933333pt;}
.y87{bottom:613.533333pt;}
.y128{bottom:614.013333pt;}
.ybb{bottom:614.173333pt;}
.y36{bottom:615.133333pt;}
.yfb{bottom:615.293333pt;}
.y26d{bottom:615.613333pt;}
.y2fa{bottom:616.413333pt;}
.y25c{bottom:616.733333pt;}
.y3d0{bottom:617.213333pt;}
.y242{bottom:618.173333pt;}
.y204{bottom:618.333333pt;}
.y17b{bottom:619.773333pt;}
.y59{bottom:620.093333pt;}
.y1ec{bottom:620.573333pt;}
.ye3{bottom:621.213333pt;}
.y159{bottom:622.013333pt;}
.y41d{bottom:622.493333pt;}
.yd2{bottom:624.093333pt;}
.y2bc{bottom:624.893333pt;}
.y2c0{bottom:625.853333pt;}
.y2c8{bottom:626.013333pt;}
.y2c5{bottom:626.813333pt;}
.y278{bottom:626.973333pt;}
.y42e{bottom:628.413333pt;}
.y43d{bottom:629.853333pt;}
.y3c1{bottom:630.813333pt;}
.y112{bottom:631.293333pt;}
.y74{bottom:632.413333pt;}
.y1f{bottom:634.013333pt;}
.y19f{bottom:634.333333pt;}
.y371{bottom:635.773333pt;}
.y3e5{bottom:637.053333pt;}
.y457{bottom:638.493333pt;}
.y2e2{bottom:640.253333pt;}
.y127{bottom:641.693333pt;}
.yba{bottom:641.853333pt;}
.y35{bottom:642.813333pt;}
.yfa{bottom:642.973333pt;}
.y25b{bottom:644.413333pt;}
.y297{bottom:645.693333pt;}
.y203{bottom:645.853333pt;}
.y58{bottom:647.293333pt;}
.y22a{bottom:647.773333pt;}
.y9d{bottom:648.733333pt;}
.y1c4{bottom:651.133333pt;}
.y445{bottom:654.493333pt;}
.y13c{bottom:654.973333pt;}
.y162{bottom:655.453333pt;}
.y9{bottom:656.893333pt;}
.y86{bottom:657.213333pt;}
.y43c{bottom:657.533333pt;}
.y111{bottom:658.973333pt;}
.y2f9{bottom:659.933333pt;}
.yd1{bottom:661.213333pt;}
.y1e{bottom:661.533333pt;}
.y241{bottom:661.693333pt;}
.y19e{bottom:661.853333pt;}
.y17a{bottom:663.293333pt;}
.y1cc{bottom:663.773333pt;}
.y41c{bottom:666.173333pt;}
.y42d{bottom:666.333333pt;}
.y26c{bottom:669.053333pt;}
.y126{bottom:669.213333pt;}
.y277{bottom:670.173333pt;}
.y34{bottom:670.333333pt;}
.yf9{bottom:670.493333pt;}
.y25a{bottom:671.933333pt;}
.y202{bottom:673.533333pt;}
.y3c0{bottom:674.493333pt;}
.y57{bottom:674.653333pt;}
.y158{bottom:674.973333pt;}
.y73{bottom:675.933333pt;}
.y9c{bottom:676.413333pt;}
.y37c{bottom:679.293333pt;}
.y3e4{bottom:680.733333pt;}
.y456{bottom:682.173333pt;}
.y161{bottom:683.133333pt;}
.y43b{bottom:685.053333pt;}
.yb9{bottom:686.493333pt;}
.y2f8{bottom:687.613333pt;}
.y369{bottom:688.093333pt;}
.y296{bottom:689.373333pt;}
.y19d{bottom:689.533333pt;}
.y179{bottom:690.973333pt;}
.ye2{bottom:692.413333pt;}
.y2b9{bottom:692.893333pt;}
.y125{bottom:696.893333pt;}
.y33{bottom:698.013333pt;}
.yf8{bottom:698.173333pt;}
.yd0{bottom:698.333333pt;}
.y13b{bottom:698.493333pt;}
.y259{bottom:699.613333pt;}
.y85{bottom:700.733333pt;}
.y283{bottom:701.053333pt;}
.y1dc{bottom:701.213333pt;}
.y56{bottom:701.853333pt;}
.y172{bottom:702.493333pt;}
.y9b{bottom:703.933333pt;}
.y26a{bottom:704.253333pt;}
.y8{bottom:705.053333pt;}
.y1d{bottom:705.213333pt;}
.y240{bottom:705.373333pt;}
.y3bd{bottom:705.693333pt;}
.y370{bottom:706.973333pt;}
.y2b6{bottom:707.613333pt;}
.y41b{bottom:709.693333pt;}
.y42c{bottom:712.733333pt;}
.y110{bottom:714.173333pt;}
.y2f7{bottom:715.133333pt;}
.y19c{bottom:717.053333pt;}
.y178{bottom:718.493333pt;}
.y72{bottom:719.613333pt;}
.ye1{bottom:719.933333pt;}
.y1ea{bottom:724.093333pt;}
.y3e3{bottom:724.253333pt;}
.y34e{bottom:724.413333pt;}
.y32{bottom:725.533333pt;}
.yf7{bottom:725.693333pt;}
.y160{bottom:726.653333pt;}
.y258{bottom:727.133333pt;}
.y154{bottom:728.093333pt;}
.y43a{bottom:728.733333pt;}
.y55{bottom:729.053333pt;}
.yb8{bottom:730.173333pt;}
.y9a{bottom:731.613333pt;}
.y295{bottom:732.893333pt;}
.y36f{bottom:734.493333pt;}
.ycf{bottom:735.453333pt;}
.y3f3{bottom:735.773333pt;}
.y455{bottom:737.373333pt;}
.y3f1{bottom:738.813333pt;}
.y268{bottom:739.293333pt;}
.y124{bottom:740.413333pt;}
.y18e{bottom:741.693333pt;}
.y13a{bottom:742.173333pt;}
.y84{bottom:744.413333pt;}
.y19b{bottom:744.733333pt;}
.y177{bottom:746.213333pt;}
.ye0{bottom:747.653333pt;}
.y1c{bottom:748.773333pt;}
.y23f{bottom:748.933333pt;}
.y7{bottom:752.933333pt;}
.y31{bottom:753.253333pt;}
.y41a{bottom:753.413333pt;}
.y1cb{bottom:753.893333pt;}
.y15f{bottom:754.373333pt;}
.y1c2{bottom:754.533333pt;}
.y2b1{bottom:755.813333pt;}
.y42b{bottom:756.293333pt;}
.y54{bottom:756.453333pt;}
.yb7{bottom:757.733333pt;}
.y99{bottom:759.173333pt;}
.y36e{bottom:762.053333pt;}
.y71{bottom:763.173333pt;}
.y3e2{bottom:767.973333pt;}
.y123{bottom:768.133333pt;}
.yf6{bottom:769.413333pt;}
.y257{bottom:770.853333pt;}
.y19a{bottom:772.293333pt;}
.yce{bottom:772.773333pt;}
.y176{bottom:773.733333pt;}
.y267{bottom:774.373333pt;}
.ydf{bottom:775.173333pt;}
.y1b{bottom:776.453333pt;}
.y294{bottom:776.613333pt;}
.y1e4{bottom:777.733333pt;}
.y152{bottom:780.453333pt;}
.y30{bottom:780.773333pt;}
.y454{bottom:780.933333pt;}
.y15e{bottom:781.893333pt;}
.y53{bottom:783.653333pt;}
.y42a{bottom:783.973333pt;}
.y6{bottom:785.093333pt;}
.y10f{bottom:785.413333pt;}
.y139{bottom:785.733333pt;}
.y24b{bottom:786.853333pt;}
.y83{bottom:787.973333pt;}
.y1bb{bottom:792.453333pt;}
.y23e{bottom:792.613333pt;}
.y122{bottom:796.773333pt;}
.yf5{bottom:796.933333pt;}
.y256{bottom:798.373333pt;}
.y2f6{bottom:799.493333pt;}
.y199{bottom:799.973333pt;}
.yb6{bottom:801.413333pt;}
.y98{bottom:802.853333pt;}
.y3cf{bottom:805.093333pt;}
.y36d{bottom:805.733333pt;}
.y70{bottom:806.853333pt;}
.y2f{bottom:808.453333pt;}
.y453{bottom:808.613333pt;}
.y266{bottom:809.413333pt;}
.ycd{bottom:809.893333pt;}
.y52{bottom:810.853333pt;}
.y3e1{bottom:811.493333pt;}
.y10e{bottom:812.933333pt;}
.y2ad{bottom:815.333333pt;}
.y5{bottom:817.253333pt;}
.y1a{bottom:819.973333pt;}
.y293{bottom:820.133333pt;}
.y121{bottom:824.453333pt;}
.yf4{bottom:824.613333pt;}
.y15d{bottom:825.573333pt;}
.y2f5{bottom:827.013333pt;}
.y201{bottom:827.493333pt;}
.yb5{bottom:828.933333pt;}
.y138{bottom:829.413333pt;}
.y97{bottom:830.373333pt;}
.y82{bottom:831.653333pt;}
.y3a2{bottom:832.773333pt;}
.y36c{bottom:833.253333pt;}
.y14e{bottom:834.053333pt;}
.y3ef{bottom:835.653333pt;}
.y2e{bottom:835.973333pt;}
.y23d{bottom:836.133333pt;}
.y255{bottom:836.453333pt;}
.y51{bottom:838.213333pt;}
.y3ce{bottom:840.133333pt;}
.y10d{bottom:840.613333pt;}
.y198{bottom:843.493333pt;}
.y6f{bottom:844.293333pt;}
.y265{bottom:844.453333pt;}
.y224{bottom:846.693333pt;}
.ycc{bottom:847.013333pt;}
.y19{bottom:847.653333pt;}
.y3ba{bottom:852.133333pt;}
.y120{bottom:853.093333pt;}
.y2a6{bottom:854.853333pt;}
.y2f4{bottom:855.013333pt;}
.y200{bottom:855.173333pt;}
.yb4{bottom:856.613333pt;}
.y96{bottom:858.053333pt;}
.y81{bottom:859.173333pt;}
.y36b{bottom:860.933333pt;}
.y2d{bottom:863.653333pt;}
.y292{bottom:863.813333pt;}
.y6e{bottom:864.773333pt;}
.y50{bottom:865.413333pt;}
.y4{bottom:865.573333pt;}
.y3a1{bottom:867.813333pt;}
.ycb{bottom:868.133333pt;}
.y197{bottom:871.173333pt;}
.y137{bottom:872.933333pt;}
.y18{bottom:875.173333pt;}
.y254{bottom:877.093333pt;}
.y264{bottom:879.493333pt;}
.y23c{bottom:879.813333pt;}
.y11f{bottom:880.773333pt;}
.y1f2{bottom:882.533333pt;}
.y429{bottom:882.693333pt;}
.y2f3{bottom:882.853333pt;}
.y1e3{bottom:883.493333pt;}
.yb3{bottom:884.133333pt;}
.y6d{bottom:885.413333pt;}
.y95{bottom:885.573333pt;}
.y14d{bottom:887.013333pt;}
.y36a{bottom:888.453333pt;}
.y2c{bottom:891.173333pt;}
.y1b8{bottom:892.453333pt;}
.y4f{bottom:892.613333pt;}
.y18d{bottom:895.813333pt;}
.y196{bottom:898.693333pt;}
.y80{bottom:902.853333pt;}
.y37b{bottom:903.973333pt;}
.y6c{bottom:906.053333pt;}
.y291{bottom:907.333333pt;}
.y3{bottom:907.973333pt;}
.y11e{bottom:909.413333pt;}
.y2f2{bottom:910.693333pt;}
.yb2{bottom:911.813333pt;}
.y94{bottom:913.253333pt;}
.y136{bottom:916.613333pt;}
.y262{bottom:917.893333pt;}
.y17{bottom:918.853333pt;}
.y2a9{bottom:919.653333pt;}
.y4e{bottom:919.973333pt;}
.y18c{bottom:923.333333pt;}
.y195{bottom:926.213333pt;}
.y6b{bottom:926.533333pt;}
.y222{bottom:936.293333pt;}
.y11d{bottom:937.093333pt;}
.y14b{bottom:938.533333pt;}
.y37a{bottom:939.013333pt;}
.yb1{bottom:939.333333pt;}
.y1e2{bottom:943.333333pt;}
.y16{bottom:946.373333pt;}
.y4d{bottom:947.173333pt;}
.y290{bottom:951.013333pt;}
.y93{bottom:951.173333pt;}
.y1b5{bottom:953.093333pt;}
.y194{bottom:953.893333pt;}
.y135{bottom:960.133333pt;}
.y11c{bottom:965.893333pt;}
.y2f1{bottom:966.373333pt;}
.yb0{bottom:967.013333pt;}
.y2e0{bottom:980.773333pt;}
.y15{bottom:991.813333pt;}
.y6a{bottom:991.973333pt;}
.y11b{bottom:993.413333pt;}
.y2f0{bottom:994.213333pt;}
.yaf{bottom:994.533333pt;}
.y134{bottom:994.693333pt;}
.h4f{height:13.952000pt;}
.h4e{height:14.752000pt;}
.h42{height:15.680000pt;}
.h10{height:19.040000pt;}
.h17{height:19.200000pt;}
.h19{height:20.640000pt;}
.h11{height:20.800000pt;}
.hd{height:25.600000pt;}
.h52{height:26.240000pt;}
.hc{height:28.501875pt;}
.h2e{height:30.560000pt;}
.hb{height:33.918750pt;}
.h26{height:34.240000pt;}
.h1e{height:34.400000pt;}
.h25{height:34.432000pt;}
.h5b{height:34.880000pt;}
.h2c{height:35.363437pt;}
.h23{height:35.932500pt;}
.h1c{height:36.000000pt;}
.h15{height:36.160000pt;}
.h29{height:36.320000pt;}
.h31{height:36.800000pt;}
.h2f{height:39.585938pt;}
.h2b{height:39.680000pt;}
.hf{height:41.312000pt;}
.h2d{height:41.440000pt;}
.he{height:41.920000pt;}
.h2a{height:43.808438pt;}
.h34{height:43.840000pt;}
.h30{height:44.320000pt;}
.h32{height:44.800000pt;}
.h33{height:44.960000pt;}
.h43{height:47.322500pt;}
.h38{height:47.872000pt;}
.h4d{height:48.000000pt;}
.h2{height:48.558750pt;}
.h53{height:51.712000pt;}
.h3f{height:52.134375pt;}
.h24{height:52.800000pt;}
.h27{height:52.832000pt;}
.h37{height:54.880000pt;}
.h36{height:56.000000pt;}
.h35{height:57.120000pt;}
.h7{height:57.787500pt;}
.h55{height:60.300000pt;}
.h8{height:62.781250pt;}
.h3{height:62.812500pt;}
.h28{height:63.960000pt;}
.h6{height:64.500000pt;}
.h1d{height:65.152000pt;}
.h59{height:65.280000pt;}
.ha{height:65.781915pt;}
.h9{height:71.524375pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.h14{height:78.720000pt;}
.h16{height:82.240000pt;}
.h54{height:83.520000pt;}
.h5c{height:85.785000pt;}
.h12{height:88.480000pt;}
.h1f{height:89.600000pt;}
.h22{height:89.632000pt;}
.h13{height:92.160000pt;}
.h1a{height:92.320000pt;}
.h1b{height:93.440000pt;}
.h18{height:94.400000pt;}
.h56{height:102.400000pt;}
.h58{height:105.280000pt;}
.h20{height:108.032000pt;}
.h5a{height:109.440000pt;}
.h57{height:111.520000pt;}
.h4c{height:123.040000pt;}
.h51{height:124.832000pt;}
.h21{height:126.400000pt;}
.h50{height:135.706667pt;}
.h46{height:152.826667pt;}
.h3d{height:155.706667pt;}
.h4a{height:187.226667pt;}
.h49{height:197.626667pt;}
.h3e{height:199.226667pt;}
.h3b{height:204.666667pt;}
.h45{height:205.626667pt;}
.h3c{height:208.986667pt;}
.h40{height:214.106667pt;}
.h48{height:223.866667pt;}
.h44{height:224.026667pt;}
.h41{height:226.106667pt;}
.h47{height:234.426667pt;}
.h3a{height:239.386667pt;}
.h39{height:240.506667pt;}
.h4b{height:242.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w40{width:20.800000pt;}
.w3f{width:20.960000pt;}
.w32{width:21.952000pt;}
.w3e{width:22.240000pt;}
.w33{width:24.800000pt;}
.w37{width:25.920000pt;}
.w38{width:26.912000pt;}
.w34{width:27.840000pt;}
.w31{width:28.000000pt;}
.w35{width:28.960000pt;}
.w36{width:31.072000pt;}
.w2f{width:36.800000pt;}
.w2d{width:39.840000pt;}
.w2c{width:40.000000pt;}
.w2e{width:40.992000pt;}
.w51{width:49.600000pt;}
.w2b{width:49.952000pt;}
.w52{width:56.960000pt;}
.w41{width:59.200000pt;}
.w30{width:70.880000pt;}
.w2a{width:72.960000pt;}
.w24{width:76.992000pt;}
.w16{width:82.560000pt;}
.w1a{width:82.880000pt;}
.w18{width:87.200000pt;}
.w21{width:87.552000pt;}
.w22{width:87.840000pt;}
.w1e{width:88.192000pt;}
.w58{width:89.312000pt;}
.w29{width:89.952000pt;}
.w5d{width:90.112000pt;}
.w27{width:90.880000pt;}
.w5c{width:94.080000pt;}
.w59{width:95.552000pt;}
.w25{width:96.992000pt;}
.w28{width:100.992000pt;}
.wf{width:102.272000pt;}
.w20{width:103.392000pt;}
.w1d{width:103.872000pt;}
.w26{width:104.992000pt;}
.w5a{width:112.480000pt;}
.w5b{width:113.920000pt;}
.w43{width:120.032000pt;}
.w46{width:121.312000pt;}
.w4b{width:123.072000pt;}
.w57{width:123.200000pt;}
.w4c{width:128.672000pt;}
.w23{width:128.992000pt;}
.w47{width:130.432000pt;}
.w44{width:131.712000pt;}
.w56{width:149.786667pt;}
.w54{width:151.866667pt;}
.w14{width:159.226667pt;}
.w13{width:160.026667pt;}
.we{width:161.466667pt;}
.wd{width:162.266667pt;}
.w6{width:165.626667pt;}
.w8{width:166.746667pt;}
.w10{width:166.906667pt;}
.w7{width:167.546667pt;}
.w55{width:168.346667pt;}
.wc{width:172.826667pt;}
.wb{width:173.466667pt;}
.w12{width:186.106667pt;}
.wa{width:186.146667pt;}
.w53{width:186.266667pt;}
.w15{width:186.746667pt;}
.w11{width:186.906667pt;}
.w9{width:186.946667pt;}
.w4f{width:189.946667pt;}
.w17{width:204.546667pt;}
.w1b{width:204.866667pt;}
.w19{width:205.186667pt;}
.w50{width:220.066667pt;}
.w3a{width:234.626667pt;}
.w3d{width:243.586667pt;}
.w3b{width:256.226667pt;}
.w3c{width:259.746667pt;}
.w45{width:322.626667pt;}
.w49{width:327.746667pt;}
.w4d{width:329.506667pt;}
.w3{width:353.826667pt;}
.w5{width:353.986667pt;}
.w2{width:354.786667pt;}
.w4{width:354.946667pt;}
.w1c{width:385.186667pt;}
.w1f{width:385.346667pt;}
.w39{width:484.093333pt;}
.w42{width:576.293333pt;}
.w48{width:581.413333pt;}
.w4a{width:583.173333pt;}
.w4e{width:595.973333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:7.200000pt;}
.x1e{left:9.600000pt;}
.x4c{left:10.880000pt;}
.x43{left:12.160000pt;}
.x3f{left:14.600000pt;}
.x41{left:16.200000pt;}
.x38{left:18.080000pt;}
.x51{left:19.520000pt;}
.x3b{left:20.800000pt;}
.x4a{left:24.960000pt;}
.x3c{left:31.520000pt;}
.x40{left:32.680000pt;}
.x6d{left:33.760000pt;}
.x52{left:35.520000pt;}
.x48{left:36.474667pt;}
.x6a{left:39.680000pt;}
.x39{left:44.000000pt;}
.x21{left:49.280000pt;}
.x6e{left:53.600000pt;}
.x27{left:55.866667pt;}
.x3d{left:64.480000pt;}
.x6b{left:65.920000pt;}
.x6f{left:73.760000pt;}
.x60{left:105.952000pt;}
.x1d{left:108.960000pt;}
.x1f{left:112.320000pt;}
.x45{left:114.272000pt;}
.x20{left:122.880000pt;}
.x30{left:125.152000pt;}
.x68{left:127.552000pt;}
.x2{left:132.352000pt;}
.x6c{left:140.026667pt;}
.x5{left:141.626667pt;}
.x10{left:147.066667pt;}
.x5f{left:148.186667pt;}
.x75{left:150.586667pt;}
.x2a{left:152.666667pt;}
.x18{left:156.346667pt;}
.x42{left:158.266667pt;}
.x11{left:161.626667pt;}
.x53{left:164.186667pt;}
.x24{left:168.026667pt;}
.x66{left:172.034667pt;}
.x70{left:172.986667pt;}
.x17{left:179.546667pt;}
.x5c{left:189.146667pt;}
.x49{left:193.306667pt;}
.x67{left:201.794667pt;}
.x23{left:204.346667pt;}
.x32{left:208.346667pt;}
.x1a{left:216.346667pt;}
.x62{left:226.466667pt;}
.x2f{left:233.826667pt;}
.x1c{left:236.386667pt;}
.x63{left:246.146667pt;}
.x65{left:247.426667pt;}
.x54{left:249.346667pt;}
.x4b{left:251.266667pt;}
.x77{left:254.146667pt;}
.x78{left:258.306667pt;}
.x1b{left:269.986667pt;}
.x72{left:283.906667pt;}
.x79{left:291.106667pt;}
.x19{left:292.546667pt;}
.x15{left:295.426667pt;}
.x4d{left:297.346667pt;}
.x8{left:298.306667pt;}
.x2c{left:312.706667pt;}
.x2e{left:316.546667pt;}
.x13{left:320.866667pt;}
.x12{left:322.466667pt;}
.xb{left:324.546667pt;}
.x28{left:336.866667pt;}
.x26{left:337.986667pt;}
.x16{left:341.666667pt;}
.x4e{left:343.266667pt;}
.x25{left:350.466667pt;}
.xe{left:365.026667pt;}
.x2b{left:369.026667pt;}
.x9{left:372.226667pt;}
.x76{left:373.346667pt;}
.x6{left:374.786667pt;}
.x64{left:378.493333pt;}
.xf{left:382.173333pt;}
.x4f{left:389.373333pt;}
.x55{left:394.333333pt;}
.x7{left:403.293333pt;}
.x3a{left:404.253333pt;}
.x33{left:413.533333pt;}
.x4{left:415.773333pt;}
.x37{left:418.333333pt;}
.x5e{left:423.933333pt;}
.x5d{left:425.693333pt;}
.x56{left:431.293333pt;}
.x50{left:433.373333pt;}
.x2d{left:434.973333pt;}
.x57{left:482.333333pt;}
.x69{left:493.853333pt;}
.x71{left:498.333333pt;}
.x34{left:501.373333pt;}
.x35{left:510.493333pt;}
.x29{left:511.453333pt;}
.x3e{left:513.373333pt;}
.x58{left:522.333333pt;}
.x73{left:524.093333pt;}
.x3{left:532.293333pt;}
.x74{left:540.133333pt;}
.x59{left:576.293333pt;}
.x44{left:591.333333pt;}
.x47{left:594.373333pt;}
.x36{left:614.533333pt;}
.x5a{left:628.293333pt;}
.x46{left:648.293333pt;}
.x5b{left:673.413333pt;}
.x22{left:684.480000pt;}
.x14{left:686.080000pt;}
.xd{left:689.280000pt;}
.xc{left:692.640000pt;}
.xa{left:696.000000pt;}
.x1{left:699.360000pt;}
.x61{left:703.200000pt;}
}




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