
    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_9520976d7d20f5455e90124d.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_c4832da5c9227ddc272e4cb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_deb5c34c02f08e9eba07a64f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a2bae3dc29f08a0376da013.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_83e45d0df4aabaada44056e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b668e92951b59cefbb98bd8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3986541d892ffb1547799e8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.149414;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_4c0054a5230ef6dc3ac40235.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0f66ab489bd30577744627fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ba466252d7e479c38218de9e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e2cfcef546efbff84b32a3ab.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8aa851a7cd0f38ea91f91f39.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsf{letter-spacing:-3.708000px;}
.ls5{letter-spacing:-2.520000px;}
.ls11{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-0.804000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.594000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.229800px;}
.ls10{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.126000px;}
.ls1d{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.203400px;}
.ls1e{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.276600px;}
.lse{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.292200px;}
.ls24{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.738000px;}
.ls1b{letter-spacing:0.792000px;}
.ls22{letter-spacing:25.308000px;}
.ls9{letter-spacing:52.668000px;}
.lsa{letter-spacing:68.508000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.ws12{word-spacing:-54.000000px;}
.ws15{word-spacing:-18.808440px;}
.wsf{word-spacing:-18.288000px;}
.wse{word-spacing:-18.000000px;}
.ws1c{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.595960px;}
.ws19{word-spacing:-14.555304px;}
.ws17{word-spacing:-14.238000px;}
.ws11{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.824000px;}
.ws1e{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.284000px;}
.ws14{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.798000px;}
.ws6{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.905000px;}
.wsb{word-spacing:-10.527600px;}
.wsd{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.540000px;}
.ws3{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
.ws1a{word-spacing:92.365440px;}
.ws1d{word-spacing:108.276000px;}
._4{margin-left:-9.351600px;}
._24{margin-left:-7.563120px;}
._29{margin-left:-6.495120px;}
._23{margin-left:-4.801680px;}
._7{margin-left:-3.351600px;}
._8{margin-left:-2.266080px;}
._2{margin-left:-1.192320px;}
._0{width:1.315440px;}
._1{width:2.469360px;}
._c{width:4.223280px;}
._b{width:5.704080px;}
._a{width:7.128000px;}
._d{width:8.156640px;}
._12{width:9.165120px;}
._11{width:10.264320px;}
._10{width:12.258000px;}
._13{width:14.958000px;}
._f{width:16.524000px;}
._9{width:18.252000px;}
._e{width:19.278000px;}
._15{width:20.574000px;}
._16{width:22.414320px;}
._14{width:23.598000px;}
._17{width:25.596000px;}
._1b{width:26.872560px;}
._20{width:28.369440px;}
._5{width:29.522880px;}
._6{width:31.211280px;}
._1c{width:32.238000px;}
._1d{width:33.589920px;}
._1f{width:34.746240px;}
._21{width:36.558000px;}
._26{width:38.178000px;}
._28{width:39.852000px;}
._27{width:41.148000px;}
._2f{width:42.325200px;}
._30{width:43.686000px;}
._2c{width:45.522000px;}
._2b{width:46.602000px;}
._32{width:48.204000px;}
._39{width:50.706000px;}
._3a{width:52.236000px;}
._31{width:54.290640px;}
._25{width:55.584000px;}
._1e{width:58.536000px;}
._22{width:60.017760px;}
._2a{width:61.272720px;}
._33{width:62.297280px;}
._2e{width:64.692000px;}
._2d{width:65.826000px;}
._18{width:67.230000px;}
._19{width:68.904000px;}
._37{width:71.442000px;}
._36{width:72.468000px;}
._38{width:73.678320px;}
._1a{width:79.650000px;}
._34{width:183.006000px;}
._35{width:184.248000px;}
._3{width:407.783280px;}
.fca{color:rgb(24,23,23);}
.fc7{color:transparent;}
.fc6{color:rgb(0,31,95);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc9{color:rgb(89,89,89);}
.fc8{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs9{font-size:63.504000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:2.880000px;}
.ye6{bottom:3.240000px;}
.yeb{bottom:3.420000px;}
.y31{bottom:3.780000px;}
.y10f{bottom:5.220000px;}
.y111{bottom:5.400000px;}
.y1f8{bottom:5.565000px;}
.y10d{bottom:5.580000px;}
.y35{bottom:5.610000px;}
.y112{bottom:5.760000px;}
.y192{bottom:14.040000px;}
.y191{bottom:14.400000px;}
.y19b{bottom:14.625000px;}
.y1a0{bottom:15.300000px;}
.y199{bottom:16.380000px;}
.y18f{bottom:16.710000px;}
.y1d7{bottom:19.050000px;}
.y30{bottom:21.060000px;}
.y34{bottom:23.430000px;}
.y1fb{bottom:23.580000px;}
.y228{bottom:25.560000px;}
.y229{bottom:25.740000px;}
.y227{bottom:25.920000px;}
.y231{bottom:25.965000px;}
.y22a{bottom:26.100000px;}
.y151{bottom:26.280000px;}
.y14f{bottom:26.325000px;}
.y152{bottom:26.640000px;}
.y158{bottom:26.670000px;}
.y14e{bottom:26.685000px;}
.y1a2{bottom:32.040000px;}
.y19f{bottom:33.120000px;}
.y1a6{bottom:33.300000px;}
.y198{bottom:34.020000px;}
.y33{bottom:41.430000px;}
.y15e{bottom:46.650000px;}
.y2f{bottom:49.140000px;}
.y57{bottom:58.500000px;}
.y2e{bottom:66.960000px;}
.y19d{bottom:68.580000px;}
.y13d{bottom:69.660000px;}
.y4{bottom:76.860000px;}
.y56{bottom:77.220000px;}
.y22e{bottom:84.645000px;}
.y2d{bottom:84.780000px;}
.y16f{bottom:93.060000px;}
.y13a{bottom:95.040000px;}
.y53{bottom:95.760000px;}
.y27f{bottom:97.200000px;}
.yba{bottom:97.560000px;}
.y25e{bottom:100.260000px;}
.y18a{bottom:101.700000px;}
.y1fe{bottom:102.240000px;}
.y2c{bottom:102.780000px;}
.y45{bottom:104.580000px;}
.y6{bottom:105.120000px;}
.y185{bottom:106.380000px;}
.y8e{bottom:108.900000px;}
.y1d3{bottom:109.335000px;}
.y16e{bottom:110.880000px;}
.y52{bottom:113.580000px;}
.y27e{bottom:115.020000px;}
.y139{bottom:117.540000px;}
.y25d{bottom:118.080000px;}
.y2b9{bottom:119.160000px;}
.y13b{bottom:120.060000px;}
.y2b{bottom:120.600000px;}
.y225{bottom:121.320000px;}
.y1d0{bottom:121.680000px;}
.y44{bottom:122.580000px;}
.y184{bottom:124.200000px;}
.yb9{bottom:124.560000px;}
.y1fd{bottom:126.180000px;}
.y8d{bottom:126.720000px;}
.y16d{bottom:128.700000px;}
.y10b{bottom:129.780000px;}
.y51{bottom:131.580000px;}
.y27d{bottom:133.020000px;}
.y13e{bottom:135.570000px;}
.y25c{bottom:136.080000px;}
.y17d{bottom:137.700000px;}
.y224{bottom:139.140000px;}
.y43{bottom:140.400000px;}
.y183{bottom:142.020000px;}
.y8c{bottom:144.540000px;}
.y155{bottom:145.110000px;}
.y16c{bottom:146.520000px;}
.y2a{bottom:147.420000px;}
.y1fc{bottom:148.500000px;}
.y50{bottom:149.400000px;}
.y2b8{bottom:150.120000px;}
.y188{bottom:151.020000px;}
.yb8{bottom:151.740000px;}
.y295{bottom:153.180000px;}
.y25b{bottom:153.900000px;}
.y17c{bottom:155.520000px;}
.y223{bottom:156.960000px;}
.y42{bottom:158.220000px;}
.y27c{bottom:159.840000px;}
.y182{bottom:160.020000px;}
.y1fa{bottom:162.900000px;}
.y16b{bottom:164.340000px;}
.y29{bottom:165.240000px;}
.y144{bottom:165.270000px;}
.y4f{bottom:167.220000px;}
.y1cf{bottom:167.580000px;}
.y2b7{bottom:167.940000px;}
.y187{bottom:169.020000px;}
.yb7{bottom:169.560000px;}
.y8b{bottom:171.000000px;}
.y294{bottom:171.180000px;}
.y25a{bottom:171.720000px;}
.y18b{bottom:171.975000px;}
.y17b{bottom:173.340000px;}
.y13c{bottom:174.705000px;}
.y222{bottom:174.780000px;}
.y10a{bottom:175.680000px;}
.y41{bottom:176.040000px;}
.y1d2{bottom:177.120000px;}
.y27b{bottom:177.660000px;}
.y16a{bottom:182.160000px;}
.y28{bottom:183.090000px;}
.y4e{bottom:185.040000px;}
.y181{bottom:186.480000px;}
.y186{bottom:186.840000px;}
.y293{bottom:189.000000px;}
.y259{bottom:189.540000px;}
.y17a{bottom:191.160000px;}
.y221{bottom:192.600000px;}
.y143{bottom:194.145000px;}
.y2b6{bottom:194.760000px;}
.y18c{bottom:195.150000px;}
.y27a{bottom:195.480000px;}
.yb6{bottom:196.380000px;}
.y8a{bottom:198.180000px;}
.y169{bottom:200.160000px;}
.y1f9{bottom:200.880000px;}
.y27{bottom:201.090000px;}
.y40{bottom:202.860000px;}
.y258{bottom:207.390000px;}
.y179{bottom:209.190000px;}
.y220{bottom:210.630000px;}
.y2b5{bottom:212.610000px;}
.y1a5{bottom:213.330000px;}
.y1ce{bottom:213.690000px;}
.yb5{bottom:214.410000px;}
.y1d4{bottom:214.560000px;}
.y109{bottom:215.490000px;}
.y292{bottom:215.850000px;}
.ye1{bottom:216.030000px;}
.y89{bottom:216.210000px;}
.y168{bottom:218.010000px;}
.y26{bottom:218.910000px;}
.y3f{bottom:220.890000px;}
.y142{bottom:223.050000px;}
.y257{bottom:225.210000px;}
.y178{bottom:227.010000px;}
.y21f{bottom:228.450000px;}
.y279{bottom:231.330000px;}
.yb4{bottom:233.130000px;}
.y108{bottom:233.310000px;}
.y291{bottom:233.670000px;}
.ye0{bottom:233.850000px;}
.y88{bottom:234.030000px;}
.y1bf{bottom:236.010000px;}
.y25{bottom:236.730000px;}
.y3e{bottom:238.710000px;}
.y1f7{bottom:238.905000px;}
.y2b4{bottom:239.430000px;}
.y256{bottom:243.210000px;}
.y167{bottom:244.830000px;}
.y1cd{bottom:245.010000px;}
.y21e{bottom:246.270000px;}
.y1d5{bottom:247.140000px;}
.y13f{bottom:247.245000px;}
.y278{bottom:249.150000px;}
.y1a4{bottom:251.130000px;}
.y107{bottom:251.310000px;}
.y290{bottom:251.490000px;}
.ydf{bottom:251.670000px;}
.y87{bottom:251.850000px;}
.y141{bottom:251.925000px;}
.y177{bottom:253.830000px;}
.y1be{bottom:254.010000px;}
.y24{bottom:254.550000px;}
.y3d{bottom:256.530000px;}
.y18e{bottom:257.370000px;}
.y2b3{bottom:257.430000px;}
.y255{bottom:261.030000px;}
.y166{bottom:262.650000px;}
.y1cc{bottom:263.010000px;}
.y21d{bottom:264.090000px;}
.y4d{bottom:265.530000px;}
.y277{bottom:266.970000px;}
.y106{bottom:269.130000px;}
.y86{bottom:269.670000px;}
.yb3{bottom:269.850000px;}
.y176{bottom:271.650000px;}
.y1bd{bottom:271.830000px;}
.y23{bottom:272.370000px;}
.y3c{bottom:274.350000px;}
.yde{bottom:278.490000px;}
.y254{bottom:278.850000px;}
.y165{bottom:280.470000px;}
.y1cb{bottom:280.830000px;}
.y18d{bottom:281.850000px;}
.y21c{bottom:281.910000px;}
.y4c{bottom:283.350000px;}
.y2b2{bottom:284.250000px;}
.y1a3{bottom:286.590000px;}
.y105{bottom:286.950000px;}
.y85{bottom:287.490000px;}
.y1f6{bottom:287.850000px;}
.yb2{bottom:288.750000px;}
.y175{bottom:289.470000px;}
.y3b{bottom:292.170000px;}
.y276{bottom:293.430000px;}
.y28f{bottom:296.310000px;}
.ydd{bottom:296.490000px;}
.y164{bottom:298.470000px;}
.y1bc{bottom:298.650000px;}
.y22{bottom:299.190000px;}
.y1d6{bottom:300.450000px;}
.y4b{bottom:301.170000px;}
.y2b1{bottom:302.070000px;}
.y104{bottom:304.770000px;}
.y84{bottom:305.490000px;}
.y253{bottom:305.670000px;}
.yb1{bottom:307.470000px;}
.y21b{bottom:308.910000px;}
.y3a{bottom:309.990000px;}
.y28e{bottom:314.130000px;}
.ydc{bottom:314.310000px;}
.y1f5{bottom:314.850000px;}
.y163{bottom:316.290000px;}
.y1bb{bottom:316.470000px;}
.y21{bottom:317.190000px;}
.y17{bottom:318.090000px;}
.y4a{bottom:318.990000px;}
.y2b0{bottom:319.890000px;}
.y275{bottom:320.610000px;}
.y19c{bottom:322.050000px;}
.y83{bottom:323.310000px;}
.y252{bottom:323.490000px;}
.y174{bottom:325.290000px;}
.y1ca{bottom:325.470000px;}
.y21a{bottom:326.730000px;}
.y39{bottom:327.990000px;}
.y103{bottom:331.590000px;}
.ydb{bottom:332.130000px;}
.y1f4{bottom:332.670000px;}
.y162{bottom:334.110000px;}
.y1ba{bottom:334.290000px;}
.y20{bottom:335.010000px;}
.yb0{bottom:335.190000px;}
.y49{bottom:336.990000px;}
.y274{bottom:338.430000px;}
.y16{bottom:340.950000px;}
.y82{bottom:341.130000px;}
.y251{bottom:341.490000px;}
.y173{bottom:343.110000px;}
.y1c9{bottom:343.290000px;}
.y219{bottom:344.550000px;}
.y38{bottom:345.810000px;}
.y2af{bottom:346.710000px;}
.y102{bottom:349.590000px;}
.yda{bottom:349.950000px;}
.y1f3{bottom:350.490000px;}
.y161{bottom:351.930000px;}
.y1b9{bottom:352.290000px;}
.y1f{bottom:352.830000px;}
.yaf{bottom:353.010000px;}
.y48{bottom:354.810000px;}
.y273{bottom:356.430000px;}
.y1a1{bottom:357.510000px;}
.y140{bottom:357.870000px;}
.y28d{bottom:358.770000px;}
.y81{bottom:358.950000px;}
.y250{bottom:359.310000px;}
.y172{bottom:360.930000px;}
.y1c8{bottom:361.290000px;}
.y218{bottom:362.370000px;}
.y15{bottom:363.630000px;}
.y2ae{bottom:364.710000px;}
.y101{bottom:367.410000px;}
.yd9{bottom:367.770000px;}
.y1f2{bottom:368.310000px;}
.y160{bottom:369.750000px;}
.y1b8{bottom:370.110000px;}
.y1e{bottom:370.650000px;}
.yae{bottom:371.010000px;}
.y47{bottom:372.630000px;}
.y272{bottom:374.250000px;}
.y28c{bottom:376.590000px;}
.y24f{bottom:377.130000px;}
.y171{bottom:378.750000px;}
.y1c7{bottom:379.110000px;}
.y217{bottom:380.190000px;}
.y37{bottom:381.450000px;}
.y2ad{bottom:382.530000px;}
.y100{bottom:385.230000px;}
.y80{bottom:385.410000px;}
.yd8{bottom:385.590000px;}
.y1f1{bottom:386.130000px;}
.y14{bottom:386.310000px;}
.y1b7{bottom:387.930000px;}
.y46{bottom:390.450000px;}
.y271{bottom:392.070000px;}
.y19e{bottom:392.970000px;}
.y28b{bottom:394.590000px;}
.y24e{bottom:394.950000px;}
.y15f{bottom:396.210000px;}
.y170{bottom:396.570000px;}
.y1c6{bottom:396.930000px;}
.y1d{bottom:397.470000px;}
.yad{bottom:397.830000px;}
.y216{bottom:398.010000px;}
.yff{bottom:403.050000px;}
.yd7{bottom:403.590000px;}
.y1f0{bottom:403.950000px;}
.y1b6{bottom:405.750000px;}
.y13{bottom:409.215000px;}
.y2ac{bottom:409.350000px;}
.y36{bottom:409.710000px;}
.y270{bottom:409.890000px;}
.y7f{bottom:412.590000px;}
.y24d{bottom:412.770000px;}
.y1c5{bottom:414.750000px;}
.y1c{bottom:415.515000px;}
.yac{bottom:415.650000px;}
.y215{bottom:416.010000px;}
.y15d{bottom:418.725000px;}
.yfe{bottom:420.870000px;}
.yd6{bottom:421.410000px;}
.y1b5{bottom:423.570000px;}
.y2ab{bottom:427.170000px;}
.y26f{bottom:427.710000px;}
.y19a{bottom:430.230000px;}
.y7e{bottom:430.590000px;}
.y1ef{bottom:430.950000px;}
.y1c4{bottom:432.570000px;}
.y1b{bottom:433.335000px;}
.y214{bottom:433.830000px;}
.y12{bottom:434.055000px;}
.y32{bottom:436.365000px;}
.yfd{bottom:438.690000px;}
.y28a{bottom:439.230000px;}
.yab{bottom:442.155000px;}
.y2aa{bottom:445.035000px;}
.y26e{bottom:445.755000px;}
.yd5{bottom:448.275000px;}
.y7d{bottom:448.455000px;}
.y24c{bottom:448.635000px;}
.y1ee{bottom:448.815000px;}
.y11{bottom:449.895000px;}
.y1b4{bottom:450.435000px;}
.y1a{bottom:451.155000px;}
.y213{bottom:451.695000px;}
.yfc{bottom:456.735000px;}
.y289{bottom:457.095000px;}
.y15c{bottom:458.895000px;}
.y26d{bottom:463.575000px;}
.y197{bottom:465.915000px;}
.yd4{bottom:466.095000px;}
.y7c{bottom:466.275000px;}
.y24b{bottom:466.455000px;}
.y1ed{bottom:466.635000px;}
.y1b3{bottom:468.435000px;}
.y19{bottom:468.975000px;}
.yaa{bottom:469.335000px;}
.y212{bottom:469.515000px;}
.y2a9{bottom:471.855000px;}
.y288{bottom:474.915000px;}
.y10{bottom:479.595000px;}
.y26c{bottom:481.395000px;}
.yfb{bottom:483.555000px;}
.yd3{bottom:483.915000px;}
.y7b{bottom:484.095000px;}
.y24a{bottom:484.275000px;}
.y1ec{bottom:484.455000px;}
.y1b2{bottom:486.255000px;}
.ya9{bottom:487.335000px;}
.y2a8{bottom:489.855000px;}
.y1c3{bottom:495.255000px;}
.y18{bottom:497.055000px;}
.y15b{bottom:498.315000px;}
.y26b{bottom:499.215000px;}
.yf{bottom:500.295000px;}
.yfa{bottom:501.375000px;}
.ye{bottom:501.555000px;}
.y7a{bottom:501.915000px;}
.y1eb{bottom:502.275000px;}
.y1b1{bottom:504.075000px;}
.y211{bottom:505.155000px;}
.y196{bottom:505.335000px;}
.y249{bottom:512.535000px;}
.y1c2{bottom:513.075000px;}
.ya8{bottom:514.155000px;}
.y2a7{bottom:516.675000px;}
.y26a{bottom:517.035000px;}
.yf9{bottom:519.195000px;}
.yd2{bottom:519.735000px;}
.y79{bottom:519.915000px;}
.y1ea{bottom:520.275000px;}
.y1b0{bottom:521.895000px;}
.y138{bottom:524.775000px;}
.y129{bottom:528.735000px;}
.y1c1{bottom:530.895000px;}
.ya7{bottom:531.975000px;}
.y210{bottom:532.155000px;}
.y2a6{bottom:534.495000px;}
.y269{bottom:534.855000px;}
.yf8{bottom:537.015000px;}
.yd1{bottom:537.555000px;}
.y78{bottom:537.735000px;}
.y1e9{bottom:538.095000px;}
.y1af{bottom:539.715000px;}
.y195{bottom:540.795000px;}
.y248{bottom:543.855000px;}
.y128{bottom:546.735000px;}
.y1c0{bottom:548.715000px;}
.y20f{bottom:549.975000px;}
.ya6{bottom:550.695000px;}
.y2a5{bottom:552.315000px;}
.y268{bottom:552.855000px;}
.yf7{bottom:555.015000px;}
.yd0{bottom:555.375000px;}
.y77{bottom:555.555000px;}
.y1e8{bottom:555.915000px;}
.y247{bottom:561.855000px;}
.y287{bottom:564.375000px;}
.y137{bottom:564.735000px;}
.y1ae{bottom:566.715000px;}
.y20e{bottom:567.795000px;}
.ya5{bottom:568.695000px;}
.y267{bottom:570.675000px;}
.yf6{bottom:572.835000px;}
.y127{bottom:573.195000px;}
.y76{bottom:573.375000px;}
.y1e7{bottom:573.735000px;}
.y194{bottom:576.255000px;}
.y15a{bottom:577.155000px;}
.y2a4{bottom:579.135000px;}
.y246{bottom:579.675000px;}
.ycf{bottom:581.835000px;}
.y286{bottom:582.195000px;}
.y136{bottom:582.555000px;}
.y20d{bottom:585.615000px;}
.y266{bottom:588.495000px;}
.y1ad{bottom:589.215000px;}
.y1d1{bottom:590.580000px;}
.y75{bottom:591.195000px;}
.y1e6{bottom:591.555000px;}
.ya4{bottom:596.415000px;}
.y2a3{bottom:597.135000px;}
.y245{bottom:597.495000px;}
.yf5{bottom:599.655000px;}
.y285{bottom:600.015000px;}
.y126{bottom:600.375000px;}
.y20c{bottom:603.435000px;}
.y265{bottom:606.315000px;}
.y1e5{bottom:609.375000px;}
.yce{bottom:610.635000px;}
.y193{bottom:612.435000px;}
.y2a2{bottom:614.955000px;}
.y244{bottom:615.315000px;}
.y159{bottom:616.755000px;}
.yf4{bottom:617.475000px;}
.y74{bottom:617.655000px;}
.y125{bottom:618.195000px;}
.y20b{bottom:621.435000px;}
.ya3{bottom:623.235000px;}
.y264{bottom:624.135000px;}
.y284{bottom:627.015000px;}
.y243{bottom:633.135000px;}
.yf3{bottom:635.295000px;}
.y124{bottom:636.015000px;}
.y1e4{bottom:636.375000px;}
.y20a{bottom:639.255000px;}
.ya2{bottom:641.235000px;}
.y2a1{bottom:641.775000px;}
.ycd{bottom:641.955000px;}
.y263{bottom:642.135000px;}
.y283{bottom:644.835000px;}
.y73{bottom:646.455000px;}
.y190{bottom:650.235000px;}
.y242{bottom:651.135000px;}
.yf2{bottom:653.115000px;}
.y123{bottom:654.015000px;}
.y1e3{bottom:654.195000px;}
.y157{bottom:656.175000px;}
.y209{bottom:657.075000px;}
.y2a0{bottom:659.595000px;}
.ycc{bottom:659.775000px;}
.y262{bottom:659.955000px;}
.y282{bottom:662.655000px;}
.ya1{bottom:667.695000px;}
.y241{bottom:668.955000px;}
.y122{bottom:671.835000px;}
.y1e2{bottom:672.015000px;}
.y208{bottom:674.895000px;}
.yf1{bottom:676.725000px;}
.y29f{bottom:677.445000px;}
.ycb{bottom:677.625000px;}
.y72{bottom:677.805000px;}
.y281{bottom:680.505000px;}
.y240{bottom:686.805000px;}
.y121{bottom:689.685000px;}
.y1e1{bottom:689.865000px;}
.y207{bottom:692.745000px;}
.ya0{bottom:694.905000px;}
.yca{bottom:695.445000px;}
.y71{bottom:695.625000px;}
.y180{bottom:701.205000px;}
.yf0{bottom:702.825000px;}
.y29e{bottom:704.265000px;}
.y120{bottom:707.505000px;}
.y1e0{bottom:707.685000px;}
.y280{bottom:708.765000px;}
.y70{bottom:713.445000px;}
.y23f{bottom:713.625000px;}
.y206{bottom:719.565000px;}
.y9f{bottom:721.725000px;}
.yc9{bottom:722.265000px;}
.y1df{bottom:725.685000px;}
.yef{bottom:728.745000px;}
.y6f{bottom:731.265000px;}
.y23e{bottom:731.445000px;}
.y11f{bottom:733.965000px;}
.y135{bottom:734.325000px;}
.y156{bottom:735.045000px;}
.y205{bottom:737.565000px;}
.y29d{bottom:740.085000px;}
.yc8{bottom:740.265000px;}
.y9e{bottom:748.545000px;}
.y6e{bottom:749.265000px;}
.y134{bottom:752.145000px;}
.y1de{bottom:752.505000px;}
.yee{bottom:754.845000px;}
.y204{bottom:755.385000px;}
.yc7{bottom:758.085000px;}
.y11e{bottom:761.145000px;}
.y29c{bottom:766.905000px;}
.y6d{bottom:767.085000px;}
.y23d{bottom:767.265000px;}
.y133{bottom:770.145000px;}
.y1dd{bottom:770.325000px;}
.y17f{bottom:771.405000px;}
.y203{bottom:773.205000px;}
.y189{bottom:773.820000px;}
.y154{bottom:774.465000px;}
.y9d{bottom:775.365000px;}
.yc6{bottom:775.905000px;}
.y11d{bottom:779.145000px;}
.yed{bottom:780.765000px;}
.y29b{bottom:784.725000px;}
.y6c{bottom:784.905000px;}
.y23c{bottom:785.085000px;}
.y132{bottom:787.965000px;}
.y1dc{bottom:788.145000px;}
.y202{bottom:791.025000px;}
.yc5{bottom:793.725000px;}
.y11c{bottom:796.965000px;}
.y9c{bottom:802.365000px;}
.y29a{bottom:802.545000px;}
.y261{bottom:802.725000px;}
.y23b{bottom:802.905000px;}
.y131{bottom:805.785000px;}
.y1db{bottom:805.965000px;}
.yec{bottom:806.865000px;}
.y201{bottom:808.845000px;}
.yc4{bottom:811.545000px;}
.y6b{bottom:811.725000px;}
.y153{bottom:813.885000px;}
.y11b{bottom:814.785000px;}
.y299{bottom:820.365000px;}
.y260{bottom:820.545000px;}
.y23a{bottom:820.725000px;}
.y130{bottom:823.605000px;}
.y1da{bottom:823.785000px;}
.y200{bottom:826.845000px;}
.y9b{bottom:829.185000px;}
.y6a{bottom:829.545000px;}
.y11a{bottom:832.605000px;}
.yea{bottom:832.785000px;}
.yc3{bottom:838.365000px;}
.y239{bottom:838.545000px;}
.y12f{bottom:841.425000px;}
.y1d9{bottom:841.785000px;}
.y69{bottom:847.365000px;}
.y119{bottom:850.425000px;}
.y150{bottom:854.205000px;}
.y1ff{bottom:855.105000px;}
.y9a{bottom:856.005000px;}
.yc2{bottom:856.365000px;}
.ye9{bottom:858.885000px;}
.y1d8{bottom:859.605000px;}
.y298{bottom:865.185000px;}
.y68{bottom:865.365000px;}
.y12e{bottom:867.885000px;}
.y118{bottom:868.245000px;}
.yc1{bottom:874.185000px;}
.y238{bottom:874.365000px;}
.y99{bottom:882.825000px;}
.y297{bottom:883.005000px;}
.y67{bottom:883.185000px;}
.ye8{bottom:884.985000px;}
.y22d{bottom:885.345000px;}
.y117{bottom:886.245000px;}
.yc0{bottom:892.005000px;}
.y237{bottom:892.185000px;}
.y12d{bottom:895.245000px;}
.y14d{bottom:895.785000px;}
.y296{bottom:900.825000px;}
.y66{bottom:901.005000px;}
.y116{bottom:904.065000px;}
.y98{bottom:909.645000px;}
.ybf{bottom:909.825000px;}
.y236{bottom:910.005000px;}
.ye7{bottom:910.950000px;}
.y12c{bottom:913.110000px;}
.y65{bottom:918.870000px;}
.y115{bottom:921.930000px;}
.y230{bottom:924.450000px;}
.y25f{bottom:927.690000px;}
.y1aa{bottom:927.870000px;}
.y12b{bottom:930.930000px;}
.ybe{bottom:936.330000px;}
.y64{bottom:936.690000px;}
.ye5{bottom:937.050000px;}
.y1a9{bottom:945.690000px;}
.y114{bottom:948.390000px;}
.y12a{bottom:948.750000px;}
.y14c{bottom:951.270000px;}
.y1ac{bottom:954.690000px;}
.y97{bottom:963.150000px;}
.y22f{bottom:963.510000px;}
.y63{bottom:963.690000px;}
.ye3{bottom:965.310000px;}
.y113{bottom:972.330000px;}
.y1ab{bottom:972.510000px;}
.y235{bottom:972.690000px;}
.y14a{bottom:981.330000px;}
.y62{bottom:981.510000px;}
.y96{bottom:990.330000px;}
.y234{bottom:990.510000px;}
.y149{bottom:999.150000px;}
.y61{bottom:999.330000px;}
.y22c{bottom:1002.390000px;}
.ye2{bottom:1007.790000px;}
.y95{bottom:1008.150000px;}
.y233{bottom:1008.330000px;}
.y110{bottom:1016.610000px;}
.y148{bottom:1016.970000px;}
.y60{bottom:1017.150000px;}
.y94{bottom:1025.970000px;}
.y232{bottom:1026.150000px;}
.yd{bottom:1031.730000px;}
.y5f{bottom:1034.970000px;}
.y22b{bottom:1040.730000px;}
.y93{bottom:1043.790000px;}
.y1a8{bottom:1043.970000px;}
.y5e{bottom:1052.790000px;}
.yc{bottom:1056.390000px;}
.y10e{bottom:1061.070000px;}
.y92{bottom:1061.790000px;}
.y5d{bottom:1070.790000px;}
.yb{bottom:1074.570000px;}
.y91{bottom:1079.610000px;}
.y1a7{bottom:1079.790000px;}
.y5c{bottom:1088.610000px;}
.y90{bottom:1097.430000px;}
.y17e{bottom:1097.610000px;}
.ya{bottom:1104.450000px;}
.y5b{bottom:1106.430000px;}
.y10c{bottom:1107.690000px;}
.y5{bottom:1112.940000px;}
.y147{bottom:1115.250000px;}
.y14b{bottom:1115.430000px;}
.y226{bottom:1118.130000px;}
.y8f{bottom:1123.890000px;}
.ybd{bottom:1124.250000px;}
.y9{bottom:1132.350000px;}
.y146{bottom:1133.070000px;}
.y5a{bottom:1133.250000px;}
.ybc{bottom:1142.070000px;}
.y59{bottom:1151.100000px;}
.y145{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.ybb{bottom:1168.740000px;}
.y58{bottom:1169.100000px;}
.y2{bottom:1181.520000px;}
.y55{bottom:1183.500000px;}
.y7{bottom:1191.240000px;}
.y54{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h1a{height:25.905000px;}
.h1e{height:25.920000px;}
.h1c{height:25.942500px;}
.h1b{height:26.085000px;}
.h1d{height:26.100000px;}
.h16{height:30.480469px;}
.h41{height:32.205000px;}
.hb{height:35.332031px;}
.h35{height:35.460000px;}
.h34{height:35.496000px;}
.h38{height:35.676000px;}
.h42{height:35.820000px;}
.h3b{height:37.260000px;}
.h11{height:37.705078px;}
.h46{height:38.160000px;}
.h43{height:38.196000px;}
.h44{height:38.340000px;}
.h2b{height:39.405000px;}
.h27{height:39.420000px;}
.h2e{height:39.441000px;}
.h2a{height:39.450000px;}
.h2c{height:39.585000px;}
.h28{height:39.600000px;}
.h25{height:39.622500px;}
.h15{height:40.843828px;}
.h21{height:44.265000px;}
.h20{height:44.445000px;}
.h1f{height:44.490000px;}
.h18{height:44.507812px;}
.h5{height:47.344922px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.hd{height:48.616875px;}
.h2f{height:48.896719px;}
.h26{height:52.971680px;}
.h10{height:52.998047px;}
.hf{height:54.421875px;}
.h19{height:55.503491px;}
.h2{height:58.651172px;}
.h36{height:59.092031px;}
.ha{height:60.041250px;}
.h12{height:60.226875px;}
.he{height:61.189805px;}
.h33{height:63.019687px;}
.h13{height:64.461000px;}
.h31{height:64.875938px;}
.h4{height:65.010937px;}
.h32{height:65.023383px;}
.h3{height:65.884219px;}
.h3f{height:67.824844px;}
.h17{height:70.664062px;}
.h3c{height:70.920000px;}
.h40{height:71.613281px;}
.h14{height:72.562500px;}
.h3a{height:72.936000px;}
.h3d{height:73.260000px;}
.h37{height:74.880000px;}
.h2d{height:79.581000px;}
.h24{height:83.787539px;}
.h9{height:84.898125px;}
.h23{height:86.255508px;}
.h39{height:143.856000px;}
.h6{height:149.940000px;}
.h45{height:155.370000px;}
.h29{height:276.150000px;}
.h30{height:312.660000px;}
.h3e{height:331.740000px;}
.h22{height:389.160000px;}
.hc{height:520.260000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w24{width:50.025000px;}
.w25{width:59.745000px;}
.w2b{width:76.140000px;}
.w16{width:77.565000px;}
.w2c{width:77.616000px;}
.w27{width:79.761000px;}
.w20{width:90.216000px;}
.w6{width:91.425000px;}
.w17{width:91.830000px;}
.w30{width:97.056000px;}
.wc{width:97.185000px;}
.w22{width:97.594500px;}
.wf{width:98.854500px;}
.w19{width:99.396000px;}
.wa{width:102.420000px;}
.w14{width:103.716000px;}
.w2f{width:104.040000px;}
.w7{width:105.861000px;}
.wb{width:105.876000px;}
.w8{width:106.050000px;}
.w15{width:108.201000px;}
.w2e{width:111.636000px;}
.w1d{width:113.076000px;}
.w1f{width:118.836000px;}
.w13{width:119.340000px;}
.w26{width:119.901000px;}
.w12{width:120.621000px;}
.w2d{width:122.616000px;}
.w9{width:136.462500px;}
.w28{width:139.860000px;}
.w1e{width:140.400000px;}
.w29{width:152.490000px;}
.w31{width:153.750000px;}
.wd{width:156.615000px;}
.w11{width:169.410000px;}
.w1c{width:177.870000px;}
.w1b{width:209.055000px;}
.w3{width:211.888500px;}
.w23{width:269.655000px;}
.w1a{width:431.355000px;}
.w2a{width:435.165000px;}
.w10{width:451.890000px;}
.w4{width:541.395000px;}
.w21{width:554.760000px;}
.w18{width:621.000000px;}
.we{width:651.240000px;}
.w5{width:754.018500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.770000px;}
.x3{left:12.090000px;}
.xc{left:18.358500px;}
.xb{left:45.901500px;}
.x6{left:50.400000px;}
.x1{left:54.000000px;}
.x12{left:55.440000px;}
.x51{left:75.240000px;}
.x3b{left:76.680000px;}
.x38{left:78.090000px;}
.x53{left:81.000000px;}
.x2b{left:86.401500px;}
.xf{left:95.256000px;}
.x46{left:105.585000px;}
.x54{left:108.036000px;}
.x24{left:120.240000px;}
.x27{left:131.505000px;}
.x34{left:134.820000px;}
.x47{left:137.985000px;}
.x1e{left:147.286500px;}
.x48{left:150.705000px;}
.x8{left:153.750000px;}
.x28{left:164.160000px;}
.x3a{left:167.010000px;}
.x42{left:168.480000px;}
.x3c{left:176.070000px;}
.x2c{left:185.265000px;}
.x26{left:198.975000px;}
.x49{left:200.745000px;}
.x29{left:208.545000px;}
.x43{left:214.200000px;}
.x44{left:217.545000px;}
.x4b{left:228.990000px;}
.x9{left:237.450000px;}
.x7{left:248.070000px;}
.x36{left:250.710000px;}
.xd{left:258.525000px;}
.x45{left:259.530000px;}
.x4a{left:280.515000px;}
.x1f{left:283.755000px;}
.x33{left:285.555000px;}
.x1d{left:294.195000px;}
.x37{left:298.155000px;}
.x2e{left:305.895000px;}
.x39{left:310.680000px;}
.x25{left:331.170000px;}
.x35{left:341.280000px;}
.xa{left:342.435000px;}
.x4e{left:351.615000px;}
.x3e{left:353.955000px;}
.x20{left:386.175000px;}
.x2f{left:425.235000px;}
.x52{left:438.195000px;}
.x14{left:442.365000px;}
.x4f{left:463.065000px;}
.x3f{left:467.025000px;}
.x10{left:473.505000px;}
.x21{left:492.060000px;}
.x15{left:500.505000px;}
.x1a{left:504.660000px;}
.x19{left:506.985000px;}
.x11{left:514.725000px;}
.x2a{left:518.475000px;}
.x16{left:521.025000px;}
.x18{left:527.505000px;}
.x30{left:528.960000px;}
.x17{left:548.025000px;}
.x50{left:567.105000px;}
.x22{left:589.260000px;}
.x1b{left:596.100000px;}
.x3d{left:607.425000px;}
.x2d{left:637.170000px;}
.x4c{left:664.170000px;}
.x13{left:668.490000px;}
.x1c{left:701.970000px;}
.x31{left:714.750000px;}
.x41{left:724.470000px;}
.x40{left:726.270000px;}
.x4d{left:740.310000px;}
.x32{left:758.130000px;}
.x23{left:772.890000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsf{letter-spacing:-3.296000pt;}
.ls5{letter-spacing:-2.240000pt;}
.ls11{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-0.714667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.528000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.204267pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.180800pt;}
.ls1e{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.245867pt;}
.lse{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.259733pt;}
.ls24{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.656000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls22{letter-spacing:22.496000pt;}
.ls9{letter-spacing:46.816000pt;}
.lsa{letter-spacing:60.896000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws12{word-spacing:-48.000000pt;}
.ws15{word-spacing:-16.718613pt;}
.wsf{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.974187pt;}
.ws19{word-spacing:-12.938048pt;}
.ws17{word-spacing:-12.656000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.288000pt;}
.ws1e{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.808000pt;}
.ws14{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.376000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.693333pt;}
.wsb{word-spacing:-9.357867pt;}
.wsd{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.480000pt;}
.ws3{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
.ws1a{word-spacing:82.102613pt;}
.ws1d{word-spacing:96.245333pt;}
._4{margin-left:-8.312533pt;}
._24{margin-left:-6.722773pt;}
._29{margin-left:-5.773440pt;}
._23{margin-left:-4.268160pt;}
._7{margin-left:-2.979200pt;}
._8{margin-left:-2.014293pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.169280pt;}
._1{width:2.194987pt;}
._c{width:3.754027pt;}
._b{width:5.070293pt;}
._a{width:6.336000pt;}
._d{width:7.250347pt;}
._12{width:8.146773pt;}
._11{width:9.123840pt;}
._10{width:10.896000pt;}
._13{width:13.296000pt;}
._f{width:14.688000pt;}
._9{width:16.224000pt;}
._e{width:17.136000pt;}
._15{width:18.288000pt;}
._16{width:19.923840pt;}
._14{width:20.976000pt;}
._17{width:22.752000pt;}
._1b{width:23.886720pt;}
._20{width:25.217280pt;}
._5{width:26.242560pt;}
._6{width:27.743360pt;}
._1c{width:28.656000pt;}
._1d{width:29.857707pt;}
._1f{width:30.885547pt;}
._21{width:32.496000pt;}
._26{width:33.936000pt;}
._28{width:35.424000pt;}
._27{width:36.576000pt;}
._2f{width:37.622400pt;}
._30{width:38.832000pt;}
._2c{width:40.464000pt;}
._2b{width:41.424000pt;}
._32{width:42.848000pt;}
._39{width:45.072000pt;}
._3a{width:46.432000pt;}
._31{width:48.258347pt;}
._25{width:49.408000pt;}
._1e{width:52.032000pt;}
._22{width:53.349120pt;}
._2a{width:54.464640pt;}
._33{width:55.375360pt;}
._2e{width:57.504000pt;}
._2d{width:58.512000pt;}
._18{width:59.760000pt;}
._19{width:61.248000pt;}
._37{width:63.504000pt;}
._36{width:64.416000pt;}
._38{width:65.491840pt;}
._1a{width:70.800000pt;}
._34{width:162.672000pt;}
._35{width:163.776000pt;}
._3{width:362.474027pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs9{font-size:56.448000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:2.560000pt;}
.ye6{bottom:2.880000pt;}
.yeb{bottom:3.040000pt;}
.y31{bottom:3.360000pt;}
.y10f{bottom:4.640000pt;}
.y111{bottom:4.800000pt;}
.y1f8{bottom:4.946667pt;}
.y10d{bottom:4.960000pt;}
.y35{bottom:4.986667pt;}
.y112{bottom:5.120000pt;}
.y192{bottom:12.480000pt;}
.y191{bottom:12.800000pt;}
.y19b{bottom:13.000000pt;}
.y1a0{bottom:13.600000pt;}
.y199{bottom:14.560000pt;}
.y18f{bottom:14.853333pt;}
.y1d7{bottom:16.933333pt;}
.y30{bottom:18.720000pt;}
.y34{bottom:20.826667pt;}
.y1fb{bottom:20.960000pt;}
.y228{bottom:22.720000pt;}
.y229{bottom:22.880000pt;}
.y227{bottom:23.040000pt;}
.y231{bottom:23.080000pt;}
.y22a{bottom:23.200000pt;}
.y151{bottom:23.360000pt;}
.y14f{bottom:23.400000pt;}
.y152{bottom:23.680000pt;}
.y158{bottom:23.706667pt;}
.y14e{bottom:23.720000pt;}
.y1a2{bottom:28.480000pt;}
.y19f{bottom:29.440000pt;}
.y1a6{bottom:29.600000pt;}
.y198{bottom:30.240000pt;}
.y33{bottom:36.826667pt;}
.y15e{bottom:41.466667pt;}
.y2f{bottom:43.680000pt;}
.y57{bottom:52.000000pt;}
.y2e{bottom:59.520000pt;}
.y19d{bottom:60.960000pt;}
.y13d{bottom:61.920000pt;}
.y4{bottom:68.320000pt;}
.y56{bottom:68.640000pt;}
.y22e{bottom:75.240000pt;}
.y2d{bottom:75.360000pt;}
.y16f{bottom:82.720000pt;}
.y13a{bottom:84.480000pt;}
.y53{bottom:85.120000pt;}
.y27f{bottom:86.400000pt;}
.yba{bottom:86.720000pt;}
.y25e{bottom:89.120000pt;}
.y18a{bottom:90.400000pt;}
.y1fe{bottom:90.880000pt;}
.y2c{bottom:91.360000pt;}
.y45{bottom:92.960000pt;}
.y6{bottom:93.440000pt;}
.y185{bottom:94.560000pt;}
.y8e{bottom:96.800000pt;}
.y1d3{bottom:97.186667pt;}
.y16e{bottom:98.560000pt;}
.y52{bottom:100.960000pt;}
.y27e{bottom:102.240000pt;}
.y139{bottom:104.480000pt;}
.y25d{bottom:104.960000pt;}
.y2b9{bottom:105.920000pt;}
.y13b{bottom:106.720000pt;}
.y2b{bottom:107.200000pt;}
.y225{bottom:107.840000pt;}
.y1d0{bottom:108.160000pt;}
.y44{bottom:108.960000pt;}
.y184{bottom:110.400000pt;}
.yb9{bottom:110.720000pt;}
.y1fd{bottom:112.160000pt;}
.y8d{bottom:112.640000pt;}
.y16d{bottom:114.400000pt;}
.y10b{bottom:115.360000pt;}
.y51{bottom:116.960000pt;}
.y27d{bottom:118.240000pt;}
.y13e{bottom:120.506667pt;}
.y25c{bottom:120.960000pt;}
.y17d{bottom:122.400000pt;}
.y224{bottom:123.680000pt;}
.y43{bottom:124.800000pt;}
.y183{bottom:126.240000pt;}
.y8c{bottom:128.480000pt;}
.y155{bottom:128.986667pt;}
.y16c{bottom:130.240000pt;}
.y2a{bottom:131.040000pt;}
.y1fc{bottom:132.000000pt;}
.y50{bottom:132.800000pt;}
.y2b8{bottom:133.440000pt;}
.y188{bottom:134.240000pt;}
.yb8{bottom:134.880000pt;}
.y295{bottom:136.160000pt;}
.y25b{bottom:136.800000pt;}
.y17c{bottom:138.240000pt;}
.y223{bottom:139.520000pt;}
.y42{bottom:140.640000pt;}
.y27c{bottom:142.080000pt;}
.y182{bottom:142.240000pt;}
.y1fa{bottom:144.800000pt;}
.y16b{bottom:146.080000pt;}
.y29{bottom:146.880000pt;}
.y144{bottom:146.906667pt;}
.y4f{bottom:148.640000pt;}
.y1cf{bottom:148.960000pt;}
.y2b7{bottom:149.280000pt;}
.y187{bottom:150.240000pt;}
.yb7{bottom:150.720000pt;}
.y8b{bottom:152.000000pt;}
.y294{bottom:152.160000pt;}
.y25a{bottom:152.640000pt;}
.y18b{bottom:152.866667pt;}
.y17b{bottom:154.080000pt;}
.y13c{bottom:155.293333pt;}
.y222{bottom:155.360000pt;}
.y10a{bottom:156.160000pt;}
.y41{bottom:156.480000pt;}
.y1d2{bottom:157.440000pt;}
.y27b{bottom:157.920000pt;}
.y16a{bottom:161.920000pt;}
.y28{bottom:162.746667pt;}
.y4e{bottom:164.480000pt;}
.y181{bottom:165.760000pt;}
.y186{bottom:166.080000pt;}
.y293{bottom:168.000000pt;}
.y259{bottom:168.480000pt;}
.y17a{bottom:169.920000pt;}
.y221{bottom:171.200000pt;}
.y143{bottom:172.573333pt;}
.y2b6{bottom:173.120000pt;}
.y18c{bottom:173.466667pt;}
.y27a{bottom:173.760000pt;}
.yb6{bottom:174.560000pt;}
.y8a{bottom:176.160000pt;}
.y169{bottom:177.920000pt;}
.y1f9{bottom:178.560000pt;}
.y27{bottom:178.746667pt;}
.y40{bottom:180.320000pt;}
.y258{bottom:184.346667pt;}
.y179{bottom:185.946667pt;}
.y220{bottom:187.226667pt;}
.y2b5{bottom:188.986667pt;}
.y1a5{bottom:189.626667pt;}
.y1ce{bottom:189.946667pt;}
.yb5{bottom:190.586667pt;}
.y1d4{bottom:190.720000pt;}
.y109{bottom:191.546667pt;}
.y292{bottom:191.866667pt;}
.ye1{bottom:192.026667pt;}
.y89{bottom:192.186667pt;}
.y168{bottom:193.786667pt;}
.y26{bottom:194.586667pt;}
.y3f{bottom:196.346667pt;}
.y142{bottom:198.266667pt;}
.y257{bottom:200.186667pt;}
.y178{bottom:201.786667pt;}
.y21f{bottom:203.066667pt;}
.y279{bottom:205.626667pt;}
.yb4{bottom:207.226667pt;}
.y108{bottom:207.386667pt;}
.y291{bottom:207.706667pt;}
.ye0{bottom:207.866667pt;}
.y88{bottom:208.026667pt;}
.y1bf{bottom:209.786667pt;}
.y25{bottom:210.426667pt;}
.y3e{bottom:212.186667pt;}
.y1f7{bottom:212.360000pt;}
.y2b4{bottom:212.826667pt;}
.y256{bottom:216.186667pt;}
.y167{bottom:217.626667pt;}
.y1cd{bottom:217.786667pt;}
.y21e{bottom:218.906667pt;}
.y1d5{bottom:219.680000pt;}
.y13f{bottom:219.773333pt;}
.y278{bottom:221.466667pt;}
.y1a4{bottom:223.226667pt;}
.y107{bottom:223.386667pt;}
.y290{bottom:223.546667pt;}
.ydf{bottom:223.706667pt;}
.y87{bottom:223.866667pt;}
.y141{bottom:223.933333pt;}
.y177{bottom:225.626667pt;}
.y1be{bottom:225.786667pt;}
.y24{bottom:226.266667pt;}
.y3d{bottom:228.026667pt;}
.y18e{bottom:228.773333pt;}
.y2b3{bottom:228.826667pt;}
.y255{bottom:232.026667pt;}
.y166{bottom:233.466667pt;}
.y1cc{bottom:233.786667pt;}
.y21d{bottom:234.746667pt;}
.y4d{bottom:236.026667pt;}
.y277{bottom:237.306667pt;}
.y106{bottom:239.226667pt;}
.y86{bottom:239.706667pt;}
.yb3{bottom:239.866667pt;}
.y176{bottom:241.466667pt;}
.y1bd{bottom:241.626667pt;}
.y23{bottom:242.106667pt;}
.y3c{bottom:243.866667pt;}
.yde{bottom:247.546667pt;}
.y254{bottom:247.866667pt;}
.y165{bottom:249.306667pt;}
.y1cb{bottom:249.626667pt;}
.y18d{bottom:250.533333pt;}
.y21c{bottom:250.586667pt;}
.y4c{bottom:251.866667pt;}
.y2b2{bottom:252.666667pt;}
.y1a3{bottom:254.746667pt;}
.y105{bottom:255.066667pt;}
.y85{bottom:255.546667pt;}
.y1f6{bottom:255.866667pt;}
.yb2{bottom:256.666667pt;}
.y175{bottom:257.306667pt;}
.y3b{bottom:259.706667pt;}
.y276{bottom:260.826667pt;}
.y28f{bottom:263.386667pt;}
.ydd{bottom:263.546667pt;}
.y164{bottom:265.306667pt;}
.y1bc{bottom:265.466667pt;}
.y22{bottom:265.946667pt;}
.y1d6{bottom:267.066667pt;}
.y4b{bottom:267.706667pt;}
.y2b1{bottom:268.506667pt;}
.y104{bottom:270.906667pt;}
.y84{bottom:271.546667pt;}
.y253{bottom:271.706667pt;}
.yb1{bottom:273.306667pt;}
.y21b{bottom:274.586667pt;}
.y3a{bottom:275.546667pt;}
.y28e{bottom:279.226667pt;}
.ydc{bottom:279.386667pt;}
.y1f5{bottom:279.866667pt;}
.y163{bottom:281.146667pt;}
.y1bb{bottom:281.306667pt;}
.y21{bottom:281.946667pt;}
.y17{bottom:282.746667pt;}
.y4a{bottom:283.546667pt;}
.y2b0{bottom:284.346667pt;}
.y275{bottom:284.986667pt;}
.y19c{bottom:286.266667pt;}
.y83{bottom:287.386667pt;}
.y252{bottom:287.546667pt;}
.y174{bottom:289.146667pt;}
.y1ca{bottom:289.306667pt;}
.y21a{bottom:290.426667pt;}
.y39{bottom:291.546667pt;}
.y103{bottom:294.746667pt;}
.ydb{bottom:295.226667pt;}
.y1f4{bottom:295.706667pt;}
.y162{bottom:296.986667pt;}
.y1ba{bottom:297.146667pt;}
.y20{bottom:297.786667pt;}
.yb0{bottom:297.946667pt;}
.y49{bottom:299.546667pt;}
.y274{bottom:300.826667pt;}
.y16{bottom:303.066667pt;}
.y82{bottom:303.226667pt;}
.y251{bottom:303.546667pt;}
.y173{bottom:304.986667pt;}
.y1c9{bottom:305.146667pt;}
.y219{bottom:306.266667pt;}
.y38{bottom:307.386667pt;}
.y2af{bottom:308.186667pt;}
.y102{bottom:310.746667pt;}
.yda{bottom:311.066667pt;}
.y1f3{bottom:311.546667pt;}
.y161{bottom:312.826667pt;}
.y1b9{bottom:313.146667pt;}
.y1f{bottom:313.626667pt;}
.yaf{bottom:313.786667pt;}
.y48{bottom:315.386667pt;}
.y273{bottom:316.826667pt;}
.y1a1{bottom:317.786667pt;}
.y140{bottom:318.106667pt;}
.y28d{bottom:318.906667pt;}
.y81{bottom:319.066667pt;}
.y250{bottom:319.386667pt;}
.y172{bottom:320.826667pt;}
.y1c8{bottom:321.146667pt;}
.y218{bottom:322.106667pt;}
.y15{bottom:323.226667pt;}
.y2ae{bottom:324.186667pt;}
.y101{bottom:326.586667pt;}
.yd9{bottom:326.906667pt;}
.y1f2{bottom:327.386667pt;}
.y160{bottom:328.666667pt;}
.y1b8{bottom:328.986667pt;}
.y1e{bottom:329.466667pt;}
.yae{bottom:329.786667pt;}
.y47{bottom:331.226667pt;}
.y272{bottom:332.666667pt;}
.y28c{bottom:334.746667pt;}
.y24f{bottom:335.226667pt;}
.y171{bottom:336.666667pt;}
.y1c7{bottom:336.986667pt;}
.y217{bottom:337.946667pt;}
.y37{bottom:339.066667pt;}
.y2ad{bottom:340.026667pt;}
.y100{bottom:342.426667pt;}
.y80{bottom:342.586667pt;}
.yd8{bottom:342.746667pt;}
.y1f1{bottom:343.226667pt;}
.y14{bottom:343.386667pt;}
.y1b7{bottom:344.826667pt;}
.y46{bottom:347.066667pt;}
.y271{bottom:348.506667pt;}
.y19e{bottom:349.306667pt;}
.y28b{bottom:350.746667pt;}
.y24e{bottom:351.066667pt;}
.y15f{bottom:352.186667pt;}
.y170{bottom:352.506667pt;}
.y1c6{bottom:352.826667pt;}
.y1d{bottom:353.306667pt;}
.yad{bottom:353.626667pt;}
.y216{bottom:353.786667pt;}
.yff{bottom:358.266667pt;}
.yd7{bottom:358.746667pt;}
.y1f0{bottom:359.066667pt;}
.y1b6{bottom:360.666667pt;}
.y13{bottom:363.746667pt;}
.y2ac{bottom:363.866667pt;}
.y36{bottom:364.186667pt;}
.y270{bottom:364.346667pt;}
.y7f{bottom:366.746667pt;}
.y24d{bottom:366.906667pt;}
.y1c5{bottom:368.666667pt;}
.y1c{bottom:369.346667pt;}
.yac{bottom:369.466667pt;}
.y215{bottom:369.786667pt;}
.y15d{bottom:372.200000pt;}
.yfe{bottom:374.106667pt;}
.yd6{bottom:374.586667pt;}
.y1b5{bottom:376.506667pt;}
.y2ab{bottom:379.706667pt;}
.y26f{bottom:380.186667pt;}
.y19a{bottom:382.426667pt;}
.y7e{bottom:382.746667pt;}
.y1ef{bottom:383.066667pt;}
.y1c4{bottom:384.506667pt;}
.y1b{bottom:385.186667pt;}
.y214{bottom:385.626667pt;}
.y12{bottom:385.826667pt;}
.y32{bottom:387.880000pt;}
.yfd{bottom:389.946667pt;}
.y28a{bottom:390.426667pt;}
.yab{bottom:393.026667pt;}
.y2aa{bottom:395.586667pt;}
.y26e{bottom:396.226667pt;}
.yd5{bottom:398.466667pt;}
.y7d{bottom:398.626667pt;}
.y24c{bottom:398.786667pt;}
.y1ee{bottom:398.946667pt;}
.y11{bottom:399.906667pt;}
.y1b4{bottom:400.386667pt;}
.y1a{bottom:401.026667pt;}
.y213{bottom:401.506667pt;}
.yfc{bottom:405.986667pt;}
.y289{bottom:406.306667pt;}
.y15c{bottom:407.906667pt;}
.y26d{bottom:412.066667pt;}
.y197{bottom:414.146667pt;}
.yd4{bottom:414.306667pt;}
.y7c{bottom:414.466667pt;}
.y24b{bottom:414.626667pt;}
.y1ed{bottom:414.786667pt;}
.y1b3{bottom:416.386667pt;}
.y19{bottom:416.866667pt;}
.yaa{bottom:417.186667pt;}
.y212{bottom:417.346667pt;}
.y2a9{bottom:419.426667pt;}
.y288{bottom:422.146667pt;}
.y10{bottom:426.306667pt;}
.y26c{bottom:427.906667pt;}
.yfb{bottom:429.826667pt;}
.yd3{bottom:430.146667pt;}
.y7b{bottom:430.306667pt;}
.y24a{bottom:430.466667pt;}
.y1ec{bottom:430.626667pt;}
.y1b2{bottom:432.226667pt;}
.ya9{bottom:433.186667pt;}
.y2a8{bottom:435.426667pt;}
.y1c3{bottom:440.226667pt;}
.y18{bottom:441.826667pt;}
.y15b{bottom:442.946667pt;}
.y26b{bottom:443.746667pt;}
.yf{bottom:444.706667pt;}
.yfa{bottom:445.666667pt;}
.ye{bottom:445.826667pt;}
.y7a{bottom:446.146667pt;}
.y1eb{bottom:446.466667pt;}
.y1b1{bottom:448.066667pt;}
.y211{bottom:449.026667pt;}
.y196{bottom:449.186667pt;}
.y249{bottom:455.586667pt;}
.y1c2{bottom:456.066667pt;}
.ya8{bottom:457.026667pt;}
.y2a7{bottom:459.266667pt;}
.y26a{bottom:459.586667pt;}
.yf9{bottom:461.506667pt;}
.yd2{bottom:461.986667pt;}
.y79{bottom:462.146667pt;}
.y1ea{bottom:462.466667pt;}
.y1b0{bottom:463.906667pt;}
.y138{bottom:466.466667pt;}
.y129{bottom:469.986667pt;}
.y1c1{bottom:471.906667pt;}
.ya7{bottom:472.866667pt;}
.y210{bottom:473.026667pt;}
.y2a6{bottom:475.106667pt;}
.y269{bottom:475.426667pt;}
.yf8{bottom:477.346667pt;}
.yd1{bottom:477.826667pt;}
.y78{bottom:477.986667pt;}
.y1e9{bottom:478.306667pt;}
.y1af{bottom:479.746667pt;}
.y195{bottom:480.706667pt;}
.y248{bottom:483.426667pt;}
.y128{bottom:485.986667pt;}
.y1c0{bottom:487.746667pt;}
.y20f{bottom:488.866667pt;}
.ya6{bottom:489.506667pt;}
.y2a5{bottom:490.946667pt;}
.y268{bottom:491.426667pt;}
.yf7{bottom:493.346667pt;}
.yd0{bottom:493.666667pt;}
.y77{bottom:493.826667pt;}
.y1e8{bottom:494.146667pt;}
.y247{bottom:499.426667pt;}
.y287{bottom:501.666667pt;}
.y137{bottom:501.986667pt;}
.y1ae{bottom:503.746667pt;}
.y20e{bottom:504.706667pt;}
.ya5{bottom:505.506667pt;}
.y267{bottom:507.266667pt;}
.yf6{bottom:509.186667pt;}
.y127{bottom:509.506667pt;}
.y76{bottom:509.666667pt;}
.y1e7{bottom:509.986667pt;}
.y194{bottom:512.226667pt;}
.y15a{bottom:513.026667pt;}
.y2a4{bottom:514.786667pt;}
.y246{bottom:515.266667pt;}
.ycf{bottom:517.186667pt;}
.y286{bottom:517.506667pt;}
.y136{bottom:517.826667pt;}
.y20d{bottom:520.546667pt;}
.y266{bottom:523.106667pt;}
.y1ad{bottom:523.746667pt;}
.y1d1{bottom:524.960000pt;}
.y75{bottom:525.506667pt;}
.y1e6{bottom:525.826667pt;}
.ya4{bottom:530.146667pt;}
.y2a3{bottom:530.786667pt;}
.y245{bottom:531.106667pt;}
.yf5{bottom:533.026667pt;}
.y285{bottom:533.346667pt;}
.y126{bottom:533.666667pt;}
.y20c{bottom:536.386667pt;}
.y265{bottom:538.946667pt;}
.y1e5{bottom:541.666667pt;}
.yce{bottom:542.786667pt;}
.y193{bottom:544.386667pt;}
.y2a2{bottom:546.626667pt;}
.y244{bottom:546.946667pt;}
.y159{bottom:548.226667pt;}
.yf4{bottom:548.866667pt;}
.y74{bottom:549.026667pt;}
.y125{bottom:549.506667pt;}
.y20b{bottom:552.386667pt;}
.ya3{bottom:553.986667pt;}
.y264{bottom:554.786667pt;}
.y284{bottom:557.346667pt;}
.y243{bottom:562.786667pt;}
.yf3{bottom:564.706667pt;}
.y124{bottom:565.346667pt;}
.y1e4{bottom:565.666667pt;}
.y20a{bottom:568.226667pt;}
.ya2{bottom:569.986667pt;}
.y2a1{bottom:570.466667pt;}
.ycd{bottom:570.626667pt;}
.y263{bottom:570.786667pt;}
.y283{bottom:573.186667pt;}
.y73{bottom:574.626667pt;}
.y190{bottom:577.986667pt;}
.y242{bottom:578.786667pt;}
.yf2{bottom:580.546667pt;}
.y123{bottom:581.346667pt;}
.y1e3{bottom:581.506667pt;}
.y157{bottom:583.266667pt;}
.y209{bottom:584.066667pt;}
.y2a0{bottom:586.306667pt;}
.ycc{bottom:586.466667pt;}
.y262{bottom:586.626667pt;}
.y282{bottom:589.026667pt;}
.ya1{bottom:593.506667pt;}
.y241{bottom:594.626667pt;}
.y122{bottom:597.186667pt;}
.y1e2{bottom:597.346667pt;}
.y208{bottom:599.906667pt;}
.yf1{bottom:601.533333pt;}
.y29f{bottom:602.173333pt;}
.ycb{bottom:602.333333pt;}
.y72{bottom:602.493333pt;}
.y281{bottom:604.893333pt;}
.y240{bottom:610.493333pt;}
.y121{bottom:613.053333pt;}
.y1e1{bottom:613.213333pt;}
.y207{bottom:615.773333pt;}
.ya0{bottom:617.693333pt;}
.yca{bottom:618.173333pt;}
.y71{bottom:618.333333pt;}
.y180{bottom:623.293333pt;}
.yf0{bottom:624.733333pt;}
.y29e{bottom:626.013333pt;}
.y120{bottom:628.893333pt;}
.y1e0{bottom:629.053333pt;}
.y280{bottom:630.013333pt;}
.y70{bottom:634.173333pt;}
.y23f{bottom:634.333333pt;}
.y206{bottom:639.613333pt;}
.y9f{bottom:641.533333pt;}
.yc9{bottom:642.013333pt;}
.y1df{bottom:645.053333pt;}
.yef{bottom:647.773333pt;}
.y6f{bottom:650.013333pt;}
.y23e{bottom:650.173333pt;}
.y11f{bottom:652.413333pt;}
.y135{bottom:652.733333pt;}
.y156{bottom:653.373333pt;}
.y205{bottom:655.613333pt;}
.y29d{bottom:657.853333pt;}
.yc8{bottom:658.013333pt;}
.y9e{bottom:665.373333pt;}
.y6e{bottom:666.013333pt;}
.y134{bottom:668.573333pt;}
.y1de{bottom:668.893333pt;}
.yee{bottom:670.973333pt;}
.y204{bottom:671.453333pt;}
.yc7{bottom:673.853333pt;}
.y11e{bottom:676.573333pt;}
.y29c{bottom:681.693333pt;}
.y6d{bottom:681.853333pt;}
.y23d{bottom:682.013333pt;}
.y133{bottom:684.573333pt;}
.y1dd{bottom:684.733333pt;}
.y17f{bottom:685.693333pt;}
.y203{bottom:687.293333pt;}
.y189{bottom:687.840000pt;}
.y154{bottom:688.413333pt;}
.y9d{bottom:689.213333pt;}
.yc6{bottom:689.693333pt;}
.y11d{bottom:692.573333pt;}
.yed{bottom:694.013333pt;}
.y29b{bottom:697.533333pt;}
.y6c{bottom:697.693333pt;}
.y23c{bottom:697.853333pt;}
.y132{bottom:700.413333pt;}
.y1dc{bottom:700.573333pt;}
.y202{bottom:703.133333pt;}
.yc5{bottom:705.533333pt;}
.y11c{bottom:708.413333pt;}
.y9c{bottom:713.213333pt;}
.y29a{bottom:713.373333pt;}
.y261{bottom:713.533333pt;}
.y23b{bottom:713.693333pt;}
.y131{bottom:716.253333pt;}
.y1db{bottom:716.413333pt;}
.yec{bottom:717.213333pt;}
.y201{bottom:718.973333pt;}
.yc4{bottom:721.373333pt;}
.y6b{bottom:721.533333pt;}
.y153{bottom:723.453333pt;}
.y11b{bottom:724.253333pt;}
.y299{bottom:729.213333pt;}
.y260{bottom:729.373333pt;}
.y23a{bottom:729.533333pt;}
.y130{bottom:732.093333pt;}
.y1da{bottom:732.253333pt;}
.y200{bottom:734.973333pt;}
.y9b{bottom:737.053333pt;}
.y6a{bottom:737.373333pt;}
.y11a{bottom:740.093333pt;}
.yea{bottom:740.253333pt;}
.yc3{bottom:745.213333pt;}
.y239{bottom:745.373333pt;}
.y12f{bottom:747.933333pt;}
.y1d9{bottom:748.253333pt;}
.y69{bottom:753.213333pt;}
.y119{bottom:755.933333pt;}
.y150{bottom:759.293333pt;}
.y1ff{bottom:760.093333pt;}
.y9a{bottom:760.893333pt;}
.yc2{bottom:761.213333pt;}
.ye9{bottom:763.453333pt;}
.y1d8{bottom:764.093333pt;}
.y298{bottom:769.053333pt;}
.y68{bottom:769.213333pt;}
.y12e{bottom:771.453333pt;}
.y118{bottom:771.773333pt;}
.yc1{bottom:777.053333pt;}
.y238{bottom:777.213333pt;}
.y99{bottom:784.733333pt;}
.y297{bottom:784.893333pt;}
.y67{bottom:785.053333pt;}
.ye8{bottom:786.653333pt;}
.y22d{bottom:786.973333pt;}
.y117{bottom:787.773333pt;}
.yc0{bottom:792.893333pt;}
.y237{bottom:793.053333pt;}
.y12d{bottom:795.773333pt;}
.y14d{bottom:796.253333pt;}
.y296{bottom:800.733333pt;}
.y66{bottom:800.893333pt;}
.y116{bottom:803.613333pt;}
.y98{bottom:808.573333pt;}
.ybf{bottom:808.733333pt;}
.y236{bottom:808.893333pt;}
.ye7{bottom:809.733333pt;}
.y12c{bottom:811.653333pt;}
.y65{bottom:816.773333pt;}
.y115{bottom:819.493333pt;}
.y230{bottom:821.733333pt;}
.y25f{bottom:824.613333pt;}
.y1aa{bottom:824.773333pt;}
.y12b{bottom:827.493333pt;}
.ybe{bottom:832.293333pt;}
.y64{bottom:832.613333pt;}
.ye5{bottom:832.933333pt;}
.y1a9{bottom:840.613333pt;}
.y114{bottom:843.013333pt;}
.y12a{bottom:843.333333pt;}
.y14c{bottom:845.573333pt;}
.y1ac{bottom:848.613333pt;}
.y97{bottom:856.133333pt;}
.y22f{bottom:856.453333pt;}
.y63{bottom:856.613333pt;}
.ye3{bottom:858.053333pt;}
.y113{bottom:864.293333pt;}
.y1ab{bottom:864.453333pt;}
.y235{bottom:864.613333pt;}
.y14a{bottom:872.293333pt;}
.y62{bottom:872.453333pt;}
.y96{bottom:880.293333pt;}
.y234{bottom:880.453333pt;}
.y149{bottom:888.133333pt;}
.y61{bottom:888.293333pt;}
.y22c{bottom:891.013333pt;}
.ye2{bottom:895.813333pt;}
.y95{bottom:896.133333pt;}
.y233{bottom:896.293333pt;}
.y110{bottom:903.653333pt;}
.y148{bottom:903.973333pt;}
.y60{bottom:904.133333pt;}
.y94{bottom:911.973333pt;}
.y232{bottom:912.133333pt;}
.yd{bottom:917.093333pt;}
.y5f{bottom:919.973333pt;}
.y22b{bottom:925.093333pt;}
.y93{bottom:927.813333pt;}
.y1a8{bottom:927.973333pt;}
.y5e{bottom:935.813333pt;}
.yc{bottom:939.013333pt;}
.y10e{bottom:943.173333pt;}
.y92{bottom:943.813333pt;}
.y5d{bottom:951.813333pt;}
.yb{bottom:955.173333pt;}
.y91{bottom:959.653333pt;}
.y1a7{bottom:959.813333pt;}
.y5c{bottom:967.653333pt;}
.y90{bottom:975.493333pt;}
.y17e{bottom:975.653333pt;}
.ya{bottom:981.733333pt;}
.y5b{bottom:983.493333pt;}
.y10c{bottom:984.613333pt;}
.y5{bottom:989.280000pt;}
.y147{bottom:991.333333pt;}
.y14b{bottom:991.493333pt;}
.y226{bottom:993.893333pt;}
.y8f{bottom:999.013333pt;}
.ybd{bottom:999.333333pt;}
.y9{bottom:1006.533333pt;}
.y146{bottom:1007.173333pt;}
.y5a{bottom:1007.333333pt;}
.ybc{bottom:1015.173333pt;}
.y59{bottom:1023.200000pt;}
.y145{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.ybb{bottom:1038.880000pt;}
.y58{bottom:1039.200000pt;}
.y2{bottom:1050.240000pt;}
.y55{bottom:1052.000000pt;}
.y7{bottom:1058.880000pt;}
.y54{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h1a{height:23.026667pt;}
.h1e{height:23.040000pt;}
.h1c{height:23.060000pt;}
.h1b{height:23.186667pt;}
.h1d{height:23.200000pt;}
.h16{height:27.093750pt;}
.h41{height:28.626667pt;}
.hb{height:31.406250pt;}
.h35{height:31.520000pt;}
.h34{height:31.552000pt;}
.h38{height:31.712000pt;}
.h42{height:31.840000pt;}
.h3b{height:33.120000pt;}
.h11{height:33.515625pt;}
.h46{height:33.920000pt;}
.h43{height:33.952000pt;}
.h44{height:34.080000pt;}
.h2b{height:35.026667pt;}
.h27{height:35.040000pt;}
.h2e{height:35.058667pt;}
.h2a{height:35.066667pt;}
.h2c{height:35.186667pt;}
.h28{height:35.200000pt;}
.h25{height:35.220000pt;}
.h15{height:36.305625pt;}
.h21{height:39.346667pt;}
.h20{height:39.506667pt;}
.h1f{height:39.546667pt;}
.h18{height:39.562500pt;}
.h5{height:42.084375pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.hd{height:43.215000pt;}
.h2f{height:43.463750pt;}
.h26{height:47.085938pt;}
.h10{height:47.109375pt;}
.hf{height:48.375000pt;}
.h19{height:49.336436pt;}
.h2{height:52.134375pt;}
.h36{height:52.526250pt;}
.ha{height:53.370000pt;}
.h12{height:53.535000pt;}
.he{height:54.390938pt;}
.h33{height:56.017500pt;}
.h13{height:57.298667pt;}
.h31{height:57.667500pt;}
.h4{height:57.787500pt;}
.h32{height:57.798563pt;}
.h3{height:58.563750pt;}
.h3f{height:60.288750pt;}
.h17{height:62.812500pt;}
.h3c{height:63.040000pt;}
.h40{height:63.656250pt;}
.h14{height:64.500000pt;}
.h3a{height:64.832000pt;}
.h3d{height:65.120000pt;}
.h37{height:66.560000pt;}
.h2d{height:70.738667pt;}
.h24{height:74.477812pt;}
.h9{height:75.465000pt;}
.h23{height:76.671562pt;}
.h39{height:127.872000pt;}
.h6{height:133.280000pt;}
.h45{height:138.106667pt;}
.h29{height:245.466667pt;}
.h30{height:277.920000pt;}
.h3e{height:294.880000pt;}
.h22{height:345.920000pt;}
.hc{height:462.453333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w24{width:44.466667pt;}
.w25{width:53.106667pt;}
.w2b{width:67.680000pt;}
.w16{width:68.946667pt;}
.w2c{width:68.992000pt;}
.w27{width:70.898667pt;}
.w20{width:80.192000pt;}
.w6{width:81.266667pt;}
.w17{width:81.626667pt;}
.w30{width:86.272000pt;}
.wc{width:86.386667pt;}
.w22{width:86.750667pt;}
.wf{width:87.870667pt;}
.w19{width:88.352000pt;}
.wa{width:91.040000pt;}
.w14{width:92.192000pt;}
.w2f{width:92.480000pt;}
.w7{width:94.098667pt;}
.wb{width:94.112000pt;}
.w8{width:94.266667pt;}
.w15{width:96.178667pt;}
.w2e{width:99.232000pt;}
.w1d{width:100.512000pt;}
.w1f{width:105.632000pt;}
.w13{width:106.080000pt;}
.w26{width:106.578667pt;}
.w12{width:107.218667pt;}
.w2d{width:108.992000pt;}
.w9{width:121.300000pt;}
.w28{width:124.320000pt;}
.w1e{width:124.800000pt;}
.w29{width:135.546667pt;}
.w31{width:136.666667pt;}
.wd{width:139.213333pt;}
.w11{width:150.586667pt;}
.w1c{width:158.106667pt;}
.w1b{width:185.826667pt;}
.w3{width:188.345333pt;}
.w23{width:239.693333pt;}
.w1a{width:383.426667pt;}
.w2a{width:386.813333pt;}
.w10{width:401.680000pt;}
.w4{width:481.240000pt;}
.w21{width:493.120000pt;}
.w18{width:552.000000pt;}
.we{width:578.880000pt;}
.w5{width:670.238667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.906667pt;}
.x3{left:10.746667pt;}
.xc{left:16.318667pt;}
.xb{left:40.801333pt;}
.x6{left:44.800000pt;}
.x1{left:48.000000pt;}
.x12{left:49.280000pt;}
.x51{left:66.880000pt;}
.x3b{left:68.160000pt;}
.x38{left:69.413333pt;}
.x53{left:72.000000pt;}
.x2b{left:76.801333pt;}
.xf{left:84.672000pt;}
.x46{left:93.853333pt;}
.x54{left:96.032000pt;}
.x24{left:106.880000pt;}
.x27{left:116.893333pt;}
.x34{left:119.840000pt;}
.x47{left:122.653333pt;}
.x1e{left:130.921333pt;}
.x48{left:133.960000pt;}
.x8{left:136.666667pt;}
.x28{left:145.920000pt;}
.x3a{left:148.453333pt;}
.x42{left:149.760000pt;}
.x3c{left:156.506667pt;}
.x2c{left:164.680000pt;}
.x26{left:176.866667pt;}
.x49{left:178.440000pt;}
.x29{left:185.373333pt;}
.x43{left:190.400000pt;}
.x44{left:193.373333pt;}
.x4b{left:203.546667pt;}
.x9{left:211.066667pt;}
.x7{left:220.506667pt;}
.x36{left:222.853333pt;}
.xd{left:229.800000pt;}
.x45{left:230.693333pt;}
.x4a{left:249.346667pt;}
.x1f{left:252.226667pt;}
.x33{left:253.826667pt;}
.x1d{left:261.506667pt;}
.x37{left:265.026667pt;}
.x2e{left:271.906667pt;}
.x39{left:276.160000pt;}
.x25{left:294.373333pt;}
.x35{left:303.360000pt;}
.xa{left:304.386667pt;}
.x4e{left:312.546667pt;}
.x3e{left:314.626667pt;}
.x20{left:343.266667pt;}
.x2f{left:377.986667pt;}
.x52{left:389.506667pt;}
.x14{left:393.213333pt;}
.x4f{left:411.613333pt;}
.x3f{left:415.133333pt;}
.x10{left:420.893333pt;}
.x21{left:437.386667pt;}
.x15{left:444.893333pt;}
.x1a{left:448.586667pt;}
.x19{left:450.653333pt;}
.x11{left:457.533333pt;}
.x2a{left:460.866667pt;}
.x16{left:463.133333pt;}
.x18{left:468.893333pt;}
.x30{left:470.186667pt;}
.x17{left:487.133333pt;}
.x50{left:504.093333pt;}
.x22{left:523.786667pt;}
.x1b{left:529.866667pt;}
.x3d{left:539.933333pt;}
.x2d{left:566.373333pt;}
.x4c{left:590.373333pt;}
.x13{left:594.213333pt;}
.x1c{left:623.973333pt;}
.x31{left:635.333333pt;}
.x41{left:643.973333pt;}
.x40{left:645.573333pt;}
.x4d{left:658.053333pt;}
.x32{left:673.893333pt;}
.x23{left:687.013333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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