
    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_a76738ab03f0c089a8981cb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_465db629796ad690abab092e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_2db94a4cbb574278199712ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_6f70aafd7842ad3f8158cd50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_d004ced40afdf579138f57f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_3123a297712e551cacc16377.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_0c7e935378fc649a473a6e90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_71906ba80f0727829e592f79.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_9725d16d8330b0bc9496f481.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6606703decf5b70799f465e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.422000px;}
.lsd{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls1e{letter-spacing:-0.466800px;}
.ls1d{letter-spacing:-0.382800px;}
.ls6{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.313920px;}
.lsc{letter-spacing:0.466800px;}
.lse{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.507000px;}
.ls7{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.745280px;}
.ls16{letter-spacing:3.600000px;}
.lsa{letter-spacing:3.960000px;}
.ls1a{letter-spacing:5.040000px;}
.ls9{letter-spacing:6.480000px;}
.ls20{letter-spacing:8.100000px;}
.ls1b{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.800000px;}
.ls19{letter-spacing:12.240000px;}
.ls23{letter-spacing:13.265280px;}
.ls21{letter-spacing:20.626560px;}
.ls22{letter-spacing:40.786560px;}
.ls18{letter-spacing:42.226560px;}
.ls17{letter-spacing:43.666560px;}
.ls10{letter-spacing:43.678560px;}
.ls11{letter-spacing:46.558560px;}
.ls12{letter-spacing:79.678560px;}
.lsf{letter-spacing:81.250560px;}
.ls8{letter-spacing:82.690560px;}
.ls15{letter-spacing:92.053440px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws9{word-spacing:-18.000000px;}
.ws14{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.627000px;}
.ws5{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.156000px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.099840px;}
.ws13{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.ws6{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws10{word-spacing:-12.399264px;}
.wsf{word-spacing:-12.366720px;}
.wsb{word-spacing:-10.739520px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:74.415120px;}
.wsd{word-spacing:87.720000px;}
.wsc{word-spacing:88.260000px;}
.wse{word-spacing:88.440000px;}
.ws11{word-spacing:90.155040px;}
._16{margin-left:-6.031680px;}
._11{margin-left:-4.138560px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.563040px;}
._12{width:4.623840px;}
._e{width:5.957280px;}
._14{width:7.256160px;}
._15{width:8.740320px;}
._d{width:9.804000px;}
._a{width:11.188800px;}
._b{width:12.528000px;}
._19{width:13.944960px;}
._c{width:16.963680px;}
._21{width:18.510240px;}
._20{width:19.523040px;}
._1a{width:21.211200px;}
._f{width:23.224320px;}
._10{width:25.159680px;}
._13{width:27.276480px;}
._22{width:29.166720px;}
._18{width:54.719040px;}
._1e{width:101.018400px;}
._1d{width:106.886400px;}
._1f{width:108.326400px;}
._1b{width:111.128640px;}
._1c{width:118.635360px;}
._8{width:196.560000px;}
._17{width:198.000000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._9{width:1303.056000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc8{color:rgb(0,176,240);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fsa{font-size:54.864000px;}
.fs0{font-size:60.480000px;}
.fs9{font-size:60.624000px;}
.fsb{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y43{bottom:3.240000px;}
.y1b3{bottom:5.040000px;}
.y1b1{bottom:5.400000px;}
.y1b5{bottom:5.430000px;}
.y32{bottom:5.760000px;}
.y1da{bottom:5.805000px;}
.y1ab{bottom:6.120000px;}
.y1a6{bottom:6.480000px;}
.y1b9{bottom:7.560000px;}
.y1dd{bottom:8.280000px;}
.y1d3{bottom:9.720000px;}
.y1ad{bottom:11.880000px;}
.y9e{bottom:14.760000px;}
.ya8{bottom:16.200000px;}
.y1de{bottom:16.920000px;}
.y164{bottom:17.130000px;}
.y18f{bottom:17.385000px;}
.y172{bottom:18.105000px;}
.y1cb{bottom:18.180000px;}
.y1a0{bottom:18.210000px;}
.y1d4{bottom:18.360000px;}
.y42{bottom:20.520000px;}
.y1b8{bottom:24.840000px;}
.y31{bottom:25.560000px;}
.y1d2{bottom:27.000000px;}
.y1f4{bottom:29.190000px;}
.y1f3{bottom:37.830000px;}
.ye{bottom:43.560000px;}
.y30{bottom:45.720000px;}
.y18c{bottom:46.185000px;}
.y18e{bottom:46.365000px;}
.y16f{bottom:48.930000px;}
.y1c8{bottom:49.500000px;}
.y19d{bottom:49.830000px;}
.y19f{bottom:50.040000px;}
.y162{bottom:50.145000px;}
.y41{bottom:55.440000px;}
.y18b{bottom:62.640000px;}
.y18d{bottom:62.925000px;}
.y181{bottom:64.695000px;}
.y161{bottom:64.800000px;}
.y163{bottom:65.055000px;}
.y16e{bottom:65.370000px;}
.y171{bottom:65.595000px;}
.y166{bottom:65.955000px;}
.y1c7{bottom:65.985000px;}
.y1ca{bottom:66.165000px;}
.y19c{bottom:66.315000px;}
.y19e{bottom:66.600000px;}
.yc{bottom:68.400000px;}
.y40{bottom:72.765000px;}
.y2f{bottom:74.520000px;}
.y191{bottom:74.550000px;}
.y18a{bottom:79.125000px;}
.y160{bottom:79.455000px;}
.y1bd{bottom:81.285000px;}
.y16d{bottom:81.870000px;}
.y170{bottom:82.155000px;}
.y1c6{bottom:82.470000px;}
.y1c9{bottom:82.770000px;}
.y19b{bottom:82.800000px;}
.y15a{bottom:93.960000px;}
.y2e{bottom:94.320000px;}
.ya{bottom:94.716000px;}
.y182{bottom:96.690000px;}
.y16c{bottom:98.355000px;}
.y1c5{bottom:98.970000px;}
.y192{bottom:100.365000px;}
.y3f{bottom:101.565000px;}
.y167{bottom:115.920000px;}
.y1be{bottom:116.490000px;}
.y3e{bottom:121.725000px;}
.y2d{bottom:123.150000px;}
.y193{bottom:126.150000px;}
.y15b{bottom:128.370000px;}
.y183{bottom:128.700000px;}
.yba{bottom:130.356000px;}
.y38{bottom:132.156000px;}
.ye2{bottom:135.036000px;}
.y74{bottom:136.836000px;}
.y1ed{bottom:138.276000px;}
.y24a{bottom:141.156000px;}
.y28a{bottom:142.236000px;}
.y2c{bottom:142.950000px;}
.y26b{bottom:142.956000px;}
.y1bb{bottom:144.396000px;}
.yb9{bottom:145.836000px;}
.y104{bottom:146.196000px;}
.y37{bottom:150.150000px;}
.yb8{bottom:150.510000px;}
.y1bf{bottom:151.740000px;}
.y194{bottom:151.920000px;}
.y36{bottom:154.830000px;}
.y184{bottom:160.740000px;}
.ye1{bottom:161.310000px;}
.yb7{bottom:161.670000px;}
.y2b{bottom:162.750000px;}
.y213{bottom:164.550000px;}
.y168{bottom:165.855000px;}
.ye0{bottom:165.990000px;}
.y1ec{bottom:167.070000px;}
.y35{bottom:167.790000px;}
.y249{bottom:169.950000px;}
.y158{bottom:172.110000px;}
.y34{bottom:172.470000px;}
.ydf{bottom:176.790000px;}
.y195{bottom:177.735000px;}
.y1ba{bottom:179.670000px;}
.y12b{bottom:181.470000px;}
.y2a{bottom:182.550000px;}
.y33{bottom:183.990000px;}
.y212{bottom:184.350000px;}
.y73{bottom:185.790000px;}
.y1eb{bottom:186.870000px;}
.y1c0{bottom:186.945000px;}
.y157{bottom:191.910000px;}
.yde{bottom:192.270000px;}
.y185{bottom:192.750000px;}
.y17f{bottom:194.070000px;}
.y12a{bottom:196.950000px;}
.y15c{bottom:197.130000px;}
.y248{bottom:198.795000px;}
.y26a{bottom:200.955000px;}
.y29{bottom:202.350000px;}
.y72{bottom:203.475000px;}
.y196{bottom:203.505000px;}
.y156{bottom:205.995000px;}
.y17{bottom:206.355000px;}
.y1ea{bottom:206.715000px;}
.y165{bottom:207.000000px;}
.ydd{bottom:207.795000px;}
.y71{bottom:208.155000px;}
.y17e{bottom:211.395000px;}
.ydc{bottom:212.475000px;}
.y211{bottom:213.195000px;}
.y169{bottom:215.820000px;}
.y9c{bottom:219.675000px;}
.y70{bottom:221.475000px;}
.y1c1{bottom:222.150000px;}
.y103{bottom:222.555000px;}
.y129{bottom:223.275000px;}
.ydb{bottom:223.635000px;}
.y186{bottom:224.745000px;}
.y17d{bottom:225.435000px;}
.y1e9{bottom:226.515000px;}
.y190{bottom:226.800000px;}
.y247{bottom:227.595000px;}
.y128{bottom:227.955000px;}
.y197{bottom:229.290000px;}
.y269{bottom:229.755000px;}
.y28{bottom:231.150000px;}
.y15d{bottom:231.555000px;}
.y1b7{bottom:234.795000px;}
.y127{bottom:238.755000px;}
.y142{bottom:239.115000px;}
.y6f{bottom:239.475000px;}
.y102{bottom:242.355000px;}
.y141{bottom:243.795000px;}
.y6e{bottom:244.155000px;}
.y1e8{bottom:246.315000px;}
.y246{bottom:247.395000px;}
.y27{bottom:250.995000px;}
.y22a{bottom:252.075000px;}
.y126{bottom:254.595000px;}
.y198{bottom:255.090000px;}
.y140{bottom:256.395000px;}
.y187{bottom:256.755000px;}
.y6d{bottom:257.115000px;}
.y1c2{bottom:257.370000px;}
.y268{bottom:258.555000px;}
.y9a{bottom:258.915000px;}
.y125{bottom:259.275000px;}
.yb6{bottom:262.515000px;}
.y9b{bottom:264.315000px;}
.y16a{bottom:265.755000px;}
.y15e{bottom:265.935000px;}
.y245{bottom:267.195000px;}
.y124{bottom:270.075000px;}
.y26{bottom:271.155000px;}
.y289{bottom:272.955000px;}
.y6c{bottom:275.115000px;}
.y99{bottom:278.715000px;}
.y1f5{bottom:279.075000px;}
.y6b{bottom:279.795000px;}
.y199{bottom:280.875000px;}
.yb5{bottom:282.315000px;}
.yda{bottom:285.555000px;}
.y267{bottom:287.355000px;}
.y188{bottom:288.795000px;}
.y14f{bottom:289.515000px;}
.y123{bottom:290.235000px;}
.y25{bottom:290.955000px;}
.y1c3{bottom:292.575000px;}
.y288{bottom:292.755000px;}
.y244{bottom:295.995000px;}
.y1f2{bottom:297.075000px;}
.y101{bottom:299.955000px;}
.y15f{bottom:300.315000px;}
.y1b6{bottom:300.675000px;}
.y122{bottom:301.395000px;}
.yb4{bottom:302.115000px;}
.y6a{bottom:306.435000px;}
.y19a{bottom:306.645000px;}
.y98{bottom:307.515000px;}
.y14e{bottom:309.315000px;}
.y229{bottom:310.035000px;}
.y69{bottom:311.115000px;}
.yd9{bottom:314.355000px;}
.y16b{bottom:315.690000px;}
.y243{bottom:316.155000px;}
.y13f{bottom:316.515000px;}
.y24{bottom:319.755000px;}
.y189{bottom:320.790000px;}
.y1b4{bottom:322.995000px;}
.y68{bottom:324.105000px;}
.y1c4{bottom:327.780000px;}
.y67{bottom:328.785000px;}
.y100{bottom:329.145000px;}
.yb3{bottom:330.945000px;}
.yd8{bottom:334.185000px;}
.y242{bottom:335.985000px;}
.y97{bottom:336.705000px;}
.y228{bottom:338.865000px;}
.y23{bottom:339.555000px;}
.y210{bottom:339.585000px;}
.y66{bottom:340.305000px;}
.y287{bottom:342.825000px;}
.y266{bottom:344.985000px;}
.y1b2{bottom:345.345000px;}
.y14d{bottom:348.945000px;}
.y1f1{bottom:349.665000px;}
.y13e{bottom:350.745000px;}
.yd7{bottom:353.985000px;}
.y241{bottom:355.785000px;}
.yb2{bottom:356.505000px;}
.y22{bottom:359.355000px;}
.yff{bottom:364.785000px;}
.y96{bottom:365.505000px;}
.y1b0{bottom:367.305000px;}
.y1f0{bottom:367.665000px;}
.y20f{bottom:368.385000px;}
.y14c{bottom:368.745000px;}
.y13d{bottom:370.905000px;}
.y286{bottom:373.065000px;}
.y265{bottom:373.785000px;}
.y240{bottom:375.585000px;}
.y21{bottom:379.185000px;}
.yd6{bottom:382.425000px;}
.y95{bottom:385.305000px;}
.y1ef{bottom:385.665000px;}
.y14b{bottom:388.905000px;}
.y120{bottom:390.705000px;}
.y121{bottom:396.105000px;}
.y65{bottom:396.465000px;}
.y20e{bottom:397.185000px;}
.y20{bottom:398.985000px;}
.y1af{bottom:401.865000px;}
.y264{bottom:402.585000px;}
.yfd{bottom:402.945000px;}
.y285{bottom:403.305000px;}
.y1ee{bottom:404.025000px;}
.y23f{bottom:404.385000px;}
.yfe{bottom:408.345000px;}
.y14a{bottom:408.705000px;}
.y11f{bottom:410.505000px;}
.yd5{bottom:411.585000px;}
.y94{bottom:414.105000px;}
.y64{bottom:416.265000px;}
.y1f{bottom:418.785000px;}
.y13c{bottom:419.505000px;}
.yfc{bottom:420.225000px;}
.y284{bottom:423.105000px;}
.y23e{bottom:424.185000px;}
.y227{bottom:425.265000px;}
.y20d{bottom:425.985000px;}
.y149{bottom:428.505000px;}
.y11e{bottom:430.305000px;}
.y263{bottom:431.385000px;}
.y1ae{bottom:434.625000px;}
.y1e7{bottom:436.065000px;}
.yfb{bottom:437.505000px;}
.y1e{bottom:438.585000px;}
.y23d{bottom:443.985000px;}
.y63{bottom:445.065000px;}
.yd4{bottom:446.505000px;}
.y13b{bottom:448.305000px;}
.y11d{bottom:450.150000px;}
.y93{bottom:451.950000px;}
.y283{bottom:453.390000px;}
.y226{bottom:454.110000px;}
.y20c{bottom:454.830000px;}
.y1d{bottom:458.385000px;}
.y1ac{bottom:459.150000px;}
.y262{bottom:460.590000px;}
.yfa{bottom:463.830000px;}
.y62{bottom:464.910000px;}
.y148{bottom:468.150000px;}
.y1e6{bottom:468.870000px;}
.y11c{bottom:469.950000px;}
.y92{bottom:471.750000px;}
.yd3{bottom:472.470000px;}
.y282{bottom:473.190000px;}
.y20b{bottom:474.630000px;}
.y13a{bottom:477.150000px;}
.yf9{bottom:481.110000px;}
.y225{bottom:482.910000px;}
.y23c{bottom:483.630000px;}
.y61{bottom:484.710000px;}
.y1c{bottom:487.545000px;}
.y147{bottom:487.950000px;}
.y261{bottom:489.390000px;}
.y91{bottom:491.550000px;}
.y1e5{bottom:493.350000px;}
.y1aa{bottom:494.430000px;}
.y139{bottom:496.950000px;}
.yd2{bottom:498.390000px;}
.y11b{bottom:498.750000px;}
.y23b{bottom:503.430000px;}
.y20a{bottom:503.790000px;}
.y60{bottom:504.510000px;}
.y1b{bottom:507.375000px;}
.yf8{bottom:507.390000px;}
.y146{bottom:507.750000px;}
.y224{bottom:511.710000px;}
.y138{bottom:516.750000px;}
.y260{bottom:518.190000px;}
.y1a9{bottom:518.550000px;}
.y90{bottom:520.350000px;}
.y281{bottom:523.230000px;}
.y23a{bottom:523.590000px;}
.yd1{bottom:524.310000px;}
.y1a{bottom:527.175000px;}
.y11a{bottom:527.550000px;}
.y223{bottom:531.510000px;}
.y209{bottom:532.590000px;}
.y5e{bottom:533.310000px;}
.y137{bottom:536.550000px;}
.y5f{bottom:539.430000px;}
.y1e4{bottom:541.230000px;}
.y1a8{bottom:543.030000px;}
.y19{bottom:546.975000px;}
.y25f{bottom:546.990000px;}
.y145{bottom:547.350000px;}
.y8f{bottom:549.150000px;}
.yb1{bottom:549.510000px;}
.yf7{bottom:550.590000px;}
.y208{bottom:552.390000px;}
.yd0{bottom:553.110000px;}
.y5d{bottom:553.470000px;}
.y118{bottom:556.350000px;}
.y17c{bottom:557.070000px;}
.y155{bottom:558.150000px;}
.y222{bottom:560.310000px;}
.y119{bottom:561.750000px;}
.y18{bottom:564.255000px;}
.y135{bottom:565.350000px;}
.y1e3{bottom:565.710000px;}
.y144{bottom:567.150000px;}
.y1a7{bottom:567.510000px;}
.y136{bottom:570.750000px;}
.y239{bottom:572.190000px;}
.y280{bottom:573.270000px;}
.y17b{bottom:574.350000px;}
.y117{bottom:576.180000px;}
.yf6{bottom:576.900000px;}
.yb0{bottom:578.700000px;}
.y207{bottom:581.220000px;}
.ycf{bottom:581.940000px;}
.y5b{bottom:582.300000px;}
.y25e{bottom:584.820000px;}
.y134{bottom:585.180000px;}
.y8d{bottom:587.340000px;}
.y5c{bottom:588.420000px;}
.y221{bottom:589.500000px;}
.y1e2{bottom:590.220000px;}
.y17a{bottom:591.660000px;}
.y238{bottom:592.020000px;}
.y8e{bottom:592.740000px;}
.y154{bottom:595.980000px;}
.y116{bottom:596.340000px;}
.y206{bottom:601.020000px;}
.yce{bottom:601.740000px;}
.y5a{bottom:602.100000px;}
.y27f{bottom:603.540000px;}
.y25d{bottom:604.620000px;}
.y133{bottom:605.340000px;}
.yf5{bottom:605.700000px;}
.y8c{bottom:607.140000px;}
.y220{bottom:609.300000px;}
.y179{bottom:611.460000px;}
.y237{bottom:611.820000px;}
.y1e1{bottom:614.700000px;}
.y153{bottom:615.780000px;}
.y115{bottom:616.140000px;}
.yae{bottom:616.500000px;}
.y205{bottom:620.820000px;}
.yaf{bottom:621.900000px;}
.y27e{bottom:623.340000px;}
.y25c{bottom:624.420000px;}
.y132{bottom:625.140000px;}
.yf4{bottom:625.500000px;}
.y1a5{bottom:628.380000px;}
.ycd{bottom:630.540000px;}
.y58{bottom:630.900000px;}
.y178{bottom:631.260000px;}
.y236{bottom:631.620000px;}
.y152{bottom:635.580000px;}
.y8b{bottom:635.940000px;}
.y59{bottom:636.300000px;}
.y21f{bottom:638.100000px;}
.y1e0{bottom:638.820000px;}
.y114{bottom:644.940000px;}
.y25b{bottom:648.900000px;}
.y204{bottom:649.620000px;}
.y57{bottom:650.700000px;}
.y177{bottom:651.060000px;}
.yf3{bottom:651.420000px;}
.y27d{bottom:653.580000px;}
.y8a{bottom:655.740000px;}
.y21e{bottom:657.900000px;}
.ycc{bottom:659.340000px;}
.y1a4{bottom:663.660000px;}
.yad{bottom:665.100000px;}
.y151{bottom:667.620000px;}
.y176{bottom:668.340000px;}
.y159{bottom:669.240000px;}
.y235{bottom:671.220000px;}
.y25a{bottom:673.020000px;}
.y27c{bottom:673.380000px;}
.y112{bottom:673.740000px;}
.y89{bottom:675.540000px;}
.y203{bottom:678.420000px;}
.y113{bottom:679.140000px;}
.y55{bottom:679.500000px;}
.yf2{bottom:680.220000px;}
.y56{bottom:684.900000px;}
.y175{bottom:685.620000px;}
.y21d{bottom:686.700000px;}
.ycb{bottom:688.140000px;}
.y1a3{bottom:689.940000px;}
.y259{bottom:692.820000px;}
.y111{bottom:693.540000px;}
.y54{bottom:699.300000px;}
.y174{bottom:699.660000px;}
.y234{bottom:700.020000px;}
.y180{bottom:700.560000px;}
.y130{bottom:702.570000px;}
.y27b{bottom:703.650000px;}
.y1a2{bottom:704.010000px;}
.y88{bottom:704.370000px;}
.y1bc{bottom:704.520000px;}
.yac{bottom:704.730000px;}
.y21c{bottom:706.530000px;}
.y202{bottom:707.250000px;}
.y131{bottom:707.970000px;}
.y1df{bottom:708.330000px;}
.yf1{bottom:709.410000px;}
.y110{bottom:713.370000px;}
.yca{bottom:716.970000px;}
.y233{bottom:719.850000px;}
.y258{bottom:722.010000px;}
.y12f{bottom:722.370000px;}
.y27a{bottom:723.450000px;}
.yab{bottom:724.530000px;}
.y201{bottom:727.050000px;}
.y52{bottom:728.130000px;}
.yf0{bottom:729.210000px;}
.y21b{bottom:730.290000px;}
.y1dc{bottom:731.370000px;}
.y87{bottom:733.170000px;}
.y53{bottom:733.530000px;}
.y232{bottom:740.010000px;}
.y10f{bottom:742.170000px;}
.yaa{bottom:744.330000px;}
.y279{bottom:744.690000px;}
.yc9{bottom:745.770000px;}
.y51{bottom:747.930000px;}
.y257{bottom:753.690000px;}
.yef{bottom:755.130000px;}
.y200{bottom:756.210000px;}
.y231{bottom:759.810000px;}
.y12e{bottom:761.970000px;}
.y278{bottom:765.930000px;}
.y86{bottom:770.970000px;}
.ya9{bottom:773.130000px;}
.yc8{bottom:774.570000px;}
.y10e{bottom:776.370000px;}
.y4f{bottom:776.730000px;}
.y256{bottom:778.170000px;}
.y230{bottom:779.610000px;}
.y50{bottom:782.130000px;}
.y21a{bottom:783.570000px;}
.yee{bottom:783.930000px;}
.y1ff{bottom:785.010000px;}
.y277{bottom:785.730000px;}
.y16{bottom:790.050000px;}
.y85{bottom:790.770000px;}
.y4e{bottom:796.890000px;}
.y255{bottom:797.970000px;}
.y1db{bottom:800.130000px;}
.yc7{bottom:803.370000px;}
.ya7{bottom:805.890000px;}
.y276{bottom:806.970000px;}
.y15{bottom:807.330000px;}
.y84{bottom:810.570000px;}
.y219{bottom:812.370000px;}
.yed{bottom:812.730000px;}
.y1fe{bottom:813.810000px;}
.y22f{bottom:814.530000px;}
.y4d{bottom:816.690000px;}
.y12c{bottom:819.570000px;}
.y1d9{bottom:823.890000px;}
.y12d{bottom:824.970000px;}
.y254{bottom:826.815000px;}
.y10d{bottom:830.415000px;}
.yc6{bottom:832.575000px;}
.y14{bottom:833.655000px;}
.y4c{bottom:836.535000px;}
.yec{bottom:838.695000px;}
.y83{bottom:839.415000px;}
.y218{bottom:841.575000px;}
.y1fd{bottom:842.655000px;}
.y22e{bottom:843.375000px;}
.y295{bottom:844.455000px;}
.y1d8{bottom:846.975000px;}
.y10c{bottom:850.575000px;}
.y11{bottom:851.655000px;}
.y275{bottom:857.055000px;}
.y12{bottom:857.775000px;}
.y13{bottom:858.495000px;}
.y82{bottom:859.575000px;}
.yc4{bottom:861.375000px;}
.y294{bottom:861.735000px;}
.y4a{bottom:865.335000px;}
.yc5{bottom:866.775000px;}
.yeb{bottom:867.495000px;}
.y1d7{bottom:870.375000px;}
.y4b{bottom:870.735000px;}
.y1fc{bottom:871.455000px;}
.y22d{bottom:872.175000px;}
.ya6{bottom:872.535000px;}
.y274{bottom:876.855000px;}
.y81{bottom:879.375000px;}
.yc3{bottom:881.175000px;}
.y253{bottom:882.975000px;}
.y49{bottom:885.135000px;}
.y217{bottom:890.175000px;}
.y293{bottom:890.535000px;}
.y10{bottom:890.895000px;}
.yea{bottom:896.295000px;}
.y80{bottom:899.175000px;}
.y1fb{bottom:900.255000px;}
.yc2{bottom:900.975000px;}
.y48{bottom:904.935000px;}
.y1d6{bottom:905.655000px;}
.y273{bottom:907.455000px;}
.y10b{bottom:908.175000px;}
.ya5{bottom:910.335000px;}
.y252{bottom:911.775000px;}
.yf{bottom:915.375000px;}
.y7f{bottom:918.975000px;}
.y1fa{bottom:920.055000px;}
.ye9{bottom:922.215000px;}
.y47{bottom:924.735000px;}
.y272{bottom:927.255000px;}
.yc1{bottom:929.415000px;}
.y22c{bottom:929.775000px;}
.ya4{bottom:930.135000px;}
.y109{bottom:936.975000px;}
.y1d5{bottom:938.415000px;}
.y7e{bottom:938.775000px;}
.y292{bottom:940.935000px;}
.y9{bottom:941.295000px;}
.y10a{bottom:942.375000px;}
.y251{bottom:943.455000px;}
.y46{bottom:944.535000px;}
.y216{bottom:947.775000px;}
.ye8{bottom:948.135000px;}
.y271{bottom:948.495000px;}
.y1f9{bottom:955.005000px;}
.y108{bottom:956.805000px;}
.y8{bottom:958.605000px;}
.ya3{bottom:958.965000px;}
.y1d1{bottom:960.405000px;}
.y291{bottom:960.765000px;}
.y143{bottom:962.205000px;}
.y7d{bottom:967.605000px;}
.y250{bottom:967.965000px;}
.y7{bottom:972.645000px;}
.y45{bottom:973.365000px;}
.y1f8{bottom:974.805000px;}
.y107{bottom:976.605000px;}
.ye7{bottom:976.965000px;}
.y22b{bottom:978.405000px;}
.ya2{bottom:978.765000px;}
.yc0{bottom:987.405000px;}
.y290{bottom:991.005000px;}
.y1f7{bottom:994.605000px;}
.y7c{bottom:996.405000px;}
.y24f{bottom:996.765000px;}
.ya1{bottom:998.565000px;}
.y270{bottom:1000.005000px;}
.y44{bottom:1002.165000px;}
.y150{bottom:1005.405000px;}
.ye6{bottom:1005.765000px;}
.y215{bottom:1007.205000px;}
.y1d0{bottom:1008.285000px;}
.y28f{bottom:1010.805000px;}
.y1f6{bottom:1014.405000px;}
.ya0{bottom:1018.365000px;}
.y3d{bottom:1018.725000px;}
.y26f{bottom:1021.245000px;}
.ybf{bottom:1025.205000px;}
.y24e{bottom:1025.565000px;}
.y6{bottom:1027.365000px;}
.y1cf{bottom:1032.765000px;}
.y7a{bottom:1034.205000px;}
.ye5{bottom:1036.005000px;}
.y7b{bottom:1039.605000px;}
.y26e{bottom:1041.045000px;}
.ybe{bottom:1045.005000px;}
.y9f{bottom:1047.165000px;}
.y24d{bottom:1050.045000px;}
.y5{bottom:1052.205000px;}
.y79{bottom:1054.005000px;}
.y1ce{bottom:1057.245000px;}
.y106{bottom:1059.405000px;}
.y28e{bottom:1060.845000px;}
.ye4{bottom:1061.925000px;}
.y173{bottom:1062.285000px;}
.y1a1{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.ybc{bottom:1073.805000px;}
.y24c{bottom:1078.890000px;}
.ybd{bottom:1079.250000px;}
.y9d{bottom:1080.330000px;}
.y1cd{bottom:1081.410000px;}
.y26d{bottom:1082.130000px;}
.y78{bottom:1082.850000px;}
.ye3{bottom:1087.890000px;}
.y28d{bottom:1091.130000px;}
.y3{bottom:1094.010000px;}
.y77{bottom:1103.010000px;}
.y1cc{bottom:1105.890000px;}
.y24b{bottom:1107.690000px;}
.y26c{bottom:1112.370000px;}
.ybb{bottom:1113.810000px;}
.y2{bottom:1114.530000px;}
.y28c{bottom:1121.370000px;}
.y76{bottom:1122.810000px;}
.y105{bottom:1128.210000px;}
.y1{bottom:1131.450000px;}
.y28b{bottom:1141.170000px;}
.y75{bottom:1142.610000px;}
.y214{bottom:1148.010000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h2f{height:17.280000px;}
.h30{height:17.640000px;}
.h24{height:21.240000px;}
.h29{height:21.276000px;}
.h23{height:21.600000px;}
.h25{height:21.636000px;}
.h2a{height:22.320000px;}
.h2c{height:22.356000px;}
.h2b{height:22.680000px;}
.h2d{height:23.040000px;}
.h20{height:23.400000px;}
.h1f{height:23.436000px;}
.h1e{height:23.760000px;}
.h22{height:23.796000px;}
.hf{height:31.587891px;}
.h11{height:34.114922px;}
.h21{height:34.200000px;}
.hb{height:34.532578px;}
.h12{height:37.800000px;}
.hc{height:41.696016px;}
.h5{height:41.707969px;}
.h13{height:42.156000px;}
.h26{height:43.200000px;}
.h2e{height:44.640000px;}
.h28{height:47.160000px;}
.h7{height:48.013594px;}
.h17{height:48.656953px;}
.h31{height:51.876000px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.h16{height:53.845242px;}
.h19{height:54.426094px;}
.h1a{height:54.569320px;}
.h32{height:58.121719px;}
.h14{height:60.155156px;}
.hd{height:63.175781px;}
.h3{height:63.949219px;}
.h1b{height:65.884219px;}
.ha{height:74.181094px;}
.h9{height:85.691953px;}
.h10{height:135.756000px;}
.h15{height:321.840000px;}
.h1d{height:327.240000px;}
.h18{height:336.240000px;}
.h1c{height:341.280000px;}
.h27{height:348.480000px;}
.he{height:578.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:49.356000px;}
.w14{width:49.680000px;}
.w13{width:49.716000px;}
.w23{width:52.560000px;}
.w10{width:52.596000px;}
.wf{width:52.920000px;}
.w22{width:52.956000px;}
.w19{width:56.196000px;}
.w1a{width:56.520000px;}
.w1c{width:57.600000px;}
.w1d{width:58.716000px;}
.w1f{width:63.360000px;}
.w1e{width:63.396000px;}
.w26{width:85.356000px;}
.w9{width:92.556000px;}
.w27{width:106.632000px;}
.w25{width:138.636000px;}
.w24{width:149.112000px;}
.w20{width:159.195000px;}
.w11{width:159.555000px;}
.w1b{width:163.155000px;}
.w16{width:166.755000px;}
.w12{width:195.915000px;}
.w18{width:200.625000px;}
.wa{width:200.985000px;}
.w21{width:201.345000px;}
.we{width:212.145000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.wb{width:551.160000px;}
.wd{width:559.440000px;}
.w17{width:561.960000px;}
.wc{width:562.680000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x5e{left:10.050000px;}
.x85{left:11.520000px;}
.x67{left:12.885000px;}
.x7b{left:14.010000px;}
.x91{left:15.885000px;}
.x5d{left:17.535000px;}
.x8a{left:18.720000px;}
.x9d{left:19.830000px;}
.x9a{left:22.320000px;}
.x9c{left:23.760000px;}
.x9f{left:24.870000px;}
.x7a{left:27.690000px;}
.x9e{left:29.160000px;}
.xaa{left:36.030000px;}
.xa3{left:37.836000px;}
.xa7{left:39.960000px;}
.xa6{left:43.560000px;}
.xa8{left:47.160000px;}
.xa9{left:51.885000px;}
.x89{left:54.765000px;}
.x99{left:56.565000px;}
.x68{left:57.960000px;}
.x8c{left:61.239000px;}
.x94{left:63.759000px;}
.x7c{left:67.470000px;}
.x83{left:69.519000px;}
.x5f{left:75.930000px;}
.x69{left:80.895000px;}
.x7d{left:90.390000px;}
.x7{left:106.235987px;}
.x11{left:110.915987px;}
.x2a{left:115.595987px;}
.xae{left:127.475987px;}
.x25{left:132.911987px;}
.x73{left:135.930000px;}
.x6a{left:136.980000px;}
.x7e{left:144.180000px;}
.xad{left:154.514987px;}
.x60{left:158.580000px;}
.x31{left:159.914987px;}
.x4d{left:160.994973px;}
.x66{left:164.880000px;}
.x72{left:166.320000px;}
.x41{left:167.474973px;}
.x4e{left:171.074987px;}
.x55{left:174.314973px;}
.x42{left:177.554987px;}
.x15{left:178.634973px;}
.x12{left:180.794987px;}
.x16{left:183.674987px;}
.x32{left:185.834987px;}
.x2f{left:187.634973px;}
.x30{left:197.714987px;}
.x79{left:200.850000px;}
.x38{left:212.474987px;}
.x37{left:213.914987px;}
.x74{left:223.920000px;}
.x61{left:225.360000px;}
.x4b{left:227.264973px;}
.x7f{left:230.325000px;}
.xb{left:232.304987px;}
.x56{left:234.104973px;}
.x4c{left:237.344987px;}
.x70{left:239.504987px;}
.x71{left:241.304987px;}
.xa0{left:243.104987px;}
.x57{left:244.184987px;}
.x35{left:248.864973px;}
.x5a{left:250.664987px;}
.x39{left:252.824973px;}
.x2{left:254.264987px;}
.x8b{left:256.784987px;}
.x36{left:258.944987px;}
.x3a{left:262.904987px;}
.x47{left:271.904973px;}
.x6{left:274.064987px;}
.x48{left:281.984987px;}
.x45{left:295.664973px;}
.x3b{left:296.744987px;}
.x58{left:300.344973px;}
.x49{left:302.144973px;}
.xa{left:304.350000px;}
.x46{left:305.744987px;}
.x80{left:308.085000px;}
.x59{left:310.469987px;}
.x4a{left:312.269987px;}
.x84{left:319.110000px;}
.x10{left:322.349987px;}
.x3e{left:329.189973px;}
.x2b{left:331.709987px;}
.x14{left:339.984000px;}
.x8d{left:352.950000px;}
.x95{left:357.990000px;}
.xa1{left:361.590000px;}
.x5{left:362.669987px;}
.x51{left:367.349973px;}
.x4f{left:369.509973px;}
.x28{left:371.669973px;}
.x23{left:372.749973px;}
.x52{left:377.429987px;}
.x3f{left:378.869973px;}
.x4{left:379.949987px;}
.x29{left:381.749987px;}
.x24{left:382.829987px;}
.x93{left:384.990000px;}
.x62{left:386.280000px;}
.x40{left:388.949987px;}
.x81{left:390.090000px;}
.x92{left:393.810000px;}
.x6b{left:395.670000px;}
.x3{left:398.339987px;}
.x50{left:399.779987px;}
.x8e{left:403.020000px;}
.x82{left:404.250000px;}
.x63{left:405.510000px;}
.x75{left:409.890000px;}
.x6c{left:412.380000px;}
.x96{left:414.540000px;}
.x86{left:425.340000px;}
.x44{left:435.779973px;}
.x8{left:446.579987px;}
.x13{left:447.660000px;}
.x2d{left:450.899973px;}
.x8f{left:453.060000px;}
.x64{left:456.480000px;}
.x2e{left:460.979987px;}
.x65{left:462.240000px;}
.x78{left:466.020000px;}
.x6f{left:468.690000px;}
.x97{left:471.420000px;}
.x77{left:474.300000px;}
.xc{left:475.379973px;}
.x6e{left:477.330000px;}
.x87{left:478.620000px;}
.xd{left:480.419987px;}
.x33{left:488.009973px;}
.x76{left:489.420000px;}
.x6d{left:492.120000px;}
.x34{left:498.089987px;}
.x53{left:500.969973px;}
.x90{left:502.770000px;}
.x54{left:511.049987px;}
.xa2{left:521.130000px;}
.x98{left:527.970000px;}
.x88{left:531.570000px;}
.x17{left:545.609973px;}
.x18{left:550.649987px;}
.x1b{left:555.689973px;}
.x1c{left:560.729987px;}
.x9b{left:563.970000px;}
.xa4{left:566.850000px;}
.x1d{left:578.774973px;}
.x1e{left:583.814987px;}
.x26{left:585.254973px;}
.x27{left:595.334987px;}
.x2c{left:605.414987px;}
.x1f{left:613.694973px;}
.x20{left:618.734987px;}
.xa5{left:652.575000px;}
.xe{left:654.734973px;}
.xf{left:660.854987px;}
.x3c{left:676.724973px;}
.x3d{left:686.804987px;}
.x43{left:717.404973px;}
.x5b{left:722.084987px;}
.x21{left:726.764973px;}
.x5c{left:727.844987px;}
.x22{left:731.804987px;}
.xab{left:759.929973px;}
.xac{left:770.009987px;}
.x19{left:778.289973px;}
.x1a{left:783.329987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.264000pt;}
.lsd{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls1e{letter-spacing:-0.414933pt;}
.ls1d{letter-spacing:-0.340267pt;}
.ls6{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.279040pt;}
.lsc{letter-spacing:0.414933pt;}
.lse{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.450667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.551360pt;}
.ls16{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.520000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls20{letter-spacing:7.200000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls23{letter-spacing:11.791360pt;}
.ls21{letter-spacing:18.334720pt;}
.ls22{letter-spacing:36.254720pt;}
.ls18{letter-spacing:37.534720pt;}
.ls17{letter-spacing:38.814720pt;}
.ls10{letter-spacing:38.825387pt;}
.ls11{letter-spacing:41.385387pt;}
.ls12{letter-spacing:70.825387pt;}
.lsf{letter-spacing:72.222720pt;}
.ls8{letter-spacing:73.502720pt;}
.ls15{letter-spacing:81.825280pt;}
.ws8{word-spacing:-53.760000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws14{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.890667pt;}
.ws5{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.472000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.422080pt;}
.ws13{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.ws6{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws10{word-spacing:-11.021568pt;}
.wsf{word-spacing:-10.992640pt;}
.wsb{word-spacing:-9.546240pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:66.146773pt;}
.wsd{word-spacing:77.973333pt;}
.wsc{word-spacing:78.453333pt;}
.wse{word-spacing:78.613333pt;}
.ws11{word-spacing:80.137813pt;}
._16{margin-left:-5.361493pt;}
._11{margin-left:-3.678720pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.167147pt;}
._12{width:4.110080pt;}
._e{width:5.295360pt;}
._14{width:6.449920pt;}
._15{width:7.769173pt;}
._d{width:8.714667pt;}
._a{width:9.945600pt;}
._b{width:11.136000pt;}
._19{width:12.395520pt;}
._c{width:15.078827pt;}
._21{width:16.453547pt;}
._20{width:17.353813pt;}
._1a{width:18.854400pt;}
._f{width:20.643840pt;}
._10{width:22.364160pt;}
._13{width:24.245760pt;}
._22{width:25.925973pt;}
._18{width:48.639147pt;}
._1e{width:89.794133pt;}
._1d{width:95.010133pt;}
._1f{width:96.290133pt;}
._1b{width:98.781013pt;}
._1c{width:105.453653pt;}
._8{width:174.720000pt;}
._17{width:176.000000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._9{width:1158.272000pt;}
._3{width:1414.378667pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fsa{font-size:48.768000pt;}
.fs0{font-size:53.760000pt;}
.fs9{font-size:53.888000pt;}
.fsb{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y43{bottom:2.880000pt;}
.y1b3{bottom:4.480000pt;}
.y1b1{bottom:4.800000pt;}
.y1b5{bottom:4.826667pt;}
.y32{bottom:5.120000pt;}
.y1da{bottom:5.160000pt;}
.y1ab{bottom:5.440000pt;}
.y1a6{bottom:5.760000pt;}
.y1b9{bottom:6.720000pt;}
.y1dd{bottom:7.360000pt;}
.y1d3{bottom:8.640000pt;}
.y1ad{bottom:10.560000pt;}
.y9e{bottom:13.120000pt;}
.ya8{bottom:14.400000pt;}
.y1de{bottom:15.040000pt;}
.y164{bottom:15.226667pt;}
.y18f{bottom:15.453333pt;}
.y172{bottom:16.093333pt;}
.y1cb{bottom:16.160000pt;}
.y1a0{bottom:16.186667pt;}
.y1d4{bottom:16.320000pt;}
.y42{bottom:18.240000pt;}
.y1b8{bottom:22.080000pt;}
.y31{bottom:22.720000pt;}
.y1d2{bottom:24.000000pt;}
.y1f4{bottom:25.946667pt;}
.y1f3{bottom:33.626667pt;}
.ye{bottom:38.720000pt;}
.y30{bottom:40.640000pt;}
.y18c{bottom:41.053333pt;}
.y18e{bottom:41.213333pt;}
.y16f{bottom:43.493333pt;}
.y1c8{bottom:44.000000pt;}
.y19d{bottom:44.293333pt;}
.y19f{bottom:44.480000pt;}
.y162{bottom:44.573333pt;}
.y41{bottom:49.280000pt;}
.y18b{bottom:55.680000pt;}
.y18d{bottom:55.933333pt;}
.y181{bottom:57.506667pt;}
.y161{bottom:57.600000pt;}
.y163{bottom:57.826667pt;}
.y16e{bottom:58.106667pt;}
.y171{bottom:58.306667pt;}
.y166{bottom:58.626667pt;}
.y1c7{bottom:58.653333pt;}
.y1ca{bottom:58.813333pt;}
.y19c{bottom:58.946667pt;}
.y19e{bottom:59.200000pt;}
.yc{bottom:60.800000pt;}
.y40{bottom:64.680000pt;}
.y2f{bottom:66.240000pt;}
.y191{bottom:66.266667pt;}
.y18a{bottom:70.333333pt;}
.y160{bottom:70.626667pt;}
.y1bd{bottom:72.253333pt;}
.y16d{bottom:72.773333pt;}
.y170{bottom:73.026667pt;}
.y1c6{bottom:73.306667pt;}
.y1c9{bottom:73.573333pt;}
.y19b{bottom:73.600000pt;}
.y15a{bottom:83.520000pt;}
.y2e{bottom:83.840000pt;}
.ya{bottom:84.192000pt;}
.y182{bottom:85.946667pt;}
.y16c{bottom:87.426667pt;}
.y1c5{bottom:87.973333pt;}
.y192{bottom:89.213333pt;}
.y3f{bottom:90.280000pt;}
.y167{bottom:103.040000pt;}
.y1be{bottom:103.546667pt;}
.y3e{bottom:108.200000pt;}
.y2d{bottom:109.466667pt;}
.y193{bottom:112.133333pt;}
.y15b{bottom:114.106667pt;}
.y183{bottom:114.400000pt;}
.yba{bottom:115.872000pt;}
.y38{bottom:117.472000pt;}
.ye2{bottom:120.032000pt;}
.y74{bottom:121.632000pt;}
.y1ed{bottom:122.912000pt;}
.y24a{bottom:125.472000pt;}
.y28a{bottom:126.432000pt;}
.y2c{bottom:127.066667pt;}
.y26b{bottom:127.072000pt;}
.y1bb{bottom:128.352000pt;}
.yb9{bottom:129.632000pt;}
.y104{bottom:129.952000pt;}
.y37{bottom:133.466667pt;}
.yb8{bottom:133.786667pt;}
.y1bf{bottom:134.880000pt;}
.y194{bottom:135.040000pt;}
.y36{bottom:137.626667pt;}
.y184{bottom:142.880000pt;}
.ye1{bottom:143.386667pt;}
.yb7{bottom:143.706667pt;}
.y2b{bottom:144.666667pt;}
.y213{bottom:146.266667pt;}
.y168{bottom:147.426667pt;}
.ye0{bottom:147.546667pt;}
.y1ec{bottom:148.506667pt;}
.y35{bottom:149.146667pt;}
.y249{bottom:151.066667pt;}
.y158{bottom:152.986667pt;}
.y34{bottom:153.306667pt;}
.ydf{bottom:157.146667pt;}
.y195{bottom:157.986667pt;}
.y1ba{bottom:159.706667pt;}
.y12b{bottom:161.306667pt;}
.y2a{bottom:162.266667pt;}
.y33{bottom:163.546667pt;}
.y212{bottom:163.866667pt;}
.y73{bottom:165.146667pt;}
.y1eb{bottom:166.106667pt;}
.y1c0{bottom:166.173333pt;}
.y157{bottom:170.586667pt;}
.yde{bottom:170.906667pt;}
.y185{bottom:171.333333pt;}
.y17f{bottom:172.506667pt;}
.y12a{bottom:175.066667pt;}
.y15c{bottom:175.226667pt;}
.y248{bottom:176.706667pt;}
.y26a{bottom:178.626667pt;}
.y29{bottom:179.866667pt;}
.y72{bottom:180.866667pt;}
.y196{bottom:180.893333pt;}
.y156{bottom:183.106667pt;}
.y17{bottom:183.426667pt;}
.y1ea{bottom:183.746667pt;}
.y165{bottom:184.000000pt;}
.ydd{bottom:184.706667pt;}
.y71{bottom:185.026667pt;}
.y17e{bottom:187.906667pt;}
.ydc{bottom:188.866667pt;}
.y211{bottom:189.506667pt;}
.y169{bottom:191.840000pt;}
.y9c{bottom:195.266667pt;}
.y70{bottom:196.866667pt;}
.y1c1{bottom:197.466667pt;}
.y103{bottom:197.826667pt;}
.y129{bottom:198.466667pt;}
.ydb{bottom:198.786667pt;}
.y186{bottom:199.773333pt;}
.y17d{bottom:200.386667pt;}
.y1e9{bottom:201.346667pt;}
.y190{bottom:201.600000pt;}
.y247{bottom:202.306667pt;}
.y128{bottom:202.626667pt;}
.y197{bottom:203.813333pt;}
.y269{bottom:204.226667pt;}
.y28{bottom:205.466667pt;}
.y15d{bottom:205.826667pt;}
.y1b7{bottom:208.706667pt;}
.y127{bottom:212.226667pt;}
.y142{bottom:212.546667pt;}
.y6f{bottom:212.866667pt;}
.y102{bottom:215.426667pt;}
.y141{bottom:216.706667pt;}
.y6e{bottom:217.026667pt;}
.y1e8{bottom:218.946667pt;}
.y246{bottom:219.906667pt;}
.y27{bottom:223.106667pt;}
.y22a{bottom:224.066667pt;}
.y126{bottom:226.306667pt;}
.y198{bottom:226.746667pt;}
.y140{bottom:227.906667pt;}
.y187{bottom:228.226667pt;}
.y6d{bottom:228.546667pt;}
.y1c2{bottom:228.773333pt;}
.y268{bottom:229.826667pt;}
.y9a{bottom:230.146667pt;}
.y125{bottom:230.466667pt;}
.yb6{bottom:233.346667pt;}
.y9b{bottom:234.946667pt;}
.y16a{bottom:236.226667pt;}
.y15e{bottom:236.386667pt;}
.y245{bottom:237.506667pt;}
.y124{bottom:240.066667pt;}
.y26{bottom:241.026667pt;}
.y289{bottom:242.626667pt;}
.y6c{bottom:244.546667pt;}
.y99{bottom:247.746667pt;}
.y1f5{bottom:248.066667pt;}
.y6b{bottom:248.706667pt;}
.y199{bottom:249.666667pt;}
.yb5{bottom:250.946667pt;}
.yda{bottom:253.826667pt;}
.y267{bottom:255.426667pt;}
.y188{bottom:256.706667pt;}
.y14f{bottom:257.346667pt;}
.y123{bottom:257.986667pt;}
.y25{bottom:258.626667pt;}
.y1c3{bottom:260.066667pt;}
.y288{bottom:260.226667pt;}
.y244{bottom:263.106667pt;}
.y1f2{bottom:264.066667pt;}
.y101{bottom:266.626667pt;}
.y15f{bottom:266.946667pt;}
.y1b6{bottom:267.266667pt;}
.y122{bottom:267.906667pt;}
.yb4{bottom:268.546667pt;}
.y6a{bottom:272.386667pt;}
.y19a{bottom:272.573333pt;}
.y98{bottom:273.346667pt;}
.y14e{bottom:274.946667pt;}
.y229{bottom:275.586667pt;}
.y69{bottom:276.546667pt;}
.yd9{bottom:279.426667pt;}
.y16b{bottom:280.613333pt;}
.y243{bottom:281.026667pt;}
.y13f{bottom:281.346667pt;}
.y24{bottom:284.226667pt;}
.y189{bottom:285.146667pt;}
.y1b4{bottom:287.106667pt;}
.y68{bottom:288.093333pt;}
.y1c4{bottom:291.360000pt;}
.y67{bottom:292.253333pt;}
.y100{bottom:292.573333pt;}
.yb3{bottom:294.173333pt;}
.yd8{bottom:297.053333pt;}
.y242{bottom:298.653333pt;}
.y97{bottom:299.293333pt;}
.y228{bottom:301.213333pt;}
.y23{bottom:301.826667pt;}
.y210{bottom:301.853333pt;}
.y66{bottom:302.493333pt;}
.y287{bottom:304.733333pt;}
.y266{bottom:306.653333pt;}
.y1b2{bottom:306.973333pt;}
.y14d{bottom:310.173333pt;}
.y1f1{bottom:310.813333pt;}
.y13e{bottom:311.773333pt;}
.yd7{bottom:314.653333pt;}
.y241{bottom:316.253333pt;}
.yb2{bottom:316.893333pt;}
.y22{bottom:319.426667pt;}
.yff{bottom:324.253333pt;}
.y96{bottom:324.893333pt;}
.y1b0{bottom:326.493333pt;}
.y1f0{bottom:326.813333pt;}
.y20f{bottom:327.453333pt;}
.y14c{bottom:327.773333pt;}
.y13d{bottom:329.693333pt;}
.y286{bottom:331.613333pt;}
.y265{bottom:332.253333pt;}
.y240{bottom:333.853333pt;}
.y21{bottom:337.053333pt;}
.yd6{bottom:339.933333pt;}
.y95{bottom:342.493333pt;}
.y1ef{bottom:342.813333pt;}
.y14b{bottom:345.693333pt;}
.y120{bottom:347.293333pt;}
.y121{bottom:352.093333pt;}
.y65{bottom:352.413333pt;}
.y20e{bottom:353.053333pt;}
.y20{bottom:354.653333pt;}
.y1af{bottom:357.213333pt;}
.y264{bottom:357.853333pt;}
.yfd{bottom:358.173333pt;}
.y285{bottom:358.493333pt;}
.y1ee{bottom:359.133333pt;}
.y23f{bottom:359.453333pt;}
.yfe{bottom:362.973333pt;}
.y14a{bottom:363.293333pt;}
.y11f{bottom:364.893333pt;}
.yd5{bottom:365.853333pt;}
.y94{bottom:368.093333pt;}
.y64{bottom:370.013333pt;}
.y1f{bottom:372.253333pt;}
.y13c{bottom:372.893333pt;}
.yfc{bottom:373.533333pt;}
.y284{bottom:376.093333pt;}
.y23e{bottom:377.053333pt;}
.y227{bottom:378.013333pt;}
.y20d{bottom:378.653333pt;}
.y149{bottom:380.893333pt;}
.y11e{bottom:382.493333pt;}
.y263{bottom:383.453333pt;}
.y1ae{bottom:386.333333pt;}
.y1e7{bottom:387.613333pt;}
.yfb{bottom:388.893333pt;}
.y1e{bottom:389.853333pt;}
.y23d{bottom:394.653333pt;}
.y63{bottom:395.613333pt;}
.yd4{bottom:396.893333pt;}
.y13b{bottom:398.493333pt;}
.y11d{bottom:400.133333pt;}
.y93{bottom:401.733333pt;}
.y283{bottom:403.013333pt;}
.y226{bottom:403.653333pt;}
.y20c{bottom:404.293333pt;}
.y1d{bottom:407.453333pt;}
.y1ac{bottom:408.133333pt;}
.y262{bottom:409.413333pt;}
.yfa{bottom:412.293333pt;}
.y62{bottom:413.253333pt;}
.y148{bottom:416.133333pt;}
.y1e6{bottom:416.773333pt;}
.y11c{bottom:417.733333pt;}
.y92{bottom:419.333333pt;}
.yd3{bottom:419.973333pt;}
.y282{bottom:420.613333pt;}
.y20b{bottom:421.893333pt;}
.y13a{bottom:424.133333pt;}
.yf9{bottom:427.653333pt;}
.y225{bottom:429.253333pt;}
.y23c{bottom:429.893333pt;}
.y61{bottom:430.853333pt;}
.y1c{bottom:433.373333pt;}
.y147{bottom:433.733333pt;}
.y261{bottom:435.013333pt;}
.y91{bottom:436.933333pt;}
.y1e5{bottom:438.533333pt;}
.y1aa{bottom:439.493333pt;}
.y139{bottom:441.733333pt;}
.yd2{bottom:443.013333pt;}
.y11b{bottom:443.333333pt;}
.y23b{bottom:447.493333pt;}
.y20a{bottom:447.813333pt;}
.y60{bottom:448.453333pt;}
.y1b{bottom:451.000000pt;}
.yf8{bottom:451.013333pt;}
.y146{bottom:451.333333pt;}
.y224{bottom:454.853333pt;}
.y138{bottom:459.333333pt;}
.y260{bottom:460.613333pt;}
.y1a9{bottom:460.933333pt;}
.y90{bottom:462.533333pt;}
.y281{bottom:465.093333pt;}
.y23a{bottom:465.413333pt;}
.yd1{bottom:466.053333pt;}
.y1a{bottom:468.600000pt;}
.y11a{bottom:468.933333pt;}
.y223{bottom:472.453333pt;}
.y209{bottom:473.413333pt;}
.y5e{bottom:474.053333pt;}
.y137{bottom:476.933333pt;}
.y5f{bottom:479.493333pt;}
.y1e4{bottom:481.093333pt;}
.y1a8{bottom:482.693333pt;}
.y19{bottom:486.200000pt;}
.y25f{bottom:486.213333pt;}
.y145{bottom:486.533333pt;}
.y8f{bottom:488.133333pt;}
.yb1{bottom:488.453333pt;}
.yf7{bottom:489.413333pt;}
.y208{bottom:491.013333pt;}
.yd0{bottom:491.653333pt;}
.y5d{bottom:491.973333pt;}
.y118{bottom:494.533333pt;}
.y17c{bottom:495.173333pt;}
.y155{bottom:496.133333pt;}
.y222{bottom:498.053333pt;}
.y119{bottom:499.333333pt;}
.y18{bottom:501.560000pt;}
.y135{bottom:502.533333pt;}
.y1e3{bottom:502.853333pt;}
.y144{bottom:504.133333pt;}
.y1a7{bottom:504.453333pt;}
.y136{bottom:507.333333pt;}
.y239{bottom:508.613333pt;}
.y280{bottom:509.573333pt;}
.y17b{bottom:510.533333pt;}
.y117{bottom:512.160000pt;}
.yf6{bottom:512.800000pt;}
.yb0{bottom:514.400000pt;}
.y207{bottom:516.640000pt;}
.ycf{bottom:517.280000pt;}
.y5b{bottom:517.600000pt;}
.y25e{bottom:519.840000pt;}
.y134{bottom:520.160000pt;}
.y8d{bottom:522.080000pt;}
.y5c{bottom:523.040000pt;}
.y221{bottom:524.000000pt;}
.y1e2{bottom:524.640000pt;}
.y17a{bottom:525.920000pt;}
.y238{bottom:526.240000pt;}
.y8e{bottom:526.880000pt;}
.y154{bottom:529.760000pt;}
.y116{bottom:530.080000pt;}
.y206{bottom:534.240000pt;}
.yce{bottom:534.880000pt;}
.y5a{bottom:535.200000pt;}
.y27f{bottom:536.480000pt;}
.y25d{bottom:537.440000pt;}
.y133{bottom:538.080000pt;}
.yf5{bottom:538.400000pt;}
.y8c{bottom:539.680000pt;}
.y220{bottom:541.600000pt;}
.y179{bottom:543.520000pt;}
.y237{bottom:543.840000pt;}
.y1e1{bottom:546.400000pt;}
.y153{bottom:547.360000pt;}
.y115{bottom:547.680000pt;}
.yae{bottom:548.000000pt;}
.y205{bottom:551.840000pt;}
.yaf{bottom:552.800000pt;}
.y27e{bottom:554.080000pt;}
.y25c{bottom:555.040000pt;}
.y132{bottom:555.680000pt;}
.yf4{bottom:556.000000pt;}
.y1a5{bottom:558.560000pt;}
.ycd{bottom:560.480000pt;}
.y58{bottom:560.800000pt;}
.y178{bottom:561.120000pt;}
.y236{bottom:561.440000pt;}
.y152{bottom:564.960000pt;}
.y8b{bottom:565.280000pt;}
.y59{bottom:565.600000pt;}
.y21f{bottom:567.200000pt;}
.y1e0{bottom:567.840000pt;}
.y114{bottom:573.280000pt;}
.y25b{bottom:576.800000pt;}
.y204{bottom:577.440000pt;}
.y57{bottom:578.400000pt;}
.y177{bottom:578.720000pt;}
.yf3{bottom:579.040000pt;}
.y27d{bottom:580.960000pt;}
.y8a{bottom:582.880000pt;}
.y21e{bottom:584.800000pt;}
.ycc{bottom:586.080000pt;}
.y1a4{bottom:589.920000pt;}
.yad{bottom:591.200000pt;}
.y151{bottom:593.440000pt;}
.y176{bottom:594.080000pt;}
.y159{bottom:594.880000pt;}
.y235{bottom:596.640000pt;}
.y25a{bottom:598.240000pt;}
.y27c{bottom:598.560000pt;}
.y112{bottom:598.880000pt;}
.y89{bottom:600.480000pt;}
.y203{bottom:603.040000pt;}
.y113{bottom:603.680000pt;}
.y55{bottom:604.000000pt;}
.yf2{bottom:604.640000pt;}
.y56{bottom:608.800000pt;}
.y175{bottom:609.440000pt;}
.y21d{bottom:610.400000pt;}
.ycb{bottom:611.680000pt;}
.y1a3{bottom:613.280000pt;}
.y259{bottom:615.840000pt;}
.y111{bottom:616.480000pt;}
.y54{bottom:621.600000pt;}
.y174{bottom:621.920000pt;}
.y234{bottom:622.240000pt;}
.y180{bottom:622.720000pt;}
.y130{bottom:624.506667pt;}
.y27b{bottom:625.466667pt;}
.y1a2{bottom:625.786667pt;}
.y88{bottom:626.106667pt;}
.y1bc{bottom:626.240000pt;}
.yac{bottom:626.426667pt;}
.y21c{bottom:628.026667pt;}
.y202{bottom:628.666667pt;}
.y131{bottom:629.306667pt;}
.y1df{bottom:629.626667pt;}
.yf1{bottom:630.586667pt;}
.y110{bottom:634.106667pt;}
.yca{bottom:637.306667pt;}
.y233{bottom:639.866667pt;}
.y258{bottom:641.786667pt;}
.y12f{bottom:642.106667pt;}
.y27a{bottom:643.066667pt;}
.yab{bottom:644.026667pt;}
.y201{bottom:646.266667pt;}
.y52{bottom:647.226667pt;}
.yf0{bottom:648.186667pt;}
.y21b{bottom:649.146667pt;}
.y1dc{bottom:650.106667pt;}
.y87{bottom:651.706667pt;}
.y53{bottom:652.026667pt;}
.y232{bottom:657.786667pt;}
.y10f{bottom:659.706667pt;}
.yaa{bottom:661.626667pt;}
.y279{bottom:661.946667pt;}
.yc9{bottom:662.906667pt;}
.y51{bottom:664.826667pt;}
.y257{bottom:669.946667pt;}
.yef{bottom:671.226667pt;}
.y200{bottom:672.186667pt;}
.y231{bottom:675.386667pt;}
.y12e{bottom:677.306667pt;}
.y278{bottom:680.826667pt;}
.y86{bottom:685.306667pt;}
.ya9{bottom:687.226667pt;}
.yc8{bottom:688.506667pt;}
.y10e{bottom:690.106667pt;}
.y4f{bottom:690.426667pt;}
.y256{bottom:691.706667pt;}
.y230{bottom:692.986667pt;}
.y50{bottom:695.226667pt;}
.y21a{bottom:696.506667pt;}
.yee{bottom:696.826667pt;}
.y1ff{bottom:697.786667pt;}
.y277{bottom:698.426667pt;}
.y16{bottom:702.266667pt;}
.y85{bottom:702.906667pt;}
.y4e{bottom:708.346667pt;}
.y255{bottom:709.306667pt;}
.y1db{bottom:711.226667pt;}
.yc7{bottom:714.106667pt;}
.ya7{bottom:716.346667pt;}
.y276{bottom:717.306667pt;}
.y15{bottom:717.626667pt;}
.y84{bottom:720.506667pt;}
.y219{bottom:722.106667pt;}
.yed{bottom:722.426667pt;}
.y1fe{bottom:723.386667pt;}
.y22f{bottom:724.026667pt;}
.y4d{bottom:725.946667pt;}
.y12c{bottom:728.506667pt;}
.y1d9{bottom:732.346667pt;}
.y12d{bottom:733.306667pt;}
.y254{bottom:734.946667pt;}
.y10d{bottom:738.146667pt;}
.yc6{bottom:740.066667pt;}
.y14{bottom:741.026667pt;}
.y4c{bottom:743.586667pt;}
.yec{bottom:745.506667pt;}
.y83{bottom:746.146667pt;}
.y218{bottom:748.066667pt;}
.y1fd{bottom:749.026667pt;}
.y22e{bottom:749.666667pt;}
.y295{bottom:750.626667pt;}
.y1d8{bottom:752.866667pt;}
.y10c{bottom:756.066667pt;}
.y11{bottom:757.026667pt;}
.y275{bottom:761.826667pt;}
.y12{bottom:762.466667pt;}
.y13{bottom:763.106667pt;}
.y82{bottom:764.066667pt;}
.yc4{bottom:765.666667pt;}
.y294{bottom:765.986667pt;}
.y4a{bottom:769.186667pt;}
.yc5{bottom:770.466667pt;}
.yeb{bottom:771.106667pt;}
.y1d7{bottom:773.666667pt;}
.y4b{bottom:773.986667pt;}
.y1fc{bottom:774.626667pt;}
.y22d{bottom:775.266667pt;}
.ya6{bottom:775.586667pt;}
.y274{bottom:779.426667pt;}
.y81{bottom:781.666667pt;}
.yc3{bottom:783.266667pt;}
.y253{bottom:784.866667pt;}
.y49{bottom:786.786667pt;}
.y217{bottom:791.266667pt;}
.y293{bottom:791.586667pt;}
.y10{bottom:791.906667pt;}
.yea{bottom:796.706667pt;}
.y80{bottom:799.266667pt;}
.y1fb{bottom:800.226667pt;}
.yc2{bottom:800.866667pt;}
.y48{bottom:804.386667pt;}
.y1d6{bottom:805.026667pt;}
.y273{bottom:806.626667pt;}
.y10b{bottom:807.266667pt;}
.ya5{bottom:809.186667pt;}
.y252{bottom:810.466667pt;}
.yf{bottom:813.666667pt;}
.y7f{bottom:816.866667pt;}
.y1fa{bottom:817.826667pt;}
.ye9{bottom:819.746667pt;}
.y47{bottom:821.986667pt;}
.y272{bottom:824.226667pt;}
.yc1{bottom:826.146667pt;}
.y22c{bottom:826.466667pt;}
.ya4{bottom:826.786667pt;}
.y109{bottom:832.866667pt;}
.y1d5{bottom:834.146667pt;}
.y7e{bottom:834.466667pt;}
.y292{bottom:836.386667pt;}
.y9{bottom:836.706667pt;}
.y10a{bottom:837.666667pt;}
.y251{bottom:838.626667pt;}
.y46{bottom:839.586667pt;}
.y216{bottom:842.466667pt;}
.ye8{bottom:842.786667pt;}
.y271{bottom:843.106667pt;}
.y1f9{bottom:848.893333pt;}
.y108{bottom:850.493333pt;}
.y8{bottom:852.093333pt;}
.ya3{bottom:852.413333pt;}
.y1d1{bottom:853.693333pt;}
.y291{bottom:854.013333pt;}
.y143{bottom:855.293333pt;}
.y7d{bottom:860.093333pt;}
.y250{bottom:860.413333pt;}
.y7{bottom:864.573333pt;}
.y45{bottom:865.213333pt;}
.y1f8{bottom:866.493333pt;}
.y107{bottom:868.093333pt;}
.ye7{bottom:868.413333pt;}
.y22b{bottom:869.693333pt;}
.ya2{bottom:870.013333pt;}
.yc0{bottom:877.693333pt;}
.y290{bottom:880.893333pt;}
.y1f7{bottom:884.093333pt;}
.y7c{bottom:885.693333pt;}
.y24f{bottom:886.013333pt;}
.ya1{bottom:887.613333pt;}
.y270{bottom:888.893333pt;}
.y44{bottom:890.813333pt;}
.y150{bottom:893.693333pt;}
.ye6{bottom:894.013333pt;}
.y215{bottom:895.293333pt;}
.y1d0{bottom:896.253333pt;}
.y28f{bottom:898.493333pt;}
.y1f6{bottom:901.693333pt;}
.ya0{bottom:905.213333pt;}
.y3d{bottom:905.533333pt;}
.y26f{bottom:907.773333pt;}
.ybf{bottom:911.293333pt;}
.y24e{bottom:911.613333pt;}
.y6{bottom:913.213333pt;}
.y1cf{bottom:918.013333pt;}
.y7a{bottom:919.293333pt;}
.ye5{bottom:920.893333pt;}
.y7b{bottom:924.093333pt;}
.y26e{bottom:925.373333pt;}
.ybe{bottom:928.893333pt;}
.y9f{bottom:930.813333pt;}
.y24d{bottom:933.373333pt;}
.y5{bottom:935.293333pt;}
.y79{bottom:936.893333pt;}
.y1ce{bottom:939.773333pt;}
.y106{bottom:941.693333pt;}
.y28e{bottom:942.973333pt;}
.ye4{bottom:943.933333pt;}
.y173{bottom:944.253333pt;}
.y1a1{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.ybc{bottom:954.493333pt;}
.y24c{bottom:959.013333pt;}
.ybd{bottom:959.333333pt;}
.y9d{bottom:960.293333pt;}
.y1cd{bottom:961.253333pt;}
.y26d{bottom:961.893333pt;}
.y78{bottom:962.533333pt;}
.ye3{bottom:967.013333pt;}
.y28d{bottom:969.893333pt;}
.y3{bottom:972.453333pt;}
.y77{bottom:980.453333pt;}
.y1cc{bottom:983.013333pt;}
.y24b{bottom:984.613333pt;}
.y26c{bottom:988.773333pt;}
.ybb{bottom:990.053333pt;}
.y2{bottom:990.693333pt;}
.y28c{bottom:996.773333pt;}
.y76{bottom:998.053333pt;}
.y105{bottom:1002.853333pt;}
.y1{bottom:1005.733333pt;}
.y28b{bottom:1014.373333pt;}
.y75{bottom:1015.653333pt;}
.y214{bottom:1020.453333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h2f{height:15.360000pt;}
.h30{height:15.680000pt;}
.h24{height:18.880000pt;}
.h29{height:18.912000pt;}
.h23{height:19.200000pt;}
.h25{height:19.232000pt;}
.h2a{height:19.840000pt;}
.h2c{height:19.872000pt;}
.h2b{height:20.160000pt;}
.h2d{height:20.480000pt;}
.h20{height:20.800000pt;}
.h1f{height:20.832000pt;}
.h1e{height:21.120000pt;}
.h22{height:21.152000pt;}
.hf{height:28.078125pt;}
.h11{height:30.324375pt;}
.h21{height:30.400000pt;}
.hb{height:30.695625pt;}
.h12{height:33.600000pt;}
.hc{height:37.063125pt;}
.h5{height:37.073750pt;}
.h13{height:37.472000pt;}
.h26{height:38.400000pt;}
.h2e{height:39.680000pt;}
.h28{height:41.920000pt;}
.h7{height:42.678750pt;}
.h17{height:43.250625pt;}
.h31{height:46.112000pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.h16{height:47.862437pt;}
.h19{height:48.378750pt;}
.h1a{height:48.506062pt;}
.h32{height:51.663750pt;}
.h14{height:53.471250pt;}
.hd{height:56.156250pt;}
.h3{height:56.843750pt;}
.h1b{height:58.563750pt;}
.ha{height:65.938750pt;}
.h9{height:76.170625pt;}
.h10{height:120.672000pt;}
.h15{height:286.080000pt;}
.h1d{height:290.880000pt;}
.h18{height:298.880000pt;}
.h1c{height:303.360000pt;}
.h27{height:309.760000pt;}
.he{height:514.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:43.872000pt;}
.w14{width:44.160000pt;}
.w13{width:44.192000pt;}
.w23{width:46.720000pt;}
.w10{width:46.752000pt;}
.wf{width:47.040000pt;}
.w22{width:47.072000pt;}
.w19{width:49.952000pt;}
.w1a{width:50.240000pt;}
.w1c{width:51.200000pt;}
.w1d{width:52.192000pt;}
.w1f{width:56.320000pt;}
.w1e{width:56.352000pt;}
.w26{width:75.872000pt;}
.w9{width:82.272000pt;}
.w27{width:94.784000pt;}
.w25{width:123.232000pt;}
.w24{width:132.544000pt;}
.w20{width:141.506667pt;}
.w11{width:141.826667pt;}
.w1b{width:145.026667pt;}
.w16{width:148.226667pt;}
.w12{width:174.146667pt;}
.w18{width:178.333333pt;}
.wa{width:178.653333pt;}
.w21{width:178.973333pt;}
.we{width:188.573333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.wb{width:489.920000pt;}
.wd{width:497.280000pt;}
.w17{width:499.520000pt;}
.wc{width:500.160000pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x5e{left:8.933333pt;}
.x85{left:10.240000pt;}
.x67{left:11.453333pt;}
.x7b{left:12.453333pt;}
.x91{left:14.120000pt;}
.x5d{left:15.586667pt;}
.x8a{left:16.640000pt;}
.x9d{left:17.626667pt;}
.x9a{left:19.840000pt;}
.x9c{left:21.120000pt;}
.x9f{left:22.106667pt;}
.x7a{left:24.613333pt;}
.x9e{left:25.920000pt;}
.xaa{left:32.026667pt;}
.xa3{left:33.632000pt;}
.xa7{left:35.520000pt;}
.xa6{left:38.720000pt;}
.xa8{left:41.920000pt;}
.xa9{left:46.120000pt;}
.x89{left:48.680000pt;}
.x99{left:50.280000pt;}
.x68{left:51.520000pt;}
.x8c{left:54.434667pt;}
.x94{left:56.674667pt;}
.x7c{left:59.973333pt;}
.x83{left:61.794667pt;}
.x5f{left:67.493333pt;}
.x69{left:71.906667pt;}
.x7d{left:80.346667pt;}
.x7{left:94.431988pt;}
.x11{left:98.591988pt;}
.x2a{left:102.751988pt;}
.xae{left:113.311988pt;}
.x25{left:118.143988pt;}
.x73{left:120.826667pt;}
.x6a{left:121.760000pt;}
.x7e{left:128.160000pt;}
.xad{left:137.346655pt;}
.x60{left:140.960000pt;}
.x31{left:142.146655pt;}
.x4d{left:143.106643pt;}
.x66{left:146.560000pt;}
.x72{left:147.840000pt;}
.x41{left:148.866643pt;}
.x4e{left:152.066655pt;}
.x55{left:154.946643pt;}
.x42{left:157.826655pt;}
.x15{left:158.786643pt;}
.x12{left:160.706655pt;}
.x16{left:163.266655pt;}
.x32{left:165.186655pt;}
.x2f{left:166.786643pt;}
.x30{left:175.746655pt;}
.x79{left:178.533333pt;}
.x38{left:188.866655pt;}
.x37{left:190.146655pt;}
.x74{left:199.040000pt;}
.x61{left:200.320000pt;}
.x4b{left:202.013310pt;}
.x7f{left:204.733333pt;}
.xb{left:206.493322pt;}
.x56{left:208.093310pt;}
.x4c{left:210.973322pt;}
.x70{left:212.893322pt;}
.x71{left:214.493322pt;}
.xa0{left:216.093322pt;}
.x57{left:217.053322pt;}
.x35{left:221.213310pt;}
.x5a{left:222.813322pt;}
.x39{left:224.733310pt;}
.x2{left:226.013322pt;}
.x8b{left:228.253322pt;}
.x36{left:230.173322pt;}
.x3a{left:233.693322pt;}
.x47{left:241.693310pt;}
.x6{left:243.613322pt;}
.x48{left:250.653322pt;}
.x45{left:262.813310pt;}
.x3b{left:263.773322pt;}
.x58{left:266.973310pt;}
.x49{left:268.573310pt;}
.xa{left:270.533333pt;}
.x46{left:271.773322pt;}
.x80{left:273.853333pt;}
.x59{left:275.973322pt;}
.x4a{left:277.573322pt;}
.x84{left:283.653333pt;}
.x10{left:286.533322pt;}
.x3e{left:292.613310pt;}
.x2b{left:294.853322pt;}
.x14{left:302.208000pt;}
.x8d{left:313.733333pt;}
.x95{left:318.213333pt;}
.xa1{left:321.413333pt;}
.x5{left:322.373322pt;}
.x51{left:326.533310pt;}
.x4f{left:328.453310pt;}
.x28{left:330.373310pt;}
.x23{left:331.333310pt;}
.x52{left:335.493322pt;}
.x3f{left:336.773310pt;}
.x4{left:337.733322pt;}
.x29{left:339.333322pt;}
.x24{left:340.293322pt;}
.x93{left:342.213333pt;}
.x62{left:343.360000pt;}
.x40{left:345.733322pt;}
.x81{left:346.746667pt;}
.x92{left:350.053333pt;}
.x6b{left:351.706667pt;}
.x3{left:354.079988pt;}
.x50{left:355.359988pt;}
.x8e{left:358.240000pt;}
.x82{left:359.333333pt;}
.x63{left:360.453333pt;}
.x75{left:364.346667pt;}
.x6c{left:366.560000pt;}
.x96{left:368.480000pt;}
.x86{left:378.080000pt;}
.x44{left:387.359976pt;}
.x8{left:396.959988pt;}
.x13{left:397.920000pt;}
.x2d{left:400.799976pt;}
.x8f{left:402.720000pt;}
.x64{left:405.760000pt;}
.x2e{left:409.759988pt;}
.x65{left:410.880000pt;}
.x78{left:414.240000pt;}
.x6f{left:416.613333pt;}
.x97{left:419.040000pt;}
.x77{left:421.600000pt;}
.xc{left:422.559976pt;}
.x6e{left:424.293333pt;}
.x87{left:425.440000pt;}
.xd{left:427.039988pt;}
.x33{left:433.786643pt;}
.x76{left:435.040000pt;}
.x6d{left:437.440000pt;}
.x34{left:442.746655pt;}
.x53{left:445.306643pt;}
.x90{left:446.906667pt;}
.x54{left:454.266655pt;}
.xa2{left:463.226667pt;}
.x98{left:469.306667pt;}
.x88{left:472.506667pt;}
.x17{left:484.986643pt;}
.x18{left:489.466655pt;}
.x1b{left:493.946643pt;}
.x1c{left:498.426655pt;}
.x9b{left:501.306667pt;}
.xa4{left:503.866667pt;}
.x1d{left:514.466643pt;}
.x1e{left:518.946655pt;}
.x26{left:520.226643pt;}
.x27{left:529.186655pt;}
.x2c{left:538.146655pt;}
.x1f{left:545.506643pt;}
.x20{left:549.986655pt;}
.xa5{left:580.066667pt;}
.xe{left:581.986643pt;}
.xf{left:587.426655pt;}
.x3c{left:601.533310pt;}
.x3d{left:610.493322pt;}
.x43{left:637.693310pt;}
.x5b{left:641.853322pt;}
.x21{left:646.013310pt;}
.x5c{left:646.973322pt;}
.x22{left:650.493322pt;}
.xab{left:675.493310pt;}
.xac{left:684.453322pt;}
.x19{left:691.813310pt;}
.x1a{left:696.293322pt;}
.x1{left:699.493322pt;}
}




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