
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7408515b1d76890d06d65afe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_23d5ca5427db47f193ed20ac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5bda6d4b3cf42e58deb4ee97.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_42742283bdae30407edff3ca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aebd2ac591f083bd77f0c910.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6fdfa1c1d5701c3d8b964f04.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_788f10d4ea16cd796c5f238a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_5e1b812a835a2040c59b9647.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_576d9e83de5a1e5ff54c2249.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_c6dfa29ce9f7d39d2b75b303.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v1{vertical-align:15.120000px;}
.ls28{letter-spacing:-0.423600px;}
.ls9{letter-spacing:-0.186600px;}
.ls25{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.117600px;}
.ls12{letter-spacing:-0.105600px;}
.ls18{letter-spacing:-0.093000px;}
.ls3{letter-spacing:-0.090000px;}
.ls26{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.056160px;}
.ls14{letter-spacing:-0.048960px;}
.ls16{letter-spacing:-0.038880px;}
.ls15{letter-spacing:-0.014760px;}
.ls1d{letter-spacing:-0.007560px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.009360px;}
.ls10{letter-spacing:0.020880px;}
.ls4{letter-spacing:0.045000px;}
.ls6{letter-spacing:0.045360px;}
.ls7{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.074160px;}
.ls17{letter-spacing:0.086400px;}
.ls13{letter-spacing:0.115800px;}
.ls23{letter-spacing:0.127200px;}
.ls1f{letter-spacing:0.143400px;}
.ls27{letter-spacing:0.164400px;}
.ls8{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.179400px;}
.ls0{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.199200px;}
.ls24{letter-spacing:0.275400px;}
.ls21{letter-spacing:0.296640px;}
.lsf{letter-spacing:0.303840px;}
.ls11{letter-spacing:0.453600px;}
.ls22{letter-spacing:47.726640px;}
.lsc{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.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;}
}
.wse{word-spacing:-60.014400px;}
.ws0{word-spacing:-54.000000px;}
.wsd{word-spacing:-46.885680px;}
.ws8{word-spacing:-14.372400px;}
.ws17{word-spacing:-13.425600px;}
.ws16{word-spacing:-13.405800px;}
.ws6{word-spacing:-13.399800px;}
.ws1d{word-spacing:-13.390800px;}
.ws1a{word-spacing:-13.369800px;}
.ws1b{word-spacing:-13.353600px;}
.ws10{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws18{word-spacing:-13.218840px;}
.ws11{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.177440px;}
.wsa{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.133400px;}
.ws19{word-spacing:-13.108800px;}
.ws15{word-spacing:-13.072800px;}
.ws1c{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws1e{word-spacing:-12.802800px;}
.wsc{word-spacing:-10.554480px;}
.wsb{word-spacing:-10.542960px;}
.ws12{word-spacing:-10.533600px;}
.ws14{word-spacing:-10.477440px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-4.366322px;}
._c{margin-left:-3.302400px;}
._a{margin-left:-2.228400px;}
._0{margin-left:-1.020000px;}
._2{width:1.258787px;}
._5{width:2.799116px;}
._e{width:4.179968px;}
._d{width:5.604356px;}
._9{width:6.729600px;}
._6{width:7.815600px;}
._3{width:9.196320px;}
._4{width:10.401240px;}
._b{width:11.478840px;}
._7{width:14.488800px;}
._8{width:15.812402px;}
._11{width:17.374680px;}
._12{width:18.394689px;}
._13{width:19.484972px;}
._10{width:20.921760px;}
._19{width:22.064040px;}
._14{width:23.386680px;}
._15{width:24.472800px;}
._44{width:25.499534px;}
._46{width:27.117733px;}
._28{width:28.136160px;}
._53{width:29.937720px;}
._1f{width:31.021920px;}
._20{width:32.070360px;}
._22{width:33.366600px;}
._3a{width:35.320320px;}
._5e{width:37.272360px;}
._5d{width:38.356560px;}
._1{width:43.449588px;}
._21{width:45.871560px;}
._23{width:47.494800px;}
._5c{width:48.576960px;}
._26{width:50.861520px;}
._68{width:56.091960px;}
._67{width:57.234240px;}
._1e{width:58.436640px;}
._18{width:60.180120px;}
._37{width:61.623000px;}
._39{width:63.306360px;}
._1c{width:65.891520px;}
._2b{width:73.045800px;}
._1a{width:75.510720px;}
._6a{width:76.953600px;}
._2a{width:78.216120px;}
._1b{width:82.845360px;}
._3f{width:87.414480px;}
._40{width:88.479000px;}
._4b{width:90.540720px;}
._25{width:92.705040px;}
._17{width:96.492600px;}
._2e{width:97.514640px;}
._5f{width:100.155720px;}
._54{width:103.807800px;}
._2c{width:105.149880px;}
._4c{width:112.484520px;}
._1d{width:114.829200px;}
._41{width:116.649120px;}
._42{width:117.751200px;}
._58{width:119.933400px;}
._59{width:121.268040px;}
._30{width:124.027560px;}
._3d{width:127.875240px;}
._47{width:132.710400px;}
._33{width:133.887240px;}
._2d{width:139.617840px;}
._29{width:143.566560px;}
._49{width:151.682760px;}
._24{width:155.891160px;}
._32{width:160.131240px;}
._5a{width:164.909160px;}
._27{width:184.808880px;}
._35{width:194.548320px;}
._31{width:201.522240px;}
._2f{width:211.442040px;}
._60{width:217.333800px;}
._61{width:218.733960px;}
._36{width:231.882840px;}
._34{width:237.695880px;}
._16{width:247.574160px;}
._38{width:283.706280px;}
._57{width:303.796200px;}
._48{width:309.270360px;}
._63{width:332.596200px;}
._3b{width:340.820280px;}
._3c{width:342.120000px;}
._56{width:343.438200px;}
._3e{width:347.716200px;}
._62{width:352.830720px;}
._69{width:426.852000px;}
._43{width:490.042080px;}
._45{width:492.489600px;}
._51{width:503.204400px;}
._50{width:504.948720px;}
._5b{width:560.438640px;}
._64{width:563.046240px;}
._65{width:570.899520px;}
._4a{width:621.733800px;}
._52{width:1004.785560px;}
._4e{width:1009.474920px;}
._4d{width:1104.103800px;}
._4f{width:2209.410000px;}
._66{width:2232.435960px;}
._55{width:2238.628320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y164{bottom:7.830000px;}
.y161{bottom:7.920000px;}
.y222{bottom:7.950000px;}
.y206{bottom:25.380000px;}
.y160{bottom:25.470000px;}
.y221{bottom:25.500000px;}
.y163{bottom:43.020000px;}
.y209{bottom:43.050000px;}
.y166{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:96.060000px;}
.y49{bottom:113.700000px;}
.y2cd{bottom:116.940000px;}
.y8c{bottom:117.390000px;}
.y1c0{bottom:119.550000px;}
.y1fb{bottom:121.170000px;}
.y186{bottom:121.710000px;}
.y2e3{bottom:125.940000px;}
.y210{bottom:126.750000px;}
.yb4{bottom:127.920000px;}
.y1aa{bottom:130.080000px;}
.y29{bottom:131.340000px;}
.y63{bottom:133.050000px;}
.y2cc{bottom:134.580000px;}
.y8b{bottom:134.940000px;}
.y1bf{bottom:137.100000px;}
.y22b{bottom:137.190000px;}
.y1fa{bottom:138.720000px;}
.y185{bottom:139.350000px;}
.y293{bottom:139.530000px;}
.y1de{bottom:139.620000px;}
.y2e2{bottom:143.580000px;}
.y2dd{bottom:143.940000px;}
.y20f{bottom:144.300000px;}
.y276{bottom:144.480000px;}
.yb3{bottom:145.470000px;}
.y25b{bottom:146.100000px;}
.y1a9{bottom:147.630000px;}
.y28{bottom:148.890000px;}
.y62{bottom:150.600000px;}
.y12c{bottom:152.130000px;}
.y8a{bottom:152.580000px;}
.y1be{bottom:154.740000px;}
.y26d{bottom:155.550000px;}
.y1f9{bottom:156.270000px;}
.y184{bottom:156.900000px;}
.y1dd{bottom:157.170000px;}
.y15e{bottom:159.870000px;}
.y2e1{bottom:161.130000px;}
.y2dc{bottom:161.580000px;}
.y275{bottom:162.030000px;}
.y25a{bottom:163.740000px;}
.yb2{bottom:163.920000px;}
.y1a8{bottom:165.180000px;}
.y27{bottom:166.530000px;}
.y48{bottom:166.890000px;}
.y61{bottom:168.240000px;}
.y12b{bottom:169.680000px;}
.y89{bottom:170.130000px;}
.y2bc{bottom:170.400000px;}
.y1bd{bottom:172.290000px;}
.y26c{bottom:173.190000px;}
.y1f8{bottom:173.910000px;}
.y1dc{bottom:174.810000px;}
.y292{bottom:175.170000px;}
.y2cb{bottom:178.680000px;}
.y2db{bottom:179.130000px;}
.y20e{bottom:179.220000px;}
.yfe{bottom:179.400000px;}
.y274{bottom:179.580000px;}
.y259{bottom:181.290000px;}
.yb1{bottom:181.470000px;}
.y1a7{bottom:182.820000px;}
.y149{bottom:183.720000px;}
.y26{bottom:184.080000px;}
.y60{bottom:185.790000px;}
.y12a{bottom:187.320000px;}
.y2e0{bottom:187.680000px;}
.y2bb{bottom:187.950000px;}
.y22a{bottom:189.930000px;}
.y26b{bottom:190.740000px;}
.y20d{bottom:191.370000px;}
.y1db{bottom:192.360000px;}
.y183{bottom:192.540000px;}
.y291{bottom:192.720000px;}
.y15d{bottom:195.510000px;}
.y2ca{bottom:196.320000px;}
.y88{bottom:196.680000px;}
.yfd{bottom:197.040000px;}
.y273{bottom:197.220000px;}
.y1bc{bottom:198.840000px;}
.y258{bottom:198.930000px;}
.y47{bottom:199.110000px;}
.yb0{bottom:199.920000px;}
.y148{bottom:201.270000px;}
.ye1{bottom:201.360000px;}
.y5f{bottom:203.340000px;}
.y129{bottom:204.870000px;}
.y2df{bottom:205.320000px;}
.y2ba{bottom:205.590000px;}
.y2da{bottom:205.680000px;}
.y229{bottom:207.480000px;}
.y26a{bottom:208.290000px;}
.y1a6{bottom:209.370000px;}
.y1f7{bottom:209.460000px;}
.y1da{bottom:209.910000px;}
.y290{bottom:210.270000px;}
.yfc{bottom:214.590000px;}
.y272{bottom:214.770000px;}
.y257{bottom:216.480000px;}
.yaf{bottom:217.470000px;}
.y147{bottom:218.910000px;}
.ye0{bottom:219.000000px;}
.y25{bottom:219.630000px;}
.y5e{bottom:220.980000px;}
.y128{bottom:222.510000px;}
.y2c9{bottom:222.870000px;}
.y2b9{bottom:223.140000px;}
.y2d9{bottom:223.320000px;}
.y228{bottom:225.120000px;}
.y269{bottom:225.930000px;}
.y1f6{bottom:227.100000px;}
.y28f{bottom:227.910000px;}
.y182{bottom:228.090000px;}
.y15c{bottom:231.060000px;}
.yfb{bottom:232.230000px;}
.y87{bottom:232.320000px;}
.y271{bottom:232.410000px;}
.y256{bottom:234.030000px;}
.y1bb{bottom:234.480000px;}
.yae{bottom:235.920000px;}
.y146{bottom:236.460000px;}
.ydf{bottom:236.550000px;}
.y24{bottom:237.270000px;}
.y5d{bottom:238.530000px;}
.y27e{bottom:240.060000px;}
.y2c8{bottom:240.510000px;}
.y2b8{bottom:240.780000px;}
.y2d8{bottom:240.870000px;}
.y1a5{bottom:241.950000px;}
.y268{bottom:243.480000px;}
.y1f5{bottom:244.650000px;}
.y28e{bottom:245.460000px;}
.y1d9{bottom:245.550000px;}
.y181{bottom:245.640000px;}
.y2eb{bottom:249.510000px;}
.yfa{bottom:249.780000px;}
.y86{bottom:249.870000px;}
.y270{bottom:249.960000px;}
.y255{bottom:251.670000px;}
.y1ba{bottom:252.030000px;}
.yad{bottom:253.470000px;}
.y20c{bottom:253.830000px;}
.y145{bottom:254.010000px;}
.yde{bottom:254.190000px;}
.y23{bottom:254.820000px;}
.y5c{bottom:256.170000px;}
.y27d{bottom:257.610000px;}
.y127{bottom:258.060000px;}
.y2d7{bottom:258.510000px;}
.y227{bottom:259.950000px;}
.y267{bottom:261.120000px;}
.y1f4{bottom:262.200000px;}
.y1d8{bottom:263.100000px;}
.y180{bottom:263.280000px;}
.y15b{bottom:266.610000px;}
.y2c7{bottom:267.060000px;}
.yf9{bottom:267.330000px;}
.y85{bottom:267.510000px;}
.y1b9{bottom:269.670000px;}
.ydd{bottom:271.740000px;}
.y226{bottom:272.100000px;}
.y22{bottom:272.460000px;}
.y5b{bottom:273.720000px;}
.y126{bottom:275.610000px;}
.y2ef{bottom:276.060000px;}
.y1a4{bottom:277.590000px;}
.y254{bottom:278.220000px;}
.y1f3{bottom:279.840000px;}
.y28d{bottom:280.650000px;}
.y1d7{bottom:280.740000px;}
.y17f{bottom:280.830000px;}
.y15a{bottom:284.250000px;}
.y2c6{bottom:284.610000px;}
.y2b7{bottom:284.880000px;}
.yf8{bottom:284.970000px;}
.y84{bottom:285.060000px;}
.y26f{bottom:285.510000px;}
.y1b8{bottom:287.220000px;}
.ydc{bottom:289.290000px;}
.y144{bottom:289.650000px;}
.yac{bottom:289.920000px;}
.y21{bottom:290.010000px;}
.y125{bottom:293.250000px;}
.y2ee{bottom:293.610000px;}
.y1a3{bottom:295.140000px;}
.y266{bottom:295.950000px;}
.y1f2{bottom:297.390000px;}
.y28c{bottom:298.200000px;}
.y1d6{bottom:298.290000px;}
.y17e{bottom:298.470000px;}
.y159{bottom:301.800000px;}
.y2de{bottom:302.250000px;}
.yf7{bottom:302.520000px;}
.y83{bottom:302.610000px;}
.y1b7{bottom:304.770000px;}
.ydb{bottom:306.930000px;}
.y143{bottom:307.200000px;}
.yab{bottom:307.470000px;}
.y265{bottom:308.100000px;}
.y5a{bottom:309.270000px;}
.y124{bottom:310.800000px;}
.y2c5{bottom:311.250000px;}
.y1a2{bottom:312.690000px;}
.y253{bottom:313.860000px;}
.y1d5{bottom:315.840000px;}
.y17d{bottom:316.020000px;}
.y20b{bottom:316.380000px;}
.y225{bottom:317.010000px;}
.y26e{bottom:317.730000px;}
.y158{bottom:319.440000px;}
.y2ea{bottom:319.800000px;}
.y2b6{bottom:320.070000px;}
.yf6{bottom:320.160000px;}
.y82{bottom:320.250000px;}
.y1b6{bottom:322.410000px;}
.y142{bottom:324.840000px;}
.yaa{bottom:325.110000px;}
.y20{bottom:325.560000px;}
.y123{bottom:328.440000px;}
.y2c4{bottom:328.800000px;}
.y1a1{bottom:330.240000px;}
.y252{bottom:331.410000px;}
.y1f1{bottom:332.940000px;}
.y28b{bottom:333.390000px;}
.y1d4{bottom:333.480000px;}
.y17c{bottom:333.570000px;}
.y157{bottom:336.990000px;}
.yf5{bottom:337.710000px;}
.y2ed{bottom:337.800000px;}
.y141{bottom:342.390000px;}
.yda{bottom:342.480000px;}
.y1f{bottom:343.200000px;}
.y59{bottom:344.190000px;}
.y122{bottom:345.990000px;}
.y2c3{bottom:346.440000px;}
.y2b5{bottom:346.620000px;}
.y2d6{bottom:346.800000px;}
.y1a0{bottom:348.690000px;}
.y251{bottom:348.960000px;}
.y1f0{bottom:350.580000px;}
.y28a{bottom:350.940000px;}
.y17b{bottom:351.120000px;}
.y58{bottom:355.620000px;}
.y81{bottom:355.800000px;}
.y1b5{bottom:357.960000px;}
.y140{bottom:359.940000px;}
.y1d3{bottom:360.030000px;}
.yd9{bottom:360.120000px;}
.ya9{bottom:360.660000px;}
.y1e{bottom:360.750000px;}
.y224{bottom:362.010000px;}
.y156{bottom:363.540000px;}
.y2e9{bottom:363.990000px;}
.y2b4{bottom:364.260000px;}
.y2d5{bottom:364.440000px;}
.y19f{bottom:366.330000px;}
.y250{bottom:366.600000px;}
.y1ef{bottom:368.130000px;}
.y289{bottom:368.580000px;}
.y264{bottom:370.650000px;}
.y2c2{bottom:372.990000px;}
.yf4{bottom:373.260000px;}
.y80{bottom:373.440000px;}
.y1b4{bottom:375.600000px;}
.y13f{bottom:377.580000px;}
.yd8{bottom:377.670000px;}
.ya8{bottom:378.210000px;}
.y1d{bottom:378.300000px;}
.y20a{bottom:378.840000px;}
.y27c{bottom:381.180000px;}
.y121{bottom:381.540000px;}
.y2b3{bottom:381.810000px;}
.y2d4{bottom:381.990000px;}
.y19e{bottom:383.880000px;}
.y24f{bottom:384.150000px;}
.y1ee{bottom:385.770000px;}
.y288{bottom:386.130000px;}
.y17a{bottom:387.570000px;}
.y2c1{bottom:390.540000px;}
.yf3{bottom:390.900000px;}
.y7f{bottom:390.990000px;}
.y1b3{bottom:393.150000px;}
.y13e{bottom:395.130000px;}
.yd7{bottom:395.220000px;}
.y1d2{bottom:395.670000px;}
.y1c{bottom:395.940000px;}
.ya7{bottom:396.660000px;}
.y120{bottom:399.180000px;}
.y2b2{bottom:399.450000px;}
.y2d3{bottom:399.540000px;}
.y19d{bottom:401.520000px;}
.y1ed{bottom:403.320000px;}
.y287{bottom:403.770000px;}
.y179{bottom:405.210000px;}
.y2c0{bottom:408.180000px;}
.yf2{bottom:408.450000px;}
.y7e{bottom:408.540000px;}
.y1b2{bottom:410.700000px;}
.y13d{bottom:412.770000px;}
.yd6{bottom:412.860000px;}
.y1d1{bottom:413.220000px;}
.y1b{bottom:413.490000px;}
.ya6{bottom:414.210000px;}
.y11f{bottom:416.730000px;}
.y19c{bottom:419.070000px;}
.y24e{bottom:419.790000px;}
.y1ec{bottom:420.870000px;}
.y178{bottom:422.760000px;}
.y223{bottom:424.470000px;}
.y2e8{bottom:425.730000px;}
.yf1{bottom:426.000000px;}
.y7d{bottom:426.180000px;}
.y1b1{bottom:428.340000px;}
.yd5{bottom:430.410000px;}
.y286{bottom:430.680000px;}
.y1d0{bottom:430.770000px;}
.ya5{bottom:432.660000px;}
.y263{bottom:433.110000px;}
.y11e{bottom:434.370000px;}
.y2bf{bottom:434.730000px;}
.y24d{bottom:437.340000px;}
.y208{bottom:441.390000px;}
.y2e7{bottom:443.370000px;}
.y2b1{bottom:443.550000px;}
.yf0{bottom:443.640000px;}
.y7c{bottom:443.730000px;}
.y1b0{bottom:445.890000px;}
.y1eb{bottom:447.780000px;}
.y13c{bottom:448.320000px;}
.y1cf{bottom:448.410000px;}
.y1a{bottom:449.130000px;}
.y177{bottom:449.400000px;}
.ya4{bottom:450.210000px;}
.y11d{bottom:451.920000px;}
.y19b{bottom:452.100000px;}
.y2be{bottom:452.370000px;}
.y24c{bottom:454.890000px;}
.y2e6{bottom:460.920000px;}
.y2b0{bottom:461.190000px;}
.y7b{bottom:461.370000px;}
.y13b{bottom:465.870000px;}
.y1ce{bottom:465.960000px;}
.yd4{bottom:466.050000px;}
.y19{bottom:466.680000px;}
.ya3{bottom:468.660000px;}
.y220{bottom:469.380000px;}
.y155{bottom:469.470000px;}
.y2bd{bottom:469.950000px;}
.y24b{bottom:472.560000px;}
.y262{bottom:478.050000px;}
.y2e5{bottom:478.500000px;}
.y285{bottom:478.950000px;}
.yef{bottom:479.220000px;}
.y1af{bottom:481.560000px;}
.y13a{bottom:483.540000px;}
.yd3{bottom:483.630000px;}
.y18{bottom:484.260000px;}
.y176{bottom:484.980000px;}
.ya2{bottom:486.240000px;}
.y27b{bottom:487.140000px;}
.y11c{bottom:487.500000px;}
.y2af{bottom:487.770000px;}
.y24a{bottom:490.110000px;}
.y1ea{bottom:496.140000px;}
.y284{bottom:496.500000px;}
.yee{bottom:496.860000px;}
.y7a{bottom:496.950000px;}
.y139{bottom:501.090000px;}
.yd2{bottom:501.180000px;}
.y1cd{bottom:501.630000px;}
.y17{bottom:501.900000px;}
.y175{bottom:502.530000px;}
.y207{bottom:503.880000px;}
.y11b{bottom:505.140000px;}
.y2ae{bottom:505.410000px;}
.y2d2{bottom:505.500000px;}
.y1e9{bottom:513.690000px;}
.y283{bottom:514.140000px;}
.y21f{bottom:514.320000px;}
.yed{bottom:514.410000px;}
.y79{bottom:514.500000px;}
.y1ae{bottom:516.390000px;}
.y138{bottom:518.640000px;}
.yd1{bottom:518.820000px;}
.y1cc{bottom:519.180000px;}
.y174{bottom:520.170000px;}
.ya1{bottom:522.690000px;}
.y2ad{bottom:522.960000px;}
.y2d1{bottom:523.140000px;}
.y249{bottom:525.750000px;}
.y1ad{bottom:527.820000px;}
.y1e8{bottom:531.330000px;}
.y282{bottom:531.690000px;}
.yec{bottom:531.960000px;}
.y78{bottom:532.140000px;}
.yd0{bottom:536.370000px;}
.y1cb{bottom:536.730000px;}
.y16{bottom:537.450000px;}
.y173{bottom:537.720000px;}
.ya0{bottom:540.330000px;}
.y261{bottom:540.600000px;}
.y2d0{bottom:540.690000px;}
.y248{bottom:543.300000px;}
.y137{bottom:545.280000px;}
.y1e7{bottom:548.880000px;}
.y281{bottom:549.330000px;}
.y2ac{bottom:549.510000px;}
.yeb{bottom:549.600000px;}
.y77{bottom:549.690000px;}
.ycf{bottom:554.010000px;}
.y1ca{bottom:554.370000px;}
.y15{bottom:555.090000px;}
.y172{bottom:555.360000px;}
.y11a{bottom:557.880000px;}
.y2cf{bottom:558.330000px;}
.y247{bottom:560.850000px;}
.y1e6{bottom:566.430000px;}
.y280{bottom:566.880000px;}
.yea{bottom:567.150000px;}
.y76{bottom:567.330000px;}
.y1c9{bottom:571.920000px;}
.y14{bottom:572.640000px;}
.y19a{bottom:574.800000px;}
.y154{bottom:575.430000px;}
.y9f{bottom:575.880000px;}
.y21e{bottom:576.870000px;}
.y136{bottom:577.860000px;}
.y246{bottom:578.490000px;}
.y119{bottom:584.430000px;}
.y75{bottom:584.880000px;}
.y46{bottom:587.310000px;}
.yce{bottom:589.560000px;}
.y13{bottom:590.190000px;}
.y171{bottom:590.910000px;}
.y153{bottom:593.070000px;}
.y9e{bottom:593.430000px;}
.y2ab{bottom:594.060000px;}
.y245{bottom:596.040000px;}
.y1e5{bottom:602.070000px;}
.y74{bottom:602.430000px;}
.ye9{bottom:602.790000px;}
.y260{bottom:603.060000px;}
.y45{bottom:604.860000px;}
.y199{bottom:607.020000px;}
.ycd{bottom:607.110000px;}
.y12{bottom:607.830000px;}
.y170{bottom:608.460000px;}
.y152{bottom:610.620000px;}
.y9d{bottom:611.070000px;}
.y135{bottom:613.410000px;}
.y244{bottom:613.590000px;}
.y1e4{bottom:619.620000px;}
.y118{bottom:620.070000px;}
.ye8{bottom:620.340000px;}
.y21d{bottom:621.780000px;}
.y44{bottom:622.410000px;}
.ycc{bottom:624.750000px;}
.y1c8{bottom:625.110000px;}
.y11{bottom:625.380000px;}
.y16f{bottom:626.100000px;}
.y9c{bottom:628.620000px;}
.y205{bottom:628.980000px;}
.y73{bottom:629.070000px;}
.y134{bottom:631.050000px;}
.y243{bottom:631.230000px;}
.y1e3{bottom:637.260000px;}
.y117{bottom:637.620000px;}
.ye7{bottom:637.890000px;}
.y43{bottom:640.050000px;}
.ycb{bottom:642.300000px;}
.y1c7{bottom:642.660000px;}
.y10{bottom:643.020000px;}
.y16e{bottom:643.650000px;}
.y151{bottom:646.260000px;}
.y133{bottom:648.600000px;}
.y1e2{bottom:654.810000px;}
.y116{bottom:655.260000px;}
.ye6{bottom:655.530000px;}
.y42{bottom:657.600000px;}
.y242{bottom:657.780000px;}
.yca{bottom:659.940000px;}
.y1c6{bottom:660.300000px;}
.yf{bottom:660.570000px;}
.y16d{bottom:661.200000px;}
.y150{bottom:663.810000px;}
.y9b{bottom:664.260000px;}
.y72{bottom:664.620000px;}
.y25f{bottom:665.610000px;}
.y132{bottom:666.240000px;}
.y21c{bottom:666.690000px;}
.y2aa{bottom:669.210000px;}
.y1e1{bottom:672.360000px;}
.y115{bottom:672.810000px;}
.ye5{bottom:673.080000px;}
.y41{bottom:675.240000px;}
.yc9{bottom:677.490000px;}
.y1c5{bottom:677.850000px;}
.ye{bottom:678.120000px;}
.y14f{bottom:681.360000px;}
.y9a{bottom:681.810000px;}
.y71{bottom:682.260000px;}
.y131{bottom:683.790000px;}
.y114{bottom:690.360000px;}
.y204{bottom:691.440000px;}
.y40{bottom:692.790000px;}
.y241{bottom:693.420000px;}
.y198{bottom:693.600000px;}
.y1c4{bottom:695.490000px;}
.yd{bottom:695.760000px;}
.y16c{bottom:696.840000px;}
.y14e{bottom:699.000000px;}
.y99{bottom:699.360000px;}
.ye4{bottom:699.720000px;}
.y70{bottom:699.810000px;}
.y130{bottom:701.340000px;}
.yc8{bottom:704.040000px;}
.y2a9{bottom:706.560000px;}
.y113{bottom:708.000000px;}
.y3f{bottom:710.340000px;}
.y240{bottom:710.970000px;}
.y21b{bottom:711.600000px;}
.y16b{bottom:714.390000px;}
.y14d{bottom:716.550000px;}
.y98{bottom:717.000000px;}
.y6f{bottom:717.360000px;}
.yc{bottom:722.670000px;}
.y112{bottom:725.550000px;}
.y2ec{bottom:726.000000px;}
.y3e{bottom:727.980000px;}
.y25e{bottom:728.160000px;}
.y23f{bottom:728.520000px;}
.y197{bottom:729.150000px;}
.y1c3{bottom:731.040000px;}
.y14c{bottom:734.190000px;}
.y97{bottom:734.550000px;}
.y6e{bottom:735.000000px;}
.ye3{bottom:735.270000px;}
.y203{bottom:736.350000px;}
.y12f{bottom:736.980000px;}
.yc7{bottom:739.950000px;}
.y111{bottom:743.190000px;}
.y27f{bottom:743.550000px;}
.y23e{bottom:746.160000px;}
.y196{bottom:746.790000px;}
.y16a{bottom:749.310000px;}
.y96{bottom:752.190000px;}
.y6d{bottom:752.550000px;}
.y2a8{bottom:754.800000px;}
.y110{bottom:760.740000px;}
.y27a{bottom:761.190000px;}
.y169{bottom:761.460000px;}
.y3d{bottom:763.530000px;}
.y23d{bottom:763.710000px;}
.y195{bottom:764.340000px;}
.y1c2{bottom:765.870000px;}
.ye2{bottom:767.490000px;}
.yb{bottom:769.380000px;}
.y95{bottom:769.740000px;}
.y6c{bottom:770.190000px;}
.y12e{bottom:771.810000px;}
.y2a7{bottom:772.440000px;}
.y25d{bottom:773.070000px;}
.y1c1{bottom:777.300000px;}
.y21a{bottom:777.930000px;}
.y10f{bottom:778.290000px;}
.y279{bottom:778.740000px;}
.y3c{bottom:781.170000px;}
.y23c{bottom:781.350000px;}
.y194{bottom:781.980000px;}
.y12d{bottom:783.240000px;}
.y94{bottom:787.290000px;}
.y6b{bottom:787.740000px;}
.yc6{bottom:788.280000px;}
.y14b{bottom:796.290000px;}
.y3b{bottom:798.720000px;}
.y23b{bottom:798.900000px;}
.y193{bottom:799.530000px;}
.y202{bottom:802.680000px;}
.y2e4{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.y2ce{bottom:805.290000px;}
.yc5{bottom:805.830000px;}
.y2a6{bottom:807.990000px;}
.y219{bottom:813.480000px;}
.y10e{bottom:813.930000px;}
.y3a{bottom:816.270000px;}
.y25c{bottom:817.980000px;}
.y93{bottom:822.930000px;}
.y6a{bottom:823.290000px;}
.yc4{bottom:823.380000px;}
.y168{bottom:823.920000px;}
.y2a5{bottom:825.630000px;}
.y218{bottom:831.030000px;}
.y10d{bottom:831.480000px;}
.y39{bottom:833.910000px;}
.y23a{bottom:834.450000px;}
.y192{bottom:835.170000px;}
.y201{bottom:838.230000px;}
.y57{bottom:840.480000px;}
.y69{bottom:840.930000px;}
.yc3{bottom:841.020000px;}
.y9{bottom:841.200000px;}
.y2a4{bottom:843.180000px;}
.y191{bottom:847.410000px;}
.y217{bottom:848.670000px;}
.y10c{bottom:849.030000px;}
.y38{bottom:851.460000px;}
.y239{bottom:852.090000px;}
.y200{bottom:855.780000px;}
.y92{bottom:858.030000px;}
.y68{bottom:858.480000px;}
.yc2{bottom:858.570000px;}
.y2a3{bottom:861.630000px;}
.y216{bottom:866.220000px;}
.y10b{bottom:866.670000px;}
.y278{bottom:867.030000px;}
.y37{bottom:869.100000px;}
.y238{bottom:869.640000px;}
.y1ff{bottom:873.420000px;}
.y190{bottom:874.680000px;}
.y91{bottom:875.670000px;}
.y56{bottom:876.030000px;}
.yc1{bottom:876.210000px;}
.y2a2{bottom:879.180000px;}
.y8{bottom:880.980000px;}
.y10a{bottom:884.220000px;}
.y277{bottom:884.670000px;}
.y167{bottom:886.470000px;}
.y36{bottom:886.650000px;}
.y237{bottom:887.280000px;}
.y215{bottom:892.860000px;}
.y90{bottom:893.220000px;}
.y55{bottom:893.670000px;}
.yc0{bottom:893.760000px;}
.y2a1{bottom:896.730000px;}
.y7{bottom:898.980000px;}
.y1fe{bottom:899.970000px;}
.y1e0{bottom:901.860000px;}
.y18f{bottom:902.040000px;}
.y14a{bottom:902.220000px;}
.y35{bottom:904.200000px;}
.y236{bottom:904.830000px;}
.y8f{bottom:910.860000px;}
.y54{bottom:911.220000px;}
.ybf{bottom:911.310000px;}
.y2a0{bottom:915.180000px;}
.y6{bottom:916.980000px;}
.y109{bottom:919.860000px;}
.y34{bottom:921.840000px;}
.y235{bottom:922.380000px;}
.y1df{bottom:928.410000px;}
.y53{bottom:928.860000px;}
.ybe{bottom:928.950000px;}
.y18e{bottom:929.400000px;}
.y1fd{bottom:932.550000px;}
.y29f{bottom:932.730000px;}
.y108{bottom:937.410000px;}
.y33{bottom:939.390000px;}
.y214{bottom:945.960000px;}
.y52{bottom:946.410000px;}
.ybd{bottom:946.500000px;}
.y165{bottom:948.930000px;}
.y5{bottom:949.110000px;}
.y29e{bottom:950.280000px;}
.y107{bottom:954.960000px;}
.y18d{bottom:956.760000px;}
.y234{bottom:958.020000px;}
.y213{bottom:963.600000px;}
.y51{bottom:963.960000px;}
.ybc{bottom:964.140000px;}
.y32{bottom:966.030000px;}
.y1fc{bottom:968.460000px;}
.y29d{bottom:968.730000px;}
.y106{bottom:972.600000px;}
.y233{bottom:975.570000px;}
.y212{bottom:981.150000px;}
.y50{bottom:981.600000px;}
.ybb{bottom:981.690000px;}
.y67{bottom:981.960000px;}
.y18c{bottom:984.030000px;}
.y29c{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y105{bottom:990.150000px;}
.y232{bottom:993.210000px;}
.y211{bottom:998.790000px;}
.y4f{bottom:999.150000px;}
.y66{bottom:999.600000px;}
.y31{bottom:1001.850000px;}
.y29b{bottom:1003.920000px;}
.yba{bottom:1008.240000px;}
.y231{bottom:1010.790000px;}
.y18b{bottom:1011.420000px;}
.y162{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.y4e{bottom:1016.820000px;}
.y65{bottom:1017.180000px;}
.y29a{bottom:1022.400000px;}
.y104{bottom:1025.820000px;}
.y230{bottom:1028.340000px;}
.y8e{bottom:1034.370000px;}
.y64{bottom:1034.820000px;}
.y299{bottom:1039.950000px;}
.yb9{bottom:1040.850000px;}
.y103{bottom:1043.370000px;}
.y22f{bottom:1045.980000px;}
.y30{bottom:1050.210000px;}
.y8d{bottom:1051.920000px;}
.y4d{bottom:1052.370000px;}
.y298{bottom:1057.500000px;}
.yb8{bottom:1058.400000px;}
.y102{bottom:1060.920000px;}
.y22e{bottom:1063.530000px;}
.y2f{bottom:1067.760000px;}
.y1ac{bottom:1069.560000px;}
.y4c{bottom:1069.920000px;}
.y15f{bottom:1073.970000px;}
.y297{bottom:1075.950000px;}
.yb7{bottom:1076.850000px;}
.y18a{bottom:1077.750000px;}
.y101{bottom:1078.560000px;}
.y22d{bottom:1081.170000px;}
.y2e{bottom:1085.670000px;}
.y1ab{bottom:1087.110000px;}
.y4b{bottom:1087.560000px;}
.y296{bottom:1093.500000px;}
.yb6{bottom:1095.300000px;}
.y100{bottom:1096.110000px;}
.y189{bottom:1104.300000px;}
.y4a{bottom:1105.110000px;}
.y22c{bottom:1107.720000px;}
.y295{bottom:1111.050000px;}
.yb5{bottom:1112.850000px;}
.yff{bottom:1113.750000px;}
.y188{bottom:1121.850000px;}
.y2d{bottom:1122.750000px;}
.y294{bottom:1138.860000px;}
.y187{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h14{height:26.640000px;}
.h12{height:26.670000px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:40.539023px;}
.h17{height:44.100000px;}
.he{height:44.190000px;}
.h16{height:44.220000px;}
.h2{height:45.720703px;}
.h7{height:50.902383px;}
.h5{height:53.340820px;}
.h8{height:55.779258px;}
.hd{height:59.973223px;}
.hf{height:61.740000px;}
.h15{height:61.770000px;}
.hc{height:61.793886px;}
.h11{height:61.830000px;}
.h10{height:61.860000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:68.130000px;}
.we{width:84.240000px;}
.w3{width:88.650000px;}
.wf{width:90.810000px;}
.w21{width:97.470000px;}
.w1a{width:97.920000px;}
.wd{width:98.190000px;}
.w5{width:99.090000px;}
.w1e{width:102.330000px;}
.w11{width:103.320000px;}
.w19{width:107.940000px;}
.w13{width:117.840000px;}
.w1c{width:118.560000px;}
.w4{width:118.650000px;}
.w17{width:120.600000px;}
.w8{width:123.030000px;}
.w14{width:123.660000px;}
.w6{width:124.560000px;}
.w18{width:126.990000px;}
.w7{width:129.000000px;}
.w12{width:131.850000px;}
.w1d{width:134.820000px;}
.w1f{width:135.480000px;}
.w15{width:136.620000px;}
.wa{width:137.460000px;}
.w10{width:138.540000px;}
.w16{width:146.010000px;}
.wb{width:148.140000px;}
.w1b{width:152.370000px;}
.wc{width:155.460000px;}
.w20{width:163.350000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.960000px;}
.x26{left:7.740000px;}
.x1{left:68.040000px;}
.x18{left:87.570000px;}
.x9{left:95.039987px;}
.x35{left:111.239987px;}
.xd{left:120.599987px;}
.xa{left:122.039987px;}
.x5{left:150.119987px;}
.x10{left:158.220000px;}
.x25{left:162.839987px;}
.x31{left:188.040000px;}
.x16{left:197.579987px;}
.x2{left:202.799987px;}
.x27{left:208.020000px;}
.x2c{left:215.490000px;}
.x7{left:222.419987px;}
.x19{left:225.750000px;}
.xc{left:232.589987px;}
.x24{left:243.119987px;}
.xe{left:254.009987px;}
.x22{left:256.799987px;}
.x30{left:260.489987px;}
.x8{left:263.639987px;}
.x1e{left:273.179987px;}
.x11{left:277.590000px;}
.x28{left:312.150000px;}
.x32{left:323.580000px;}
.x2d{left:336.900000px;}
.x20{left:353.819987px;}
.x1a{left:374.700000px;}
.x12{left:377.400000px;}
.x17{left:397.109987px;}
.x33{left:426.630000px;}
.x29{left:444.810000px;}
.x2e{left:464.700000px;}
.x13{left:502.680000px;}
.x1b{left:530.880000px;}
.x2a{left:563.370000px;}
.x1f{left:572.639987px;}
.x1c{left:629.880000px;}
.x14{left:632.490000px;}
.x2f{left:672.090000px;}
.x6{left:681.809987px;}
.x2b{left:687.840000px;}
.x4{left:698.639987px;}
.x34{left:700.889987px;}
.xb{left:709.889987px;}
.x1d{left:714.930000px;}
.x21{left:726.809987px;}
.x23{left:734.639987px;}
.x15{left:756.330000px;}
.x3{left:792.059987px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v1{vertical-align:13.440000pt;}
.ls28{letter-spacing:-0.376533pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls25{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.104533pt;}
.ls12{letter-spacing:-0.093867pt;}
.ls18{letter-spacing:-0.082667pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls26{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.049920pt;}
.ls14{letter-spacing:-0.043520pt;}
.ls16{letter-spacing:-0.034560pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls1d{letter-spacing:-0.006720pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.008320pt;}
.ls10{letter-spacing:0.018560pt;}
.ls4{letter-spacing:0.040000pt;}
.ls6{letter-spacing:0.040320pt;}
.ls7{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.065920pt;}
.ls17{letter-spacing:0.076800pt;}
.ls13{letter-spacing:0.102933pt;}
.ls23{letter-spacing:0.113067pt;}
.ls1f{letter-spacing:0.127467pt;}
.ls27{letter-spacing:0.146133pt;}
.ls8{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.159467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.177067pt;}
.ls24{letter-spacing:0.244800pt;}
.ls21{letter-spacing:0.263680pt;}
.lsf{letter-spacing:0.270080pt;}
.ls11{letter-spacing:0.403200pt;}
.ls22{letter-spacing:42.423680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.wse{word-spacing:-53.346133pt;}
.ws0{word-spacing:-48.000000pt;}
.wsd{word-spacing:-41.676160pt;}
.ws8{word-spacing:-12.775467pt;}
.ws17{word-spacing:-11.933867pt;}
.ws16{word-spacing:-11.916267pt;}
.ws6{word-spacing:-11.910933pt;}
.ws1d{word-spacing:-11.902933pt;}
.ws1a{word-spacing:-11.884267pt;}
.ws1b{word-spacing:-11.869867pt;}
.ws10{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws18{word-spacing:-11.750080pt;}
.ws11{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.713280pt;}
.wsa{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.674133pt;}
.ws19{word-spacing:-11.652267pt;}
.ws15{word-spacing:-11.620267pt;}
.ws1c{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws1e{word-spacing:-11.380267pt;}
.wsc{word-spacing:-9.381760pt;}
.wsb{word-spacing:-9.371520pt;}
.ws12{word-spacing:-9.363200pt;}
.ws14{word-spacing:-9.313280pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-3.881175pt;}
._c{margin-left:-2.935466pt;}
._a{margin-left:-1.980800pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.118922pt;}
._5{width:2.488103pt;}
._e{width:3.715527pt;}
._d{width:4.981650pt;}
._9{width:5.981867pt;}
._6{width:6.947200pt;}
._3{width:8.174507pt;}
._4{width:9.245547pt;}
._b{width:10.203414pt;}
._7{width:12.878933pt;}
._8{width:14.055468pt;}
._11{width:15.444160pt;}
._12{width:16.350835pt;}
._13{width:17.319975pt;}
._10{width:18.597120pt;}
._19{width:19.612480pt;}
._14{width:20.788160pt;}
._15{width:21.753600pt;}
._44{width:22.666252pt;}
._46{width:24.104651pt;}
._28{width:25.009920pt;}
._53{width:26.611307pt;}
._1f{width:27.575040pt;}
._20{width:28.506987pt;}
._22{width:29.659200pt;}
._3a{width:31.395840pt;}
._5e{width:33.130987pt;}
._5d{width:34.094720pt;}
._1{width:38.621856pt;}
._21{width:40.774720pt;}
._23{width:42.217600pt;}
._5c{width:43.179520pt;}
._26{width:45.210240pt;}
._68{width:49.859520pt;}
._67{width:50.874880pt;}
._1e{width:51.943680pt;}
._18{width:53.493440pt;}
._37{width:54.776000pt;}
._39{width:56.272320pt;}
._1c{width:58.570240pt;}
._2b{width:64.929600pt;}
._1a{width:67.120640pt;}
._6a{width:68.403200pt;}
._2a{width:69.525440pt;}
._1b{width:73.640320pt;}
._3f{width:77.701760pt;}
._40{width:78.648000pt;}
._4b{width:80.480640pt;}
._25{width:82.404480pt;}
._17{width:85.771200pt;}
._2e{width:86.679680pt;}
._5f{width:89.027307pt;}
._54{width:92.273600pt;}
._2c{width:93.466560pt;}
._4c{width:99.986240pt;}
._1d{width:102.070400pt;}
._41{width:103.688107pt;}
._42{width:104.667733pt;}
._58{width:106.607467pt;}
._59{width:107.793813pt;}
._30{width:110.246720pt;}
._3d{width:113.666880pt;}
._47{width:117.964800pt;}
._33{width:119.010880pt;}
._2d{width:124.104747pt;}
._29{width:127.614720pt;}
._49{width:134.829120pt;}
._24{width:138.569920pt;}
._32{width:142.338880pt;}
._5a{width:146.585920pt;}
._27{width:164.274560pt;}
._35{width:172.931840pt;}
._31{width:179.130880pt;}
._2f{width:187.948480pt;}
._60{width:193.185600pt;}
._61{width:194.430186pt;}
._36{width:206.118080pt;}
._34{width:211.285227pt;}
._16{width:220.065920pt;}
._38{width:252.183360pt;}
._57{width:270.041067pt;}
._48{width:274.906987pt;}
._63{width:295.641067pt;}
._3b{width:302.951360pt;}
._3c{width:304.106667pt;}
._56{width:305.278400pt;}
._3e{width:309.081067pt;}
._62{width:313.627307pt;}
._69{width:379.424000pt;}
._43{width:435.592960pt;}
._45{width:437.768533pt;}
._51{width:447.292800pt;}
._50{width:448.843306pt;}
._5b{width:498.167680pt;}
._64{width:500.485547pt;}
._65{width:507.466240pt;}
._4a{width:552.652267pt;}
._52{width:893.142720pt;}
._4e{width:897.311040pt;}
._4d{width:981.425600pt;}
._4f{width:1963.920000pt;}
._66{width:1984.387520pt;}
._55{width:1989.891840pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:6.960000pt;}
.y161{bottom:7.040000pt;}
.y222{bottom:7.066667pt;}
.y206{bottom:22.560000pt;}
.y160{bottom:22.640000pt;}
.y221{bottom:22.666667pt;}
.y163{bottom:38.240000pt;}
.y209{bottom:38.266667pt;}
.y166{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:85.386667pt;}
.y49{bottom:101.066667pt;}
.y2cd{bottom:103.946667pt;}
.y8c{bottom:104.346667pt;}
.y1c0{bottom:106.266667pt;}
.y1fb{bottom:107.706667pt;}
.y186{bottom:108.186667pt;}
.y2e3{bottom:111.946667pt;}
.y210{bottom:112.666667pt;}
.yb4{bottom:113.706667pt;}
.y1aa{bottom:115.626667pt;}
.y29{bottom:116.746667pt;}
.y63{bottom:118.266667pt;}
.y2cc{bottom:119.626667pt;}
.y8b{bottom:119.946667pt;}
.y1bf{bottom:121.866667pt;}
.y22b{bottom:121.946667pt;}
.y1fa{bottom:123.306667pt;}
.y185{bottom:123.866667pt;}
.y293{bottom:124.026667pt;}
.y1de{bottom:124.106667pt;}
.y2e2{bottom:127.626667pt;}
.y2dd{bottom:127.946667pt;}
.y20f{bottom:128.266667pt;}
.y276{bottom:128.426667pt;}
.yb3{bottom:129.306667pt;}
.y25b{bottom:129.866667pt;}
.y1a9{bottom:131.226667pt;}
.y28{bottom:132.346667pt;}
.y62{bottom:133.866667pt;}
.y12c{bottom:135.226667pt;}
.y8a{bottom:135.626667pt;}
.y1be{bottom:137.546667pt;}
.y26d{bottom:138.266667pt;}
.y1f9{bottom:138.906667pt;}
.y184{bottom:139.466667pt;}
.y1dd{bottom:139.706667pt;}
.y15e{bottom:142.106667pt;}
.y2e1{bottom:143.226667pt;}
.y2dc{bottom:143.626667pt;}
.y275{bottom:144.026667pt;}
.y25a{bottom:145.546667pt;}
.yb2{bottom:145.706667pt;}
.y1a8{bottom:146.826667pt;}
.y27{bottom:148.026667pt;}
.y48{bottom:148.346667pt;}
.y61{bottom:149.546667pt;}
.y12b{bottom:150.826667pt;}
.y89{bottom:151.226667pt;}
.y2bc{bottom:151.466667pt;}
.y1bd{bottom:153.146667pt;}
.y26c{bottom:153.946667pt;}
.y1f8{bottom:154.586667pt;}
.y1dc{bottom:155.386667pt;}
.y292{bottom:155.706667pt;}
.y2cb{bottom:158.826667pt;}
.y2db{bottom:159.226667pt;}
.y20e{bottom:159.306667pt;}
.yfe{bottom:159.466667pt;}
.y274{bottom:159.626667pt;}
.y259{bottom:161.146667pt;}
.yb1{bottom:161.306667pt;}
.y1a7{bottom:162.506667pt;}
.y149{bottom:163.306667pt;}
.y26{bottom:163.626667pt;}
.y60{bottom:165.146667pt;}
.y12a{bottom:166.506667pt;}
.y2e0{bottom:166.826667pt;}
.y2bb{bottom:167.066667pt;}
.y22a{bottom:168.826667pt;}
.y26b{bottom:169.546667pt;}
.y20d{bottom:170.106667pt;}
.y1db{bottom:170.986667pt;}
.y183{bottom:171.146667pt;}
.y291{bottom:171.306667pt;}
.y15d{bottom:173.786667pt;}
.y2ca{bottom:174.506667pt;}
.y88{bottom:174.826667pt;}
.yfd{bottom:175.146667pt;}
.y273{bottom:175.306667pt;}
.y1bc{bottom:176.746667pt;}
.y258{bottom:176.826667pt;}
.y47{bottom:176.986667pt;}
.yb0{bottom:177.706667pt;}
.y148{bottom:178.906667pt;}
.ye1{bottom:178.986667pt;}
.y5f{bottom:180.746667pt;}
.y129{bottom:182.106667pt;}
.y2df{bottom:182.506667pt;}
.y2ba{bottom:182.746667pt;}
.y2da{bottom:182.826667pt;}
.y229{bottom:184.426667pt;}
.y26a{bottom:185.146667pt;}
.y1a6{bottom:186.106667pt;}
.y1f7{bottom:186.186667pt;}
.y1da{bottom:186.586667pt;}
.y290{bottom:186.906667pt;}
.yfc{bottom:190.746667pt;}
.y272{bottom:190.906667pt;}
.y257{bottom:192.426667pt;}
.yaf{bottom:193.306667pt;}
.y147{bottom:194.586667pt;}
.ye0{bottom:194.666667pt;}
.y25{bottom:195.226667pt;}
.y5e{bottom:196.426667pt;}
.y128{bottom:197.786667pt;}
.y2c9{bottom:198.106667pt;}
.y2b9{bottom:198.346667pt;}
.y2d9{bottom:198.506667pt;}
.y228{bottom:200.106667pt;}
.y269{bottom:200.826667pt;}
.y1f6{bottom:201.866667pt;}
.y28f{bottom:202.586667pt;}
.y182{bottom:202.746667pt;}
.y15c{bottom:205.386667pt;}
.yfb{bottom:206.426667pt;}
.y87{bottom:206.506667pt;}
.y271{bottom:206.586667pt;}
.y256{bottom:208.026667pt;}
.y1bb{bottom:208.426667pt;}
.yae{bottom:209.706667pt;}
.y146{bottom:210.186667pt;}
.ydf{bottom:210.266667pt;}
.y24{bottom:210.906667pt;}
.y5d{bottom:212.026667pt;}
.y27e{bottom:213.386667pt;}
.y2c8{bottom:213.786667pt;}
.y2b8{bottom:214.026667pt;}
.y2d8{bottom:214.106667pt;}
.y1a5{bottom:215.066667pt;}
.y268{bottom:216.426667pt;}
.y1f5{bottom:217.466667pt;}
.y28e{bottom:218.186667pt;}
.y1d9{bottom:218.266667pt;}
.y181{bottom:218.346667pt;}
.y2eb{bottom:221.786667pt;}
.yfa{bottom:222.026667pt;}
.y86{bottom:222.106667pt;}
.y270{bottom:222.186667pt;}
.y255{bottom:223.706667pt;}
.y1ba{bottom:224.026667pt;}
.yad{bottom:225.306667pt;}
.y20c{bottom:225.626667pt;}
.y145{bottom:225.786667pt;}
.yde{bottom:225.946667pt;}
.y23{bottom:226.506667pt;}
.y5c{bottom:227.706667pt;}
.y27d{bottom:228.986667pt;}
.y127{bottom:229.386667pt;}
.y2d7{bottom:229.786667pt;}
.y227{bottom:231.066667pt;}
.y267{bottom:232.106667pt;}
.y1f4{bottom:233.066667pt;}
.y1d8{bottom:233.866667pt;}
.y180{bottom:234.026667pt;}
.y15b{bottom:236.986667pt;}
.y2c7{bottom:237.386667pt;}
.yf9{bottom:237.626667pt;}
.y85{bottom:237.786667pt;}
.y1b9{bottom:239.706667pt;}
.ydd{bottom:241.546667pt;}
.y226{bottom:241.866667pt;}
.y22{bottom:242.186667pt;}
.y5b{bottom:243.306667pt;}
.y126{bottom:244.986667pt;}
.y2ef{bottom:245.386667pt;}
.y1a4{bottom:246.746667pt;}
.y254{bottom:247.306667pt;}
.y1f3{bottom:248.746667pt;}
.y28d{bottom:249.466667pt;}
.y1d7{bottom:249.546667pt;}
.y17f{bottom:249.626667pt;}
.y15a{bottom:252.666667pt;}
.y2c6{bottom:252.986667pt;}
.y2b7{bottom:253.226667pt;}
.yf8{bottom:253.306667pt;}
.y84{bottom:253.386667pt;}
.y26f{bottom:253.786667pt;}
.y1b8{bottom:255.306667pt;}
.ydc{bottom:257.146667pt;}
.y144{bottom:257.466667pt;}
.yac{bottom:257.706667pt;}
.y21{bottom:257.786667pt;}
.y125{bottom:260.666667pt;}
.y2ee{bottom:260.986667pt;}
.y1a3{bottom:262.346667pt;}
.y266{bottom:263.066667pt;}
.y1f2{bottom:264.346667pt;}
.y28c{bottom:265.066667pt;}
.y1d6{bottom:265.146667pt;}
.y17e{bottom:265.306667pt;}
.y159{bottom:268.266667pt;}
.y2de{bottom:268.666667pt;}
.yf7{bottom:268.906667pt;}
.y83{bottom:268.986667pt;}
.y1b7{bottom:270.906667pt;}
.ydb{bottom:272.826667pt;}
.y143{bottom:273.066667pt;}
.yab{bottom:273.306667pt;}
.y265{bottom:273.866667pt;}
.y5a{bottom:274.906667pt;}
.y124{bottom:276.266667pt;}
.y2c5{bottom:276.666667pt;}
.y1a2{bottom:277.946667pt;}
.y253{bottom:278.986667pt;}
.y1d5{bottom:280.746667pt;}
.y17d{bottom:280.906667pt;}
.y20b{bottom:281.226667pt;}
.y225{bottom:281.786667pt;}
.y26e{bottom:282.426667pt;}
.y158{bottom:283.946667pt;}
.y2ea{bottom:284.266667pt;}
.y2b6{bottom:284.506667pt;}
.yf6{bottom:284.586667pt;}
.y82{bottom:284.666667pt;}
.y1b6{bottom:286.586667pt;}
.y142{bottom:288.746667pt;}
.yaa{bottom:288.986667pt;}
.y20{bottom:289.386667pt;}
.y123{bottom:291.946667pt;}
.y2c4{bottom:292.266667pt;}
.y1a1{bottom:293.546667pt;}
.y252{bottom:294.586667pt;}
.y1f1{bottom:295.946667pt;}
.y28b{bottom:296.346667pt;}
.y1d4{bottom:296.426667pt;}
.y17c{bottom:296.506667pt;}
.y157{bottom:299.546667pt;}
.yf5{bottom:300.186667pt;}
.y2ed{bottom:300.266667pt;}
.y141{bottom:304.346667pt;}
.yda{bottom:304.426667pt;}
.y1f{bottom:305.066667pt;}
.y59{bottom:305.946667pt;}
.y122{bottom:307.546667pt;}
.y2c3{bottom:307.946667pt;}
.y2b5{bottom:308.106667pt;}
.y2d6{bottom:308.266667pt;}
.y1a0{bottom:309.946667pt;}
.y251{bottom:310.186667pt;}
.y1f0{bottom:311.626667pt;}
.y28a{bottom:311.946667pt;}
.y17b{bottom:312.106667pt;}
.y58{bottom:316.106667pt;}
.y81{bottom:316.266667pt;}
.y1b5{bottom:318.186667pt;}
.y140{bottom:319.946667pt;}
.y1d3{bottom:320.026667pt;}
.yd9{bottom:320.106667pt;}
.ya9{bottom:320.586667pt;}
.y1e{bottom:320.666667pt;}
.y224{bottom:321.786667pt;}
.y156{bottom:323.146667pt;}
.y2e9{bottom:323.546667pt;}
.y2b4{bottom:323.786667pt;}
.y2d5{bottom:323.946667pt;}
.y19f{bottom:325.626667pt;}
.y250{bottom:325.866667pt;}
.y1ef{bottom:327.226667pt;}
.y289{bottom:327.626667pt;}
.y264{bottom:329.466667pt;}
.y2c2{bottom:331.546667pt;}
.yf4{bottom:331.786667pt;}
.y80{bottom:331.946667pt;}
.y1b4{bottom:333.866667pt;}
.y13f{bottom:335.626667pt;}
.yd8{bottom:335.706667pt;}
.ya8{bottom:336.186667pt;}
.y1d{bottom:336.266667pt;}
.y20a{bottom:336.746667pt;}
.y27c{bottom:338.826667pt;}
.y121{bottom:339.146667pt;}
.y2b3{bottom:339.386667pt;}
.y2d4{bottom:339.546667pt;}
.y19e{bottom:341.226667pt;}
.y24f{bottom:341.466667pt;}
.y1ee{bottom:342.906667pt;}
.y288{bottom:343.226667pt;}
.y17a{bottom:344.506667pt;}
.y2c1{bottom:347.146667pt;}
.yf3{bottom:347.466667pt;}
.y7f{bottom:347.546667pt;}
.y1b3{bottom:349.466667pt;}
.y13e{bottom:351.226667pt;}
.yd7{bottom:351.306667pt;}
.y1d2{bottom:351.706667pt;}
.y1c{bottom:351.946667pt;}
.ya7{bottom:352.586667pt;}
.y120{bottom:354.826667pt;}
.y2b2{bottom:355.066667pt;}
.y2d3{bottom:355.146667pt;}
.y19d{bottom:356.906667pt;}
.y1ed{bottom:358.506667pt;}
.y287{bottom:358.906667pt;}
.y179{bottom:360.186667pt;}
.y2c0{bottom:362.826667pt;}
.yf2{bottom:363.066667pt;}
.y7e{bottom:363.146667pt;}
.y1b2{bottom:365.066667pt;}
.y13d{bottom:366.906667pt;}
.yd6{bottom:366.986667pt;}
.y1d1{bottom:367.306667pt;}
.y1b{bottom:367.546667pt;}
.ya6{bottom:368.186667pt;}
.y11f{bottom:370.426667pt;}
.y19c{bottom:372.506667pt;}
.y24e{bottom:373.146667pt;}
.y1ec{bottom:374.106667pt;}
.y178{bottom:375.786667pt;}
.y223{bottom:377.306667pt;}
.y2e8{bottom:378.426667pt;}
.yf1{bottom:378.666667pt;}
.y7d{bottom:378.826667pt;}
.y1b1{bottom:380.746667pt;}
.yd5{bottom:382.586667pt;}
.y286{bottom:382.826667pt;}
.y1d0{bottom:382.906667pt;}
.ya5{bottom:384.586667pt;}
.y263{bottom:384.986667pt;}
.y11e{bottom:386.106667pt;}
.y2bf{bottom:386.426667pt;}
.y24d{bottom:388.746667pt;}
.y208{bottom:392.346667pt;}
.y2e7{bottom:394.106667pt;}
.y2b1{bottom:394.266667pt;}
.yf0{bottom:394.346667pt;}
.y7c{bottom:394.426667pt;}
.y1b0{bottom:396.346667pt;}
.y1eb{bottom:398.026667pt;}
.y13c{bottom:398.506667pt;}
.y1cf{bottom:398.586667pt;}
.y1a{bottom:399.226667pt;}
.y177{bottom:399.466667pt;}
.ya4{bottom:400.186667pt;}
.y11d{bottom:401.706667pt;}
.y19b{bottom:401.866667pt;}
.y2be{bottom:402.106667pt;}
.y24c{bottom:404.346667pt;}
.y2e6{bottom:409.706667pt;}
.y2b0{bottom:409.946667pt;}
.y7b{bottom:410.106667pt;}
.y13b{bottom:414.106667pt;}
.y1ce{bottom:414.186667pt;}
.yd4{bottom:414.266667pt;}
.y19{bottom:414.826667pt;}
.ya3{bottom:416.586667pt;}
.y220{bottom:417.226667pt;}
.y155{bottom:417.306667pt;}
.y2bd{bottom:417.733333pt;}
.y24b{bottom:420.053333pt;}
.y262{bottom:424.933333pt;}
.y2e5{bottom:425.333333pt;}
.y285{bottom:425.733333pt;}
.yef{bottom:425.973333pt;}
.y1af{bottom:428.053333pt;}
.y13a{bottom:429.813333pt;}
.yd3{bottom:429.893333pt;}
.y18{bottom:430.453333pt;}
.y176{bottom:431.093333pt;}
.ya2{bottom:432.213333pt;}
.y27b{bottom:433.013333pt;}
.y11c{bottom:433.333333pt;}
.y2af{bottom:433.573333pt;}
.y24a{bottom:435.653333pt;}
.y1ea{bottom:441.013333pt;}
.y284{bottom:441.333333pt;}
.yee{bottom:441.653333pt;}
.y7a{bottom:441.733333pt;}
.y139{bottom:445.413333pt;}
.yd2{bottom:445.493333pt;}
.y1cd{bottom:445.893333pt;}
.y17{bottom:446.133333pt;}
.y175{bottom:446.693333pt;}
.y207{bottom:447.893333pt;}
.y11b{bottom:449.013333pt;}
.y2ae{bottom:449.253333pt;}
.y2d2{bottom:449.333333pt;}
.y1e9{bottom:456.613333pt;}
.y283{bottom:457.013333pt;}
.y21f{bottom:457.173333pt;}
.yed{bottom:457.253333pt;}
.y79{bottom:457.333333pt;}
.y1ae{bottom:459.013333pt;}
.y138{bottom:461.013333pt;}
.yd1{bottom:461.173333pt;}
.y1cc{bottom:461.493333pt;}
.y174{bottom:462.373333pt;}
.ya1{bottom:464.613333pt;}
.y2ad{bottom:464.853333pt;}
.y2d1{bottom:465.013333pt;}
.y249{bottom:467.333333pt;}
.y1ad{bottom:469.173333pt;}
.y1e8{bottom:472.293333pt;}
.y282{bottom:472.613333pt;}
.yec{bottom:472.853333pt;}
.y78{bottom:473.013333pt;}
.yd0{bottom:476.773333pt;}
.y1cb{bottom:477.093333pt;}
.y16{bottom:477.733333pt;}
.y173{bottom:477.973333pt;}
.ya0{bottom:480.293333pt;}
.y261{bottom:480.533333pt;}
.y2d0{bottom:480.613333pt;}
.y248{bottom:482.933333pt;}
.y137{bottom:484.693333pt;}
.y1e7{bottom:487.893333pt;}
.y281{bottom:488.293333pt;}
.y2ac{bottom:488.453333pt;}
.yeb{bottom:488.533333pt;}
.y77{bottom:488.613333pt;}
.ycf{bottom:492.453333pt;}
.y1ca{bottom:492.773333pt;}
.y15{bottom:493.413333pt;}
.y172{bottom:493.653333pt;}
.y11a{bottom:495.893333pt;}
.y2cf{bottom:496.293333pt;}
.y247{bottom:498.533333pt;}
.y1e6{bottom:503.493333pt;}
.y280{bottom:503.893333pt;}
.yea{bottom:504.133333pt;}
.y76{bottom:504.293333pt;}
.y1c9{bottom:508.373333pt;}
.y14{bottom:509.013333pt;}
.y19a{bottom:510.933333pt;}
.y154{bottom:511.493333pt;}
.y9f{bottom:511.893333pt;}
.y21e{bottom:512.773333pt;}
.y136{bottom:513.653333pt;}
.y246{bottom:514.213333pt;}
.y119{bottom:519.493333pt;}
.y75{bottom:519.893333pt;}
.y46{bottom:522.053333pt;}
.yce{bottom:524.053333pt;}
.y13{bottom:524.613333pt;}
.y171{bottom:525.253333pt;}
.y153{bottom:527.173333pt;}
.y9e{bottom:527.493333pt;}
.y2ab{bottom:528.053333pt;}
.y245{bottom:529.813333pt;}
.y1e5{bottom:535.173333pt;}
.y74{bottom:535.493333pt;}
.ye9{bottom:535.813333pt;}
.y260{bottom:536.053333pt;}
.y45{bottom:537.653333pt;}
.y199{bottom:539.573333pt;}
.ycd{bottom:539.653333pt;}
.y12{bottom:540.293333pt;}
.y170{bottom:540.853333pt;}
.y152{bottom:542.773333pt;}
.y9d{bottom:543.173333pt;}
.y135{bottom:545.253333pt;}
.y244{bottom:545.413333pt;}
.y1e4{bottom:550.773333pt;}
.y118{bottom:551.173333pt;}
.ye8{bottom:551.413333pt;}
.y21d{bottom:552.693333pt;}
.y44{bottom:553.253333pt;}
.ycc{bottom:555.333333pt;}
.y1c8{bottom:555.653333pt;}
.y11{bottom:555.893333pt;}
.y16f{bottom:556.533333pt;}
.y9c{bottom:558.773333pt;}
.y205{bottom:559.093333pt;}
.y73{bottom:559.173333pt;}
.y134{bottom:560.933333pt;}
.y243{bottom:561.093333pt;}
.y1e3{bottom:566.453333pt;}
.y117{bottom:566.773333pt;}
.ye7{bottom:567.013333pt;}
.y43{bottom:568.933333pt;}
.ycb{bottom:570.933333pt;}
.y1c7{bottom:571.253333pt;}
.y10{bottom:571.573333pt;}
.y16e{bottom:572.133333pt;}
.y151{bottom:574.453333pt;}
.y133{bottom:576.533333pt;}
.y1e2{bottom:582.053333pt;}
.y116{bottom:582.453333pt;}
.ye6{bottom:582.693333pt;}
.y42{bottom:584.533333pt;}
.y242{bottom:584.693333pt;}
.yca{bottom:586.613333pt;}
.y1c6{bottom:586.933333pt;}
.yf{bottom:587.173333pt;}
.y16d{bottom:587.733333pt;}
.y150{bottom:590.053333pt;}
.y9b{bottom:590.453333pt;}
.y72{bottom:590.773333pt;}
.y25f{bottom:591.653333pt;}
.y132{bottom:592.213333pt;}
.y21c{bottom:592.613333pt;}
.y2aa{bottom:594.853333pt;}
.y1e1{bottom:597.653333pt;}
.y115{bottom:598.053333pt;}
.ye5{bottom:598.293333pt;}
.y41{bottom:600.213333pt;}
.yc9{bottom:602.213333pt;}
.y1c5{bottom:602.533333pt;}
.ye{bottom:602.773333pt;}
.y14f{bottom:605.653333pt;}
.y9a{bottom:606.053333pt;}
.y71{bottom:606.453333pt;}
.y131{bottom:607.813333pt;}
.y114{bottom:613.653333pt;}
.y204{bottom:614.613333pt;}
.y40{bottom:615.813333pt;}
.y241{bottom:616.373333pt;}
.y198{bottom:616.533333pt;}
.y1c4{bottom:618.213333pt;}
.yd{bottom:618.453333pt;}
.y16c{bottom:619.413333pt;}
.y14e{bottom:621.333333pt;}
.y99{bottom:621.653333pt;}
.ye4{bottom:621.973333pt;}
.y70{bottom:622.053333pt;}
.y130{bottom:623.413333pt;}
.yc8{bottom:625.813333pt;}
.y2a9{bottom:628.053333pt;}
.y113{bottom:629.333333pt;}
.y3f{bottom:631.413333pt;}
.y240{bottom:631.973333pt;}
.y21b{bottom:632.533333pt;}
.y16b{bottom:635.013333pt;}
.y14d{bottom:636.933333pt;}
.y98{bottom:637.333333pt;}
.y6f{bottom:637.653333pt;}
.yc{bottom:642.373333pt;}
.y112{bottom:644.933333pt;}
.y2ec{bottom:645.333333pt;}
.y3e{bottom:647.093333pt;}
.y25e{bottom:647.253333pt;}
.y23f{bottom:647.573333pt;}
.y197{bottom:648.133333pt;}
.y1c3{bottom:649.813333pt;}
.y14c{bottom:652.613333pt;}
.y97{bottom:652.933333pt;}
.y6e{bottom:653.333333pt;}
.ye3{bottom:653.573333pt;}
.y203{bottom:654.533333pt;}
.y12f{bottom:655.093333pt;}
.yc7{bottom:657.733333pt;}
.y111{bottom:660.613333pt;}
.y27f{bottom:660.933333pt;}
.y23e{bottom:663.253333pt;}
.y196{bottom:663.813333pt;}
.y16a{bottom:666.053333pt;}
.y96{bottom:668.613333pt;}
.y6d{bottom:668.933333pt;}
.y2a8{bottom:670.933333pt;}
.y110{bottom:676.213333pt;}
.y27a{bottom:676.613333pt;}
.y169{bottom:676.853333pt;}
.y3d{bottom:678.693333pt;}
.y23d{bottom:678.853333pt;}
.y195{bottom:679.413333pt;}
.y1c2{bottom:680.773333pt;}
.ye2{bottom:682.213333pt;}
.yb{bottom:683.893333pt;}
.y95{bottom:684.213333pt;}
.y6c{bottom:684.613333pt;}
.y12e{bottom:686.053333pt;}
.y2a7{bottom:686.613333pt;}
.y25d{bottom:687.173333pt;}
.y1c1{bottom:690.933333pt;}
.y21a{bottom:691.493333pt;}
.y10f{bottom:691.813333pt;}
.y279{bottom:692.213333pt;}
.y3c{bottom:694.373333pt;}
.y23c{bottom:694.533333pt;}
.y194{bottom:695.093333pt;}
.y12d{bottom:696.213333pt;}
.y94{bottom:699.813333pt;}
.y6b{bottom:700.213333pt;}
.yc6{bottom:700.693333pt;}
.y14b{bottom:707.813333pt;}
.y3b{bottom:709.973333pt;}
.y23b{bottom:710.133333pt;}
.y193{bottom:710.693333pt;}
.y202{bottom:713.493333pt;}
.y2e4{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.y2ce{bottom:715.813333pt;}
.yc5{bottom:716.293333pt;}
.y2a6{bottom:718.213333pt;}
.y219{bottom:723.093333pt;}
.y10e{bottom:723.493333pt;}
.y3a{bottom:725.573333pt;}
.y25c{bottom:727.093333pt;}
.y93{bottom:731.493333pt;}
.y6a{bottom:731.813333pt;}
.yc4{bottom:731.893333pt;}
.y168{bottom:732.373333pt;}
.y2a5{bottom:733.893333pt;}
.y218{bottom:738.693333pt;}
.y10d{bottom:739.093333pt;}
.y39{bottom:741.253333pt;}
.y23a{bottom:741.733333pt;}
.y192{bottom:742.373333pt;}
.y201{bottom:745.093333pt;}
.y57{bottom:747.093333pt;}
.y69{bottom:747.493333pt;}
.yc3{bottom:747.573333pt;}
.y9{bottom:747.733333pt;}
.y2a4{bottom:749.493333pt;}
.y191{bottom:753.253333pt;}
.y217{bottom:754.373333pt;}
.y10c{bottom:754.693333pt;}
.y38{bottom:756.853333pt;}
.y239{bottom:757.413333pt;}
.y200{bottom:760.693333pt;}
.y92{bottom:762.693333pt;}
.y68{bottom:763.093333pt;}
.yc2{bottom:763.173333pt;}
.y2a3{bottom:765.893333pt;}
.y216{bottom:769.973333pt;}
.y10b{bottom:770.373333pt;}
.y278{bottom:770.693333pt;}
.y37{bottom:772.533333pt;}
.y238{bottom:773.013333pt;}
.y1ff{bottom:776.373333pt;}
.y190{bottom:777.493333pt;}
.y91{bottom:778.373333pt;}
.y56{bottom:778.693333pt;}
.yc1{bottom:778.853333pt;}
.y2a2{bottom:781.493333pt;}
.y8{bottom:783.093333pt;}
.y10a{bottom:785.973333pt;}
.y277{bottom:786.373333pt;}
.y167{bottom:787.973333pt;}
.y36{bottom:788.133333pt;}
.y237{bottom:788.693333pt;}
.y215{bottom:793.653333pt;}
.y90{bottom:793.973333pt;}
.y55{bottom:794.373333pt;}
.yc0{bottom:794.453333pt;}
.y2a1{bottom:797.093333pt;}
.y7{bottom:799.093333pt;}
.y1fe{bottom:799.973333pt;}
.y1e0{bottom:801.653333pt;}
.y18f{bottom:801.813333pt;}
.y14a{bottom:801.973333pt;}
.y35{bottom:803.733333pt;}
.y236{bottom:804.293333pt;}
.y8f{bottom:809.653333pt;}
.y54{bottom:809.973333pt;}
.ybf{bottom:810.053333pt;}
.y2a0{bottom:813.493333pt;}
.y6{bottom:815.093333pt;}
.y109{bottom:817.653333pt;}
.y34{bottom:819.413333pt;}
.y235{bottom:819.893333pt;}
.y1df{bottom:825.253333pt;}
.y53{bottom:825.653333pt;}
.ybe{bottom:825.733333pt;}
.y18e{bottom:826.133333pt;}
.y1fd{bottom:828.933333pt;}
.y29f{bottom:829.093333pt;}
.y108{bottom:833.253333pt;}
.y33{bottom:835.013333pt;}
.y214{bottom:840.853333pt;}
.y52{bottom:841.253333pt;}
.ybd{bottom:841.333333pt;}
.y165{bottom:843.493333pt;}
.y5{bottom:843.653333pt;}
.y29e{bottom:844.693333pt;}
.y107{bottom:848.853333pt;}
.y18d{bottom:850.453333pt;}
.y234{bottom:851.573333pt;}
.y213{bottom:856.533333pt;}
.y51{bottom:856.853333pt;}
.ybc{bottom:857.013333pt;}
.y32{bottom:858.693333pt;}
.y1fc{bottom:860.853333pt;}
.y29d{bottom:861.093333pt;}
.y106{bottom:864.533333pt;}
.y233{bottom:867.173333pt;}
.y212{bottom:872.133333pt;}
.y50{bottom:872.533333pt;}
.ybb{bottom:872.613333pt;}
.y67{bottom:872.853333pt;}
.y18c{bottom:874.693333pt;}
.y29c{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y105{bottom:880.133333pt;}
.y232{bottom:882.853333pt;}
.y211{bottom:887.813333pt;}
.y4f{bottom:888.133333pt;}
.y66{bottom:888.533333pt;}
.y31{bottom:890.533333pt;}
.y29b{bottom:892.373333pt;}
.yba{bottom:896.213333pt;}
.y231{bottom:898.480000pt;}
.y18b{bottom:899.040000pt;}
.y162{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.y4e{bottom:903.840000pt;}
.y65{bottom:904.160000pt;}
.y29a{bottom:908.800000pt;}
.y104{bottom:911.840000pt;}
.y230{bottom:914.080000pt;}
.y8e{bottom:919.440000pt;}
.y64{bottom:919.840000pt;}
.y299{bottom:924.400000pt;}
.yb9{bottom:925.200000pt;}
.y103{bottom:927.440000pt;}
.y22f{bottom:929.760000pt;}
.y30{bottom:933.520000pt;}
.y8d{bottom:935.040000pt;}
.y4d{bottom:935.440000pt;}
.y298{bottom:940.000000pt;}
.yb8{bottom:940.800000pt;}
.y102{bottom:943.040000pt;}
.y22e{bottom:945.360000pt;}
.y2f{bottom:949.120000pt;}
.y1ac{bottom:950.720000pt;}
.y4c{bottom:951.040000pt;}
.y15f{bottom:954.640000pt;}
.y297{bottom:956.400000pt;}
.yb7{bottom:957.200000pt;}
.y18a{bottom:958.000000pt;}
.y101{bottom:958.720000pt;}
.y22d{bottom:961.040000pt;}
.y2e{bottom:965.040000pt;}
.y1ab{bottom:966.320000pt;}
.y4b{bottom:966.720000pt;}
.y296{bottom:972.000000pt;}
.yb6{bottom:973.600000pt;}
.y100{bottom:974.320000pt;}
.y189{bottom:981.600000pt;}
.y4a{bottom:982.320000pt;}
.y22c{bottom:984.640000pt;}
.y295{bottom:987.600000pt;}
.yb5{bottom:989.200000pt;}
.yff{bottom:990.000000pt;}
.y188{bottom:997.200000pt;}
.y2d{bottom:998.000000pt;}
.y294{bottom:1012.320000pt;}
.y187{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h14{height:23.680000pt;}
.h12{height:23.706667pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:36.034687pt;}
.h17{height:39.200000pt;}
.he{height:39.280000pt;}
.h16{height:39.306667pt;}
.h2{height:40.640625pt;}
.h7{height:45.246562pt;}
.h5{height:47.414062pt;}
.h8{height:49.581562pt;}
.hd{height:53.309531pt;}
.hf{height:54.880000pt;}
.h15{height:54.906667pt;}
.hc{height:54.927899pt;}
.h11{height:54.960000pt;}
.h10{height:54.986667pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:60.560000pt;}
.we{width:74.880000pt;}
.w3{width:78.800000pt;}
.wf{width:80.720000pt;}
.w21{width:86.640000pt;}
.w1a{width:87.040000pt;}
.wd{width:87.280000pt;}
.w5{width:88.080000pt;}
.w1e{width:90.960000pt;}
.w11{width:91.840000pt;}
.w19{width:95.946667pt;}
.w13{width:104.746667pt;}
.w1c{width:105.386667pt;}
.w4{width:105.466667pt;}
.w17{width:107.200000pt;}
.w8{width:109.360000pt;}
.w14{width:109.920000pt;}
.w6{width:110.720000pt;}
.w18{width:112.880000pt;}
.w7{width:114.666667pt;}
.w12{width:117.200000pt;}
.w1d{width:119.840000pt;}
.w1f{width:120.426667pt;}
.w15{width:121.440000pt;}
.wa{width:122.186667pt;}
.w10{width:123.146667pt;}
.w16{width:129.786667pt;}
.wb{width:131.680000pt;}
.w1b{width:135.440000pt;}
.wc{width:138.186667pt;}
.w20{width:145.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:3.520000pt;}
.x26{left:6.880000pt;}
.x1{left:60.480000pt;}
.x18{left:77.840000pt;}
.x9{left:84.479988pt;}
.x35{left:98.879988pt;}
.xd{left:107.199988pt;}
.xa{left:108.479988pt;}
.x5{left:133.439988pt;}
.x10{left:140.640000pt;}
.x25{left:144.746655pt;}
.x31{left:167.146667pt;}
.x16{left:175.626655pt;}
.x2{left:180.266655pt;}
.x27{left:184.906667pt;}
.x2c{left:191.546667pt;}
.x7{left:197.706655pt;}
.x19{left:200.666667pt;}
.xc{left:206.746655pt;}
.x24{left:216.106655pt;}
.xe{left:225.786655pt;}
.x22{left:228.266655pt;}
.x30{left:231.546655pt;}
.x8{left:234.346655pt;}
.x1e{left:242.826655pt;}
.x11{left:246.746667pt;}
.x28{left:277.466667pt;}
.x32{left:287.626667pt;}
.x2d{left:299.466667pt;}
.x20{left:314.506655pt;}
.x1a{left:333.066667pt;}
.x12{left:335.466667pt;}
.x17{left:352.986655pt;}
.x33{left:379.226667pt;}
.x29{left:395.386667pt;}
.x2e{left:413.066667pt;}
.x13{left:446.826667pt;}
.x1b{left:471.893333pt;}
.x2a{left:500.773333pt;}
.x1f{left:509.013322pt;}
.x1c{left:559.893333pt;}
.x14{left:562.213333pt;}
.x2f{left:597.413333pt;}
.x6{left:606.053322pt;}
.x2b{left:611.413333pt;}
.x4{left:621.013322pt;}
.x34{left:623.013322pt;}
.xb{left:631.013322pt;}
.x1d{left:635.493333pt;}
.x21{left:646.053322pt;}
.x23{left:653.013322pt;}
.x15{left:672.293333pt;}
.x3{left:704.053322pt;}
}




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