
    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_5e7481caa1f0518b7f227a09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_cfa59695fa89f317c5e24fcc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_c8c974466e9eb9ae46b080ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_2e51424829273a54d442b6f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_6729b624b8230b6bad80032b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_48f91e237ca110697fcc56f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5cdf0f0cee8996f63034ecab.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-63.000000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.488000px;}
.ls12{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-1.458000px;}
.ls11{letter-spacing:-1.386000px;}
.ls23{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-0.672000px;}
.ls22{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.314400px;}
.ls9{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls1{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.067200px;}
.ls19{letter-spacing:-0.045360px;}
.ls20{letter-spacing:-0.021960px;}
.lsd{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.021960px;}
.lsa{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.067200px;}
.ls2{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.090600px;}
.ls13{letter-spacing:0.112800px;}
.ls3{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.314400px;}
.ls24{letter-spacing:0.472800px;}
.ls10{letter-spacing:9.780000px;}
.ls8{letter-spacing:33.744000px;}
.ls7{letter-spacing:34.104000px;}
.lsc{letter-spacing:331.380000px;}
.lsb{letter-spacing:752.940000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.wse{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.640000px;}
.ws23{word-spacing:-16.942800px;}
.ws1b{word-spacing:-16.784400px;}
.ws15{word-spacing:-16.650000px;}
.ws12{word-spacing:-16.582800px;}
.ws1c{word-spacing:-16.560600px;}
.ws13{word-spacing:-16.537200px;}
.ws19{word-spacing:-16.515360px;}
.ws1a{word-spacing:-16.491960px;}
.ws18{word-spacing:-16.470000px;}
.ws1f{word-spacing:-16.448040px;}
.ws14{word-spacing:-16.424640px;}
.ws17{word-spacing:-16.402800px;}
.ws1e{word-spacing:-16.290000px;}
.ws16{word-spacing:-16.155600px;}
.ws21{word-spacing:-15.930000px;}
.ws20{word-spacing:-15.798000px;}
.ws22{word-spacing:-15.210000px;}
.ws1d{word-spacing:-14.982000px;}
.wsc{word-spacing:-12.240000px;}
.wsb{word-spacing:-12.231120px;}
.wsa{word-spacing:-12.204000px;}
.wsd{word-spacing:-12.186000px;}
.ws10{word-spacing:-10.818000px;}
.ws11{word-spacing:-10.749120px;}
.wsf{word-spacing:-10.746000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.728000px;}
._6{margin-left:-3.432000px;}
._0{margin-left:-2.088000px;}
._2{margin-left:-1.080000px;}
._1{width:1.080000px;}
._1a{width:2.184000px;}
._5{width:4.512000px;}
._15{width:5.616000px;}
._14{width:6.624000px;}
._16{width:7.632000px;}
._17{width:8.784000px;}
._1d{width:9.936000px;}
._4{width:12.288000px;}
._19{width:13.296000px;}
._1b{width:24.912000px;}
._b{width:58.488000px;}
._a{width:61.794000px;}
._d{width:65.010000px;}
._10{width:71.382000px;}
._f{width:73.746000px;}
._c{width:77.112000px;}
._9{width:80.442000px;}
._e{width:85.374000px;}
._7{width:104.862000px;}
._18{width:121.530000px;}
._1f{width:167.250000px;}
._1c{width:201.090000px;}
._11{width:207.930000px;}
._12{width:349.770000px;}
._8{width:386.970000px;}
._3{width:482.520000px;}
._1e{width:573.810000px;}
.fc5{color:rgb(4,98,193);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:54.120000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.550000px;}
.yf0{bottom:2.580000px;}
.y120{bottom:2.610000px;}
.y13f{bottom:2.640000px;}
.yee{bottom:2.670000px;}
.y1d4{bottom:2.700000px;}
.y134{bottom:2.730000px;}
.y12e{bottom:2.760000px;}
.yf8{bottom:3.180000px;}
.y183{bottom:3.210000px;}
.y12c{bottom:3.300000px;}
.y1e7{bottom:3.360000px;}
.y211{bottom:5.670000px;}
.y20b{bottom:5.760000px;}
.y20f{bottom:5.940000px;}
.y18c{bottom:6.930000px;}
.y194{bottom:7.020000px;}
.y188{bottom:7.290000px;}
.y216{bottom:8.010000px;}
.y213{bottom:8.100000px;}
.y18d{bottom:8.640000px;}
.y191{bottom:8.910000px;}
.y14d{bottom:9.000000px;}
.y148{bottom:9.030000px;}
.y156{bottom:9.180000px;}
.y14b{bottom:9.270000px;}
.y143{bottom:9.360000px;}
.y177{bottom:9.450000px;}
.y14f{bottom:9.540000px;}
.y1ef{bottom:9.570000px;}
.y157{bottom:9.630000px;}
.y151{bottom:9.720000px;}
.y146{bottom:9.810000px;}
.y1bf{bottom:9.900000px;}
.y1bc{bottom:10.710000px;}
.y1b2{bottom:10.800000px;}
.y1b6{bottom:11.010000px;}
.y1b9{bottom:11.070000px;}
.y1c1{bottom:11.160000px;}
.y16b{bottom:13.680000px;}
.y16f{bottom:13.770000px;}
.y173{bottom:13.860000px;}
.yfc{bottom:18.840000px;}
.yf7{bottom:18.930000px;}
.y131{bottom:19.050000px;}
.y218{bottom:19.530000px;}
.y1dd{bottom:19.860000px;}
.y1ec{bottom:20.010000px;}
.y1f3{bottom:20.070000px;}
.y1f0{bottom:20.160000px;}
.y1f5{bottom:20.250000px;}
.y1e6{bottom:21.540000px;}
.y182{bottom:24.180000px;}
.y193{bottom:25.200000px;}
.y109{bottom:25.290000px;}
.y110{bottom:25.470000px;}
.y12b{bottom:29.130000px;}
.y1af{bottom:30.840000px;}
.y13d{bottom:33.600000px;}
.y158{bottom:34.740000px;}
.y215{bottom:37.530000px;}
.y1c0{bottom:38.430000px;}
.y1e5{bottom:39.540000px;}
.y1dc{bottom:40.020000px;}
.y181{bottom:45.240000px;}
.y106{bottom:48.330000px;}
.y111{bottom:48.450000px;}
.y10e{bottom:48.510000px;}
.y10b{bottom:48.600000px;}
.y108{bottom:51.120000px;}
.y10f{bottom:51.300000px;}
.y12a{bottom:54.690000px;}
.y1db{bottom:56.490000px;}
.y1f4{bottom:56.790000px;}
.y1e4{bottom:57.540000px;}
.y1ae{bottom:58.380000px;}
.y154{bottom:60.300000px;}
.y13c{bottom:63.930000px;}
.y1bd{bottom:65.610000px;}
.y180{bottom:66.120000px;}
.y18f{bottom:67.230000px;}
.y1e3{bottom:75.630000px;}
.y1da{bottom:76.650000px;}
.y129{bottom:80.430000px;}
.y1ad{bottom:85.830000px;}
.y152{bottom:86.040000px;}
.y17f{bottom:87.000000px;}
.y1ba{bottom:93.150000px;}
.y1d9{bottom:93.210000px;}
.y1f1{bottom:93.420000px;}
.y1e2{bottom:93.630000px;}
.y13b{bottom:94.260000px;}
.y128{bottom:105.990000px;}
.y17e{bottom:107.970000px;}
.y18a{bottom:108.810000px;}
.y20d{bottom:109.800000px;}
.y1e1{bottom:111.720000px;}
.y1ac{bottom:113.190000px;}
.y1d8{bottom:113.280000px;}
.y270{bottom:114.840000px;}
.y221{bottom:116.460000px;}
.y17a{bottom:118.080000px;}
.y83{bottom:118.890000px;}
.y68{bottom:121.950000px;}
.y13a{bottom:124.590000px;}
.y25a{bottom:126.900000px;}
.yec{bottom:127.710000px;}
.y17d{bottom:128.850000px;}
.y1e0{bottom:129.810000px;}
.y1d7{bottom:129.870000px;}
.y1ee{bottom:129.900000px;}
.y127{bottom:131.640000px;}
.y40{bottom:133.470000px;}
.ya5{bottom:134.640000px;}
.y220{bottom:137.160000px;}
.y179{bottom:138.870000px;}
.y1ab{bottom:140.730000px;}
.y82{bottom:140.850000px;}
.yca{bottom:143.190000px;}
.y67{bottom:144.270000px;}
.y1df{bottom:146.910000px;}
.y17c{bottom:148.830000px;}
.y1d6{bottom:149.040000px;}
.yeb{bottom:149.760000px;}
.y26f{bottom:150.840000px;}
.y139{bottom:154.830000px;}
.y3f{bottom:155.820000px;}
.y228{bottom:156.180000px;}
.y126{bottom:157.200000px;}
.y13e{bottom:158.400000px;}
.y259{bottom:162.660000px;}
.y178{bottom:166.620000px;}
.y66{bottom:166.710000px;}
.y1aa{bottom:168.210000px;}
.ya4{bottom:168.690000px;}
.y21f{bottom:168.960000px;}
.yea{bottom:171.840000px;}
.y1b4{bottom:175.260000px;}
.y81{bottom:175.440000px;}
.y135{bottom:176.040000px;}
.yc9{bottom:177.330000px;}
.y3e{bottom:178.140000px;}
.y10c{bottom:178.500000px;}
.y125{bottom:182.850000px;}
.y16c{bottom:184.620000px;}
.y138{bottom:185.070000px;}
.y26e{bottom:186.960000px;}
.y149{bottom:188.310000px;}
.y65{bottom:189.030000px;}
.y21e{bottom:189.660000px;}
.ya3{bottom:191.100000px;}
.y1a9{bottom:194.760000px;}
.y170{bottom:195.390000px;}
.y258{bottom:198.750000px;}
.yc8{bottom:199.830000px;}
.y3d{bottom:200.460000px;}
.y227{bottom:200.820000px;}
.ye9{bottom:206.310000px;}
.y124{bottom:208.530000px;}
.y80{bottom:209.550000px;}
.y21d{bottom:210.360000px;}
.y64{bottom:211.350000px;}
.ya2{bottom:213.420000px;}
.y145{bottom:214.140000px;}
.y176{bottom:214.950000px;}
.y137{bottom:215.490000px;}
.y11e{bottom:220.890000px;}
.y3c{bottom:222.870000px;}
.y26d{bottom:222.960000px;}
.y226{bottom:223.230000px;}
.y16d{bottom:225.630000px;}
.ye8{bottom:228.720000px;}
.y21c{bottom:231.060000px;}
.y7f{bottom:231.870000px;}
.y123{bottom:233.280000px;}
.y63{bottom:233.670000px;}
.yc7{bottom:233.850000px;}
.y257{bottom:234.750000px;}
.ya1{bottom:235.740000px;}
.y11d{bottom:243.210000px;}
.y107{bottom:243.390000px;}
.y136{bottom:244.830000px;}
.y3b{bottom:245.190000px;}
.y175{bottom:245.280000px;}
.y225{bottom:245.550000px;}
.ye7{bottom:251.040000px;}
.y21b{bottom:251.760000px;}
.y7e{bottom:254.190000px;}
.yc6{bottom:256.170000px;}
.ya0{bottom:258.060000px;}
.y11c{bottom:265.530000px;}
.y3a{bottom:267.510000px;}
.y224{bottom:267.780000px;}
.y62{bottom:267.870000px;}
.y256{bottom:270.840000px;}
.y26c{bottom:270.930000px;}
.y21a{bottom:272.460000px;}
.y174{bottom:275.520000px;}
.y7d{bottom:276.510000px;}
.yc5{bottom:278.490000px;}
.y9f{bottom:280.380000px;}
.ye6{bottom:285.240000px;}
.y11b{bottom:287.850000px;}
.y245{bottom:288.660000px;}
.y39{bottom:289.830000px;}
.y219{bottom:293.160000px;}
.y1a6{bottom:299.370000px;}
.yc4{bottom:300.810000px;}
.y61{bottom:302.250000px;}
.y9e{bottom:302.700000px;}
.y1de{bottom:302.940000px;}
.y172{bottom:305.670000px;}
.y255{bottom:306.840000px;}
.y26b{bottom:307.020000px;}
.ye5{bottom:307.560000px;}
.y11a{bottom:310.170000px;}
.y244{bottom:310.980000px;}
.y7c{bottom:311.070000px;}
.y20c{bottom:311.160000px;}
.y38{bottom:312.150000px;}
.y1a5{bottom:321.780000px;}
.y60{bottom:324.570000px;}
.y9d{bottom:325.110000px;}
.y217{bottom:329.250000px;}
.ye4{bottom:329.790000px;}
.y119{bottom:332.580000px;}
.y243{bottom:333.390000px;}
.y37{bottom:334.560000px;}
.yc3{bottom:335.370000px;}
.y171{bottom:336.000000px;}
.y254{bottom:342.930000px;}
.y26a{bottom:343.020000px;}
.y1a4{bottom:344.100000px;}
.y7b{bottom:345.360000px;}
.y5f{bottom:346.890000px;}
.y214{bottom:347.250000px;}
.y9c{bottom:347.430000px;}
.y118{bottom:354.900000px;}
.y242{bottom:355.710000px;}
.y36{bottom:356.790000px;}
.yc2{bottom:357.690000px;}
.ye3{bottom:364.260000px;}
.y212{bottom:365.250000px;}
.y16e{bottom:366.240000px;}
.y1a3{bottom:366.420000px;}
.y281{bottom:366.510000px;}
.y7a{bottom:367.680000px;}
.y5e{bottom:369.210000px;}
.y9b{bottom:369.750000px;}
.y117{bottom:377.220000px;}
.y241{bottom:378.030000px;}
.y253{bottom:379.020000px;}
.yc1{bottom:380.010000px;}
.y210{bottom:383.250000px;}
.ye2{bottom:386.580000px;}
.y1a2{bottom:388.740000px;}
.y79{bottom:390.000000px;}
.y269{bottom:390.810000px;}
.y35{bottom:391.080000px;}
.y5d{bottom:391.530000px;}
.y9a{bottom:392.250000px;}
.y16a{bottom:396.570000px;}
.y116{bottom:399.540000px;}
.y240{bottom:400.350000px;}
.y20e{bottom:401.250000px;}
.y280{bottom:402.600000px;}
.ye1{bottom:408.900000px;}
.y1a1{bottom:411.060000px;}
.y78{bottom:412.410000px;}
.y34{bottom:413.490000px;}
.y5c{bottom:413.940000px;}
.yc0{bottom:414.120000px;}
.y99{bottom:414.390000px;}
.y252{bottom:415.200000px;}
.y20a{bottom:419.430000px;}
.y23f{bottom:422.670000px;}
.y268{bottom:426.810000px;}
.y169{bottom:430.050000px;}
.ye0{bottom:431.220000px;}
.y133{bottom:432.540000px;}
.y1a0{bottom:433.380000px;}
.y115{bottom:433.740000px;}
.y1d2{bottom:434.730000px;}
.y33{bottom:435.810000px;}
.y5b{bottom:436.260000px;}
.ybf{bottom:436.620000px;}
.y98{bottom:437.070000px;}
.y27f{bottom:438.600000px;}
.y209{bottom:440.670000px;}
.y1e8{bottom:443.610000px;}
.y77{bottom:446.430000px;}
.y132{bottom:448.830000px;}
.y251{bottom:450.930000px;}
.y168{bottom:453.270000px;}
.y114{bottom:454.530000px;}
.y19f{bottom:455.790000px;}
.y23e{bottom:457.050000px;}
.y1d1{bottom:457.140000px;}
.y32{bottom:458.130000px;}
.y5a{bottom:458.580000px;}
.y97{bottom:459.030000px;}
.y267{bottom:462.900000px;}
.ydf{bottom:465.420000px;}
.y76{bottom:468.750000px;}
.y208{bottom:469.110000px;}
.y167{bottom:470.460000px;}
.ybe{bottom:470.820000px;}
.yfb{bottom:474.390000px;}
.y27e{bottom:474.690000px;}
.y19e{bottom:478.110000px;}
.y31{bottom:478.830000px;}
.y23d{bottom:479.370000px;}
.y1d0{bottom:479.460000px;}
.y223{bottom:480.900000px;}
.y96{bottom:481.530000px;}
.y250{bottom:487.020000px;}
.yde{bottom:487.740000px;}
.y207{bottom:488.640000px;}
.y166{bottom:489.990000px;}
.yf6{bottom:490.770000px;}
.yfa{bottom:490.860000px;}
.y75{bottom:491.070000px;}
.y59{bottom:492.960000px;}
.y113{bottom:494.310000px;}
.y266{bottom:498.900000px;}
.y30{bottom:500.160000px;}
.y23c{bottom:501.690000px;}
.y1cf{bottom:501.780000px;}
.y222{bottom:503.220000px;}
.y95{bottom:503.670000px;}
.ybd{bottom:505.560000px;}
.yf9{bottom:507.330000px;}
.ydd{bottom:510.060000px;}
.y27d{bottom:510.690000px;}
.y206{bottom:510.960000px;}
.y165{bottom:512.310000px;}
.y19d{bottom:512.400000px;}
.y74{bottom:513.390000px;}
.y112{bottom:515.010000px;}
.y58{bottom:515.280000px;}
.y24f{bottom:523.020000px;}
.y23b{bottom:524.010000px;}
.y1ce{bottom:524.100000px;}
.yf4{bottom:524.880000px;}
.y94{bottom:525.900000px;}
.ybc{bottom:527.430000px;}
.y2f{bottom:532.920000px;}
.y19c{bottom:533.100000px;}
.y205{bottom:533.280000px;}
.y164{bottom:534.720000px;}
.y265{bottom:534.990000px;}
.y73{bottom:535.800000px;}
.y57{bottom:537.690000px;}
.ydc{bottom:544.620000px;}
.y1cd{bottom:546.420000px;}
.y27c{bottom:546.780000px;}
.y17{bottom:547.590000px;}
.y93{bottom:548.400000px;}
.ybb{bottom:549.750000px;}
.y2e{bottom:553.620000px;}
.y204{bottom:555.600000px;}
.y163{bottom:557.040000px;}
.y72{bottom:558.030000px;}
.y24e{bottom:559.110000px;}
.y56{bottom:560.010000px;}
.y19b{bottom:562.710000px;}
.y16{bottom:566.580000px;}
.y23a{bottom:568.740000px;}
.y92{bottom:570.270000px;}
.y264{bottom:570.990000px;}
.yba{bottom:572.070000px;}
.y2d{bottom:574.350000px;}
.y203{bottom:577.950000px;}
.ydb{bottom:578.850000px;}
.y162{bottom:579.390000px;}
.y1cc{bottom:581.010000px;}
.y55{bottom:582.360000px;}
.y27b{bottom:582.810000px;}
.y19a{bottom:583.440000px;}
.yf3{bottom:589.860000px;}
.y71{bottom:592.710000px;}
.y91{bottom:592.890000px;}
.yb9{bottom:594.510000px;}
.y2c{bottom:595.050000px;}
.y10d{bottom:597.840000px;}
.yda{bottom:601.170000px;}
.y161{bottom:601.710000px;}
.y239{bottom:602.970000px;}
.y15{bottom:603.870000px;}
.y199{bottom:604.140000px;}
.y54{bottom:604.680000px;}
.y24d{bottom:607.020000px;}
.y263{bottom:607.200000px;}
.y202{bottom:612.510000px;}
.y90{bottom:615.210000px;}
.y2b{bottom:615.750000px;}
.yb8{bottom:617.010000px;}
.y27a{bottom:618.900000px;}
.yd9{bottom:623.490000px;}
.y160{bottom:624.030000px;}
.y14{bottom:624.570000px;}
.y198{bottom:624.840000px;}
.y70{bottom:626.910000px;}
.y53{bottom:627.000000px;}
.y201{bottom:633.210000px;}
.y2a{bottom:636.450000px;}
.y238{bottom:637.260000px;}
.y8f{bottom:637.530000px;}
.yb7{bottom:639.150000px;}
.y1cb{bottom:640.500000px;}
.y24c{bottom:643.020000px;}
.y13{bottom:645.270000px;}
.y197{bottom:645.540000px;}
.y15f{bottom:646.440000px;}
.y6f{bottom:649.230000px;}
.y52{bottom:649.410000px;}
.y279{bottom:654.900000px;}
.yf2{bottom:654.930000px;}
.y262{bottom:655.080000px;}
.y200{bottom:656.160000px;}
.y29{bottom:657.150000px;}
.yd8{bottom:658.050000px;}
.y237{bottom:659.670000px;}
.y8e{bottom:659.850000px;}
.y1ca{bottom:661.200000px;}
.yb6{bottom:661.740000px;}
.y10a{bottom:662.820000px;}
.y12{bottom:665.970000px;}
.y196{bottom:666.240000px;}
.y15e{bottom:668.760000px;}
.y6e{bottom:671.550000px;}
.y51{bottom:671.730000px;}
.y1ff{bottom:676.860000px;}
.yd7{bottom:680.370000px;}
.y1c9{bottom:681.900000px;}
.y236{bottom:681.990000px;}
.y8d{bottom:682.170000px;}
.yb5{bottom:683.790000px;}
.y195{bottom:686.940000px;}
.y15d{bottom:690.990000px;}
.y261{bottom:691.080000px;}
.y6d{bottom:693.870000px;}
.y50{bottom:694.050000px;}
.y28{bottom:695.850000px;}
.y17b{bottom:696.780000px;}
.y1fe{bottom:697.560000px;}
.y1c8{bottom:702.600000px;}
.yd6{bottom:702.690000px;}
.y235{bottom:704.310000px;}
.y8c{bottom:704.580000px;}
.y11{bottom:704.670000px;}
.y189{bottom:704.850000px;}
.yb4{bottom:706.290000px;}
.y6c{bottom:716.190000px;}
.y4f{bottom:716.370000px;}
.y27{bottom:716.550000px;}
.y1fd{bottom:718.260000px;}
.yf1{bottom:719.910000px;}
.y1c7{bottom:723.210000px;}
.y10{bottom:725.370000px;}
.y15c{bottom:725.550000px;}
.y192{bottom:725.820000px;}
.y234{bottom:726.630000px;}
.y278{bottom:726.990000px;}
.y8b{bottom:727.080000px;}
.y105{bottom:727.980000px;}
.yb3{bottom:728.520000px;}
.yd5{bottom:736.890000px;}
.y26{bottom:737.250000px;}
.y4e{bottom:738.690000px;}
.y1fc{bottom:738.960000px;}
.y1c6{bottom:743.910000px;}
.yf{bottom:746.070000px;}
.y15b{bottom:746.340000px;}
.y190{bottom:746.520000px;}
.y233{bottom:748.950000px;}
.y8a{bottom:749.130000px;}
.y6b{bottom:750.390000px;}
.yb2{bottom:750.930000px;}
.y25{bottom:757.950000px;}
.yd4{bottom:759.210000px;}
.y1fb{bottom:759.660000px;}
.y4d{bottom:761.100000px;}
.y260{bottom:762.810000px;}
.y277{bottom:763.080000px;}
.y24b{bottom:763.170000px;}
.y1c5{bottom:764.610000px;}
.y130{bottom:765.810000px;}
.y12f{bottom:765.900000px;}
.ye{bottom:766.770000px;}
.y18e{bottom:767.580000px;}
.y15a{bottom:769.380000px;}
.y232{bottom:771.270000px;}
.y89{bottom:771.630000px;}
.y6a{bottom:772.800000px;}
.yb1{bottom:773.340000px;}
.y24{bottom:778.650000px;}
.y1fa{bottom:780.360000px;}
.yd3{bottom:781.530000px;}
.y12d{bottom:782.280000px;}
.y4c{bottom:783.420000px;}
.yed{bottom:784.890000px;}
.y1c4{bottom:785.310000px;}
.yd{bottom:787.470000px;}
.y18b{bottom:788.550000px;}
.y159{bottom:790.080000px;}
.yef{bottom:790.200000px;}
.y231{bottom:793.680000px;}
.y88{bottom:793.770000px;}
.y69{bottom:795.120000px;}
.yb0{bottom:795.660000px;}
.y104{bottom:796.110000px;}
.y25f{bottom:798.900000px;}
.y276{bottom:799.260000px;}
.y23{bottom:799.350000px;}
.y122{bottom:799.740000px;}
.y1f9{bottom:801.060000px;}
.y1c3{bottom:806.010000px;}
.y144{bottom:807.990000px;}
.yc{bottom:808.170000px;}
.y187{bottom:809.160000px;}
.y24a{bottom:811.050000px;}
.y87{bottom:815.820000px;}
.yd2{bottom:815.910000px;}
.y230{bottom:816.000000px;}
.y4b{bottom:817.440000px;}
.yaf{bottom:817.890000px;}
.y1f8{bottom:821.760000px;}
.y103{bottom:826.170000px;}
.y1c2{bottom:826.710000px;}
.y186{bottom:833.460000px;}
.y155{bottom:833.550000px;}
.y25e{bottom:834.900000px;}
.y275{bottom:834.990000px;}
.y1a8{bottom:836.460000px;}
.y184{bottom:836.550000px;}
.y22{bottom:838.050000px;}
.yd1{bottom:838.230000px;}
.y86{bottom:838.320000px;}
.y4a{bottom:839.760000px;}
.y1f7{bottom:842.460000px;}
.y1b3{bottom:844.710000px;}
.yb{bottom:846.870000px;}
.y249{bottom:847.140000px;}
.y102{bottom:848.490000px;}
.y21{bottom:858.750000px;}
.y153{bottom:859.290000px;}
.y85{bottom:860.370000px;}
.yd0{bottom:860.550000px;}
.y49{bottom:862.080000px;}
.yae{bottom:862.260000px;}
.y1f6{bottom:863.160000px;}
.y185{bottom:864.960000px;}
.ya{bottom:867.570000px;}
.y101{bottom:870.810000px;}
.y25d{bottom:870.990000px;}
.y1be{bottom:871.980000px;}
.y22f{bottom:872.520000px;}
.y1d5{bottom:872.910000px;}
.y20{bottom:879.450000px;}
.y1ed{bottom:881.070000px;}
.ycf{bottom:882.870000px;}
.y48{bottom:884.400000px;}
.yad{bottom:884.580000px;}
.y150{bottom:884.760000px;}
.y9{bottom:888.270000px;}
.y100{bottom:893.130000px;}
.y22e{bottom:894.840000px;}
.y84{bottom:894.930000px;}
.y248{bottom:895.110000px;}
.y1bb{bottom:899.610000px;}
.y1f{bottom:900.150000px;}
.y47{bottom:906.810000px;}
.yac{bottom:906.900000px;}
.y25c{bottom:906.990000px;}
.y274{bottom:907.080000px;}
.y8{bottom:908.970000px;}
.y14e{bottom:910.590000px;}
.yff{bottom:915.450000px;}
.y22d{bottom:917.160000px;}
.yce{bottom:917.250000px;}
.y1f2{bottom:917.790000px;}
.y1e{bottom:920.940000px;}
.y1b8{bottom:926.790000px;}
.y46{bottom:929.130000px;}
.yab{bottom:929.310000px;}
.y247{bottom:931.200000px;}
.y14c{bottom:936.060000px;}
.y22c{bottom:939.480000px;}
.ycd{bottom:939.570000px;}
.y1d{bottom:941.640000px;}
.y25b{bottom:943.080000px;}
.y273{bottom:943.170000px;}
.y7{bottom:947.670000px;}
.yfe{bottom:949.830000px;}
.y45{bottom:951.450000px;}
.yaa{bottom:951.810000px;}
.y1b7{bottom:954.330000px;}
.y14a{bottom:961.530000px;}
.y22b{bottom:961.890000px;}
.ycc{bottom:961.980000px;}
.y1c{bottom:962.340000px;}
.y6{bottom:968.370000px;}
.y44{bottom:973.770000px;}
.ya9{bottom:973.860000px;}
.y246{bottom:979.080000px;}
.y272{bottom:979.350000px;}
.y1b5{bottom:981.690000px;}
.y1b{bottom:983.040000px;}
.ycb{bottom:984.210000px;}
.yfd{bottom:984.300000px;}
.y147{bottom:987.270000px;}
.y5{bottom:989.070000px;}
.y1eb{bottom:990.960000px;}
.y43{bottom:996.120000px;}
.ya8{bottom:996.570000px;}
.y1a{bottom:1003.770000px;}
.y22a{bottom:1006.470000px;}
.y1b1{bottom:1009.170000px;}
.y4{bottom:1009.800000px;}
.y142{bottom:1012.770000px;}
.y271{bottom:1015.110000px;}
.y2{bottom:1015.200000px;}
.ya7{bottom:1018.440000px;}
.y42{bottom:1018.530000px;}
.y19{bottom:1024.470000px;}
.y3{bottom:1030.500000px;}
.y1ea{bottom:1030.770000px;}
.y1d3{bottom:1033.740000px;}
.y1b0{bottom:1039.770000px;}
.y41{bottom:1040.850000px;}
.ya6{bottom:1040.940000px;}
.y229{bottom:1041.120000px;}
.y141{bottom:1041.840000px;}
.y1a7{bottom:1043.010000px;}
.y121{bottom:1044.810000px;}
.y1e9{bottom:1048.770000px;}
.y1{bottom:1051.200000px;}
.y11f{bottom:1056.240000px;}
.y18{bottom:1063.170000px;}
.y140{bottom:1065.960000px;}
.h8{height:13.500000px;}
.h16{height:13.590000px;}
.h44{height:16.830000px;}
.h40{height:16.920000px;}
.h43{height:17.100000px;}
.h2b{height:19.530000px;}
.h2d{height:19.620000px;}
.h29{height:19.890000px;}
.h1e{height:24.300000px;}
.h1d{height:24.390000px;}
.h1a{height:24.420000px;}
.h21{height:24.570000px;}
.h1c{height:24.660000px;}
.h18{height:24.750000px;}
.h35{height:26.100000px;}
.h30{height:26.190000px;}
.h32{height:26.400000px;}
.h33{height:26.460000px;}
.h23{height:29.070000px;}
.h25{height:29.160000px;}
.h27{height:29.250000px;}
.hc{height:29.970000px;}
.hb{height:30.060000px;}
.h41{height:33.431836px;}
.h46{height:34.920000px;}
.h3a{height:35.400000px;}
.h3c{height:35.460000px;}
.h3f{height:35.640000px;}
.h10{height:37.705078px;}
.h2e{height:40.590000px;}
.hd{height:41.978320px;}
.h4{height:46.000195px;}
.h3{height:46.482715px;}
.h22{height:50.130000px;}
.h2{height:50.273438px;}
.h1{height:50.800781px;}
.h7{height:52.417969px;}
.h45{height:52.920000px;}
.h9{height:53.709961px;}
.h37{height:53.730000px;}
.ha{height:53.829316px;}
.h47{height:54.299531px;}
.h6{height:58.429688px;}
.h5{height:59.343750px;}
.he{height:63.720000px;}
.h14{height:63.750000px;}
.h13{height:63.900000px;}
.h11{height:63.990000px;}
.h3e{height:72.180000px;}
.h20{height:75.600000px;}
.h36{height:81.000000px;}
.h2c{height:82.620000px;}
.h1f{height:101.430000px;}
.h34{height:108.540000px;}
.h3d{height:108.720000px;}
.h2a{height:124.200000px;}
.h42{height:125.190000px;}
.h3b{height:145.290000px;}
.h39{height:157.950000px;}
.h28{height:159.930000px;}
.h38{height:160.110000px;}
.h31{height:190.650000px;}
.h12{height:193.890000px;}
.h1b{height:203.700000px;}
.h2f{height:205.740000px;}
.h26{height:210.780000px;}
.h19{height:229.530000px;}
.h24{height:241.020000px;}
.h15{height:244.260000px;}
.h17{height:255.960000px;}
.hf{height:258.780000px;}
.h0{height:1188.000000px;}
.w2{width:8.370000px;}
.w3{width:8.460000px;}
.w3e{width:12.330000px;}
.w3a{width:12.420000px;}
.w43{width:13.590000px;}
.w30{width:14.940000px;}
.w36{width:15.030000px;}
.w13{width:15.300000px;}
.w53{width:15.840000px;}
.w50{width:15.930000px;}
.w55{width:16.200000px;}
.w34{width:16.560000px;}
.w37{width:16.680000px;}
.w18{width:17.370000px;}
.w57{width:17.460000px;}
.w58{width:17.550000px;}
.w47{width:18.630000px;}
.w1e{width:18.900000px;}
.w1b{width:19.170000px;}
.w26{width:19.200000px;}
.w21{width:19.260000px;}
.w17{width:20.070000px;}
.w46{width:20.340000px;}
.w4d{width:20.430000px;}
.w1f{width:21.060000px;}
.w23{width:21.090000px;}
.w45{width:27.000000px;}
.w42{width:27.090000px;}
.w44{width:27.120000px;}
.w38{width:32.940000px;}
.wb{width:33.030000px;}
.w31{width:33.060000px;}
.w10{width:33.300000px;}
.w5a{width:34.770000px;}
.w52{width:34.830000px;}
.w5b{width:35.010000px;}
.w59{width:35.100000px;}
.wd{width:36.270000px;}
.wa{width:36.300000px;}
.w16{width:36.450000px;}
.w4b{width:40.770000px;}
.w4e{width:40.800000px;}
.w27{width:41.670000px;}
.w25{width:41.760000px;}
.w22{width:41.940000px;}
.w29{width:42.030000px;}
.w2b{width:51.570000px;}
.w8{width:52.740000px;}
.w3c{width:53.010000px;}
.w4{width:54.720000px;}
.w2e{width:56.700000px;}
.w2a{width:56.730000px;}
.w19{width:62.910000px;}
.w35{width:64.920000px;}
.w3d{width:66.510000px;}
.w40{width:66.630000px;}
.w11{width:72.540000px;}
.w12{width:72.630000px;}
.wf{width:72.660000px;}
.w5{width:80.550000px;}
.w33{width:81.270000px;}
.w6{width:88.020000px;}
.w41{width:92.430000px;}
.w4a{width:100.170000px;}
.w4c{width:100.200000px;}
.w20{width:102.630000px;}
.w28{width:102.960000px;}
.w9{width:105.210000px;}
.w32{width:112.770000px;}
.w4f{width:119.250000px;}
.w56{width:136.470000px;}
.w3f{width:145.470000px;}
.w48{width:159.570000px;}
.w1d{width:163.830000px;}
.w39{width:171.360000px;}
.we{width:178.470000px;}
.w7{width:185.310000px;}
.w49{width:198.570000px;}
.w1c{width:203.790000px;}
.w54{width:220.800000px;}
.w15{width:223.020000px;}
.w3b{width:224.310000px;}
.w24{width:224.730000px;}
.w1a{width:264.720000px;}
.w51{width:271.560000px;}
.w2d{width:277.860000px;}
.w2f{width:305.850000px;}
.w2c{width:386.130000px;}
.wc{width:390.000000px;}
.w14{width:400.230000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:1.200000px;}
.x64{left:16.290000px;}
.x13{left:18.570000px;}
.x4b{left:20.460000px;}
.x85{left:21.870000px;}
.x17{left:27.870000px;}
.x63{left:30.420000px;}
.x4d{left:37.530000px;}
.x83{left:39.240000px;}
.x79{left:47.160000px;}
.x31{left:48.270000px;}
.x4a{left:68.700000px;}
.x5f{left:69.870000px;}
.x47{left:86.220000px;}
.x60{left:95.580000px;}
.x4{left:98.999986px;}
.x75{left:106.200000px;}
.x6{left:107.999986px;}
.x9{left:112.499986px;}
.xc{left:117.720000px;}
.x23{left:124.470000px;}
.x41{left:130.230000px;}
.xa{left:134.999986px;}
.x18{left:137.610000px;}
.x2b{left:144.450000px;}
.x44{left:150.120000px;}
.x8f{left:157.799986px;}
.x24{left:159.750000px;}
.xb{left:162.029986px;}
.xf{left:163.260000px;}
.x34{left:165.540000px;}
.x52{left:166.710000px;}
.x2e{left:170.760000px;}
.x1{left:172.919986px;}
.x53{left:181.740000px;}
.x35{left:184.440000px;}
.xd{left:186.480000px;}
.x3e{left:194.340000px;}
.x70{left:203.670000px;}
.x72{left:205.380000px;}
.x19{left:206.940000px;}
.x28{left:210.150000px;}
.x27{left:215.820000px;}
.x68{left:219.450000px;}
.x73{left:223.500000px;}
.x80{left:225.390000px;}
.x3c{left:226.470000px;}
.x4c{left:230.070000px;}
.x74{left:243.840000px;}
.x3d{left:245.370000px;}
.x69{left:246.540000px;}
.x71{left:249.210000px;}
.x11{left:256.140000px;}
.x2{left:258.599986px;}
.x54{left:263.100000px;}
.x55{left:278.400000px;}
.x20{left:279.570000px;}
.x65{left:285.960000px;}
.x38{left:287.400000px;}
.x89{left:293.700000px;}
.x66{left:298.380000px;}
.x3f{left:301.170000px;}
.x7d{left:303.240000px;}
.x39{left:306.570000px;}
.x8a{left:309.540000px;}
.x4e{left:311.340000px;}
.x21{left:312.870000px;}
.x7e{left:321.870000px;}
.x4f{left:326.370000px;}
.x25{left:337.230000px;}
.x81{left:344.640000px;}
.x3a{left:348.240000px;}
.x12{left:358.110000px;}
.x56{left:359.400000px;}
.x82{left:360.570000px;}
.x77{left:362.640000px;}
.x5b{left:364.890000px;}
.x3b{left:367.410000px;}
.x57{left:374.700000px;}
.x29{left:376.290000px;}
.x5c{left:377.310000px;}
.x78{left:381.270000px;}
.x1c{left:385.410000px;}
.x7{left:389.369986px;}
.x84{left:395.400000px;}
.x6a{left:404.400000px;}
.x50{left:407.640000px;}
.x2c{left:409.170000px;}
.x5{left:410.879986px;}
.x22{left:414.540000px;}
.x6b{left:416.730000px;}
.x1d{left:418.440000px;}
.x51{left:422.670000px;}
.x8{left:425.999986px;}
.x2d{left:428.340000px;}
.x3{left:430.589986px;}
.x76{left:440.670000px;}
.x5e{left:443.820000px;}
.x86{left:446.070000px;}
.x45{left:455.970000px;}
.x42{left:459.360000px;}
.x87{left:462.270000px;}
.x14{left:468.810000px;}
.x36{left:470.100000px;}
.x15{left:481.680000px;}
.x6c{left:483.270000px;}
.x37{left:489.300000px;}
.x1e{left:491.100000px;}
.x6d{left:495.690000px;}
.x8b{left:497.130000px;}
.x7f{left:500.100000px;}
.x46{left:503.970000px;}
.x43{left:507.420000px;}
.x8c{left:512.970000px;}
.x2a{left:518.670000px;}
.x61{left:522.690000px;}
.x1f{left:524.400000px;}
.x32{left:530.970000px;}
.x62{left:535.110000px;}
.x7a{left:540.870000px;}
.x8d{left:547.800000px;}
.x33{left:550.230000px;}
.x58{left:552.300000px;}
.x7b{left:559.500000px;}
.x16{left:560.970000px;}
.x67{left:562.200000px;}
.x8e{left:563.730000px;}
.x59{left:567.240000px;}
.x40{left:575.430000px;}
.x26{left:583.650000px;}
.x2f{left:592.170000px;}
.x1a{left:596.940000px;}
.x88{left:598.740000px;}
.x48{left:600.630000px;}
.x5a{left:603.990000px;}
.xe{left:609.480000px;}
.x30{left:611.070000px;}
.x5d{left:614.040000px;}
.x49{left:615.570000px;}
.x7c{left:618.900000px;}
.x1b{left:629.970000px;}
.x6e{left:641.130000px;}
.x6f{left:653.460000px;}
@media print{
.v1{vertical-align:-56.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.322667pt;}
.ls12{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-1.296000pt;}
.ls11{letter-spacing:-1.232000pt;}
.ls23{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-0.597333pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.279467pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.059733pt;}
.ls19{letter-spacing:-0.040320pt;}
.ls20{letter-spacing:-0.019520pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.019520pt;}
.lsa{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.059733pt;}
.ls2{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.080533pt;}
.ls13{letter-spacing:0.100267pt;}
.ls3{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.279467pt;}
.ls24{letter-spacing:0.420267pt;}
.ls10{letter-spacing:8.693333pt;}
.ls8{letter-spacing:29.994667pt;}
.ls7{letter-spacing:30.314667pt;}
.lsc{letter-spacing:294.560000pt;}
.lsb{letter-spacing:669.280000pt;}
.ws0{word-spacing:-64.000000pt;}
.wse{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws23{word-spacing:-15.060267pt;}
.ws1b{word-spacing:-14.919467pt;}
.ws15{word-spacing:-14.800000pt;}
.ws12{word-spacing:-14.740267pt;}
.ws1c{word-spacing:-14.720533pt;}
.ws13{word-spacing:-14.699733pt;}
.ws19{word-spacing:-14.680320pt;}
.ws1a{word-spacing:-14.659520pt;}
.ws18{word-spacing:-14.640000pt;}
.ws1f{word-spacing:-14.620480pt;}
.ws14{word-spacing:-14.599680pt;}
.ws17{word-spacing:-14.580267pt;}
.ws1e{word-spacing:-14.480000pt;}
.ws16{word-spacing:-14.360533pt;}
.ws21{word-spacing:-14.160000pt;}
.ws20{word-spacing:-14.042667pt;}
.ws22{word-spacing:-13.520000pt;}
.ws1d{word-spacing:-13.317333pt;}
.wsc{word-spacing:-10.880000pt;}
.wsb{word-spacing:-10.872107pt;}
.wsa{word-spacing:-10.848000pt;}
.wsd{word-spacing:-10.832000pt;}
.ws10{word-spacing:-9.616000pt;}
.ws11{word-spacing:-9.554773pt;}
.wsf{word-spacing:-9.552000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-4.202667pt;}
._6{margin-left:-3.050667pt;}
._0{margin-left:-1.856000pt;}
._2{margin-left:-0.960000pt;}
._1{width:0.960000pt;}
._1a{width:1.941333pt;}
._5{width:4.010667pt;}
._15{width:4.992000pt;}
._14{width:5.888000pt;}
._16{width:6.784000pt;}
._17{width:7.808000pt;}
._1d{width:8.832000pt;}
._4{width:10.922667pt;}
._19{width:11.818667pt;}
._1b{width:22.144000pt;}
._b{width:51.989333pt;}
._a{width:54.928000pt;}
._d{width:57.786667pt;}
._10{width:63.450667pt;}
._f{width:65.552000pt;}
._c{width:68.544000pt;}
._9{width:71.504000pt;}
._e{width:75.888000pt;}
._7{width:93.210667pt;}
._18{width:108.026667pt;}
._1f{width:148.666667pt;}
._1c{width:178.746667pt;}
._11{width:184.826667pt;}
._12{width:310.906667pt;}
._8{width:343.973333pt;}
._3{width:428.906667pt;}
._1e{width:510.053333pt;}
.fs5{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:48.106667pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.266667pt;}
.yf0{bottom:2.293333pt;}
.y120{bottom:2.320000pt;}
.y13f{bottom:2.346667pt;}
.yee{bottom:2.373333pt;}
.y1d4{bottom:2.400000pt;}
.y134{bottom:2.426667pt;}
.y12e{bottom:2.453333pt;}
.yf8{bottom:2.826667pt;}
.y183{bottom:2.853333pt;}
.y12c{bottom:2.933333pt;}
.y1e7{bottom:2.986667pt;}
.y211{bottom:5.040000pt;}
.y20b{bottom:5.120000pt;}
.y20f{bottom:5.280000pt;}
.y18c{bottom:6.160000pt;}
.y194{bottom:6.240000pt;}
.y188{bottom:6.480000pt;}
.y216{bottom:7.120000pt;}
.y213{bottom:7.200000pt;}
.y18d{bottom:7.680000pt;}
.y191{bottom:7.920000pt;}
.y14d{bottom:8.000000pt;}
.y148{bottom:8.026667pt;}
.y156{bottom:8.160000pt;}
.y14b{bottom:8.240000pt;}
.y143{bottom:8.320000pt;}
.y177{bottom:8.400000pt;}
.y14f{bottom:8.480000pt;}
.y1ef{bottom:8.506667pt;}
.y157{bottom:8.560000pt;}
.y151{bottom:8.640000pt;}
.y146{bottom:8.720000pt;}
.y1bf{bottom:8.800000pt;}
.y1bc{bottom:9.520000pt;}
.y1b2{bottom:9.600000pt;}
.y1b6{bottom:9.786667pt;}
.y1b9{bottom:9.840000pt;}
.y1c1{bottom:9.920000pt;}
.y16b{bottom:12.160000pt;}
.y16f{bottom:12.240000pt;}
.y173{bottom:12.320000pt;}
.yfc{bottom:16.746667pt;}
.yf7{bottom:16.826667pt;}
.y131{bottom:16.933333pt;}
.y218{bottom:17.360000pt;}
.y1dd{bottom:17.653333pt;}
.y1ec{bottom:17.786667pt;}
.y1f3{bottom:17.840000pt;}
.y1f0{bottom:17.920000pt;}
.y1f5{bottom:18.000000pt;}
.y1e6{bottom:19.146667pt;}
.y182{bottom:21.493333pt;}
.y193{bottom:22.400000pt;}
.y109{bottom:22.480000pt;}
.y110{bottom:22.640000pt;}
.y12b{bottom:25.893333pt;}
.y1af{bottom:27.413333pt;}
.y13d{bottom:29.866667pt;}
.y158{bottom:30.880000pt;}
.y215{bottom:33.360000pt;}
.y1c0{bottom:34.160000pt;}
.y1e5{bottom:35.146667pt;}
.y1dc{bottom:35.573333pt;}
.y181{bottom:40.213333pt;}
.y106{bottom:42.960000pt;}
.y111{bottom:43.066667pt;}
.y10e{bottom:43.120000pt;}
.y10b{bottom:43.200000pt;}
.y108{bottom:45.440000pt;}
.y10f{bottom:45.600000pt;}
.y12a{bottom:48.613333pt;}
.y1db{bottom:50.213333pt;}
.y1f4{bottom:50.480000pt;}
.y1e4{bottom:51.146667pt;}
.y1ae{bottom:51.893333pt;}
.y154{bottom:53.600000pt;}
.y13c{bottom:56.826667pt;}
.y1bd{bottom:58.320000pt;}
.y180{bottom:58.773333pt;}
.y18f{bottom:59.760000pt;}
.y1e3{bottom:67.226667pt;}
.y1da{bottom:68.133333pt;}
.y129{bottom:71.493333pt;}
.y1ad{bottom:76.293333pt;}
.y152{bottom:76.480000pt;}
.y17f{bottom:77.333333pt;}
.y1ba{bottom:82.800000pt;}
.y1d9{bottom:82.853333pt;}
.y1f1{bottom:83.040000pt;}
.y1e2{bottom:83.226667pt;}
.y13b{bottom:83.786667pt;}
.y128{bottom:94.213333pt;}
.y17e{bottom:95.973333pt;}
.y18a{bottom:96.720000pt;}
.y20d{bottom:97.600000pt;}
.y1e1{bottom:99.306667pt;}
.y1ac{bottom:100.613333pt;}
.y1d8{bottom:100.693333pt;}
.y270{bottom:102.080000pt;}
.y221{bottom:103.520000pt;}
.y17a{bottom:104.960000pt;}
.y83{bottom:105.680000pt;}
.y68{bottom:108.400000pt;}
.y13a{bottom:110.746667pt;}
.y25a{bottom:112.800000pt;}
.yec{bottom:113.520000pt;}
.y17d{bottom:114.533333pt;}
.y1e0{bottom:115.386667pt;}
.y1d7{bottom:115.440000pt;}
.y1ee{bottom:115.466667pt;}
.y127{bottom:117.013333pt;}
.y40{bottom:118.640000pt;}
.ya5{bottom:119.680000pt;}
.y220{bottom:121.920000pt;}
.y179{bottom:123.440000pt;}
.y1ab{bottom:125.093333pt;}
.y82{bottom:125.200000pt;}
.yca{bottom:127.280000pt;}
.y67{bottom:128.240000pt;}
.y1df{bottom:130.586667pt;}
.y17c{bottom:132.293333pt;}
.y1d6{bottom:132.480000pt;}
.yeb{bottom:133.120000pt;}
.y26f{bottom:134.080000pt;}
.y139{bottom:137.626667pt;}
.y3f{bottom:138.506667pt;}
.y228{bottom:138.826667pt;}
.y126{bottom:139.733333pt;}
.y13e{bottom:140.800000pt;}
.y259{bottom:144.586667pt;}
.y178{bottom:148.106667pt;}
.y66{bottom:148.186667pt;}
.y1aa{bottom:149.520000pt;}
.ya4{bottom:149.946667pt;}
.y21f{bottom:150.186667pt;}
.yea{bottom:152.746667pt;}
.y1b4{bottom:155.786667pt;}
.y81{bottom:155.946667pt;}
.y135{bottom:156.480000pt;}
.yc9{bottom:157.626667pt;}
.y3e{bottom:158.346667pt;}
.y10c{bottom:158.666667pt;}
.y125{bottom:162.533333pt;}
.y16c{bottom:164.106667pt;}
.y138{bottom:164.506667pt;}
.y26e{bottom:166.186667pt;}
.y149{bottom:167.386667pt;}
.y65{bottom:168.026667pt;}
.y21e{bottom:168.586667pt;}
.ya3{bottom:169.866667pt;}
.y1a9{bottom:173.120000pt;}
.y170{bottom:173.680000pt;}
.y258{bottom:176.666667pt;}
.yc8{bottom:177.626667pt;}
.y3d{bottom:178.186667pt;}
.y227{bottom:178.506667pt;}
.ye9{bottom:183.386667pt;}
.y124{bottom:185.360000pt;}
.y80{bottom:186.266667pt;}
.y21d{bottom:186.986667pt;}
.y64{bottom:187.866667pt;}
.ya2{bottom:189.706667pt;}
.y145{bottom:190.346667pt;}
.y176{bottom:191.066667pt;}
.y137{bottom:191.546667pt;}
.y11e{bottom:196.346667pt;}
.y3c{bottom:198.106667pt;}
.y26d{bottom:198.186667pt;}
.y226{bottom:198.426667pt;}
.y16d{bottom:200.560000pt;}
.ye8{bottom:203.306667pt;}
.y21c{bottom:205.386667pt;}
.y7f{bottom:206.106667pt;}
.y123{bottom:207.360000pt;}
.y63{bottom:207.706667pt;}
.yc7{bottom:207.866667pt;}
.y257{bottom:208.666667pt;}
.ya1{bottom:209.546667pt;}
.y11d{bottom:216.186667pt;}
.y107{bottom:216.346667pt;}
.y136{bottom:217.626667pt;}
.y3b{bottom:217.946667pt;}
.y175{bottom:218.026667pt;}
.y225{bottom:218.266667pt;}
.ye7{bottom:223.146667pt;}
.y21b{bottom:223.786667pt;}
.y7e{bottom:225.946667pt;}
.yc6{bottom:227.706667pt;}
.ya0{bottom:229.386667pt;}
.y11c{bottom:236.026667pt;}
.y3a{bottom:237.786667pt;}
.y224{bottom:238.026667pt;}
.y62{bottom:238.106667pt;}
.y256{bottom:240.746667pt;}
.y26c{bottom:240.826667pt;}
.y21a{bottom:242.186667pt;}
.y174{bottom:244.906667pt;}
.y7d{bottom:245.786667pt;}
.yc5{bottom:247.546667pt;}
.y9f{bottom:249.226667pt;}
.ye6{bottom:253.546667pt;}
.y11b{bottom:255.866667pt;}
.y245{bottom:256.586667pt;}
.y39{bottom:257.626667pt;}
.y219{bottom:260.586667pt;}
.y1a6{bottom:266.106667pt;}
.yc4{bottom:267.386667pt;}
.y61{bottom:268.666667pt;}
.y9e{bottom:269.066667pt;}
.y1de{bottom:269.280000pt;}
.y172{bottom:271.706667pt;}
.y255{bottom:272.746667pt;}
.y26b{bottom:272.906667pt;}
.ye5{bottom:273.386667pt;}
.y11a{bottom:275.706667pt;}
.y244{bottom:276.426667pt;}
.y7c{bottom:276.506667pt;}
.y20c{bottom:276.586667pt;}
.y38{bottom:277.466667pt;}
.y1a5{bottom:286.026667pt;}
.y60{bottom:288.506667pt;}
.y9d{bottom:288.986667pt;}
.y217{bottom:292.666667pt;}
.ye4{bottom:293.146667pt;}
.y119{bottom:295.626667pt;}
.y243{bottom:296.346667pt;}
.y37{bottom:297.386667pt;}
.yc3{bottom:298.106667pt;}
.y171{bottom:298.666667pt;}
.y254{bottom:304.826667pt;}
.y26a{bottom:304.906667pt;}
.y1a4{bottom:305.866667pt;}
.y7b{bottom:306.986667pt;}
.y5f{bottom:308.346667pt;}
.y214{bottom:308.666667pt;}
.y9c{bottom:308.826667pt;}
.y118{bottom:315.466667pt;}
.y242{bottom:316.186667pt;}
.y36{bottom:317.146667pt;}
.yc2{bottom:317.946667pt;}
.ye3{bottom:323.786667pt;}
.y212{bottom:324.666667pt;}
.y16e{bottom:325.546667pt;}
.y1a3{bottom:325.706667pt;}
.y281{bottom:325.786667pt;}
.y7a{bottom:326.826667pt;}
.y5e{bottom:328.186667pt;}
.y9b{bottom:328.666667pt;}
.y117{bottom:335.306667pt;}
.y241{bottom:336.026667pt;}
.y253{bottom:336.906667pt;}
.yc1{bottom:337.786667pt;}
.y210{bottom:340.666667pt;}
.ye2{bottom:343.626667pt;}
.y1a2{bottom:345.546667pt;}
.y79{bottom:346.666667pt;}
.y269{bottom:347.386667pt;}
.y35{bottom:347.626667pt;}
.y5d{bottom:348.026667pt;}
.y9a{bottom:348.666667pt;}
.y16a{bottom:352.506667pt;}
.y116{bottom:355.146667pt;}
.y240{bottom:355.866667pt;}
.y20e{bottom:356.666667pt;}
.y280{bottom:357.866667pt;}
.ye1{bottom:363.466667pt;}
.y1a1{bottom:365.386667pt;}
.y78{bottom:366.586667pt;}
.y34{bottom:367.546667pt;}
.y5c{bottom:367.946667pt;}
.yc0{bottom:368.106667pt;}
.y99{bottom:368.346667pt;}
.y252{bottom:369.066667pt;}
.y20a{bottom:372.826667pt;}
.y23f{bottom:375.706667pt;}
.y268{bottom:379.386667pt;}
.y169{bottom:382.266667pt;}
.ye0{bottom:383.306667pt;}
.y133{bottom:384.480000pt;}
.y1a0{bottom:385.226667pt;}
.y115{bottom:385.546667pt;}
.y1d2{bottom:386.426667pt;}
.y33{bottom:387.386667pt;}
.y5b{bottom:387.786667pt;}
.ybf{bottom:388.106667pt;}
.y98{bottom:388.506667pt;}
.y27f{bottom:389.866667pt;}
.y209{bottom:391.706667pt;}
.y1e8{bottom:394.320000pt;}
.y77{bottom:396.826667pt;}
.y132{bottom:398.960000pt;}
.y251{bottom:400.826667pt;}
.y168{bottom:402.906667pt;}
.y114{bottom:404.026667pt;}
.y19f{bottom:405.146667pt;}
.y23e{bottom:406.266667pt;}
.y1d1{bottom:406.346667pt;}
.y32{bottom:407.226667pt;}
.y5a{bottom:407.626667pt;}
.y97{bottom:408.026667pt;}
.y267{bottom:411.466667pt;}
.ydf{bottom:413.706667pt;}
.y76{bottom:416.666667pt;}
.y208{bottom:416.986667pt;}
.y167{bottom:418.186667pt;}
.ybe{bottom:418.506667pt;}
.yfb{bottom:421.680000pt;}
.y27e{bottom:421.946667pt;}
.y19e{bottom:424.986667pt;}
.y31{bottom:425.626667pt;}
.y23d{bottom:426.106667pt;}
.y1d0{bottom:426.186667pt;}
.y223{bottom:427.466667pt;}
.y96{bottom:428.026667pt;}
.y250{bottom:432.906667pt;}
.yde{bottom:433.546667pt;}
.y207{bottom:434.346667pt;}
.y166{bottom:435.546667pt;}
.yf6{bottom:436.240000pt;}
.yfa{bottom:436.320000pt;}
.y75{bottom:436.506667pt;}
.y59{bottom:438.186667pt;}
.y113{bottom:439.386667pt;}
.y266{bottom:443.466667pt;}
.y30{bottom:444.586667pt;}
.y23c{bottom:445.946667pt;}
.y1cf{bottom:446.026667pt;}
.y222{bottom:447.306667pt;}
.y95{bottom:447.706667pt;}
.ybd{bottom:449.386667pt;}
.yf9{bottom:450.960000pt;}
.ydd{bottom:453.386667pt;}
.y27d{bottom:453.946667pt;}
.y206{bottom:454.186667pt;}
.y165{bottom:455.386667pt;}
.y19d{bottom:455.466667pt;}
.y74{bottom:456.346667pt;}
.y112{bottom:457.786667pt;}
.y58{bottom:458.026667pt;}
.y24f{bottom:464.906667pt;}
.y23b{bottom:465.786667pt;}
.y1ce{bottom:465.866667pt;}
.yf4{bottom:466.560000pt;}
.y94{bottom:467.466667pt;}
.ybc{bottom:468.826667pt;}
.y2f{bottom:473.706667pt;}
.y19c{bottom:473.866667pt;}
.y205{bottom:474.026667pt;}
.y164{bottom:475.306667pt;}
.y265{bottom:475.546667pt;}
.y73{bottom:476.266667pt;}
.y57{bottom:477.946667pt;}
.ydc{bottom:484.106667pt;}
.y1cd{bottom:485.706667pt;}
.y27c{bottom:486.026667pt;}
.y17{bottom:486.746667pt;}
.y93{bottom:487.466667pt;}
.ybb{bottom:488.666667pt;}
.y2e{bottom:492.106667pt;}
.y204{bottom:493.866667pt;}
.y163{bottom:495.146667pt;}
.y72{bottom:496.026667pt;}
.y24e{bottom:496.986667pt;}
.y56{bottom:497.786667pt;}
.y19b{bottom:500.186667pt;}
.y16{bottom:503.626667pt;}
.y23a{bottom:505.546667pt;}
.y92{bottom:506.906667pt;}
.y264{bottom:507.546667pt;}
.yba{bottom:508.506667pt;}
.y2d{bottom:510.533333pt;}
.y203{bottom:513.733333pt;}
.ydb{bottom:514.533333pt;}
.y162{bottom:515.013333pt;}
.y1cc{bottom:516.453333pt;}
.y55{bottom:517.653333pt;}
.y27b{bottom:518.053333pt;}
.y19a{bottom:518.613333pt;}
.yf3{bottom:524.320000pt;}
.y71{bottom:526.853333pt;}
.y91{bottom:527.013333pt;}
.yb9{bottom:528.453333pt;}
.y2c{bottom:528.933333pt;}
.y10d{bottom:531.413333pt;}
.yda{bottom:534.373333pt;}
.y161{bottom:534.853333pt;}
.y239{bottom:535.973333pt;}
.y15{bottom:536.773333pt;}
.y199{bottom:537.013333pt;}
.y54{bottom:537.493333pt;}
.y24d{bottom:539.573333pt;}
.y263{bottom:539.733333pt;}
.y202{bottom:544.453333pt;}
.y90{bottom:546.853333pt;}
.y2b{bottom:547.333333pt;}
.yb8{bottom:548.453333pt;}
.y27a{bottom:550.133333pt;}
.yd9{bottom:554.213333pt;}
.y160{bottom:554.693333pt;}
.y14{bottom:555.173333pt;}
.y198{bottom:555.413333pt;}
.y70{bottom:557.253333pt;}
.y53{bottom:557.333333pt;}
.y201{bottom:562.853333pt;}
.y2a{bottom:565.733333pt;}
.y238{bottom:566.453333pt;}
.y8f{bottom:566.693333pt;}
.yb7{bottom:568.133333pt;}
.y1cb{bottom:569.333333pt;}
.y24c{bottom:571.573333pt;}
.y13{bottom:573.573333pt;}
.y197{bottom:573.813333pt;}
.y15f{bottom:574.613333pt;}
.y6f{bottom:577.093333pt;}
.y52{bottom:577.253333pt;}
.y279{bottom:582.133333pt;}
.yf2{bottom:582.160000pt;}
.y262{bottom:582.293333pt;}
.y200{bottom:583.253333pt;}
.y29{bottom:584.133333pt;}
.yd8{bottom:584.933333pt;}
.y237{bottom:586.373333pt;}
.y8e{bottom:586.533333pt;}
.y1ca{bottom:587.733333pt;}
.yb6{bottom:588.213333pt;}
.y10a{bottom:589.173333pt;}
.y12{bottom:591.973333pt;}
.y196{bottom:592.213333pt;}
.y15e{bottom:594.453333pt;}
.y6e{bottom:596.933333pt;}
.y51{bottom:597.093333pt;}
.y1ff{bottom:601.653333pt;}
.yd7{bottom:604.773333pt;}
.y1c9{bottom:606.133333pt;}
.y236{bottom:606.213333pt;}
.y8d{bottom:606.373333pt;}
.yb5{bottom:607.813333pt;}
.y195{bottom:610.613333pt;}
.y15d{bottom:614.213333pt;}
.y261{bottom:614.293333pt;}
.y6d{bottom:616.773333pt;}
.y50{bottom:616.933333pt;}
.y28{bottom:618.533333pt;}
.y17b{bottom:619.360000pt;}
.y1fe{bottom:620.053333pt;}
.y1c8{bottom:624.533333pt;}
.yd6{bottom:624.613333pt;}
.y235{bottom:626.053333pt;}
.y8c{bottom:626.293333pt;}
.y11{bottom:626.373333pt;}
.y189{bottom:626.533333pt;}
.yb4{bottom:627.813333pt;}
.y6c{bottom:636.613333pt;}
.y4f{bottom:636.773333pt;}
.y27{bottom:636.933333pt;}
.y1fd{bottom:638.453333pt;}
.yf1{bottom:639.920000pt;}
.y1c7{bottom:642.853333pt;}
.y10{bottom:644.773333pt;}
.y15c{bottom:644.933333pt;}
.y192{bottom:645.173333pt;}
.y234{bottom:645.893333pt;}
.y278{bottom:646.213333pt;}
.y8b{bottom:646.293333pt;}
.y105{bottom:647.093333pt;}
.yb3{bottom:647.573333pt;}
.yd5{bottom:655.013333pt;}
.y26{bottom:655.333333pt;}
.y4e{bottom:656.613333pt;}
.y1fc{bottom:656.853333pt;}
.y1c6{bottom:661.253333pt;}
.yf{bottom:663.173333pt;}
.y15b{bottom:663.413333pt;}
.y190{bottom:663.573333pt;}
.y233{bottom:665.733333pt;}
.y8a{bottom:665.893333pt;}
.y6b{bottom:667.013333pt;}
.yb2{bottom:667.493333pt;}
.y25{bottom:673.733333pt;}
.yd4{bottom:674.853333pt;}
.y1fb{bottom:675.253333pt;}
.y4d{bottom:676.533333pt;}
.y260{bottom:678.053333pt;}
.y277{bottom:678.293333pt;}
.y24b{bottom:678.373333pt;}
.y1c5{bottom:679.653333pt;}
.y130{bottom:680.720000pt;}
.y12f{bottom:680.800000pt;}
.ye{bottom:681.573333pt;}
.y18e{bottom:682.293333pt;}
.y15a{bottom:683.893333pt;}
.y232{bottom:685.573333pt;}
.y89{bottom:685.893333pt;}
.y6a{bottom:686.933333pt;}
.yb1{bottom:687.413333pt;}
.y24{bottom:692.133333pt;}
.y1fa{bottom:693.653333pt;}
.yd3{bottom:694.693333pt;}
.y12d{bottom:695.360000pt;}
.y4c{bottom:696.373333pt;}
.yed{bottom:697.680000pt;}
.y1c4{bottom:698.053333pt;}
.yd{bottom:699.973333pt;}
.y18b{bottom:700.933333pt;}
.y159{bottom:702.293333pt;}
.yef{bottom:702.400000pt;}
.y231{bottom:705.493333pt;}
.y88{bottom:705.573333pt;}
.y69{bottom:706.773333pt;}
.yb0{bottom:707.253333pt;}
.y104{bottom:707.653333pt;}
.y25f{bottom:710.133333pt;}
.y276{bottom:710.453333pt;}
.y23{bottom:710.533333pt;}
.y122{bottom:710.880000pt;}
.y1f9{bottom:712.053333pt;}
.y1c3{bottom:716.453333pt;}
.y144{bottom:718.213333pt;}
.yc{bottom:718.373333pt;}
.y187{bottom:719.253333pt;}
.y24a{bottom:720.933333pt;}
.y87{bottom:725.173333pt;}
.yd2{bottom:725.253333pt;}
.y230{bottom:725.333333pt;}
.y4b{bottom:726.613333pt;}
.yaf{bottom:727.013333pt;}
.y1f8{bottom:730.453333pt;}
.y103{bottom:734.373333pt;}
.y1c2{bottom:734.853333pt;}
.y186{bottom:740.853333pt;}
.y155{bottom:740.933333pt;}
.y25e{bottom:742.133333pt;}
.y275{bottom:742.213333pt;}
.y1a8{bottom:743.520000pt;}
.y184{bottom:743.600000pt;}
.y22{bottom:744.933333pt;}
.yd1{bottom:745.093333pt;}
.y86{bottom:745.173333pt;}
.y4a{bottom:746.453333pt;}
.y1f7{bottom:748.853333pt;}
.y1b3{bottom:750.853333pt;}
.yb{bottom:752.773333pt;}
.y249{bottom:753.013333pt;}
.y102{bottom:754.213333pt;}
.y21{bottom:763.333333pt;}
.y153{bottom:763.813333pt;}
.y85{bottom:764.773333pt;}
.yd0{bottom:764.933333pt;}
.y49{bottom:766.293333pt;}
.yae{bottom:766.453333pt;}
.y1f6{bottom:767.253333pt;}
.y185{bottom:768.853333pt;}
.ya{bottom:771.173333pt;}
.y101{bottom:774.053333pt;}
.y25d{bottom:774.213333pt;}
.y1be{bottom:775.093333pt;}
.y22f{bottom:775.573333pt;}
.y1d5{bottom:775.920000pt;}
.y20{bottom:781.733333pt;}
.y1ed{bottom:783.173333pt;}
.ycf{bottom:784.773333pt;}
.y48{bottom:786.133333pt;}
.yad{bottom:786.293333pt;}
.y150{bottom:786.453333pt;}
.y9{bottom:789.573333pt;}
.y100{bottom:793.893333pt;}
.y22e{bottom:795.413333pt;}
.y84{bottom:795.493333pt;}
.y248{bottom:795.653333pt;}
.y1bb{bottom:799.653333pt;}
.y1f{bottom:800.133333pt;}
.y47{bottom:806.053333pt;}
.yac{bottom:806.133333pt;}
.y25c{bottom:806.213333pt;}
.y274{bottom:806.293333pt;}
.y8{bottom:807.973333pt;}
.y14e{bottom:809.413333pt;}
.yff{bottom:813.733333pt;}
.y22d{bottom:815.253333pt;}
.yce{bottom:815.333333pt;}
.y1f2{bottom:815.813333pt;}
.y1e{bottom:818.613333pt;}
.y1b8{bottom:823.813333pt;}
.y46{bottom:825.893333pt;}
.yab{bottom:826.053333pt;}
.y247{bottom:827.733333pt;}
.y14c{bottom:832.053333pt;}
.y22c{bottom:835.093333pt;}
.ycd{bottom:835.173333pt;}
.y1d{bottom:837.013333pt;}
.y25b{bottom:838.293333pt;}
.y273{bottom:838.373333pt;}
.y7{bottom:842.373333pt;}
.yfe{bottom:844.293333pt;}
.y45{bottom:845.733333pt;}
.yaa{bottom:846.053333pt;}
.y1b7{bottom:848.293333pt;}
.y14a{bottom:854.693333pt;}
.y22b{bottom:855.013333pt;}
.ycc{bottom:855.093333pt;}
.y1c{bottom:855.413333pt;}
.y6{bottom:860.773333pt;}
.y44{bottom:865.573333pt;}
.ya9{bottom:865.653333pt;}
.y246{bottom:870.293333pt;}
.y272{bottom:870.533333pt;}
.y1b5{bottom:872.613333pt;}
.y1b{bottom:873.813333pt;}
.ycb{bottom:874.853333pt;}
.yfd{bottom:874.933333pt;}
.y147{bottom:877.573333pt;}
.y5{bottom:879.173333pt;}
.y1eb{bottom:880.853333pt;}
.y43{bottom:885.440000pt;}
.ya8{bottom:885.840000pt;}
.y1a{bottom:892.240000pt;}
.y22a{bottom:894.640000pt;}
.y1b1{bottom:897.040000pt;}
.y4{bottom:897.600000pt;}
.y142{bottom:900.240000pt;}
.y271{bottom:902.320000pt;}
.y2{bottom:902.400000pt;}
.ya7{bottom:905.280000pt;}
.y42{bottom:905.360000pt;}
.y19{bottom:910.640000pt;}
.y3{bottom:916.000000pt;}
.y1ea{bottom:916.240000pt;}
.y1d3{bottom:918.880000pt;}
.y1b0{bottom:924.240000pt;}
.y41{bottom:925.200000pt;}
.ya6{bottom:925.280000pt;}
.y229{bottom:925.440000pt;}
.y141{bottom:926.080000pt;}
.y1a7{bottom:927.120000pt;}
.y121{bottom:928.720000pt;}
.y1e9{bottom:932.240000pt;}
.y1{bottom:934.400000pt;}
.y11f{bottom:938.880000pt;}
.y18{bottom:945.040000pt;}
.y140{bottom:947.520000pt;}
.h8{height:12.000000pt;}
.h16{height:12.080000pt;}
.h44{height:14.960000pt;}
.h40{height:15.040000pt;}
.h43{height:15.200000pt;}
.h2b{height:17.360000pt;}
.h2d{height:17.440000pt;}
.h29{height:17.680000pt;}
.h1e{height:21.600000pt;}
.h1d{height:21.680000pt;}
.h1a{height:21.706667pt;}
.h21{height:21.840000pt;}
.h1c{height:21.920000pt;}
.h18{height:22.000000pt;}
.h35{height:23.200000pt;}
.h30{height:23.280000pt;}
.h32{height:23.466667pt;}
.h33{height:23.520000pt;}
.h23{height:25.840000pt;}
.h25{height:25.920000pt;}
.h27{height:26.000000pt;}
.hc{height:26.640000pt;}
.hb{height:26.720000pt;}
.h41{height:29.717188pt;}
.h46{height:31.040000pt;}
.h3a{height:31.466667pt;}
.h3c{height:31.520000pt;}
.h3f{height:31.680000pt;}
.h10{height:33.515625pt;}
.h2e{height:36.080000pt;}
.hd{height:37.314062pt;}
.h4{height:40.889062pt;}
.h3{height:41.317969pt;}
.h22{height:44.560000pt;}
.h2{height:44.687500pt;}
.h1{height:45.156250pt;}
.h7{height:46.593750pt;}
.h45{height:47.040000pt;}
.h9{height:47.742188pt;}
.h37{height:47.760000pt;}
.ha{height:47.848281pt;}
.h47{height:48.266250pt;}
.h6{height:51.937500pt;}
.h5{height:52.750000pt;}
.he{height:56.640000pt;}
.h14{height:56.666667pt;}
.h13{height:56.800000pt;}
.h11{height:56.880000pt;}
.h3e{height:64.160000pt;}
.h20{height:67.200000pt;}
.h36{height:72.000000pt;}
.h2c{height:73.440000pt;}
.h1f{height:90.160000pt;}
.h34{height:96.480000pt;}
.h3d{height:96.640000pt;}
.h2a{height:110.400000pt;}
.h42{height:111.280000pt;}
.h3b{height:129.146667pt;}
.h39{height:140.400000pt;}
.h28{height:142.160000pt;}
.h38{height:142.320000pt;}
.h31{height:169.466667pt;}
.h12{height:172.346667pt;}
.h1b{height:181.066667pt;}
.h2f{height:182.880000pt;}
.h26{height:187.360000pt;}
.h19{height:204.026667pt;}
.h24{height:214.240000pt;}
.h15{height:217.120000pt;}
.h17{height:227.520000pt;}
.hf{height:230.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:7.440000pt;}
.w3{width:7.520000pt;}
.w3e{width:10.960000pt;}
.w3a{width:11.040000pt;}
.w43{width:12.080000pt;}
.w30{width:13.280000pt;}
.w36{width:13.360000pt;}
.w13{width:13.600000pt;}
.w53{width:14.080000pt;}
.w50{width:14.160000pt;}
.w55{width:14.400000pt;}
.w34{width:14.720000pt;}
.w37{width:14.826667pt;}
.w18{width:15.440000pt;}
.w57{width:15.520000pt;}
.w58{width:15.600000pt;}
.w47{width:16.560000pt;}
.w1e{width:16.800000pt;}
.w1b{width:17.040000pt;}
.w26{width:17.066667pt;}
.w21{width:17.120000pt;}
.w17{width:17.840000pt;}
.w46{width:18.080000pt;}
.w4d{width:18.160000pt;}
.w1f{width:18.720000pt;}
.w23{width:18.746667pt;}
.w45{width:24.000000pt;}
.w42{width:24.080000pt;}
.w44{width:24.106667pt;}
.w38{width:29.280000pt;}
.wb{width:29.360000pt;}
.w31{width:29.386667pt;}
.w10{width:29.600000pt;}
.w5a{width:30.906667pt;}
.w52{width:30.960000pt;}
.w5b{width:31.120000pt;}
.w59{width:31.200000pt;}
.wd{width:32.240000pt;}
.wa{width:32.266667pt;}
.w16{width:32.400000pt;}
.w4b{width:36.240000pt;}
.w4e{width:36.266667pt;}
.w27{width:37.040000pt;}
.w25{width:37.120000pt;}
.w22{width:37.280000pt;}
.w29{width:37.360000pt;}
.w2b{width:45.840000pt;}
.w8{width:46.880000pt;}
.w3c{width:47.120000pt;}
.w4{width:48.640000pt;}
.w2e{width:50.400000pt;}
.w2a{width:50.426667pt;}
.w19{width:55.920000pt;}
.w35{width:57.706667pt;}
.w3d{width:59.120000pt;}
.w40{width:59.226667pt;}
.w11{width:64.480000pt;}
.w12{width:64.560000pt;}
.wf{width:64.586667pt;}
.w5{width:71.600000pt;}
.w33{width:72.240000pt;}
.w6{width:78.240000pt;}
.w41{width:82.160000pt;}
.w4a{width:89.040000pt;}
.w4c{width:89.066667pt;}
.w20{width:91.226667pt;}
.w28{width:91.520000pt;}
.w9{width:93.520000pt;}
.w32{width:100.240000pt;}
.w4f{width:106.000000pt;}
.w56{width:121.306667pt;}
.w3f{width:129.306667pt;}
.w48{width:141.840000pt;}
.w1d{width:145.626667pt;}
.w39{width:152.320000pt;}
.we{width:158.640000pt;}
.w7{width:164.720000pt;}
.w49{width:176.506667pt;}
.w1c{width:181.146667pt;}
.w54{width:196.266667pt;}
.w15{width:198.240000pt;}
.w3b{width:199.386667pt;}
.w24{width:199.760000pt;}
.w1a{width:235.306667pt;}
.w51{width:241.386667pt;}
.w2d{width:246.986667pt;}
.w2f{width:271.866667pt;}
.w2c{width:343.226667pt;}
.wc{width:346.666667pt;}
.w14{width:355.760000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.066667pt;}
.x64{left:14.480000pt;}
.x13{left:16.506667pt;}
.x4b{left:18.186667pt;}
.x85{left:19.440000pt;}
.x17{left:24.773333pt;}
.x63{left:27.040000pt;}
.x4d{left:33.360000pt;}
.x83{left:34.880000pt;}
.x79{left:41.920000pt;}
.x31{left:42.906667pt;}
.x4a{left:61.066667pt;}
.x5f{left:62.106667pt;}
.x47{left:76.640000pt;}
.x60{left:84.960000pt;}
.x4{left:87.999988pt;}
.x75{left:94.400000pt;}
.x6{left:95.999988pt;}
.x9{left:99.999988pt;}
.xc{left:104.640000pt;}
.x23{left:110.640000pt;}
.x41{left:115.760000pt;}
.xa{left:119.999988pt;}
.x18{left:122.320000pt;}
.x2b{left:128.400000pt;}
.x44{left:133.440000pt;}
.x8f{left:140.266655pt;}
.x24{left:142.000000pt;}
.xb{left:144.026655pt;}
.xf{left:145.120000pt;}
.x34{left:147.146667pt;}
.x52{left:148.186667pt;}
.x2e{left:151.786667pt;}
.x1{left:153.706655pt;}
.x53{left:161.546667pt;}
.x35{left:163.946667pt;}
.xd{left:165.760000pt;}
.x3e{left:172.746667pt;}
.x70{left:181.040000pt;}
.x72{left:182.560000pt;}
.x19{left:183.946667pt;}
.x28{left:186.800000pt;}
.x27{left:191.840000pt;}
.x68{left:195.066667pt;}
.x73{left:198.666667pt;}
.x80{left:200.346667pt;}
.x3c{left:201.306667pt;}
.x4c{left:204.506667pt;}
.x74{left:216.746667pt;}
.x3d{left:218.106667pt;}
.x69{left:219.146667pt;}
.x71{left:221.520000pt;}
.x11{left:227.680000pt;}
.x2{left:229.866655pt;}
.x54{left:233.866667pt;}
.x55{left:247.466667pt;}
.x20{left:248.506667pt;}
.x65{left:254.186667pt;}
.x38{left:255.466667pt;}
.x89{left:261.066667pt;}
.x66{left:265.226667pt;}
.x3f{left:267.706667pt;}
.x7d{left:269.546667pt;}
.x39{left:272.506667pt;}
.x8a{left:275.146667pt;}
.x4e{left:276.746667pt;}
.x21{left:278.106667pt;}
.x7e{left:286.106667pt;}
.x4f{left:290.106667pt;}
.x25{left:299.760000pt;}
.x81{left:306.346667pt;}
.x3a{left:309.546667pt;}
.x12{left:318.320000pt;}
.x56{left:319.466667pt;}
.x82{left:320.506667pt;}
.x77{left:322.346667pt;}
.x5b{left:324.346667pt;}
.x3b{left:326.586667pt;}
.x57{left:333.066667pt;}
.x29{left:334.480000pt;}
.x5c{left:335.386667pt;}
.x78{left:338.906667pt;}
.x1c{left:342.586667pt;}
.x7{left:346.106655pt;}
.x84{left:351.466667pt;}
.x6a{left:359.466667pt;}
.x50{left:362.346667pt;}
.x2c{left:363.706667pt;}
.x5{left:365.226655pt;}
.x22{left:368.480000pt;}
.x6b{left:370.426667pt;}
.x1d{left:371.946667pt;}
.x51{left:375.706667pt;}
.x8{left:378.666655pt;}
.x2d{left:380.746667pt;}
.x3{left:382.746655pt;}
.x76{left:391.706667pt;}
.x5e{left:394.506667pt;}
.x86{left:396.506667pt;}
.x45{left:405.306667pt;}
.x42{left:408.320000pt;}
.x87{left:410.906667pt;}
.x14{left:416.720000pt;}
.x36{left:417.866667pt;}
.x15{left:428.160000pt;}
.x6c{left:429.573333pt;}
.x37{left:434.933333pt;}
.x1e{left:436.533333pt;}
.x6d{left:440.613333pt;}
.x8b{left:441.893333pt;}
.x7f{left:444.533333pt;}
.x46{left:447.973333pt;}
.x43{left:451.040000pt;}
.x8c{left:455.973333pt;}
.x2a{left:461.040000pt;}
.x61{left:464.613333pt;}
.x1f{left:466.133333pt;}
.x32{left:471.973333pt;}
.x62{left:475.653333pt;}
.x7a{left:480.773333pt;}
.x8d{left:486.933333pt;}
.x33{left:489.093333pt;}
.x58{left:490.933333pt;}
.x7b{left:497.333333pt;}
.x16{left:498.640000pt;}
.x67{left:499.733333pt;}
.x8e{left:501.093333pt;}
.x59{left:504.213333pt;}
.x40{left:511.493333pt;}
.x26{left:518.800000pt;}
.x2f{left:526.373333pt;}
.x1a{left:530.613333pt;}
.x88{left:532.213333pt;}
.x48{left:533.893333pt;}
.x5a{left:536.880000pt;}
.xe{left:541.760000pt;}
.x30{left:543.173333pt;}
.x5d{left:545.813333pt;}
.x49{left:547.173333pt;}
.x7c{left:550.133333pt;}
.x1b{left:559.973333pt;}
.x6e{left:569.893333pt;}
.x6f{left:580.853333pt;}
}




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