
    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_568324b7db1f8c98e582caaf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf5ebbe28f6d8829b6978271.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_610d19a7f44d7a8e8c67d0e8.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_a1332ddd86ec4281f56bf664.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_063c6c9564cc0e6fd94bdf15.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_647462c579d921a132f3c9f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f257a69fefdcd886abb77222.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;}
.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);}
.v4{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v5{vertical-align:-61.200000px;}
.v6{vertical-align:-39.408000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.264000px;}
.v7{vertical-align:30.600000px;}
.v8{vertical-align:63.000000px;}
.ls23{letter-spacing:-0.972000px;}
.ls16{letter-spacing:-0.828000px;}
.ls27{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.220800px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.234000px;}
.ls10{letter-spacing:0.262200px;}
.ls1f{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.594000px;}
.ls26{letter-spacing:0.702000px;}
.ls11{letter-spacing:0.738000px;}
.ls2f{letter-spacing:2.988000px;}
.ls5{letter-spacing:3.060000px;}
.ls1d{letter-spacing:5.220000px;}
.ls30{letter-spacing:9.540000px;}
.ls4{letter-spacing:20.340000px;}
.ls18{letter-spacing:28.980000px;}
.ls2e{letter-spacing:30.348000px;}
.ls24{letter-spacing:45.468000px;}
.ls19{letter-spacing:46.188000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls22{letter-spacing:71.460000px;}
.lsf{letter-spacing:82.385280px;}
.ls14{letter-spacing:87.948000px;}
.lse{letter-spacing:91.548000px;}
.ls0{letter-spacing:154.980000px;}
.ls21{letter-spacing:791.100000px;}
.ls25{letter-spacing:843.300000px;}
.ls13{letter-spacing:932.640000px;}
.ls1a{letter-spacing:943.500000px;}
.ls29{letter-spacing:947.100000px;}
.ls12{letter-spacing:979.500000px;}
.ls2c{letter-spacing:1290.900000px;}
.ls7{letter-spacing:1367.340000px;}
.ls2d{letter-spacing:1412.700000px;}
.ls2b{letter-spacing:1593.900000px;}
.ls20{letter-spacing:1628.700000px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.wse{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.822200px;}
.ws6{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.ws3{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.734000px;}
.ws13{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.888000px;}
.ws15{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.672000px;}
.ws7{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._51{margin-left:-28.398000px;}
._53{margin-left:-18.096000px;}
._54{margin-left:-16.752000px;}
._50{margin-left:-13.068000px;}
._4e{margin-left:-6.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._7{width:2.807760px;}
._8{width:3.866160px;}
._9{width:5.037360px;}
._e{width:6.057120px;}
._c{width:7.123440px;}
._d{width:8.460000px;}
._f{width:9.550800px;}
._10{width:10.818000px;}
._1a{width:12.042000px;}
._11{width:15.066000px;}
._19{width:16.565760px;}
._4{width:18.252000px;}
._a{width:19.679520px;}
._b{width:20.881200px;}
._5{width:22.356000px;}
._6{width:23.484000px;}
._1f{width:30.420000px;}
._3{width:39.060000px;}
._4f{width:81.173760px;}
._1e{width:96.804000px;}
._14{width:105.438000px;}
._35{width:134.688000px;}
._20{width:159.912000px;}
._1c{width:162.792000px;}
._16{width:164.730000px;}
._17{width:167.538000px;}
._15{width:177.312000px;}
._49{width:187.488000px;}
._44{width:197.088000px;}
._33{width:200.580000px;}
._46{width:203.088000px;}
._1d{width:204.750000px;}
._4d{width:205.902000px;}
._37{width:216.888000px;}
._3a{width:240.288000px;}
._34{width:245.688000px;}
._31{width:253.488000px;}
._39{width:254.580000px;}
._4a{width:260.088000px;}
._23{width:269.100000px;}
._29{width:275.088000px;}
._21{width:277.115760px;}
._2d{width:281.088000px;}
._40{width:285.888000px;}
._3e{width:289.488000px;}
._2b{width:291.888000px;}
._27{width:296.688000px;}
._2f{width:299.688000px;}
._42{width:305.088000px;}
._52{width:306.384000px;}
._3c{width:313.488000px;}
._25{width:318.888000px;}
._4c{width:344.705760px;}
._36{width:437.790000px;}
._22{width:439.793520px;}
._45{width:445.860000px;}
._47{width:451.745760px;}
._3b{width:489.708000px;}
._48{width:494.717760px;}
._32{width:501.731760px;}
._4b{width:508.842000px;}
._38{width:519.048000px;}
._2a{width:523.812000px;}
._24{width:526.320240px;}
._2e{width:529.800000px;}
._41{width:535.427760px;}
._2c{width:540.006000px;}
._28{width:545.579760px;}
._30{width:548.730000px;}
._43{width:553.914000px;}
._26{width:568.572000px;}
._3f{width:591.804000px;}
._3d{width:615.690000px;}
._18{width:630.809280px;}
._1b{width:831.648000px;}
._12{width:1187.051760px;}
._13{width:2661.480000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y80{bottom:2.850000px;}
.y82{bottom:3.150000px;}
.y15c{bottom:3.225000px;}
.y84{bottom:3.300000px;}
.y86{bottom:3.450000px;}
.y199{bottom:6.000000px;}
.y176{bottom:18.300000px;}
.y1c2{bottom:18.450000px;}
.y134{bottom:18.600000px;}
.y15d{bottom:18.675000px;}
.y187{bottom:18.705000px;}
.y13a{bottom:18.750000px;}
.y136{bottom:18.900000px;}
.y13e{bottom:19.050000px;}
.yf7{bottom:19.934250px;}
.yf6{bottom:21.060000px;}
.y7d{bottom:23.280000px;}
.y18b{bottom:28.500000px;}
.y23f{bottom:29.760000px;}
.y1fd{bottom:30.840000px;}
.y164{bottom:33.435000px;}
.y177{bottom:34.050000px;}
.y14f{bottom:34.200000px;}
.y153{bottom:34.350000px;}
.y186{bottom:34.365000px;}
.y15e{bottom:34.425000px;}
.y139{bottom:34.500000px;}
.yf8{bottom:38.654250px;}
.y1{bottom:39.750000px;}
.yb7{bottom:41.280000px;}
.y130{bottom:41.325000px;}
.y7e{bottom:42.000000px;}
.yda{bottom:42.450000px;}
.y15a{bottom:49.800000px;}
.y138{bottom:49.950000px;}
.y165{bottom:52.155000px;}
.y167{bottom:54.090000px;}
.y35{bottom:54.150000px;}
.y119{bottom:57.075000px;}
.y2{bottom:57.960000px;}
.y2f{bottom:58.506000px;}
.yb8{bottom:60.000000px;}
.y131{bottom:60.045000px;}
.y274{bottom:60.060000px;}
.y1fc{bottom:60.480000px;}
.yf5{bottom:61.035000px;}
.ydb{bottom:61.170000px;}
.y12f{bottom:62.250000px;}
.y1c1{bottom:64.395000px;}
.y7c{bottom:64.950000px;}
.y23e{bottom:70.440000px;}
.yd9{bottom:70.620000px;}
.y189{bottom:72.750000px;}
.y163{bottom:72.930000px;}
.y1fb{bottom:74.025000px;}
.y11a{bottom:75.795000px;}
.yf4{bottom:76.545000px;}
.y12e{bottom:77.760000px;}
.y1c0{bottom:79.725000px;}
.y7b{bottom:80.280000px;}
.y23d{bottom:85.950000px;}
.yd8{bottom:86.310000px;}
.y188{bottom:88.410000px;}
.y162{bottom:88.590000px;}
.yf3{bottom:92.205000px;}
.y1bf{bottom:92.325000px;}
.y12d{bottom:93.420000px;}
.y7a{bottom:95.760000px;}
.yb6{bottom:97.560000px;}
.y23c{bottom:101.430000px;}
.y185{bottom:101.745000px;}
.yd7{bottom:101.970000px;}
.y161{bottom:104.070000px;}
.y12c{bottom:105.660000px;}
.yf2{bottom:107.685000px;}
.y79{bottom:111.240000px;}
.y2e{bottom:111.681000px;}
.yb5{bottom:113.040000px;}
.y23b{bottom:117.090000px;}
.yd6{bottom:117.450000px;}
.y1fa{bottom:118.485000px;}
.y160{bottom:119.730000px;}
.yf1{bottom:123.345000px;}
.y2d{bottom:124.101000px;}
.y78{bottom:126.900000px;}
.yb4{bottom:128.520000px;}
.y118{bottom:129.225000px;}
.y23a{bottom:132.750000px;}
.yd5{bottom:133.290000px;}
.y15f{bottom:135.750000px;}
.yf0{bottom:138.825000px;}
.y77{bottom:142.380000px;}
.y117{bottom:144.885000px;}
.yb3{bottom:145.080000px;}
.y239{bottom:147.870000px;}
.y15b{bottom:148.725000px;}
.yd4{bottom:148.950000px;}
.yef{bottom:154.305000px;}
.y76{bottom:157.860000px;}
.y116{bottom:160.185000px;}
.yb2{bottom:160.560000px;}
.y1f9{bottom:163.200000px;}
.y238{bottom:163.530000px;}
.yd3{bottom:165.510000px;}
.y184{bottom:167.400000px;}
.yee{bottom:169.785000px;}
.y75{bottom:173.340000px;}
.y115{bottom:175.665000px;}
.yb1{bottom:177.300000px;}
.y1be{bottom:178.905000px;}
.y237{bottom:179.370000px;}
.yd2{bottom:180.990000px;}
.yed{bottom:185.445000px;}
.y74{bottom:189.000000px;}
.y114{bottom:191.685000px;}
.yb0{bottom:192.780000px;}
.y1bd{bottom:194.385000px;}
.y236{bottom:195.030000px;}
.y159{bottom:196.050000px;}
.yd1{bottom:197.190000px;}
.yec{bottom:201.105000px;}
.y73{bottom:204.480000px;}
.y113{bottom:207.345000px;}
.y1f7{bottom:207.600000px;}
.y1bc{bottom:210.045000px;}
.y235{bottom:210.510000px;}
.y1f8{bottom:210.750000px;}
.yd0{bottom:212.850000px;}
.yeb{bottom:216.225000px;}
.y112{bottom:219.585000px;}
.y72{bottom:219.960000px;}
.yaf{bottom:223.740000px;}
.y1bb{bottom:225.345000px;}
.y234{bottom:225.990000px;}
.ycf{bottom:228.870000px;}
.yea{bottom:231.885000px;}
.y183{bottom:233.100000px;}
.y71{bottom:235.440000px;}
.y1ba{bottom:238.125000px;}
.yae{bottom:239.220000px;}
.y233{bottom:241.470000px;}
.yce{bottom:244.350000px;}
.ye9{bottom:247.725000px;}
.y70{bottom:251.280000px;}
.y1f6{bottom:252.300000px;}
.yad{bottom:254.880000px;}
.y232{bottom:257.130000px;}
.y158{bottom:258.900000px;}
.ycd{bottom:260.910000px;}
.ye8{bottom:264.285000px;}
.y6f{bottom:266.760000px;}
.yac{bottom:270.900000px;}
.y231{bottom:272.610000px;}
.ycc{bottom:277.470000px;}
.ye7{bottom:280.845000px;}
.y6e{bottom:282.240000px;}
.yab{bottom:283.950000px;}
.y273{bottom:284.160000px;}
.y230{bottom:288.090000px;}
.ycb{bottom:294.030000px;}
.y1f4{bottom:296.700000px;}
.ye6{bottom:297.405000px;}
.y6d{bottom:297.720000px;}
.y182{bottom:298.800000px;}
.y1f5{bottom:299.850000px;}
.y272{bottom:301.980000px;}
.y22f{bottom:303.750000px;}
.y157{bottom:306.300000px;}
.y1b9{bottom:306.525000px;}
.yaa{bottom:307.200000px;}
.yca{bottom:310.590000px;}
.y6c{bottom:313.200000px;}
.ye5{bottom:313.965000px;}
.y22e{bottom:319.230000px;}
.y271{bottom:319.800000px;}
.y1b8{bottom:322.185000px;}
.yc9{bottom:327.150000px;}
.y6b{bottom:329.040000px;}
.ya9{bottom:330.300000px;}
.ye4{bottom:330.705000px;}
.y22d{bottom:334.890000px;}
.y270{bottom:337.620000px;}
.y1b7{bottom:337.665000px;}
.y1f2{bottom:341.400000px;}
.yc8{bottom:343.755000px;}
.y1f3{bottom:344.550000px;}
.y6a{bottom:344.565000px;}
.ye3{bottom:346.230000px;}
.y156{bottom:346.950000px;}
.y22c{bottom:350.415000px;}
.y1b6{bottom:353.190000px;}
.ya8{bottom:353.550000px;}
.y26f{bottom:355.665000px;}
.y2c{bottom:359.001000px;}
.y69{bottom:360.045000px;}
.yc7{bottom:360.315000px;}
.ye2{bottom:361.530000px;}
.y181{bottom:364.650000px;}
.y22b{bottom:365.895000px;}
.y1b5{bottom:368.850000px;}
.y26e{bottom:373.485000px;}
.y2b{bottom:374.661000px;}
.y68{bottom:375.525000px;}
.ya7{bottom:376.800000px;}
.yc6{bottom:376.875000px;}
.ye1{bottom:377.550000px;}
.y22a{bottom:381.555000px;}
.y1b4{bottom:384.330000px;}
.y1ef{bottom:385.800000px;}
.y155{bottom:387.600000px;}
.y1f1{bottom:389.100000px;}
.y2a{bottom:390.141000px;}
.y67{bottom:391.185000px;}
.y26d{bottom:391.305000px;}
.ye0{bottom:393.030000px;}
.y229{bottom:397.035000px;}
.y1b3{bottom:399.990000px;}
.ya6{bottom:400.200000px;}
.y1f0{bottom:404.700000px;}
.ydf{bottom:405.450000px;}
.y29{bottom:405.621000px;}
.y66{bottom:406.665000px;}
.yc5{bottom:408.735000px;}
.y26c{bottom:409.125000px;}
.y228{bottom:412.695000px;}
.y1b2{bottom:415.470000px;}
.y28{bottom:421.101000px;}
.y65{bottom:422.145000px;}
.ya5{bottom:423.450000px;}
.yc4{bottom:424.395000px;}
.y26b{bottom:426.945000px;}
.y227{bottom:428.175000px;}
.y180{bottom:430.350000px;}
.y1ed{bottom:430.500000px;}
.y1b1{bottom:430.950000px;}
.y1ee{bottom:433.350000px;}
.y154{bottom:435.000000px;}
.y27{bottom:436.761000px;}
.y64{bottom:437.985000px;}
.yc3{bottom:440.055000px;}
.y226{bottom:443.835000px;}
.y26a{bottom:444.765000px;}
.y1b0{bottom:446.610000px;}
.ya4{bottom:446.700000px;}
.y26{bottom:452.241000px;}
.y63{bottom:453.105000px;}
.yc2{bottom:455.895000px;}
.y225{bottom:459.315000px;}
.y1af{bottom:462.090000px;}
.y269{bottom:462.765000px;}
.y25{bottom:467.721000px;}
.yc1{bottom:468.315000px;}
.y62{bottom:468.765000px;}
.ya3{bottom:469.950000px;}
.y224{bottom:474.795000px;}
.y152{bottom:475.650000px;}
.y1ae{bottom:477.570000px;}
.y268{bottom:480.585000px;}
.y24{bottom:483.201000px;}
.y61{bottom:484.425000px;}
.y223{bottom:490.455000px;}
.y1ad{bottom:493.050000px;}
.y1ec{bottom:493.485000px;}
.y17f{bottom:496.050000px;}
.ya2{bottom:496.530000px;}
.y267{bottom:498.405000px;}
.y23{bottom:498.861000px;}
.y60{bottom:500.085000px;}
.y222{bottom:505.935000px;}
.y1ac{bottom:508.710000px;}
.y1eb{bottom:509.145000px;}
.ya1{bottom:511.650000px;}
.y22{bottom:514.341000px;}
.y111{bottom:515.385000px;}
.y5f{bottom:515.565000px;}
.y266{bottom:516.225000px;}
.y221{bottom:521.415000px;}
.y151{bottom:523.050000px;}
.y1ab{bottom:524.010000px;}
.y1ea{bottom:524.805000px;}
.ya0{bottom:525.150000px;}
.y5e{bottom:531.045000px;}
.y265{bottom:534.045000px;}
.y220{bottom:536.895000px;}
.y1e9{bottom:540.285000px;}
.y12b{bottom:541.110000px;}
.y21{bottom:545.121000px;}
.y5d{bottom:546.525000px;}
.y9f{bottom:548.400000px;}
.y264{bottom:552.045000px;}
.y21f{bottom:552.555000px;}
.y1aa{bottom:555.150000px;}
.y1e8{bottom:555.945000px;}
.y12a{bottom:556.590000px;}
.y17e{bottom:561.750000px;}
.y110{bottom:562.005000px;}
.y5c{bottom:562.185000px;}
.y150{bottom:563.700000px;}
.y21e{bottom:568.035000px;}
.y263{bottom:569.865000px;}
.y9e{bottom:571.650000px;}
.y1e7{bottom:571.785000px;}
.y129{bottom:572.250000px;}
.y1a9{bottom:574.500000px;}
.y20{bottom:576.261000px;}
.y5b{bottom:577.665000px;}
.y21d{bottom:583.695000px;}
.y262{bottom:587.685000px;}
.y128{bottom:587.730000px;}
.y1e6{bottom:588.345000px;}
.y5a{bottom:593.145000px;}
.y1f{bottom:594.441000px;}
.y9d{bottom:594.750000px;}
.y1a8{bottom:596.250000px;}
.y21c{bottom:599.175000px;}
.y127{bottom:603.210000px;}
.y1a7{bottom:604.050000px;}
.y14e{bottom:604.500000px;}
.y1e5{bottom:604.935000px;}
.y261{bottom:605.535000px;}
.y59{bottom:608.655000px;}
.y10f{bottom:608.835000px;}
.y21b{bottom:614.685000px;}
.y9b{bottom:618.000000px;}
.y126{bottom:618.900000px;}
.y9c{bottom:621.450000px;}
.y1e4{bottom:621.495000px;}
.y260{bottom:623.355000px;}
.y1e{bottom:623.451000px;}
.y58{bottom:624.135000px;}
.y10e{bottom:624.315000px;}
.y17c{bottom:627.450000px;}
.y21a{bottom:630.345000px;}
.y17d{bottom:630.600000px;}
.y1a6{bottom:631.170000px;}
.y125{bottom:634.380000px;}
.y1e3{bottom:638.055000px;}
.y25f{bottom:638.655000px;}
.y1a5{bottom:639.000000px;}
.y10d{bottom:639.795000px;}
.y57{bottom:639.975000px;}
.y99{bottom:641.250000px;}
.y1d{bottom:641.631000px;}
.y9a{bottom:644.700000px;}
.y219{bottom:645.825000px;}
.y124{bottom:650.040000px;}
.y1e2{bottom:654.795000px;}
.y10c{bottom:655.275000px;}
.y56{bottom:655.455000px;}
.y1c{bottom:657.111000px;}
.y218{bottom:661.485000px;}
.y97{bottom:664.650000px;}
.y1a4{bottom:665.400000px;}
.y123{bottom:665.520000px;}
.y14b{bottom:667.350000px;}
.y98{bottom:667.950000px;}
.y1e1{bottom:670.095000px;}
.y25e{bottom:670.155000px;}
.y14d{bottom:670.620000px;}
.y55{bottom:670.935000px;}
.y1b{bottom:672.591000px;}
.y217{bottom:676.965000px;}
.y122{bottom:681.000000px;}
.y25d{bottom:685.815000px;}
.y1e0{bottom:685.935000px;}
.y14c{bottom:686.100000px;}
.y1a3{bottom:686.400000px;}
.y54{bottom:686.415000px;}
.y95{bottom:687.900000px;}
.y1a{bottom:688.251000px;}
.y96{bottom:690.750000px;}
.y216{bottom:692.445000px;}
.y17a{bottom:693.150000px;}
.y17b{bottom:696.300000px;}
.y121{bottom:696.660000px;}
.y25c{bottom:701.295000px;}
.y1df{bottom:701.595000px;}
.y10b{bottom:701.895000px;}
.y53{bottom:702.075000px;}
.y19{bottom:703.731000px;}
.y1a2{bottom:705.150000px;}
.y148{bottom:708.000000px;}
.y215{bottom:708.105000px;}
.y14a{bottom:711.240000px;}
.y25b{bottom:716.955000px;}
.y1de{bottom:717.075000px;}
.y52{bottom:717.555000px;}
.y18{bottom:719.211000px;}
.y1a1{bottom:721.500000px;}
.y214{bottom:723.585000px;}
.y149{bottom:726.900000px;}
.y120{bottom:727.440000px;}
.y94{bottom:730.800000px;}
.y25a{bottom:732.435000px;}
.y1dd{bottom:732.555000px;}
.y10a{bottom:732.855000px;}
.y51{bottom:733.035000px;}
.y17{bottom:734.871000px;}
.y213{bottom:739.245000px;}
.y1a0{bottom:739.950000px;}
.y11f{bottom:743.100000px;}
.y93{bottom:746.400000px;}
.y1dc{bottom:747.855000px;}
.y109{bottom:748.335000px;}
.y50{bottom:748.515000px;}
.y145{bottom:748.800000px;}
.y147{bottom:752.220000px;}
.y212{bottom:754.725000px;}
.y16{bottom:757.011000px;}
.y19f{bottom:758.100000px;}
.yde{bottom:758.250000px;}
.y178{bottom:758.850000px;}
.y11e{bottom:758.940000px;}
.y179{bottom:762.000000px;}
.y1da{bottom:763.695000px;}
.y259{bottom:763.755000px;}
.y4f{bottom:764.175000px;}
.y108{bottom:764.355000px;}
.y146{bottom:767.700000px;}
.y92{bottom:769.650000px;}
.y211{bottom:770.025000px;}
.y19e{bottom:774.300000px;}
.y11d{bottom:774.600000px;}
.ydd{bottom:776.430000px;}
.y258{bottom:779.235000px;}
.y1d9{bottom:779.355000px;}
.y4e{bottom:779.655000px;}
.y107{bottom:779.835000px;}
.y15{bottom:783.831000px;}
.y210{bottom:785.685000px;}
.ydc{bottom:788.850000px;}
.y142{bottom:789.600000px;}
.y11c{bottom:790.260000px;}
.y19d{bottom:790.650000px;}
.y144{bottom:792.870000px;}
.y91{bottom:793.050000px;}
.y257{bottom:794.715000px;}
.y1d8{bottom:794.835000px;}
.y4d{bottom:795.135000px;}
.y106{bottom:795.315000px;}
.y14{bottom:799.311000px;}
.y20f{bottom:801.525000px;}
.y11b{bottom:802.500000px;}
.y19c{bottom:806.850000px;}
.y143{bottom:808.350000px;}
.y256{bottom:810.195000px;}
.y1d7{bottom:810.315000px;}
.y4c{bottom:810.615000px;}
.y105{bottom:810.795000px;}
.y13{bottom:814.791000px;}
.y90{bottom:816.300000px;}
.y20e{bottom:817.005000px;}
.y175{bottom:824.550000px;}
.y19b{bottom:825.600000px;}
.y255{bottom:825.855000px;}
.y1d6{bottom:825.975000px;}
.y4b{bottom:826.095000px;}
.y104{bottom:826.455000px;}
.yc0{bottom:827.115000px;}
.y13f{bottom:830.250000px;}
.y20d{bottom:832.485000px;}
.y141{bottom:833.520000px;}
.y8f{bottom:839.400000px;}
.y1d5{bottom:841.095000px;}
.y254{bottom:841.335000px;}
.y103{bottom:841.935000px;}
.y4a{bottom:842.115000px;}
.ybf{bottom:842.595000px;}
.y19a{bottom:846.600000px;}
.y20c{bottom:848.145000px;}
.y140{bottom:849.000000px;}
.y12{bottom:849.531000px;}
.y1db{bottom:850.365000px;}
.y253{bottom:856.815000px;}
.y1d4{bottom:857.115000px;}
.y49{bottom:857.235000px;}
.y102{bottom:857.595000px;}
.ybe{bottom:858.255000px;}
.y198{bottom:861.750000px;}
.y8e{bottom:862.650000px;}
.y20b{bottom:863.445000px;}
.y13d{bottom:870.900000px;}
.y11{bottom:870.951000px;}
.y252{bottom:872.520000px;}
.y1d3{bottom:872.640000px;}
.y101{bottom:873.120000px;}
.ybd{bottom:873.960000px;}
.y20a{bottom:879.330000px;}
.y8d{bottom:885.900000px;}
.y251{bottom:887.820000px;}
.y1d2{bottom:888.300000px;}
.y100{bottom:888.600000px;}
.y48{bottom:888.780000px;}
.ybc{bottom:889.080000px;}
.y197{bottom:889.350000px;}
.y31{bottom:891.525000px;}
.y174{bottom:893.106000px;}
.y209{bottom:894.990000px;}
.y33{bottom:897.210000px;}
.y250{bottom:903.300000px;}
.y1d1{bottom:903.420000px;}
.yff{bottom:904.080000px;}
.y47{bottom:904.440000px;}
.y173{bottom:904.623000px;}
.ybb{bottom:904.740000px;}
.y10{bottom:905.730000px;}
.y8c{bottom:909.150000px;}
.y196{bottom:910.350000px;}
.y208{bottom:910.470000px;}
.y13c{bottom:911.700000px;}
.y32{bottom:915.225000px;}
.y1d0{bottom:919.260000px;}
.yfe{bottom:919.740000px;}
.y46{bottom:919.920000px;}
.yba{bottom:920.760000px;}
.y207{bottom:925.950000px;}
.y195{bottom:931.350000px;}
.y8b{bottom:932.550000px;}
.yb9{bottom:933.000000px;}
.ye{bottom:934.710000px;}
.y1cf{bottom:934.920000px;}
.y24f{bottom:934.980000px;}
.yfd{bottom:935.220000px;}
.y45{bottom:935.400000px;}
.y171{bottom:937.650000px;}
.y172{bottom:939.900000px;}
.y206{bottom:941.250000px;}
.yf{bottom:942.270000px;}
.y30{bottom:943.350000px;}
.y194{bottom:949.800000px;}
.y1ce{bottom:950.400000px;}
.y24e{bottom:950.460000px;}
.yfc{bottom:950.700000px;}
.y44{bottom:950.880000px;}
.y13b{bottom:952.500000px;}
.y8a{bottom:955.800000px;}
.y205{bottom:956.910000px;}
.y170{bottom:960.900000px;}
.y1cd{bottom:965.700000px;}
.y24d{bottom:965.940000px;}
.y193{bottom:966.000000px;}
.yfb{bottom:966.360000px;}
.y43{bottom:966.540000px;}
.y204{bottom:972.750000px;}
.yd{bottom:973.950000px;}
.y89{bottom:979.050000px;}
.y24c{bottom:981.420000px;}
.y1cc{bottom:981.540000px;}
.yfa{bottom:981.840000px;}
.y42{bottom:982.020000px;}
.y16f{bottom:984.150000px;}
.y203{bottom:985.800000px;}
.y137{bottom:993.150000px;}
.y1cb{bottom:997.020000px;}
.y24b{bottom:997.080000px;}
.y41{bottom:997.500000px;}
.y88{bottom:1002.150000px;}
.y202{bottom:1009.050000px;}
.y24a{bottom:1012.380000px;}
.y1ca{bottom:1012.680000px;}
.y40{bottom:1012.980000px;}
.y16e{bottom:1015.950000px;}
.yc{bottom:1016.070000px;}
.y192{bottom:1018.650000px;}
.y87{bottom:1025.400000px;}
.y249{bottom:1027.860000px;}
.y1c9{bottom:1028.160000px;}
.y3f{bottom:1028.460000px;}
.y9{bottom:1034.070000px;}
.y191{bottom:1037.250000px;}
.yb{bottom:1039.290000px;}
.y201{bottom:1040.700000px;}
.y1c8{bottom:1043.460000px;}
.y248{bottom:1043.880000px;}
.yf9{bottom:1043.940000px;}
.y3e{bottom:1044.120000px;}
.y16d{bottom:1047.600000px;}
.y85{bottom:1048.650000px;}
.y135{bottom:1056.000000px;}
.y190{bottom:1056.450000px;}
.y8{bottom:1057.290000px;}
.y1c7{bottom:1059.300000px;}
.y247{bottom:1059.360000px;}
.y3d{bottom:1059.600000px;}
.y200{bottom:1064.100000px;}
.ya{bottom:1071.330000px;}
.y83{bottom:1072.050000px;}
.y246{bottom:1074.840000px;}
.y1c6{bottom:1074.960000px;}
.y3c{bottom:1075.080000px;}
.y16c{bottom:1079.550000px;}
.y7{bottom:1086.630000px;}
.y1ff{bottom:1087.350000px;}
.y18f{bottom:1088.550000px;}
.y1c5{bottom:1090.440000px;}
.y245{bottom:1090.500000px;}
.y3b{bottom:1090.560000px;}
.y81{bottom:1095.300000px;}
.y133{bottom:1096.650000px;}
.y16b{bottom:1102.800000px;}
.y6{bottom:1105.710000px;}
.y1c4{bottom:1105.920000px;}
.y244{bottom:1105.980000px;}
.y3a{bottom:1106.220000px;}
.y1fe{bottom:1110.600000px;}
.y7f{bottom:1118.550000px;}
.y18e{bottom:1121.220000px;}
.y243{bottom:1121.640000px;}
.y39{bottom:1121.700000px;}
.y5{bottom:1122.990000px;}
.y169{bottom:1126.050000px;}
.y16a{bottom:1128.900000px;}
.y242{bottom:1137.120000px;}
.y38{bottom:1137.180000px;}
.y1c3{bottom:1137.240000px;}
.y4{bottom:1140.300000px;}
.y18d{bottom:1152.390000px;}
.y168{bottom:1152.540000px;}
.y241{bottom:1152.630000px;}
.y37{bottom:1152.690000px;}
.y132{bottom:1152.870000px;}
.y3{bottom:1158.300000px;}
.y18c{bottom:1168.050000px;}
.y240{bottom:1168.290000px;}
.y36{bottom:1168.350000px;}
.y18a{bottom:1183.350000px;}
.y34{bottom:1193.700000px;}
.y166{bottom:1215.090000px;}
.h2c{height:20.895000px;}
.h18{height:22.350000px;}
.h23{height:22.395000px;}
.h17{height:22.500000px;}
.h16{height:22.530000px;}
.h25{height:30.960000px;}
.h24{height:31.140000px;}
.hc{height:35.314453px;}
.h2a{height:37.520508px;}
.h10{height:38.158594px;}
.h1e{height:39.810000px;}
.h20{height:39.840000px;}
.h19{height:39.960000px;}
.h1b{height:39.990000px;}
.h1d{height:40.140000px;}
.ha{height:42.086250px;}
.h33{height:43.590000px;}
.h34{height:43.725000px;}
.h30{height:43.740000px;}
.h31{height:43.770000px;}
.h21{height:46.605000px;}
.h1f{height:46.620000px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h1a{height:62.100000px;}
.h1c{height:62.130000px;}
.hf{height:62.153438px;}
.h29{height:64.830000px;}
.h28{height:64.875000px;}
.h2b{height:64.965000px;}
.h22{height:64.978594px;}
.h27{height:64.980000px;}
.h26{height:65.010000px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h15{height:68.084282px;}
.h2{height:72.562500px;}
.hb{height:74.235680px;}
.h5{height:81.995625px;}
.h2d{height:83.598047px;}
.h2f{height:84.198047px;}
.h2e{height:84.318047px;}
.h9{height:84.898125px;}
.h32{height:115.998047px;}
.h0{height:1263.000000px;}
.w14{width:35.310000px;}
.w1f{width:52.185000px;}
.w23{width:64.785000px;}
.w1b{width:70.020000px;}
.w1{width:71.085000px;}
.w9{width:71.130000px;}
.w5{width:71.310000px;}
.w3{width:71.640000px;}
.w8{width:71.670000px;}
.w16{width:88.575000px;}
.w25{width:90.180000px;}
.w15{width:90.885000px;}
.w17{width:93.960000px;}
.wd{width:95.205000px;}
.wc{width:100.110000px;}
.w6{width:107.100000px;}
.w1a{width:107.850000px;}
.we{width:112.155000px;}
.w18{width:120.990000px;}
.w24{width:130.170000px;}
.w20{width:130.335000px;}
.wf{width:134.670000px;}
.w1c{width:141.330000px;}
.w7{width:142.230000px;}
.w1d{width:147.270000px;}
.w21{width:208.650000px;}
.w12{width:223.500000px;}
.w1e{width:228.450000px;}
.w11{width:237.135000px;}
.w19{width:237.600000px;}
.wb{width:239.400000px;}
.w13{width:242.250000px;}
.w4{width:247.200000px;}
.w22{width:261.600000px;}
.w2{width:267.600000px;}
.wa{width:270.300000px;}
.w10{width:389.550000px;}
.w26{width:421.050000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7c{left:7.545000px;}
.x3a{left:8.700000px;}
.x76{left:10.800000px;}
.x35{left:11.850000px;}
.x6e{left:13.050000px;}
.x3c{left:14.550000px;}
.x20{left:15.900000px;}
.x1c{left:17.265000px;}
.x40{left:18.300000px;}
.x66{left:19.980000px;}
.x6d{left:21.900000px;}
.x77{left:23.100000px;}
.x6c{left:24.750000px;}
.x30{left:25.950000px;}
.x93{left:27.750000px;}
.x2e{left:28.845000px;}
.x2{left:30.120000px;}
.x23{left:32.145000px;}
.x2f{left:33.450000px;}
.x31{left:35.400000px;}
.x65{left:36.540000px;}
.x69{left:37.800000px;}
.x2b{left:39.600000px;}
.x48{left:41.100000px;}
.x29{left:42.600000px;}
.xc{left:46.905000px;}
.x74{left:48.600000px;}
.xe{left:50.490000px;}
.x17{left:51.510000px;}
.x24{left:53.250000px;}
.x14{left:55.003500px;}
.x32{left:56.850000px;}
.x45{left:58.650000px;}
.x13{left:60.150000px;}
.x16{left:62.265000px;}
.x2d{left:64.050000px;}
.x99{left:65.550000px;}
.x25{left:67.350000px;}
.x98{left:68.700000px;}
.x27{left:70.200000px;}
.x44{left:71.400000px;}
.x2a{left:72.750000px;}
.x28{left:74.250000px;}
.x46{left:76.950000px;}
.x26{left:78.750000px;}
.x2c{left:82.200000px;}
.x4d{left:83.340000px;}
.x18{left:84.360000px;}
.x22{left:90.300000px;}
.x4a{left:92.250000px;}
.x4b{left:93.750000px;}
.x42{left:98.100000px;}
.x9b{left:99.405000px;}
.x1e{left:100.500000px;}
.x7b{left:102.510000px;}
.x6f{left:105.000000px;}
.x49{left:106.050000px;}
.x47{left:109.800000px;}
.x8{left:115.350000px;}
.x1b{left:123.705000px;}
.x8f{left:126.225000px;}
.x67{left:137.025000px;}
.x70{left:146.700000px;}
.x78{left:158.850000px;}
.x3f{left:162.300000px;}
.x9c{left:164.550000px;}
.x58{left:172.005000px;}
.x9f{left:174.450000px;}
.x85{left:175.500000px;}
.x6b{left:176.700000px;}
.x73{left:178.200000px;}
.x75{left:185.100000px;}
.x86{left:187.200000px;}
.x80{left:191.400000px;}
.x1d{left:195.300000px;}
.x60{left:205.125000px;}
.x7f{left:210.810000px;}
.x87{left:229.350000px;}
.x62{left:231.960000px;}
.x41{left:233.850000px;}
.x7a{left:236.550000px;}
.x5{left:244.170000px;}
.x33{left:256.350000px;}
.x3{left:270.300000px;}
.x81{left:280.350000px;}
.x3e{left:286.050000px;}
.x83{left:288.450000px;}
.x4{left:290.610000px;}
.x9d{left:295.050000px;}
.x52{left:298.506000px;}
.x56{left:300.825000px;}
.x90{left:309.450000px;}
.x50{left:311.775000px;}
.x94{left:319.050000px;}
.x34{left:328.050000px;}
.x10{left:338.214000px;}
.x39{left:339.900000px;}
.x38{left:343.200000px;}
.x68{left:345.150000px;}
.x7d{left:348.000000px;}
.x92{left:349.800000px;}
.x72{left:367.110000px;}
.x71{left:370.350000px;}
.x15{left:374.775000px;}
.x96{left:376.500000px;}
.x9e{left:385.650000px;}
.x36{left:391.950000px;}
.x9{left:397.350000px;}
.x89{left:398.910000px;}
.xa0{left:402.150000px;}
.xa1{left:403.350000px;}
.x4c{left:407.790000px;}
.x84{left:410.655000px;}
.xd{left:412.590000px;}
.x5b{left:416.922000px;}
.xa2{left:420.720000px;}
.x9a{left:426.390000px;}
.x59{left:428.700000px;}
.x5a{left:433.302000px;}
.x3b{left:435.450000px;}
.x19{left:436.560000px;}
.x5d{left:438.750000px;}
.x3d{left:440.550000px;}
.x1{left:441.900000px;}
.x63{left:443.250000px;}
.x1a{left:445.050000px;}
.x5e{left:447.240000px;}
.x8b{left:449.190000px;}
.x11{left:450.459000px;}
.x64{left:451.740000px;}
.x79{left:452.820000px;}
.x4e{left:454.335000px;}
.x53{left:459.000000px;}
.x1f{left:463.200000px;}
.x54{left:467.490000px;}
.x6{left:478.965000px;}
.x6a{left:480.150000px;}
.xa{left:496.200000px;}
.xb{left:501.240000px;}
.x43{left:504.450000px;}
.x7{left:506.580000px;}
.x37{left:507.600000px;}
.x88{left:518.700000px;}
.x21{left:535.200000px;}
.x95{left:577.200000px;}
.x7e{left:582.600000px;}
.x12{left:612.000000px;}
.x8e{left:613.275000px;}
.x5c{left:621.366000px;}
.x97{left:636.300000px;}
.x51{left:640.806000px;}
.x8a{left:664.290000px;}
.x91{left:685.800000px;}
.x8c{left:688.905000px;}
.x61{left:709.860000px;}
.x57{left:711.555000px;}
.x55{left:723.375000px;}
.x4f{left:730.425000px;}
.x82{left:734.250000px;}
.x5f{left:784.425000px;}
.xf{left:787.914000px;}
.x8d{left:1050.075000px;}
@media print{
.v4{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v5{vertical-align:-54.400000pt;}
.v6{vertical-align:-35.029333pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.901333pt;}
.v7{vertical-align:27.200000pt;}
.v8{vertical-align:56.000000pt;}
.ls23{letter-spacing:-0.864000pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.196267pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.208000pt;}
.ls10{letter-spacing:0.233067pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls26{letter-spacing:0.624000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls2f{letter-spacing:2.656000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:4.640000pt;}
.ls30{letter-spacing:8.480000pt;}
.ls4{letter-spacing:18.080000pt;}
.ls18{letter-spacing:25.760000pt;}
.ls2e{letter-spacing:26.976000pt;}
.ls24{letter-spacing:40.416000pt;}
.ls19{letter-spacing:41.056000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls22{letter-spacing:63.520000pt;}
.lsf{letter-spacing:73.231360pt;}
.ls14{letter-spacing:78.176000pt;}
.lse{letter-spacing:81.376000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls21{letter-spacing:703.200000pt;}
.ls25{letter-spacing:749.600000pt;}
.ls13{letter-spacing:829.013333pt;}
.ls1a{letter-spacing:838.666667pt;}
.ls29{letter-spacing:841.866667pt;}
.ls12{letter-spacing:870.666667pt;}
.ls2c{letter-spacing:1147.466667pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls2d{letter-spacing:1255.733333pt;}
.ls2b{letter-spacing:1416.800000pt;}
.ls20{letter-spacing:1447.733333pt;}
.wsf{word-spacing:-58.880000pt;}
.wse{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.953067pt;}
.ws6{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.ws3{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.208000pt;}
.ws13{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.456000pt;}
.ws15{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.264000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._51{margin-left:-25.242667pt;}
._53{margin-left:-16.085333pt;}
._54{margin-left:-14.890667pt;}
._50{margin-left:-11.616000pt;}
._4e{margin-left:-5.333333pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._7{width:2.495787pt;}
._8{width:3.436587pt;}
._9{width:4.477653pt;}
._e{width:5.384107pt;}
._c{width:6.331947pt;}
._d{width:7.520000pt;}
._f{width:8.489600pt;}
._10{width:9.616000pt;}
._1a{width:10.704000pt;}
._11{width:13.392000pt;}
._19{width:14.725120pt;}
._4{width:16.224000pt;}
._a{width:17.492907pt;}
._b{width:18.561067pt;}
._5{width:19.872000pt;}
._6{width:20.874667pt;}
._1f{width:27.040000pt;}
._3{width:34.720000pt;}
._4f{width:72.154453pt;}
._1e{width:86.048000pt;}
._14{width:93.722667pt;}
._35{width:119.722667pt;}
._20{width:142.144000pt;}
._1c{width:144.704000pt;}
._16{width:146.426667pt;}
._17{width:148.922667pt;}
._15{width:157.610667pt;}
._49{width:166.656000pt;}
._44{width:175.189333pt;}
._33{width:178.293333pt;}
._46{width:180.522667pt;}
._1d{width:182.000000pt;}
._4d{width:183.024000pt;}
._37{width:192.789333pt;}
._3a{width:213.589333pt;}
._34{width:218.389333pt;}
._31{width:225.322667pt;}
._39{width:226.293333pt;}
._4a{width:231.189333pt;}
._23{width:239.200000pt;}
._29{width:244.522667pt;}
._21{width:246.325120pt;}
._2d{width:249.856000pt;}
._40{width:254.122667pt;}
._3e{width:257.322667pt;}
._2b{width:259.456000pt;}
._27{width:263.722667pt;}
._2f{width:266.389333pt;}
._42{width:271.189333pt;}
._52{width:272.341333pt;}
._3c{width:278.656000pt;}
._25{width:283.456000pt;}
._4c{width:306.405120pt;}
._36{width:389.146667pt;}
._22{width:390.927573pt;}
._45{width:396.320000pt;}
._47{width:401.551787pt;}
._3b{width:435.296000pt;}
._48{width:439.749120pt;}
._32{width:445.983787pt;}
._4b{width:452.304000pt;}
._38{width:461.376000pt;}
._2a{width:465.610667pt;}
._24{width:467.840213pt;}
._2e{width:470.933333pt;}
._41{width:475.935787pt;}
._2c{width:480.005333pt;}
._28{width:484.959787pt;}
._30{width:487.760000pt;}
._43{width:492.368000pt;}
._26{width:505.397333pt;}
._3f{width:526.048000pt;}
._3d{width:547.280000pt;}
._18{width:560.719360pt;}
._1b{width:739.242667pt;}
._12{width:1055.157120pt;}
._13{width:2365.760000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:2.533333pt;}
.y82{bottom:2.800000pt;}
.y15c{bottom:2.866667pt;}
.y84{bottom:2.933333pt;}
.y86{bottom:3.066667pt;}
.y199{bottom:5.333333pt;}
.y176{bottom:16.266667pt;}
.y1c2{bottom:16.400000pt;}
.y134{bottom:16.533333pt;}
.y15d{bottom:16.600000pt;}
.y187{bottom:16.626667pt;}
.y13a{bottom:16.666667pt;}
.y136{bottom:16.800000pt;}
.y13e{bottom:16.933333pt;}
.yf7{bottom:17.719333pt;}
.yf6{bottom:18.720000pt;}
.y7d{bottom:20.693333pt;}
.y18b{bottom:25.333333pt;}
.y23f{bottom:26.453333pt;}
.y1fd{bottom:27.413333pt;}
.y164{bottom:29.720000pt;}
.y177{bottom:30.266667pt;}
.y14f{bottom:30.400000pt;}
.y153{bottom:30.533333pt;}
.y186{bottom:30.546667pt;}
.y15e{bottom:30.600000pt;}
.y139{bottom:30.666667pt;}
.yf8{bottom:34.359333pt;}
.y1{bottom:35.333333pt;}
.yb7{bottom:36.693333pt;}
.y130{bottom:36.733333pt;}
.y7e{bottom:37.333333pt;}
.yda{bottom:37.733333pt;}
.y15a{bottom:44.266667pt;}
.y138{bottom:44.400000pt;}
.y165{bottom:46.360000pt;}
.y167{bottom:48.080000pt;}
.y35{bottom:48.133333pt;}
.y119{bottom:50.733333pt;}
.y2{bottom:51.520000pt;}
.y2f{bottom:52.005333pt;}
.yb8{bottom:53.333333pt;}
.y131{bottom:53.373333pt;}
.y274{bottom:53.386667pt;}
.y1fc{bottom:53.760000pt;}
.yf5{bottom:54.253333pt;}
.ydb{bottom:54.373333pt;}
.y12f{bottom:55.333333pt;}
.y1c1{bottom:57.240000pt;}
.y7c{bottom:57.733333pt;}
.y23e{bottom:62.613333pt;}
.yd9{bottom:62.773333pt;}
.y189{bottom:64.666667pt;}
.y163{bottom:64.826667pt;}
.y1fb{bottom:65.800000pt;}
.y11a{bottom:67.373333pt;}
.yf4{bottom:68.040000pt;}
.y12e{bottom:69.120000pt;}
.y1c0{bottom:70.866667pt;}
.y7b{bottom:71.360000pt;}
.y23d{bottom:76.400000pt;}
.yd8{bottom:76.720000pt;}
.y188{bottom:78.586667pt;}
.y162{bottom:78.746667pt;}
.yf3{bottom:81.960000pt;}
.y1bf{bottom:82.066667pt;}
.y12d{bottom:83.040000pt;}
.y7a{bottom:85.120000pt;}
.yb6{bottom:86.720000pt;}
.y23c{bottom:90.160000pt;}
.y185{bottom:90.440000pt;}
.yd7{bottom:90.640000pt;}
.y161{bottom:92.506667pt;}
.y12c{bottom:93.920000pt;}
.yf2{bottom:95.720000pt;}
.y79{bottom:98.880000pt;}
.y2e{bottom:99.272000pt;}
.yb5{bottom:100.480000pt;}
.y23b{bottom:104.080000pt;}
.yd6{bottom:104.400000pt;}
.y1fa{bottom:105.320000pt;}
.y160{bottom:106.426667pt;}
.yf1{bottom:109.640000pt;}
.y2d{bottom:110.312000pt;}
.y78{bottom:112.800000pt;}
.yb4{bottom:114.240000pt;}
.y118{bottom:114.866667pt;}
.y23a{bottom:118.000000pt;}
.yd5{bottom:118.480000pt;}
.y15f{bottom:120.666667pt;}
.yf0{bottom:123.400000pt;}
.y77{bottom:126.560000pt;}
.y117{bottom:128.786667pt;}
.yb3{bottom:128.960000pt;}
.y239{bottom:131.440000pt;}
.y15b{bottom:132.200000pt;}
.yd4{bottom:132.400000pt;}
.yef{bottom:137.160000pt;}
.y76{bottom:140.320000pt;}
.y116{bottom:142.386667pt;}
.yb2{bottom:142.720000pt;}
.y1f9{bottom:145.066667pt;}
.y238{bottom:145.360000pt;}
.yd3{bottom:147.120000pt;}
.y184{bottom:148.800000pt;}
.yee{bottom:150.920000pt;}
.y75{bottom:154.080000pt;}
.y115{bottom:156.146667pt;}
.yb1{bottom:157.600000pt;}
.y1be{bottom:159.026667pt;}
.y237{bottom:159.440000pt;}
.yd2{bottom:160.880000pt;}
.yed{bottom:164.840000pt;}
.y74{bottom:168.000000pt;}
.y114{bottom:170.386667pt;}
.yb0{bottom:171.360000pt;}
.y1bd{bottom:172.786667pt;}
.y236{bottom:173.360000pt;}
.y159{bottom:174.266667pt;}
.yd1{bottom:175.280000pt;}
.yec{bottom:178.760000pt;}
.y73{bottom:181.760000pt;}
.y113{bottom:184.306667pt;}
.y1f7{bottom:184.533333pt;}
.y1bc{bottom:186.706667pt;}
.y235{bottom:187.120000pt;}
.y1f8{bottom:187.333333pt;}
.yd0{bottom:189.200000pt;}
.yeb{bottom:192.200000pt;}
.y112{bottom:195.186667pt;}
.y72{bottom:195.520000pt;}
.yaf{bottom:198.880000pt;}
.y1bb{bottom:200.306667pt;}
.y234{bottom:200.880000pt;}
.ycf{bottom:203.440000pt;}
.yea{bottom:206.120000pt;}
.y183{bottom:207.200000pt;}
.y71{bottom:209.280000pt;}
.y1ba{bottom:211.666667pt;}
.yae{bottom:212.640000pt;}
.y233{bottom:214.640000pt;}
.yce{bottom:217.200000pt;}
.ye9{bottom:220.200000pt;}
.y70{bottom:223.360000pt;}
.y1f6{bottom:224.266667pt;}
.yad{bottom:226.560000pt;}
.y232{bottom:228.560000pt;}
.y158{bottom:230.133333pt;}
.ycd{bottom:231.920000pt;}
.ye8{bottom:234.920000pt;}
.y6f{bottom:237.120000pt;}
.yac{bottom:240.800000pt;}
.y231{bottom:242.320000pt;}
.ycc{bottom:246.640000pt;}
.ye7{bottom:249.640000pt;}
.y6e{bottom:250.880000pt;}
.yab{bottom:252.400000pt;}
.y273{bottom:252.586667pt;}
.y230{bottom:256.080000pt;}
.ycb{bottom:261.360000pt;}
.y1f4{bottom:263.733333pt;}
.ye6{bottom:264.360000pt;}
.y6d{bottom:264.640000pt;}
.y182{bottom:265.600000pt;}
.y1f5{bottom:266.533333pt;}
.y272{bottom:268.426667pt;}
.y22f{bottom:270.000000pt;}
.y157{bottom:272.266667pt;}
.y1b9{bottom:272.466667pt;}
.yaa{bottom:273.066667pt;}
.yca{bottom:276.080000pt;}
.y6c{bottom:278.400000pt;}
.ye5{bottom:279.080000pt;}
.y22e{bottom:283.760000pt;}
.y271{bottom:284.266667pt;}
.y1b8{bottom:286.386667pt;}
.yc9{bottom:290.800000pt;}
.y6b{bottom:292.480000pt;}
.ya9{bottom:293.600000pt;}
.ye4{bottom:293.960000pt;}
.y22d{bottom:297.680000pt;}
.y270{bottom:300.106667pt;}
.y1b7{bottom:300.146667pt;}
.y1f2{bottom:303.466667pt;}
.yc8{bottom:305.560000pt;}
.y1f3{bottom:306.266667pt;}
.y6a{bottom:306.280000pt;}
.ye3{bottom:307.760000pt;}
.y156{bottom:308.400000pt;}
.y22c{bottom:311.480000pt;}
.y1b6{bottom:313.946667pt;}
.ya8{bottom:314.266667pt;}
.y26f{bottom:316.146667pt;}
.y2c{bottom:319.112000pt;}
.y69{bottom:320.040000pt;}
.yc7{bottom:320.280000pt;}
.ye2{bottom:321.360000pt;}
.y181{bottom:324.133333pt;}
.y22b{bottom:325.240000pt;}
.y1b5{bottom:327.866667pt;}
.y26e{bottom:331.986667pt;}
.y2b{bottom:333.032000pt;}
.y68{bottom:333.800000pt;}
.ya7{bottom:334.933333pt;}
.yc6{bottom:335.000000pt;}
.ye1{bottom:335.600000pt;}
.y22a{bottom:339.160000pt;}
.y1b4{bottom:341.626667pt;}
.y1ef{bottom:342.933333pt;}
.y155{bottom:344.533333pt;}
.y1f1{bottom:345.866667pt;}
.y2a{bottom:346.792000pt;}
.y67{bottom:347.720000pt;}
.y26d{bottom:347.826667pt;}
.ye0{bottom:349.360000pt;}
.y229{bottom:352.920000pt;}
.y1b3{bottom:355.546667pt;}
.ya6{bottom:355.733333pt;}
.y1f0{bottom:359.733333pt;}
.ydf{bottom:360.400000pt;}
.y29{bottom:360.552000pt;}
.y66{bottom:361.480000pt;}
.yc5{bottom:363.320000pt;}
.y26c{bottom:363.666667pt;}
.y228{bottom:366.840000pt;}
.y1b2{bottom:369.306667pt;}
.y28{bottom:374.312000pt;}
.y65{bottom:375.240000pt;}
.ya5{bottom:376.400000pt;}
.yc4{bottom:377.240000pt;}
.y26b{bottom:379.506667pt;}
.y227{bottom:380.600000pt;}
.y180{bottom:382.533333pt;}
.y1ed{bottom:382.666667pt;}
.y1b1{bottom:383.066667pt;}
.y1ee{bottom:385.200000pt;}
.y154{bottom:386.666667pt;}
.y27{bottom:388.232000pt;}
.y64{bottom:389.320000pt;}
.yc3{bottom:391.160000pt;}
.y226{bottom:394.520000pt;}
.y26a{bottom:395.346667pt;}
.y1b0{bottom:396.986667pt;}
.ya4{bottom:397.066667pt;}
.y26{bottom:401.992000pt;}
.y63{bottom:402.760000pt;}
.yc2{bottom:405.240000pt;}
.y225{bottom:408.280000pt;}
.y1af{bottom:410.746667pt;}
.y269{bottom:411.346667pt;}
.y25{bottom:415.752000pt;}
.yc1{bottom:416.280000pt;}
.y62{bottom:416.680000pt;}
.ya3{bottom:417.733333pt;}
.y224{bottom:422.040000pt;}
.y152{bottom:422.800000pt;}
.y1ae{bottom:424.506667pt;}
.y268{bottom:427.186667pt;}
.y24{bottom:429.512000pt;}
.y61{bottom:430.600000pt;}
.y223{bottom:435.960000pt;}
.y1ad{bottom:438.266667pt;}
.y1ec{bottom:438.653333pt;}
.y17f{bottom:440.933333pt;}
.ya2{bottom:441.360000pt;}
.y267{bottom:443.026667pt;}
.y23{bottom:443.432000pt;}
.y60{bottom:444.520000pt;}
.y222{bottom:449.720000pt;}
.y1ac{bottom:452.186667pt;}
.y1eb{bottom:452.573333pt;}
.ya1{bottom:454.800000pt;}
.y22{bottom:457.192000pt;}
.y111{bottom:458.120000pt;}
.y5f{bottom:458.280000pt;}
.y266{bottom:458.866667pt;}
.y221{bottom:463.480000pt;}
.y151{bottom:464.933333pt;}
.y1ab{bottom:465.786667pt;}
.y1ea{bottom:466.493333pt;}
.ya0{bottom:466.800000pt;}
.y5e{bottom:472.040000pt;}
.y265{bottom:474.706667pt;}
.y220{bottom:477.240000pt;}
.y1e9{bottom:480.253333pt;}
.y12b{bottom:480.986667pt;}
.y21{bottom:484.552000pt;}
.y5d{bottom:485.800000pt;}
.y9f{bottom:487.466667pt;}
.y264{bottom:490.706667pt;}
.y21f{bottom:491.160000pt;}
.y1aa{bottom:493.466667pt;}
.y1e8{bottom:494.173333pt;}
.y12a{bottom:494.746667pt;}
.y17e{bottom:499.333333pt;}
.y110{bottom:499.560000pt;}
.y5c{bottom:499.720000pt;}
.y150{bottom:501.066667pt;}
.y21e{bottom:504.920000pt;}
.y263{bottom:506.546667pt;}
.y9e{bottom:508.133333pt;}
.y1e7{bottom:508.253333pt;}
.y129{bottom:508.666667pt;}
.y1a9{bottom:510.666667pt;}
.y20{bottom:512.232000pt;}
.y5b{bottom:513.480000pt;}
.y21d{bottom:518.840000pt;}
.y262{bottom:522.386667pt;}
.y128{bottom:522.426667pt;}
.y1e6{bottom:522.973333pt;}
.y5a{bottom:527.240000pt;}
.y1f{bottom:528.392000pt;}
.y9d{bottom:528.666667pt;}
.y1a8{bottom:530.000000pt;}
.y21c{bottom:532.600000pt;}
.y127{bottom:536.186667pt;}
.y1a7{bottom:536.933333pt;}
.y14e{bottom:537.333333pt;}
.y1e5{bottom:537.720000pt;}
.y261{bottom:538.253333pt;}
.y59{bottom:541.026667pt;}
.y10f{bottom:541.186667pt;}
.y21b{bottom:546.386667pt;}
.y9b{bottom:549.333333pt;}
.y126{bottom:550.133333pt;}
.y9c{bottom:552.400000pt;}
.y1e4{bottom:552.440000pt;}
.y260{bottom:554.093333pt;}
.y1e{bottom:554.178667pt;}
.y58{bottom:554.786667pt;}
.y10e{bottom:554.946667pt;}
.y17c{bottom:557.733333pt;}
.y21a{bottom:560.306667pt;}
.y17d{bottom:560.533333pt;}
.y1a6{bottom:561.040000pt;}
.y125{bottom:563.893333pt;}
.y1e3{bottom:567.160000pt;}
.y25f{bottom:567.693333pt;}
.y1a5{bottom:568.000000pt;}
.y10d{bottom:568.706667pt;}
.y57{bottom:568.866667pt;}
.y99{bottom:570.000000pt;}
.y1d{bottom:570.338667pt;}
.y9a{bottom:573.066667pt;}
.y219{bottom:574.066667pt;}
.y124{bottom:577.813333pt;}
.y1e2{bottom:582.040000pt;}
.y10c{bottom:582.466667pt;}
.y56{bottom:582.626667pt;}
.y1c{bottom:584.098667pt;}
.y218{bottom:587.986667pt;}
.y97{bottom:590.800000pt;}
.y1a4{bottom:591.466667pt;}
.y123{bottom:591.573333pt;}
.y14b{bottom:593.200000pt;}
.y98{bottom:593.733333pt;}
.y1e1{bottom:595.640000pt;}
.y25e{bottom:595.693333pt;}
.y14d{bottom:596.106667pt;}
.y55{bottom:596.386667pt;}
.y1b{bottom:597.858667pt;}
.y217{bottom:601.746667pt;}
.y122{bottom:605.333333pt;}
.y25d{bottom:609.613333pt;}
.y1e0{bottom:609.720000pt;}
.y14c{bottom:609.866667pt;}
.y1a3{bottom:610.133333pt;}
.y54{bottom:610.146667pt;}
.y95{bottom:611.466667pt;}
.y1a{bottom:611.778667pt;}
.y96{bottom:614.000000pt;}
.y216{bottom:615.506667pt;}
.y17a{bottom:616.133333pt;}
.y17b{bottom:618.933333pt;}
.y121{bottom:619.253333pt;}
.y25c{bottom:623.373333pt;}
.y1df{bottom:623.640000pt;}
.y10b{bottom:623.906667pt;}
.y53{bottom:624.066667pt;}
.y19{bottom:625.538667pt;}
.y1a2{bottom:626.800000pt;}
.y148{bottom:629.333333pt;}
.y215{bottom:629.426667pt;}
.y14a{bottom:632.213333pt;}
.y25b{bottom:637.293333pt;}
.y1de{bottom:637.400000pt;}
.y52{bottom:637.826667pt;}
.y18{bottom:639.298667pt;}
.y1a1{bottom:641.333333pt;}
.y214{bottom:643.186667pt;}
.y149{bottom:646.133333pt;}
.y120{bottom:646.613333pt;}
.y94{bottom:649.600000pt;}
.y25a{bottom:651.053333pt;}
.y1dd{bottom:651.160000pt;}
.y10a{bottom:651.426667pt;}
.y51{bottom:651.586667pt;}
.y17{bottom:653.218667pt;}
.y213{bottom:657.106667pt;}
.y1a0{bottom:657.733333pt;}
.y11f{bottom:660.533333pt;}
.y93{bottom:663.466667pt;}
.y1dc{bottom:664.760000pt;}
.y109{bottom:665.186667pt;}
.y50{bottom:665.346667pt;}
.y145{bottom:665.600000pt;}
.y147{bottom:668.640000pt;}
.y212{bottom:670.866667pt;}
.y16{bottom:672.898667pt;}
.y19f{bottom:673.866667pt;}
.yde{bottom:674.000000pt;}
.y178{bottom:674.533333pt;}
.y11e{bottom:674.613333pt;}
.y179{bottom:677.333333pt;}
.y1da{bottom:678.840000pt;}
.y259{bottom:678.893333pt;}
.y4f{bottom:679.266667pt;}
.y108{bottom:679.426667pt;}
.y146{bottom:682.400000pt;}
.y92{bottom:684.133333pt;}
.y211{bottom:684.466667pt;}
.y19e{bottom:688.266667pt;}
.y11d{bottom:688.533333pt;}
.ydd{bottom:690.160000pt;}
.y258{bottom:692.653333pt;}
.y1d9{bottom:692.760000pt;}
.y4e{bottom:693.026667pt;}
.y107{bottom:693.186667pt;}
.y15{bottom:696.738667pt;}
.y210{bottom:698.386667pt;}
.ydc{bottom:701.200000pt;}
.y142{bottom:701.866667pt;}
.y11c{bottom:702.453333pt;}
.y19d{bottom:702.800000pt;}
.y144{bottom:704.773333pt;}
.y91{bottom:704.933333pt;}
.y257{bottom:706.413333pt;}
.y1d8{bottom:706.520000pt;}
.y4d{bottom:706.786667pt;}
.y106{bottom:706.946667pt;}
.y14{bottom:710.498667pt;}
.y20f{bottom:712.466667pt;}
.y11b{bottom:713.333333pt;}
.y19c{bottom:717.200000pt;}
.y143{bottom:718.533333pt;}
.y256{bottom:720.173333pt;}
.y1d7{bottom:720.280000pt;}
.y4c{bottom:720.546667pt;}
.y105{bottom:720.706667pt;}
.y13{bottom:724.258667pt;}
.y90{bottom:725.600000pt;}
.y20e{bottom:726.226667pt;}
.y175{bottom:732.933333pt;}
.y19b{bottom:733.866667pt;}
.y255{bottom:734.093333pt;}
.y1d6{bottom:734.200000pt;}
.y4b{bottom:734.306667pt;}
.y104{bottom:734.626667pt;}
.yc0{bottom:735.213333pt;}
.y13f{bottom:738.000000pt;}
.y20d{bottom:739.986667pt;}
.y141{bottom:740.906667pt;}
.y8f{bottom:746.133333pt;}
.y1d5{bottom:747.640000pt;}
.y254{bottom:747.853333pt;}
.y103{bottom:748.386667pt;}
.y4a{bottom:748.546667pt;}
.ybf{bottom:748.973333pt;}
.y19a{bottom:752.533333pt;}
.y20c{bottom:753.906667pt;}
.y140{bottom:754.666667pt;}
.y12{bottom:755.138667pt;}
.y1db{bottom:755.880000pt;}
.y253{bottom:761.613333pt;}
.y1d4{bottom:761.880000pt;}
.y49{bottom:761.986667pt;}
.y102{bottom:762.306667pt;}
.ybe{bottom:762.893333pt;}
.y198{bottom:766.000000pt;}
.y8e{bottom:766.800000pt;}
.y20b{bottom:767.506667pt;}
.y13d{bottom:774.133333pt;}
.y11{bottom:774.178667pt;}
.y252{bottom:775.573333pt;}
.y1d3{bottom:775.680000pt;}
.y101{bottom:776.106667pt;}
.ybd{bottom:776.853333pt;}
.y20a{bottom:781.626667pt;}
.y8d{bottom:787.466667pt;}
.y251{bottom:789.173333pt;}
.y1d2{bottom:789.600000pt;}
.y100{bottom:789.866667pt;}
.y48{bottom:790.026667pt;}
.ybc{bottom:790.293333pt;}
.y197{bottom:790.533333pt;}
.y31{bottom:792.466667pt;}
.y174{bottom:793.872000pt;}
.y209{bottom:795.546667pt;}
.y33{bottom:797.520000pt;}
.y250{bottom:802.933333pt;}
.y1d1{bottom:803.040000pt;}
.yff{bottom:803.626667pt;}
.y47{bottom:803.946667pt;}
.y173{bottom:804.109333pt;}
.ybb{bottom:804.213333pt;}
.y10{bottom:805.093333pt;}
.y8c{bottom:808.133333pt;}
.y196{bottom:809.200000pt;}
.y208{bottom:809.306667pt;}
.y13c{bottom:810.400000pt;}
.y32{bottom:813.533333pt;}
.y1d0{bottom:817.120000pt;}
.yfe{bottom:817.546667pt;}
.y46{bottom:817.706667pt;}
.yba{bottom:818.453333pt;}
.y207{bottom:823.066667pt;}
.y195{bottom:827.866667pt;}
.y8b{bottom:828.933333pt;}
.yb9{bottom:829.333333pt;}
.ye{bottom:830.853333pt;}
.y1cf{bottom:831.040000pt;}
.y24f{bottom:831.093333pt;}
.yfd{bottom:831.306667pt;}
.y45{bottom:831.466667pt;}
.y171{bottom:833.466667pt;}
.y172{bottom:835.466667pt;}
.y206{bottom:836.666667pt;}
.yf{bottom:837.573333pt;}
.y30{bottom:838.533333pt;}
.y194{bottom:844.266667pt;}
.y1ce{bottom:844.800000pt;}
.y24e{bottom:844.853333pt;}
.yfc{bottom:845.066667pt;}
.y44{bottom:845.226667pt;}
.y13b{bottom:846.666667pt;}
.y8a{bottom:849.600000pt;}
.y205{bottom:850.586667pt;}
.y170{bottom:854.133333pt;}
.y1cd{bottom:858.400000pt;}
.y24d{bottom:858.613333pt;}
.y193{bottom:858.666667pt;}
.yfb{bottom:858.986667pt;}
.y43{bottom:859.146667pt;}
.y204{bottom:864.666667pt;}
.yd{bottom:865.733333pt;}
.y89{bottom:870.266667pt;}
.y24c{bottom:872.373333pt;}
.y1cc{bottom:872.480000pt;}
.yfa{bottom:872.746667pt;}
.y42{bottom:872.906667pt;}
.y16f{bottom:874.800000pt;}
.y203{bottom:876.266667pt;}
.y137{bottom:882.800000pt;}
.y1cb{bottom:886.240000pt;}
.y24b{bottom:886.293333pt;}
.y41{bottom:886.666667pt;}
.y88{bottom:890.800000pt;}
.y202{bottom:896.933333pt;}
.y24a{bottom:899.893333pt;}
.y1ca{bottom:900.160000pt;}
.y40{bottom:900.426667pt;}
.y16e{bottom:903.066667pt;}
.yc{bottom:903.173333pt;}
.y192{bottom:905.466667pt;}
.y87{bottom:911.466667pt;}
.y249{bottom:913.653333pt;}
.y1c9{bottom:913.920000pt;}
.y3f{bottom:914.186667pt;}
.y9{bottom:919.173333pt;}
.y191{bottom:922.000000pt;}
.yb{bottom:923.813333pt;}
.y201{bottom:925.066667pt;}
.y1c8{bottom:927.520000pt;}
.y248{bottom:927.893333pt;}
.yf9{bottom:927.946667pt;}
.y3e{bottom:928.106667pt;}
.y16d{bottom:931.200000pt;}
.y85{bottom:932.133333pt;}
.y135{bottom:938.666667pt;}
.y190{bottom:939.066667pt;}
.y8{bottom:939.813333pt;}
.y1c7{bottom:941.600000pt;}
.y247{bottom:941.653333pt;}
.y3d{bottom:941.866667pt;}
.y200{bottom:945.866667pt;}
.ya{bottom:952.293333pt;}
.y83{bottom:952.933333pt;}
.y246{bottom:955.413333pt;}
.y1c6{bottom:955.520000pt;}
.y3c{bottom:955.626667pt;}
.y16c{bottom:959.600000pt;}
.y7{bottom:965.893333pt;}
.y1ff{bottom:966.533333pt;}
.y18f{bottom:967.600000pt;}
.y1c5{bottom:969.280000pt;}
.y245{bottom:969.333333pt;}
.y3b{bottom:969.386667pt;}
.y81{bottom:973.600000pt;}
.y133{bottom:974.800000pt;}
.y16b{bottom:980.266667pt;}
.y6{bottom:982.853333pt;}
.y1c4{bottom:983.040000pt;}
.y244{bottom:983.093333pt;}
.y3a{bottom:983.306667pt;}
.y1fe{bottom:987.200000pt;}
.y7f{bottom:994.266667pt;}
.y18e{bottom:996.640000pt;}
.y243{bottom:997.013333pt;}
.y39{bottom:997.066667pt;}
.y5{bottom:998.213333pt;}
.y169{bottom:1000.933333pt;}
.y16a{bottom:1003.466667pt;}
.y242{bottom:1010.773333pt;}
.y38{bottom:1010.826667pt;}
.y1c3{bottom:1010.880000pt;}
.y4{bottom:1013.600000pt;}
.y18d{bottom:1024.346667pt;}
.y168{bottom:1024.480000pt;}
.y241{bottom:1024.560000pt;}
.y37{bottom:1024.613333pt;}
.y132{bottom:1024.773333pt;}
.y3{bottom:1029.600000pt;}
.y18c{bottom:1038.266667pt;}
.y240{bottom:1038.480000pt;}
.y36{bottom:1038.533333pt;}
.y18a{bottom:1051.866667pt;}
.y34{bottom:1061.066667pt;}
.y166{bottom:1080.080000pt;}
.h2c{height:18.573333pt;}
.h18{height:19.866667pt;}
.h23{height:19.906667pt;}
.h17{height:20.000000pt;}
.h16{height:20.026667pt;}
.h25{height:27.520000pt;}
.h24{height:27.680000pt;}
.hc{height:31.390625pt;}
.h2a{height:33.351562pt;}
.h10{height:33.918750pt;}
.h1e{height:35.386667pt;}
.h20{height:35.413333pt;}
.h19{height:35.520000pt;}
.h1b{height:35.546667pt;}
.h1d{height:35.680000pt;}
.ha{height:37.410000pt;}
.h33{height:38.746667pt;}
.h34{height:38.866667pt;}
.h30{height:38.880000pt;}
.h31{height:38.906667pt;}
.h21{height:41.426667pt;}
.h1f{height:41.440000pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h1a{height:55.200000pt;}
.h1c{height:55.226667pt;}
.hf{height:55.247500pt;}
.h29{height:57.626667pt;}
.h28{height:57.666667pt;}
.h2b{height:57.746667pt;}
.h22{height:57.758750pt;}
.h27{height:57.760000pt;}
.h26{height:57.786667pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h15{height:60.519362pt;}
.h2{height:64.500000pt;}
.hb{height:65.987271pt;}
.h5{height:72.885000pt;}
.h2d{height:74.309375pt;}
.h2f{height:74.842708pt;}
.h2e{height:74.949375pt;}
.h9{height:75.465000pt;}
.h32{height:103.109375pt;}
.h0{height:1122.666667pt;}
.w14{width:31.386667pt;}
.w1f{width:46.386667pt;}
.w23{width:57.586667pt;}
.w1b{width:62.240000pt;}
.w1{width:63.186667pt;}
.w9{width:63.226667pt;}
.w5{width:63.386667pt;}
.w3{width:63.680000pt;}
.w8{width:63.706667pt;}
.w16{width:78.733333pt;}
.w25{width:80.160000pt;}
.w15{width:80.786667pt;}
.w17{width:83.520000pt;}
.wd{width:84.626667pt;}
.wc{width:88.986667pt;}
.w6{width:95.200000pt;}
.w1a{width:95.866667pt;}
.we{width:99.693333pt;}
.w18{width:107.546667pt;}
.w24{width:115.706667pt;}
.w20{width:115.853333pt;}
.wf{width:119.706667pt;}
.w1c{width:125.626667pt;}
.w7{width:126.426667pt;}
.w1d{width:130.906667pt;}
.w21{width:185.466667pt;}
.w12{width:198.666667pt;}
.w1e{width:203.066667pt;}
.w11{width:210.786667pt;}
.w19{width:211.200000pt;}
.wb{width:212.800000pt;}
.w13{width:215.333333pt;}
.w4{width:219.733333pt;}
.w22{width:232.533333pt;}
.w2{width:237.866667pt;}
.wa{width:240.266667pt;}
.w10{width:346.266667pt;}
.w26{width:374.266667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7c{left:6.706667pt;}
.x3a{left:7.733333pt;}
.x76{left:9.600000pt;}
.x35{left:10.533333pt;}
.x6e{left:11.600000pt;}
.x3c{left:12.933333pt;}
.x20{left:14.133333pt;}
.x1c{left:15.346667pt;}
.x40{left:16.266667pt;}
.x66{left:17.760000pt;}
.x6d{left:19.466667pt;}
.x77{left:20.533333pt;}
.x6c{left:22.000000pt;}
.x30{left:23.066667pt;}
.x93{left:24.666667pt;}
.x2e{left:25.640000pt;}
.x2{left:26.773333pt;}
.x23{left:28.573333pt;}
.x2f{left:29.733333pt;}
.x31{left:31.466667pt;}
.x65{left:32.480000pt;}
.x69{left:33.600000pt;}
.x2b{left:35.200000pt;}
.x48{left:36.533333pt;}
.x29{left:37.866667pt;}
.xc{left:41.693333pt;}
.x74{left:43.200000pt;}
.xe{left:44.880000pt;}
.x17{left:45.786667pt;}
.x24{left:47.333333pt;}
.x14{left:48.892000pt;}
.x32{left:50.533333pt;}
.x45{left:52.133333pt;}
.x13{left:53.466667pt;}
.x16{left:55.346667pt;}
.x2d{left:56.933333pt;}
.x99{left:58.266667pt;}
.x25{left:59.866667pt;}
.x98{left:61.066667pt;}
.x27{left:62.400000pt;}
.x44{left:63.466667pt;}
.x2a{left:64.666667pt;}
.x28{left:66.000000pt;}
.x46{left:68.400000pt;}
.x26{left:70.000000pt;}
.x2c{left:73.066667pt;}
.x4d{left:74.080000pt;}
.x18{left:74.986667pt;}
.x22{left:80.266667pt;}
.x4a{left:82.000000pt;}
.x4b{left:83.333333pt;}
.x42{left:87.200000pt;}
.x9b{left:88.360000pt;}
.x1e{left:89.333333pt;}
.x7b{left:91.120000pt;}
.x6f{left:93.333333pt;}
.x49{left:94.266667pt;}
.x47{left:97.600000pt;}
.x8{left:102.533333pt;}
.x1b{left:109.960000pt;}
.x8f{left:112.200000pt;}
.x67{left:121.800000pt;}
.x70{left:130.400000pt;}
.x78{left:141.200000pt;}
.x3f{left:144.266667pt;}
.x9c{left:146.266667pt;}
.x58{left:152.893333pt;}
.x9f{left:155.066667pt;}
.x85{left:156.000000pt;}
.x6b{left:157.066667pt;}
.x73{left:158.400000pt;}
.x75{left:164.533333pt;}
.x86{left:166.400000pt;}
.x80{left:170.133333pt;}
.x1d{left:173.600000pt;}
.x60{left:182.333333pt;}
.x7f{left:187.386667pt;}
.x87{left:203.866667pt;}
.x62{left:206.186667pt;}
.x41{left:207.866667pt;}
.x7a{left:210.266667pt;}
.x5{left:217.040000pt;}
.x33{left:227.866667pt;}
.x3{left:240.266667pt;}
.x81{left:249.200000pt;}
.x3e{left:254.266667pt;}
.x83{left:256.400000pt;}
.x4{left:258.320000pt;}
.x9d{left:262.266667pt;}
.x52{left:265.338667pt;}
.x56{left:267.400000pt;}
.x90{left:275.066667pt;}
.x50{left:277.133333pt;}
.x94{left:283.600000pt;}
.x34{left:291.600000pt;}
.x10{left:300.634667pt;}
.x39{left:302.133333pt;}
.x38{left:305.066667pt;}
.x68{left:306.800000pt;}
.x7d{left:309.333333pt;}
.x92{left:310.933333pt;}
.x72{left:326.320000pt;}
.x71{left:329.200000pt;}
.x15{left:333.133333pt;}
.x96{left:334.666667pt;}
.x9e{left:342.800000pt;}
.x36{left:348.400000pt;}
.x9{left:353.200000pt;}
.x89{left:354.586667pt;}
.xa0{left:357.466667pt;}
.xa1{left:358.533333pt;}
.x4c{left:362.480000pt;}
.x84{left:365.026667pt;}
.xd{left:366.746667pt;}
.x5b{left:370.597333pt;}
.xa2{left:373.973333pt;}
.x9a{left:379.013333pt;}
.x59{left:381.066667pt;}
.x5a{left:385.157333pt;}
.x3b{left:387.066667pt;}
.x19{left:388.053333pt;}
.x5d{left:390.000000pt;}
.x3d{left:391.600000pt;}
.x1{left:392.800000pt;}
.x63{left:394.000000pt;}
.x1a{left:395.600000pt;}
.x5e{left:397.546667pt;}
.x8b{left:399.280000pt;}
.x11{left:400.408000pt;}
.x64{left:401.546667pt;}
.x79{left:402.506667pt;}
.x4e{left:403.853333pt;}
.x53{left:408.000000pt;}
.x1f{left:411.733333pt;}
.x54{left:415.546667pt;}
.x6{left:425.746667pt;}
.x6a{left:426.800000pt;}
.xa{left:441.066667pt;}
.xb{left:445.546667pt;}
.x43{left:448.400000pt;}
.x7{left:450.293333pt;}
.x37{left:451.200000pt;}
.x88{left:461.066667pt;}
.x21{left:475.733333pt;}
.x95{left:513.066667pt;}
.x7e{left:517.866667pt;}
.x12{left:544.000000pt;}
.x8e{left:545.133333pt;}
.x5c{left:552.325333pt;}
.x97{left:565.600000pt;}
.x51{left:569.605333pt;}
.x8a{left:590.480000pt;}
.x91{left:609.600000pt;}
.x8c{left:612.360000pt;}
.x61{left:630.986667pt;}
.x57{left:632.493333pt;}
.x55{left:643.000000pt;}
.x4f{left:649.266667pt;}
.x82{left:652.666667pt;}
.x5f{left:697.266667pt;}
.xf{left:700.368000pt;}
.x8d{left:933.400000pt;}
}




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