
    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_6dd3e0157b4206be7ce5f6e7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e780ea7871f7cc8e12e3ca0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_48edb7dc5f0eea228111fbbe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_2f1e0c022c9f5e71a1800513.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3debe4e15a5e7f8c62aef904.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_eed95ce2c394c92667a0cfe7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.830078;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_94e1847d28bd3d4f53ab2d79.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5336b180cbbb1ed7cdb1f768.woff')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ec1837c01af5cfeea9593d63.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_a8fe7372baf44f2169d60bb5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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:ffe;src:url('chunks/assets/font_4e8890e709e85b609de5d084.woff')format("woff");}.ffe{font-family:ffe;line-height:0.980957;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.017280px;}
.lse{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.234000px;}
.ls1c{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:2.340000px;}
.ls16{letter-spacing:5.940000px;}
.ls12{letter-spacing:9.540000px;}
.ls9{letter-spacing:25.308000px;}
.ls8{letter-spacing:28.062720px;}
.ls5{letter-spacing:28.206720px;}
.lsa{letter-spacing:29.700000px;}
.ls7{letter-spacing:52.812000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-54.018000px;}
.ws13{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.595840px;}
.ws8{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.734000px;}
.wsa{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.374000px;}
.ws7{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.248000px;}
.ws14{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.888000px;}
.ws11{word-spacing:-12.564000px;}
.ws1{word-spacing:-10.440000px;}
.wse{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-4.114800px;}
._a{margin-left:-2.957040px;}
._2{margin-left:-1.516320px;}
._1{width:1.149120px;}
._6{width:2.509920px;}
._5{width:3.585600px;}
._c{width:4.752480px;}
._b{width:6.364800px;}
._4{width:8.052480px;}
._3{width:9.069840px;}
._9{width:10.517760px;}
._8{width:11.533680px;}
._7{width:13.133520px;}
._d{width:14.958000px;}
._1a{width:16.774320px;}
._17{width:17.778000px;}
._f{width:18.792000px;}
._13{width:20.466000px;}
._15{width:21.489840px;}
._14{width:22.788000px;}
._1e{width:24.031200px;}
._12{width:25.056000px;}
._26{width:26.228880px;}
._11{width:27.378000px;}
._10{width:28.404000px;}
._1b{width:29.596320px;}
._19{width:30.726000px;}
._29{width:32.242320px;}
._20{width:33.642000px;}
._1f{width:34.830000px;}
._23{width:36.450000px;}
._28{width:37.568880px;}
._2c{width:38.754000px;}
._2b{width:39.816000px;}
._2d{width:41.148000px;}
._22{width:42.282000px;}
._21{width:43.632000px;}
._24{width:45.090000px;}
._1c{width:46.440000px;}
._3b{width:47.844000px;}
._2f{width:49.086000px;}
._16{width:51.678000px;}
._e{width:52.704000px;}
._33{width:55.638000px;}
._2e{width:57.456000px;}
._47{width:59.148000px;}
._1d{width:60.696000px;}
._25{width:62.262000px;}
._2a{width:63.428400px;}
._27{width:67.122000px;}
._37{width:68.148000px;}
._36{width:69.444000px;}
._31{width:79.614000px;}
._48{width:86.832000px;}
._35{width:91.740000px;}
._34{width:103.728000px;}
._49{width:119.280000px;}
._45{width:138.150000px;}
._44{width:139.860000px;}
._4b{width:144.018000px;}
._3a{width:159.516000px;}
._39{width:160.542000px;}
._50{width:165.594000px;}
._4f{width:166.752000px;}
._30{width:201.450000px;}
._32{width:202.500000px;}
._43{width:244.746000px;}
._3d{width:249.984000px;}
._46{width:266.832000px;}
._4a{width:275.484000px;}
._41{width:283.284000px;}
._4e{width:285.078000px;}
._3c{width:293.430000px;}
._40{width:316.020000px;}
._4d{width:340.416000px;}
._4c{width:341.874000px;}
._3f{width:358.776000px;}
._3e{width:359.850000px;}
._42{width:372.060000px;}
._51{width:862.542000px;}
._38{width:1634.160000px;}
._0{width:2903.467200px;}
.fc8{color:rgb(38,74,96);}
.fc6{color:rgb(17,85,204);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc7{color:rgb(1,2,5);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.600000px;}
.y14{bottom:3.780000px;}
.y164{bottom:5.220000px;}
.y2{bottom:6.480000px;}
.y38{bottom:7.170000px;}
.y123{bottom:7.380000px;}
.y180{bottom:7.410000px;}
.y12b{bottom:7.560000px;}
.y128{bottom:7.605000px;}
.y160{bottom:9.720000px;}
.y16c{bottom:12.060000px;}
.y162{bottom:12.240000px;}
.y222{bottom:14.250000px;}
.y165{bottom:14.580000px;}
.y19{bottom:14.940000px;}
.y1b{bottom:16.200000px;}
.y166{bottom:16.740000px;}
.y22f{bottom:17.820000px;}
.y20f{bottom:18.540000px;}
.y20{bottom:19.260000px;}
.y231{bottom:20.160000px;}
.y126{bottom:20.205000px;}
.y6{bottom:22.500000px;}
.y13e{bottom:22.860000px;}
.y200{bottom:23.040000px;}
.y151{bottom:27.360000px;}
.y13c{bottom:27.540000px;}
.y21a{bottom:27.765000px;}
.y225{bottom:27.900000px;}
.y221{bottom:29.910000px;}
.y22b{bottom:30.780000px;}
.y16e{bottom:32.040000px;}
.y229{bottom:34.020000px;}
.y230{bottom:35.640000px;}
.y22e{bottom:37.980000px;}
.y202{bottom:38.340000px;}
.y31{bottom:38.370000px;}
.y1ff{bottom:38.520000px;}
.y20e{bottom:38.550000px;}
.y18{bottom:39.060000px;}
.y1d{bottom:39.780000px;}
.y5{bottom:41.040000px;}
.y1fd{bottom:43.020000px;}
.y219{bottom:43.245000px;}
.y220{bottom:45.390000px;}
.y1f{bottom:47.370000px;}
.y155{bottom:47.520000px;}
.y224{bottom:47.880000px;}
.y168{bottom:53.850000px;}
.y228{bottom:54.000000px;}
.y4{bottom:56.520000px;}
.y154{bottom:67.500000px;}
.y227{bottom:74.160000px;}
.y20a{bottom:81.180000px;}
.y11c{bottom:82.080000px;}
.yeb{bottom:82.260000px;}
.y93{bottom:83.340000px;}
.y2e{bottom:86.970000px;}
.y1ec{bottom:87.480000px;}
.y1b9{bottom:88.200000px;}
.y235{bottom:88.920000px;}
.y20c{bottom:89.100000px;}
.y11f{bottom:90.000000px;}
.ycd{bottom:91.080000px;}
.y14f{bottom:91.800000px;}
.y73{bottom:91.980000px;}
.y182{bottom:94.140000px;}
.y12{bottom:94.500000px;}
.y14a{bottom:96.660000px;}
.y11b{bottom:99.900000px;}
.yf5{bottom:100.080000px;}
.y25a{bottom:100.440000px;}
.y92{bottom:101.160000px;}
.y20b{bottom:104.610000px;}
.y1eb{bottom:105.300000px;}
.y1b8{bottom:106.020000px;}
.y210{bottom:106.560000px;}
.y234{bottom:106.740000px;}
.y2d{bottom:106.770000px;}
.y11e{bottom:107.820000px;}
.y10d{bottom:108.900000px;}
.yea{bottom:109.080000px;}
.y72{bottom:109.800000px;}
.y11{bottom:112.500000px;}
.y149{bottom:114.660000px;}
.ycc{bottom:117.900000px;}
.y259{bottom:118.260000px;}
.y91{bottom:118.980000px;}
.y11a{bottom:120.240000px;}
.y181{bottom:122.400000px;}
.y1ea{bottom:123.120000px;}
.y1b7{bottom:124.020000px;}
.y11d{bottom:125.820000px;}
.y10c{bottom:126.720000px;}
.y2c{bottom:126.750000px;}
.ye9{bottom:126.900000px;}
.y10{bottom:130.320000px;}
.ycb{bottom:135.720000px;}
.y258{bottom:136.080000px;}
.y71{bottom:136.620000px;}
.y90{bottom:136.800000px;}
.y14e{bottom:136.980000px;}
.y1e9{bottom:141.120000px;}
.y148{bottom:141.480000px;}
.y1b6{bottom:141.840000px;}
.y119{bottom:143.640000px;}
.y10b{bottom:144.540000px;}
.ye8{bottom:144.720000px;}
.y16{bottom:145.080000px;}
.y20d{bottom:147.240000px;}
.yca{bottom:153.540000px;}
.y257{bottom:153.900000px;}
.y70{bottom:154.620000px;}
.y14d{bottom:154.800000px;}
.y233{bottom:157.140000px;}
.y1e8{bottom:158.940000px;}
.y118{bottom:159.120000px;}
.y147{bottom:159.300000px;}
.y1b5{bottom:159.660000px;}
.yf{bottom:160.020000px;}
.ye7{bottom:162.540000px;}
.y17f{bottom:169.920000px;}
.yc9{bottom:171.540000px;}
.y256{bottom:171.720000px;}
.y6f{bottom:172.440000px;}
.y8f{bottom:172.620000px;}
.y2a{bottom:175.350000px;}
.y206{bottom:176.400000px;}
.y1e7{bottom:176.790000px;}
.y146{bottom:177.150000px;}
.y21{bottom:177.480000px;}
.y1b4{bottom:177.510000px;}
.y10a{bottom:180.390000px;}
.ye6{bottom:180.570000px;}
.y216{bottom:181.125000px;}
.y232{bottom:181.650000px;}
.yc8{bottom:189.390000px;}
.y255{bottom:189.570000px;}
.y6e{bottom:190.290000px;}
.y8e{bottom:190.470000px;}
.y205{bottom:191.880000px;}
.y1e6{bottom:194.610000px;}
.y145{bottom:194.970000px;}
.y29{bottom:195.150000px;}
.y1b3{bottom:195.330000px;}
.y32{bottom:196.050000px;}
.y1fb{bottom:196.380000px;}
.y215{bottom:196.785000px;}
.y109{bottom:198.210000px;}
.ye5{bottom:198.390000px;}
.y17e{bottom:200.550000px;}
.y203{bottom:203.610000px;}
.yc7{bottom:207.210000px;}
.y204{bottom:207.360000px;}
.y254{bottom:207.570000px;}
.y8d{bottom:208.290000px;}
.y1fa{bottom:211.860000px;}
.y214{bottom:212.265000px;}
.y1e5{bottom:212.430000px;}
.y1b2{bottom:213.330000px;}
.y21c{bottom:214.410000px;}
.y28{bottom:214.950000px;}
.y30{bottom:215.850000px;}
.y108{bottom:216.030000px;}
.ye4{bottom:216.210000px;}
.y6d{bottom:217.110000px;}
.y144{bottom:219.450000px;}
.yc6{bottom:225.030000px;}
.y253{bottom:225.390000px;}
.y8c{bottom:226.110000px;}
.y14c{bottom:226.290000px;}
.y1e4{bottom:230.250000px;}
.y17d{bottom:230.430000px;}
.y22d{bottom:230.790000px;}
.y1b1{bottom:231.150000px;}
.y107{bottom:233.850000px;}
.ye3{bottom:234.030000px;}
.y6c{bottom:234.930000px;}
.y143{bottom:235.110000px;}
.yc5{bottom:242.850000px;}
.y252{bottom:243.210000px;}
.y8b{bottom:243.930000px;}
.y14b{bottom:244.110000px;}
.y2f{bottom:244.650000px;}
.y17c{bottom:248.250000px;}
.y1b0{bottom:248.970000px;}
.y106{bottom:251.670000px;}
.ye2{bottom:251.850000px;}
.y6b{bottom:252.750000px;}
.y209{bottom:259.950000px;}
.yc4{bottom:260.670000px;}
.y251{bottom:261.030000px;}
.y26{bottom:263.775000px;}
.y1e3{bottom:266.070000px;}
.y1af{bottom:266.790000px;}
.ye1{bottom:269.670000px;}
.y8a{bottom:270.750000px;}
.y17b{bottom:275.070000px;}
.y142{bottom:275.970000px;}
.yc3{bottom:278.670000px;}
.y250{bottom:278.850000px;}
.y6a{bottom:279.750000px;}
.y25{bottom:283.575000px;}
.y1e2{bottom:283.890000px;}
.y1ae{bottom:284.610000px;}
.ye0{bottom:287.670000px;}
.y89{bottom:288.750000px;}
.yc2{bottom:296.490000px;}
.y24f{bottom:296.670000px;}
.y22c{bottom:297.030000px;}
.y69{bottom:297.570000px;}
.y1e1{bottom:301.710000px;}
.y141{bottom:302.070000px;}
.y1ad{bottom:302.430000px;}
.y17a{bottom:304.950000px;}
.ydf{bottom:305.490000px;}
.y88{bottom:306.570000px;}
.yc1{bottom:314.310000px;}
.y24e{bottom:314.670000px;}
.y68{bottom:315.390000px;}
.y208{bottom:316.290000px;}
.y1e0{bottom:319.530000px;}
.y179{bottom:322.770000px;}
.yde{bottom:323.310000px;}
.y87{bottom:324.390000px;}
.y140{bottom:327.990000px;}
.y1ac{bottom:329.430000px;}
.yc0{bottom:332.130000px;}
.y23{bottom:332.175000px;}
.y24d{bottom:332.490000px;}
.y2b{bottom:333.030000px;}
.y1df{bottom:337.350000px;}
.y178{bottom:340.590000px;}
.ydd{bottom:341.130000px;}
.y67{bottom:342.210000px;}
.y1ab{bottom:347.250000px;}
.ybf{bottom:349.950000px;}
.y24c{bottom:350.310000px;}
.y22{bottom:352.155000px;}
.y13f{bottom:354.090000px;}
.y1de{bottom:355.350000px;}
.y177{bottom:358.410000px;}
.ydc{bottom:358.950000px;}
.y66{bottom:360.030000px;}
.y22a{bottom:363.090000px;}
.y1aa{bottom:365.070000px;}
.ybe{bottom:367.950000px;}
.y24b{bottom:368.130000px;}
.y207{bottom:372.630000px;}
.y1dd{bottom:373.170000px;}
.ydb{bottom:376.950000px;}
.y65{bottom:377.850000px;}
.y13d{bottom:380.190000px;}
.y1a9{bottom:382.890000px;}
.y176{bottom:385.410000px;}
.y105{bottom:385.770000px;}
.y24a{bottom:385.950000px;}
.y1dc{bottom:390.990000px;}
.ybd{bottom:394.770000px;}
.y64{bottom:395.850000px;}
.y1a8{bottom:400.710000px;}
.y104{bottom:403.590000px;}
.yda{bottom:403.770000px;}
.y249{bottom:403.950000px;}
.y1db{bottom:408.810000px;}
.y175{bottom:412.230000px;}
.ybc{bottom:412.590000px;}
.y63{bottom:413.670000px;}
.y1a7{bottom:418.575000px;}
.y27{bottom:421.410000px;}
.y103{bottom:421.455000px;}
.yd9{bottom:421.635000px;}
.y248{bottom:421.815000px;}
.y1da{bottom:426.675000px;}
.y1f9{bottom:429.015000px;}
.ybb{bottom:430.455000px;}
.y62{bottom:431.535000px;}
.y226{bottom:434.955000px;}
.y1a6{bottom:436.575000px;}
.y174{bottom:439.095000px;}
.y102{bottom:439.275000px;}
.yd8{bottom:439.455000px;}
.y247{bottom:439.635000px;}
.y1d9{bottom:444.675000px;}
.yba{bottom:448.275000px;}
.y61{bottom:449.355000px;}
.y1a5{bottom:454.395000px;}
.y173{bottom:456.915000px;}
.y101{bottom:457.095000px;}
.yd7{bottom:457.275000px;}
.y246{bottom:457.455000px;}
.y1d8{bottom:462.495000px;}
.yb9{bottom:466.095000px;}
.y60{bottom:467.175000px;}
.y13b{bottom:467.715000px;}
.y1a4{bottom:472.215000px;}
.y172{bottom:474.735000px;}
.yd6{bottom:475.095000px;}
.y245{bottom:475.275000px;}
.yb8{bottom:484.095000px;}
.y5f{bottom:485.175000px;}
.y201{bottom:485.355000px;}
.y1d7{bottom:489.315000px;}
.y24{bottom:489.855000px;}
.y1a3{bottom:490.035000px;}
.y171{bottom:492.555000px;}
.y114{bottom:492.915000px;}
.yd5{bottom:493.095000px;}
.y13a{bottom:493.815000px;}
.yb7{bottom:501.915000px;}
.y5e{bottom:502.995000px;}
.y1d6{bottom:507.135000px;}
.y1a2{bottom:507.855000px;}
.y113{bottom:510.735000px;}
.yd4{bottom:510.915000px;}
.y244{bottom:511.095000px;}
.yb6{bottom:519.735000px;}
.y5d{bottom:520.815000px;}
.y170{bottom:522.435000px;}
.y1d5{bottom:524.955000px;}
.y1a1{bottom:525.855000px;}
.y223{bottom:526.935000px;}
.y112{bottom:528.555000px;}
.yd3{bottom:528.735000px;}
.y243{bottom:528.915000px;}
.yb5{bottom:537.555000px;}
.y86{bottom:538.635000px;}
.y16f{bottom:540.255000px;}
.y1fe{bottom:541.515000px;}
.y1d4{bottom:542.775000px;}
.y1a0{bottom:543.675000px;}
.y111{bottom:546.375000px;}
.yd2{bottom:546.555000px;}
.y242{bottom:546.735000px;}
.y5c{bottom:547.635000px;}
.y25b{bottom:548.895000px;}
.yb4{bottom:555.375000px;}
.y85{bottom:556.455000px;}
.y1d3{bottom:560.775000px;}
.y19f{bottom:561.495000px;}
.y139{bottom:563.115000px;}
.yd1{bottom:564.375000px;}
.y241{bottom:564.555000px;}
.ye{bottom:565.275000px;}
.y5b{bottom:565.455000px;}
.y100{bottom:573.375000px;}
.y1d2{bottom:578.595000px;}
.y19e{bottom:579.315000px;}
.y110{bottom:582.195000px;}
.yb3{bottom:582.375000px;}
.y5a{bottom:583.275000px;}
.y16d{bottom:588.855000px;}
.y138{bottom:589.935000px;}
.yff{bottom:591.195000px;}
.y1d1{bottom:596.415000px;}
.y19d{bottom:597.135000px;}
.y1fc{bottom:597.855000px;}
.y10f{bottom:600.015000px;}
.yb2{bottom:600.195000px;}
.y240{bottom:600.375000px;}
.y59{bottom:601.275000px;}
.yd{bottom:604.335000px;}
.y137{bottom:607.755000px;}
.yfe{bottom:609.015000px;}
.y1d0{bottom:614.235000px;}
.yb1{bottom:618.015000px;}
.y23f{bottom:618.195000px;}
.y58{bottom:619.095000px;}
.yc{bottom:623.235000px;}
.y19c{bottom:623.955000px;}
.y136{bottom:625.575000px;}
.yfd{bottom:626.835000px;}
.y1e{bottom:629.175000px;}
.y1cf{bottom:632.055000px;}
.yb0{bottom:635.835000px;}
.y23e{bottom:636.015000px;}
.y57{bottom:636.915000px;}
.y167{bottom:638.715000px;}
.y19b{bottom:641.955000px;}
.y135{bottom:643.395000px;}
.yfc{bottom:644.655000px;}
.y21b{bottom:647.175000px;}
.y1ce{bottom:650.055000px;}
.yaf{bottom:653.655000px;}
.y23d{bottom:653.835000px;}
.y56{bottom:654.735000px;}
.y1f8{bottom:658.695000px;}
.y19a{bottom:659.805000px;}
.y134{bottom:661.425000px;}
.yfb{bottom:662.505000px;}
.y16b{bottom:666.465000px;}
.y1cd{bottom:667.905000px;}
.yae{bottom:671.505000px;}
.y23c{bottom:671.685000px;}
.y55{bottom:672.585000px;}
.y199{bottom:677.625000px;}
.y133{bottom:679.245000px;}
.yfa{bottom:680.505000px;}
.y1cc{bottom:685.725000px;}
.y1f7{bottom:689.325000px;}
.yad{bottom:689.505000px;}
.y54{bottom:690.585000px;}
.y198{bottom:695.445000px;}
.y132{bottom:697.065000px;}
.yf9{bottom:698.325000px;}
.y1cb{bottom:703.545000px;}
.yac{bottom:707.325000px;}
.y23b{bottom:707.505000px;}
.y53{bottom:708.405000px;}
.y21f{bottom:710.385000px;}
.y16a{bottom:712.545000px;}
.yb{bottom:713.265000px;}
.y131{bottom:714.885000px;}
.yf8{bottom:716.145000px;}
.y1c{bottom:719.205000px;}
.y1ca{bottom:721.365000px;}
.yab{bottom:725.145000px;}
.y23a{bottom:725.325000px;}
.y52{bottom:726.225000px;}
.y197{bottom:731.265000px;}
.y130{bottom:732.705000px;}
.yf7{bottom:733.965000px;}
.y169{bottom:735.765000px;}
.y1c9{bottom:739.185000px;}
.yaa{bottom:742.965000px;}
.y239{bottom:743.145000px;}
.y51{bottom:744.045000px;}
.y196{bottom:749.085000px;}
.y12f{bottom:750.705000px;}
.yf6{bottom:751.785000px;}
.yf4{bottom:751.965000px;}
.y1c8{bottom:757.185000px;}
.y161{bottom:758.805000px;}
.ya9{bottom:760.785000px;}
.y238{bottom:760.965000px;}
.y50{bottom:761.865000px;}
.y21e{bottom:766.725000px;}
.y195{bottom:766.905000px;}
.yf3{bottom:769.785000px;}
.y163{bottom:777.345000px;}
.y12e{bottom:777.525000px;}
.ya8{bottom:778.785000px;}
.y4f{bottom:779.685000px;}
.y1c7{bottom:784.005000px;}
.y194{bottom:787.065000px;}
.y1f1{bottom:787.605000px;}
.yf2{bottom:787.785000px;}
.ya{bottom:789.765000px;}
.y12d{bottom:795.345000px;}
.y1a{bottom:796.065000px;}
.ya7{bottom:796.605000px;}
.y237{bottom:796.785000px;}
.y4e{bottom:797.685000px;}
.y1c6{bottom:801.825000px;}
.yd0{bottom:805.605000px;}
.ya6{bottom:814.425000px;}
.y236{bottom:814.605000px;}
.y4d{bottom:815.505000px;}
.y12c{bottom:817.665000px;}
.y193{bottom:819.465000px;}
.y1c5{bottom:819.645000px;}
.y21d{bottom:823.065000px;}
.ycf{bottom:823.425000px;}
.y159{bottom:824.325000px;}
.y15f{bottom:824.505000px;}
.ya5{bottom:832.245000px;}
.yf1{bottom:832.425000px;}
.y4c{bottom:833.325000px;}
.y192{bottom:837.465000px;}
.yce{bottom:841.245000px;}
.y12a{bottom:842.865000px;}
.y10e{bottom:850.065000px;}
.yf0{bottom:850.245000px;}
.y4b{bottom:851.145000px;}
.y15e{bottom:851.325000px;}
.y17{bottom:851.865000px;}
.y191{bottom:855.285000px;}
.y1c4{bottom:855.465000px;}
.ya4{bottom:859.065000px;}
.y117{bottom:867.885000px;}
.yef{bottom:868.065000px;}
.y129{bottom:868.245000px;}
.y4a{bottom:868.965000px;}
.y158{bottom:869.145000px;}
.y190{bottom:873.105000px;}
.y1c3{bottom:873.285000px;}
.ya3{bottom:876.885000px;}
.y213{bottom:879.405000px;}
.yee{bottom:885.885000px;}
.y84{bottom:886.965000px;}
.y15d{bottom:887.145000px;}
.y18f{bottom:890.925000px;}
.y1c2{bottom:891.105000px;}
.y125{bottom:893.445000px;}
.ya2{bottom:894.885000px;}
.y49{bottom:895.965000px;}
.y116{bottom:903.750000px;}
.yed{bottom:903.930000px;}
.y157{bottom:904.830000px;}
.y15c{bottom:905.010000px;}
.y83{bottom:907.170000px;}
.y18e{bottom:908.790000px;}
.y1c1{bottom:908.970000px;}
.ya1{bottom:912.750000px;}
.y48{bottom:913.830000px;}
.y127{bottom:918.870000px;}
.y115{bottom:921.570000px;}
.yec{bottom:921.750000px;}
.y1f6{bottom:922.650000px;}
.y15b{bottom:922.830000px;}
.y18d{bottom:926.610000px;}
.y1c0{bottom:926.790000px;}
.ya0{bottom:930.570000px;}
.y47{bottom:931.650000px;}
.y9{bottom:934.350000px;}
.y1f0{bottom:939.390000px;}
.y82{bottom:939.570000px;}
.y1f5{bottom:940.470000px;}
.y15a{bottom:940.650000px;}
.y15{bottom:941.190000px;}
.y124{bottom:944.070000px;}
.y18c{bottom:944.610000px;}
.y9f{bottom:948.390000px;}
.y46{bottom:949.470000px;}
.y37{bottom:955.800000px;}
.y1ef{bottom:957.210000px;}
.y81{bottom:957.390000px;}
.y1f4{bottom:958.290000px;}
.y18b{bottom:962.430000px;}
.y1bf{bottom:962.610000px;}
.y9e{bottom:966.210000px;}
.y45{bottom:967.290000px;}
.y122{bottom:969.450000px;}
.y80{bottom:975.210000px;}
.y1f3{bottom:976.110000px;}
.y18a{bottom:980.250000px;}
.y1be{bottom:980.430000px;}
.y156{bottom:980.790000px;}
.y9d{bottom:984.210000px;}
.y44{bottom:985.110000px;}
.y36{bottom:989.250000px;}
.y1ee{bottom:993.030000px;}
.y7f{bottom:993.210000px;}
.y1f2{bottom:996.450000px;}
.y218{bottom:996.810000px;}
.y1bd{bottom:998.250000px;}
.y9c{bottom:1002.030000px;}
.y43{bottom:1003.110000px;}
.y189{bottom:1007.070000px;}
.y1ed{bottom:1010.850000px;}
.y7e{bottom:1011.030000px;}
.y121{bottom:1011.930000px;}
.y35{bottom:1015.530000px;}
.y1bc{bottom:1016.070000px;}
.y9b{bottom:1019.850000px;}
.y42{bottom:1020.930000px;}
.y188{bottom:1024.890000px;}
.y7d{bottom:1028.850000px;}
.y120{bottom:1032.090000px;}
.y1bb{bottom:1033.890000px;}
.y9a{bottom:1037.670000px;}
.y41{bottom:1038.750000px;}
.y34{bottom:1041.810000px;}
.y153{bottom:1046.130000px;}
.y7c{bottom:1046.670000px;}
.y187{bottom:1051.890000px;}
.y217{bottom:1053.150000px;}
.y99{bottom:1055.490000px;}
.y40{bottom:1056.570000px;}
.y1ba{bottom:1060.890000px;}
.y7b{bottom:1064.490000px;}
.y33{bottom:1068.270000px;}
.y98{bottom:1073.310000px;}
.y3f{bottom:1074.390000px;}
.y7a{bottom:1082.310000px;}
.y97{bottom:1091.310000px;}
.y3e{bottom:1092.390000px;}
.y79{bottom:1100.310000px;}
.y186{bottom:1101.030000px;}
.y8{bottom:1107.510000px;}
.y96{bottom:1109.130000px;}
.y212{bottom:1109.490000px;}
.y3d{bottom:1110.210000px;}
.y78{bottom:1118.130000px;}
.y185{bottom:1126.230000px;}
.y95{bottom:1126.950000px;}
.y3c{bottom:1128.030000px;}
.y152{bottom:1131.450000px;}
.y77{bottom:1135.950000px;}
.y94{bottom:1144.800000px;}
.y3b{bottom:1145.880000px;}
.y184{bottom:1151.640000px;}
.y76{bottom:1153.800000px;}
.y150{bottom:1156.860000px;}
.y3a{bottom:1163.700000px;}
.y211{bottom:1165.860000px;}
.y13{bottom:1171.440000px;}
.y75{bottom:1171.620000px;}
.y183{bottom:1176.840000px;}
.y39{bottom:1183.860000px;}
.y74{bottom:1189.440000px;}
.y3{bottom:1215.000000px;}
.y1{bottom:1224.000000px;}
.h27{height:17.820000px;}
.ha{height:20.700000px;}
.h2{height:21.960000px;}
.h25{height:22.320000px;}
.h1c{height:24.480000px;}
.h2c{height:24.516000px;}
.h1f{height:24.660000px;}
.h1e{height:24.696000px;}
.h29{height:26.856000px;}
.h36{height:35.460000px;}
.h3{height:36.068555px;}
.h26{height:36.360000px;}
.h12{height:37.212891px;}
.h6{height:38.100586px;}
.h35{height:39.960000px;}
.h21{height:39.996000px;}
.h1b{height:40.684570px;}
.h16{height:42.164648px;}
.hf{height:44.280000px;}
.h22{height:44.460000px;}
.h5{height:44.507812px;}
.h20{height:44.640000px;}
.h18{height:46.736719px;}
.h2b{height:47.671875px;}
.h9{height:48.120117px;}
.h2a{height:49.140000px;}
.h15{height:49.255313px;}
.h1d{height:49.896000px;}
.h10{height:53.224453px;}
.h17{height:53.252930px;}
.h8{height:53.709961px;}
.h40{height:54.864844px;}
.h30{height:55.440000px;}
.h32{height:55.476000px;}
.h2f{height:55.620000px;}
.h34{height:55.656000px;}
.h7{height:55.825312px;}
.h1a{height:56.611406px;}
.h4{height:59.027344px;}
.he{height:59.436914px;}
.h2e{height:60.120000px;}
.h38{height:60.336000px;}
.h3a{height:62.496000px;}
.h24{height:64.620000px;}
.h11{height:64.800000px;}
.h3b{height:64.980000px;}
.h3e{height:65.340000px;}
.h3f{height:65.520000px;}
.hb{height:65.554453px;}
.h3d{height:71.136000px;}
.hd{height:76.716000px;}
.h13{height:78.336000px;}
.h23{height:84.600000px;}
.h3c{height:91.260000px;}
.h28{height:119.376000px;}
.h33{height:121.716000px;}
.h19{height:132.480000px;}
.hc{height:160.560000px;}
.h31{height:224.490000px;}
.h2d{height:228.960000px;}
.h37{height:229.350000px;}
.h39{height:231.510000px;}
.h14{height:375.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w39{width:25.200000px;}
.we{width:29.016000px;}
.w34{width:59.976000px;}
.wb{width:64.260000px;}
.wd{width:64.296000px;}
.wf{width:68.040000px;}
.w26{width:70.236000px;}
.w24{width:96.336000px;}
.w23{width:97.020000px;}
.w22{width:97.056000px;}
.wc{width:97.776000px;}
.w31{width:101.736000px;}
.w2f{width:102.780000px;}
.w29{width:102.816000px;}
.w32{width:104.400000px;}
.w2a{width:104.760000px;}
.w2b{width:107.136000px;}
.w33{width:109.296000px;}
.w2c{width:109.836000px;}
.w2d{width:109.980000px;}
.w27{width:111.960000px;}
.w12{width:120.276000px;}
.w25{width:120.780000px;}
.w14{width:120.816000px;}
.w2e{width:122.436000px;}
.w3e{width:127.440000px;}
.w3c{width:127.656000px;}
.w3d{width:127.836000px;}
.w3b{width:128.880000px;}
.w30{width:128.916000px;}
.w1b{width:136.836000px;}
.w15{width:137.376000px;}
.w36{width:147.780000px;}
.w1a{width:155.730000px;}
.w1d{width:159.150000px;}
.w1c{width:163.260000px;}
.w17{width:163.800000px;}
.w16{width:163.830000px;}
.w18{width:164.550000px;}
.w21{width:180.750000px;}
.w35{width:181.650000px;}
.w11{width:182.010000px;}
.w1f{width:182.910000px;}
.w20{width:217.830000px;}
.w3a{width:227.775000px;}
.wa{width:293.115000px;}
.w10{width:303.915000px;}
.w37{width:392.835000px;}
.w2{width:470.160000px;}
.w9{width:500.940000px;}
.w4{width:736.380000px;}
.w13{width:756.330000px;}
.w38{width:768.750000px;}
.w8{width:774.540000px;}
.w1e{width:778.650000px;}
.w28{width:779.370000px;}
.w19{width:781.890000px;}
.w5{width:783.510000px;}
.w6{width:784.410000px;}
.w7{width:784.590000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x73{left:1.800000px;}
.x6c{left:7.740000px;}
.x6f{left:9.180000px;}
.xc{left:10.800000px;}
.x77{left:11.880000px;}
.x27{left:12.990000px;}
.xd{left:15.120000px;}
.x79{left:17.100000px;}
.x68{left:19.980000px;}
.x29{left:22.320000px;}
.x2d{left:23.760000px;}
.x2a{left:25.380000px;}
.x38{left:27.720000px;}
.x72{left:29.196000px;}
.x2b{left:32.040000px;}
.x22{left:35.460000px;}
.x2c{left:36.930000px;}
.x49{left:39.060000px;}
.x48{left:40.680000px;}
.x31{left:41.805000px;}
.x4a{left:43.740000px;}
.x4b{left:46.125000px;}
.x39{left:47.700000px;}
.x5f{left:49.860000px;}
.x3b{left:51.120000px;}
.x23{left:52.410000px;}
.x3{left:53.999987px;}
.x3e{left:55.620000px;}
.x4e{left:57.240000px;}
.x5e{left:58.500000px;}
.x12{left:61.200000px;}
.x60{left:63.000000px;}
.x3d{left:64.080000px;}
.x67{left:66.096000px;}
.x33{left:67.365000px;}
.x2e{left:68.400000px;}
.x36{left:70.956000px;}
.x13{left:71.999987px;}
.x41{left:74.376000px;}
.x47{left:76.185000px;}
.xb{left:77.400000px;}
.x44{left:78.480000px;}
.x1a{left:80.999987px;}
.x54{left:85.530000px;}
.x70{left:88.200000px;}
.x32{left:89.850000px;}
.x74{left:91.830000px;}
.x56{left:97.770000px;}
.x57{left:102.275987px;}
.x2f{left:104.970000px;}
.x1b{left:108.035987px;}
.x14{left:109.650000px;}
.x71{left:113.970000px;}
.x69{left:115.056000px;}
.x58{left:122.975987px;}
.x20{left:124.050000px;}
.x55{left:128.196000px;}
.x10{left:145.290000px;}
.x4{left:161.669987px;}
.x59{left:167.970000px;}
.x19{left:170.895000px;}
.x8{left:174.089987px;}
.x37{left:190.650000px;}
.x61{left:192.810000px;}
.x18{left:198.360000px;}
.xf{left:199.470000px;}
.x42{left:212.070000px;}
.x4f{left:240.870000px;}
.x4c{left:242.535000px;}
.xe{left:244.155000px;}
.x30{left:252.030000px;}
.x17{left:254.729987px;}
.x11{left:264.135000px;}
.x5a{left:273.450000px;}
.x6e{left:282.855000px;}
.x15{left:288.434987px;}
.x4d{left:290.955000px;}
.x62{left:295.275000px;}
.x6a{left:297.435000px;}
.x40{left:303.735000px;}
.x3f{left:308.415000px;}
.x75{left:316.875000px;}
.x35{left:330.015000px;}
.x53{left:337.935000px;}
.x43{left:349.635000px;}
.x5{left:357.014987px;}
.x16{left:358.634987px;}
.x1{left:367.920000px;}
.x5b{left:381.495000px;}
.x6d{left:384.375000px;}
.x34{left:388.695000px;}
.x63{left:400.395000px;}
.x6b{left:445.935000px;}
.x2{left:454.110000px;}
.x50{left:459.435000px;}
.xa{left:465.914987px;}
.x1f{left:473.475000px;}
.x1c{left:492.944987px;}
.x3a{left:494.925000px;}
.x28{left:503.205000px;}
.x64{left:510.405000px;}
.x45{left:514.365000px;}
.x1d{left:519.944987px;}
.x24{left:572.145000px;}
.x76{left:574.845000px;}
.x5c{left:602.745000px;}
.x65{left:615.525000px;}
.x25{left:637.125000px;}
.x51{left:641.085000px;}
.x3c{left:660.165000px;}
.x46{left:678.345000px;}
.x26{left:702.150000px;}
.x78{left:703.410000px;}
.x66{left:718.170000px;}
.x5d{left:725.910000px;}
.x52{left:738.870000px;}
.x1e{left:744.989987px;}
.x21{left:767.310000px;}
.x6{left:837.149987px;}
.x7{left:839.309987px;}
.x9{left:846.149987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.208000pt;}
.ls1c{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls12{letter-spacing:8.480000pt;}
.ls9{letter-spacing:22.496000pt;}
.ls8{letter-spacing:24.944640pt;}
.ls5{letter-spacing:25.072640pt;}
.lsa{letter-spacing:26.400000pt;}
.ls7{letter-spacing:46.944000pt;}
.wsc{word-spacing:-48.016000pt;}
.ws13{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.374933pt;}
.ws0{word-spacing:-12.974080pt;}
.ws8{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.208000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.776000pt;}
.ws14{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.456000pt;}
.ws11{word-spacing:-11.168000pt;}
.ws1{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-3.657600pt;}
._a{margin-left:-2.628480pt;}
._2{margin-left:-1.347840pt;}
._1{width:1.021440pt;}
._6{width:2.231040pt;}
._5{width:3.187200pt;}
._c{width:4.224427pt;}
._b{width:5.657600pt;}
._4{width:7.157760pt;}
._3{width:8.062080pt;}
._9{width:9.349120pt;}
._8{width:10.252160pt;}
._7{width:11.674240pt;}
._d{width:13.296000pt;}
._1a{width:14.910507pt;}
._17{width:15.802667pt;}
._f{width:16.704000pt;}
._13{width:18.192000pt;}
._15{width:19.102080pt;}
._14{width:20.256000pt;}
._1e{width:21.361067pt;}
._12{width:22.272000pt;}
._26{width:23.314560pt;}
._11{width:24.336000pt;}
._10{width:25.248000pt;}
._1b{width:26.307840pt;}
._19{width:27.312000pt;}
._29{width:28.659840pt;}
._20{width:29.904000pt;}
._1f{width:30.960000pt;}
._23{width:32.400000pt;}
._28{width:33.394560pt;}
._2c{width:34.448000pt;}
._2b{width:35.392000pt;}
._2d{width:36.576000pt;}
._22{width:37.584000pt;}
._21{width:38.784000pt;}
._24{width:40.080000pt;}
._1c{width:41.280000pt;}
._3b{width:42.528000pt;}
._2f{width:43.632000pt;}
._16{width:45.936000pt;}
._e{width:46.848000pt;}
._33{width:49.456000pt;}
._2e{width:51.072000pt;}
._47{width:52.576000pt;}
._1d{width:53.952000pt;}
._25{width:55.344000pt;}
._2a{width:56.380800pt;}
._27{width:59.664000pt;}
._37{width:60.576000pt;}
._36{width:61.728000pt;}
._31{width:70.768000pt;}
._48{width:77.184000pt;}
._35{width:81.546667pt;}
._34{width:92.202667pt;}
._49{width:106.026667pt;}
._45{width:122.800000pt;}
._44{width:124.320000pt;}
._4b{width:128.016000pt;}
._3a{width:141.792000pt;}
._39{width:142.704000pt;}
._50{width:147.194667pt;}
._4f{width:148.224000pt;}
._30{width:179.066667pt;}
._32{width:180.000000pt;}
._43{width:217.552000pt;}
._3d{width:222.208000pt;}
._46{width:237.184000pt;}
._4a{width:244.874667pt;}
._41{width:251.808000pt;}
._4e{width:253.402667pt;}
._3c{width:260.826667pt;}
._40{width:280.906667pt;}
._4d{width:302.592000pt;}
._4c{width:303.888000pt;}
._3f{width:318.912000pt;}
._3e{width:319.866667pt;}
._42{width:330.720000pt;}
._51{width:766.704000pt;}
._38{width:1452.586667pt;}
._0{width:2580.859733pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.200000pt;}
.y14{bottom:3.360000pt;}
.y164{bottom:4.640000pt;}
.y2{bottom:5.760000pt;}
.y38{bottom:6.373333pt;}
.y123{bottom:6.560000pt;}
.y180{bottom:6.586667pt;}
.y12b{bottom:6.720000pt;}
.y128{bottom:6.760000pt;}
.y160{bottom:8.640000pt;}
.y16c{bottom:10.720000pt;}
.y162{bottom:10.880000pt;}
.y222{bottom:12.666667pt;}
.y165{bottom:12.960000pt;}
.y19{bottom:13.280000pt;}
.y1b{bottom:14.400000pt;}
.y166{bottom:14.880000pt;}
.y22f{bottom:15.840000pt;}
.y20f{bottom:16.480000pt;}
.y20{bottom:17.120000pt;}
.y231{bottom:17.920000pt;}
.y126{bottom:17.960000pt;}
.y6{bottom:20.000000pt;}
.y13e{bottom:20.320000pt;}
.y200{bottom:20.480000pt;}
.y151{bottom:24.320000pt;}
.y13c{bottom:24.480000pt;}
.y21a{bottom:24.680000pt;}
.y225{bottom:24.800000pt;}
.y221{bottom:26.586667pt;}
.y22b{bottom:27.360000pt;}
.y16e{bottom:28.480000pt;}
.y229{bottom:30.240000pt;}
.y230{bottom:31.680000pt;}
.y22e{bottom:33.760000pt;}
.y202{bottom:34.080000pt;}
.y31{bottom:34.106667pt;}
.y1ff{bottom:34.240000pt;}
.y20e{bottom:34.266667pt;}
.y18{bottom:34.720000pt;}
.y1d{bottom:35.360000pt;}
.y5{bottom:36.480000pt;}
.y1fd{bottom:38.240000pt;}
.y219{bottom:38.440000pt;}
.y220{bottom:40.346667pt;}
.y1f{bottom:42.106667pt;}
.y155{bottom:42.240000pt;}
.y224{bottom:42.560000pt;}
.y168{bottom:47.866667pt;}
.y228{bottom:48.000000pt;}
.y4{bottom:50.240000pt;}
.y154{bottom:60.000000pt;}
.y227{bottom:65.920000pt;}
.y20a{bottom:72.160000pt;}
.y11c{bottom:72.960000pt;}
.yeb{bottom:73.120000pt;}
.y93{bottom:74.080000pt;}
.y2e{bottom:77.306667pt;}
.y1ec{bottom:77.760000pt;}
.y1b9{bottom:78.400000pt;}
.y235{bottom:79.040000pt;}
.y20c{bottom:79.200000pt;}
.y11f{bottom:80.000000pt;}
.ycd{bottom:80.960000pt;}
.y14f{bottom:81.600000pt;}
.y73{bottom:81.760000pt;}
.y182{bottom:83.680000pt;}
.y12{bottom:84.000000pt;}
.y14a{bottom:85.920000pt;}
.y11b{bottom:88.800000pt;}
.yf5{bottom:88.960000pt;}
.y25a{bottom:89.280000pt;}
.y92{bottom:89.920000pt;}
.y20b{bottom:92.986667pt;}
.y1eb{bottom:93.600000pt;}
.y1b8{bottom:94.240000pt;}
.y210{bottom:94.720000pt;}
.y234{bottom:94.880000pt;}
.y2d{bottom:94.906667pt;}
.y11e{bottom:95.840000pt;}
.y10d{bottom:96.800000pt;}
.yea{bottom:96.960000pt;}
.y72{bottom:97.600000pt;}
.y11{bottom:100.000000pt;}
.y149{bottom:101.920000pt;}
.ycc{bottom:104.800000pt;}
.y259{bottom:105.120000pt;}
.y91{bottom:105.760000pt;}
.y11a{bottom:106.880000pt;}
.y181{bottom:108.800000pt;}
.y1ea{bottom:109.440000pt;}
.y1b7{bottom:110.240000pt;}
.y11d{bottom:111.840000pt;}
.y10c{bottom:112.640000pt;}
.y2c{bottom:112.666667pt;}
.ye9{bottom:112.800000pt;}
.y10{bottom:115.840000pt;}
.ycb{bottom:120.640000pt;}
.y258{bottom:120.960000pt;}
.y71{bottom:121.440000pt;}
.y90{bottom:121.600000pt;}
.y14e{bottom:121.760000pt;}
.y1e9{bottom:125.440000pt;}
.y148{bottom:125.760000pt;}
.y1b6{bottom:126.080000pt;}
.y119{bottom:127.680000pt;}
.y10b{bottom:128.480000pt;}
.ye8{bottom:128.640000pt;}
.y16{bottom:128.960000pt;}
.y20d{bottom:130.880000pt;}
.yca{bottom:136.480000pt;}
.y257{bottom:136.800000pt;}
.y70{bottom:137.440000pt;}
.y14d{bottom:137.600000pt;}
.y233{bottom:139.680000pt;}
.y1e8{bottom:141.280000pt;}
.y118{bottom:141.440000pt;}
.y147{bottom:141.600000pt;}
.y1b5{bottom:141.920000pt;}
.yf{bottom:142.240000pt;}
.ye7{bottom:144.480000pt;}
.y17f{bottom:151.040000pt;}
.yc9{bottom:152.480000pt;}
.y256{bottom:152.640000pt;}
.y6f{bottom:153.280000pt;}
.y8f{bottom:153.440000pt;}
.y2a{bottom:155.866667pt;}
.y206{bottom:156.800000pt;}
.y1e7{bottom:157.146667pt;}
.y146{bottom:157.466667pt;}
.y21{bottom:157.760000pt;}
.y1b4{bottom:157.786667pt;}
.y10a{bottom:160.346667pt;}
.ye6{bottom:160.506667pt;}
.y216{bottom:161.000000pt;}
.y232{bottom:161.466667pt;}
.yc8{bottom:168.346667pt;}
.y255{bottom:168.506667pt;}
.y6e{bottom:169.146667pt;}
.y8e{bottom:169.306667pt;}
.y205{bottom:170.560000pt;}
.y1e6{bottom:172.986667pt;}
.y145{bottom:173.306667pt;}
.y29{bottom:173.466667pt;}
.y1b3{bottom:173.626667pt;}
.y32{bottom:174.266667pt;}
.y1fb{bottom:174.560000pt;}
.y215{bottom:174.920000pt;}
.y109{bottom:176.186667pt;}
.ye5{bottom:176.346667pt;}
.y17e{bottom:178.266667pt;}
.y203{bottom:180.986667pt;}
.yc7{bottom:184.186667pt;}
.y204{bottom:184.320000pt;}
.y254{bottom:184.506667pt;}
.y8d{bottom:185.146667pt;}
.y1fa{bottom:188.320000pt;}
.y214{bottom:188.680000pt;}
.y1e5{bottom:188.826667pt;}
.y1b2{bottom:189.626667pt;}
.y21c{bottom:190.586667pt;}
.y28{bottom:191.066667pt;}
.y30{bottom:191.866667pt;}
.y108{bottom:192.026667pt;}
.ye4{bottom:192.186667pt;}
.y6d{bottom:192.986667pt;}
.y144{bottom:195.066667pt;}
.yc6{bottom:200.026667pt;}
.y253{bottom:200.346667pt;}
.y8c{bottom:200.986667pt;}
.y14c{bottom:201.146667pt;}
.y1e4{bottom:204.666667pt;}
.y17d{bottom:204.826667pt;}
.y22d{bottom:205.146667pt;}
.y1b1{bottom:205.466667pt;}
.y107{bottom:207.866667pt;}
.ye3{bottom:208.026667pt;}
.y6c{bottom:208.826667pt;}
.y143{bottom:208.986667pt;}
.yc5{bottom:215.866667pt;}
.y252{bottom:216.186667pt;}
.y8b{bottom:216.826667pt;}
.y14b{bottom:216.986667pt;}
.y2f{bottom:217.466667pt;}
.y17c{bottom:220.666667pt;}
.y1b0{bottom:221.306667pt;}
.y106{bottom:223.706667pt;}
.ye2{bottom:223.866667pt;}
.y6b{bottom:224.666667pt;}
.y209{bottom:231.066667pt;}
.yc4{bottom:231.706667pt;}
.y251{bottom:232.026667pt;}
.y26{bottom:234.466667pt;}
.y1e3{bottom:236.506667pt;}
.y1af{bottom:237.146667pt;}
.ye1{bottom:239.706667pt;}
.y8a{bottom:240.666667pt;}
.y17b{bottom:244.506667pt;}
.y142{bottom:245.306667pt;}
.yc3{bottom:247.706667pt;}
.y250{bottom:247.866667pt;}
.y6a{bottom:248.666667pt;}
.y25{bottom:252.066667pt;}
.y1e2{bottom:252.346667pt;}
.y1ae{bottom:252.986667pt;}
.ye0{bottom:255.706667pt;}
.y89{bottom:256.666667pt;}
.yc2{bottom:263.546667pt;}
.y24f{bottom:263.706667pt;}
.y22c{bottom:264.026667pt;}
.y69{bottom:264.506667pt;}
.y1e1{bottom:268.186667pt;}
.y141{bottom:268.506667pt;}
.y1ad{bottom:268.826667pt;}
.y17a{bottom:271.066667pt;}
.ydf{bottom:271.546667pt;}
.y88{bottom:272.506667pt;}
.yc1{bottom:279.386667pt;}
.y24e{bottom:279.706667pt;}
.y68{bottom:280.346667pt;}
.y208{bottom:281.146667pt;}
.y1e0{bottom:284.026667pt;}
.y179{bottom:286.906667pt;}
.yde{bottom:287.386667pt;}
.y87{bottom:288.346667pt;}
.y140{bottom:291.546667pt;}
.y1ac{bottom:292.826667pt;}
.yc0{bottom:295.226667pt;}
.y23{bottom:295.266667pt;}
.y24d{bottom:295.546667pt;}
.y2b{bottom:296.026667pt;}
.y1df{bottom:299.866667pt;}
.y178{bottom:302.746667pt;}
.ydd{bottom:303.226667pt;}
.y67{bottom:304.186667pt;}
.y1ab{bottom:308.666667pt;}
.ybf{bottom:311.066667pt;}
.y24c{bottom:311.386667pt;}
.y22{bottom:313.026667pt;}
.y13f{bottom:314.746667pt;}
.y1de{bottom:315.866667pt;}
.y177{bottom:318.586667pt;}
.ydc{bottom:319.066667pt;}
.y66{bottom:320.026667pt;}
.y22a{bottom:322.746667pt;}
.y1aa{bottom:324.506667pt;}
.ybe{bottom:327.066667pt;}
.y24b{bottom:327.226667pt;}
.y207{bottom:331.226667pt;}
.y1dd{bottom:331.706667pt;}
.ydb{bottom:335.066667pt;}
.y65{bottom:335.866667pt;}
.y13d{bottom:337.946667pt;}
.y1a9{bottom:340.346667pt;}
.y176{bottom:342.586667pt;}
.y105{bottom:342.906667pt;}
.y24a{bottom:343.066667pt;}
.y1dc{bottom:347.546667pt;}
.ybd{bottom:350.906667pt;}
.y64{bottom:351.866667pt;}
.y1a8{bottom:356.186667pt;}
.y104{bottom:358.746667pt;}
.yda{bottom:358.906667pt;}
.y249{bottom:359.066667pt;}
.y1db{bottom:363.386667pt;}
.y175{bottom:366.426667pt;}
.ybc{bottom:366.746667pt;}
.y63{bottom:367.706667pt;}
.y1a7{bottom:372.066667pt;}
.y27{bottom:374.586667pt;}
.y103{bottom:374.626667pt;}
.yd9{bottom:374.786667pt;}
.y248{bottom:374.946667pt;}
.y1da{bottom:379.266667pt;}
.y1f9{bottom:381.346667pt;}
.ybb{bottom:382.626667pt;}
.y62{bottom:383.586667pt;}
.y226{bottom:386.626667pt;}
.y1a6{bottom:388.066667pt;}
.y174{bottom:390.306667pt;}
.y102{bottom:390.466667pt;}
.yd8{bottom:390.626667pt;}
.y247{bottom:390.786667pt;}
.y1d9{bottom:395.266667pt;}
.yba{bottom:398.466667pt;}
.y61{bottom:399.426667pt;}
.y1a5{bottom:403.906667pt;}
.y173{bottom:406.146667pt;}
.y101{bottom:406.306667pt;}
.yd7{bottom:406.466667pt;}
.y246{bottom:406.626667pt;}
.y1d8{bottom:411.106667pt;}
.yb9{bottom:414.306667pt;}
.y60{bottom:415.266667pt;}
.y13b{bottom:415.746667pt;}
.y1a4{bottom:419.746667pt;}
.y172{bottom:421.986667pt;}
.yd6{bottom:422.306667pt;}
.y245{bottom:422.466667pt;}
.yb8{bottom:430.306667pt;}
.y5f{bottom:431.266667pt;}
.y201{bottom:431.426667pt;}
.y1d7{bottom:434.946667pt;}
.y24{bottom:435.426667pt;}
.y1a3{bottom:435.586667pt;}
.y171{bottom:437.826667pt;}
.y114{bottom:438.146667pt;}
.yd5{bottom:438.306667pt;}
.y13a{bottom:438.946667pt;}
.yb7{bottom:446.146667pt;}
.y5e{bottom:447.106667pt;}
.y1d6{bottom:450.786667pt;}
.y1a2{bottom:451.426667pt;}
.y113{bottom:453.986667pt;}
.yd4{bottom:454.146667pt;}
.y244{bottom:454.306667pt;}
.yb6{bottom:461.986667pt;}
.y5d{bottom:462.946667pt;}
.y170{bottom:464.386667pt;}
.y1d5{bottom:466.626667pt;}
.y1a1{bottom:467.426667pt;}
.y223{bottom:468.386667pt;}
.y112{bottom:469.826667pt;}
.yd3{bottom:469.986667pt;}
.y243{bottom:470.146667pt;}
.yb5{bottom:477.826667pt;}
.y86{bottom:478.786667pt;}
.y16f{bottom:480.226667pt;}
.y1fe{bottom:481.346667pt;}
.y1d4{bottom:482.466667pt;}
.y1a0{bottom:483.266667pt;}
.y111{bottom:485.666667pt;}
.yd2{bottom:485.826667pt;}
.y242{bottom:485.986667pt;}
.y5c{bottom:486.786667pt;}
.y25b{bottom:487.906667pt;}
.yb4{bottom:493.666667pt;}
.y85{bottom:494.626667pt;}
.y1d3{bottom:498.466667pt;}
.y19f{bottom:499.106667pt;}
.y139{bottom:500.546667pt;}
.yd1{bottom:501.666667pt;}
.y241{bottom:501.826667pt;}
.ye{bottom:502.466667pt;}
.y5b{bottom:502.626667pt;}
.y100{bottom:509.666667pt;}
.y1d2{bottom:514.306667pt;}
.y19e{bottom:514.946667pt;}
.y110{bottom:517.506667pt;}
.yb3{bottom:517.666667pt;}
.y5a{bottom:518.466667pt;}
.y16d{bottom:523.426667pt;}
.y138{bottom:524.386667pt;}
.yff{bottom:525.506667pt;}
.y1d1{bottom:530.146667pt;}
.y19d{bottom:530.786667pt;}
.y1fc{bottom:531.426667pt;}
.y10f{bottom:533.346667pt;}
.yb2{bottom:533.506667pt;}
.y240{bottom:533.666667pt;}
.y59{bottom:534.466667pt;}
.yd{bottom:537.186667pt;}
.y137{bottom:540.226667pt;}
.yfe{bottom:541.346667pt;}
.y1d0{bottom:545.986667pt;}
.yb1{bottom:549.346667pt;}
.y23f{bottom:549.506667pt;}
.y58{bottom:550.306667pt;}
.yc{bottom:553.986667pt;}
.y19c{bottom:554.626667pt;}
.y136{bottom:556.066667pt;}
.yfd{bottom:557.186667pt;}
.y1e{bottom:559.266667pt;}
.y1cf{bottom:561.826667pt;}
.yb0{bottom:565.186667pt;}
.y23e{bottom:565.346667pt;}
.y57{bottom:566.146667pt;}
.y167{bottom:567.746667pt;}
.y19b{bottom:570.626667pt;}
.y135{bottom:571.906667pt;}
.yfc{bottom:573.026667pt;}
.y21b{bottom:575.266667pt;}
.y1ce{bottom:577.826667pt;}
.yaf{bottom:581.026667pt;}
.y23d{bottom:581.186667pt;}
.y56{bottom:581.986667pt;}
.y1f8{bottom:585.506667pt;}
.y19a{bottom:586.493333pt;}
.y134{bottom:587.933333pt;}
.yfb{bottom:588.893333pt;}
.y16b{bottom:592.413333pt;}
.y1cd{bottom:593.693333pt;}
.yae{bottom:596.893333pt;}
.y23c{bottom:597.053333pt;}
.y55{bottom:597.853333pt;}
.y199{bottom:602.333333pt;}
.y133{bottom:603.773333pt;}
.yfa{bottom:604.893333pt;}
.y1cc{bottom:609.533333pt;}
.y1f7{bottom:612.733333pt;}
.yad{bottom:612.893333pt;}
.y54{bottom:613.853333pt;}
.y198{bottom:618.173333pt;}
.y132{bottom:619.613333pt;}
.yf9{bottom:620.733333pt;}
.y1cb{bottom:625.373333pt;}
.yac{bottom:628.733333pt;}
.y23b{bottom:628.893333pt;}
.y53{bottom:629.693333pt;}
.y21f{bottom:631.453333pt;}
.y16a{bottom:633.373333pt;}
.yb{bottom:634.013333pt;}
.y131{bottom:635.453333pt;}
.yf8{bottom:636.573333pt;}
.y1c{bottom:639.293333pt;}
.y1ca{bottom:641.213333pt;}
.yab{bottom:644.573333pt;}
.y23a{bottom:644.733333pt;}
.y52{bottom:645.533333pt;}
.y197{bottom:650.013333pt;}
.y130{bottom:651.293333pt;}
.yf7{bottom:652.413333pt;}
.y169{bottom:654.013333pt;}
.y1c9{bottom:657.053333pt;}
.yaa{bottom:660.413333pt;}
.y239{bottom:660.573333pt;}
.y51{bottom:661.373333pt;}
.y196{bottom:665.853333pt;}
.y12f{bottom:667.293333pt;}
.yf6{bottom:668.253333pt;}
.yf4{bottom:668.413333pt;}
.y1c8{bottom:673.053333pt;}
.y161{bottom:674.493333pt;}
.ya9{bottom:676.253333pt;}
.y238{bottom:676.413333pt;}
.y50{bottom:677.213333pt;}
.y21e{bottom:681.533333pt;}
.y195{bottom:681.693333pt;}
.yf3{bottom:684.253333pt;}
.y163{bottom:690.973333pt;}
.y12e{bottom:691.133333pt;}
.ya8{bottom:692.253333pt;}
.y4f{bottom:693.053333pt;}
.y1c7{bottom:696.893333pt;}
.y194{bottom:699.613333pt;}
.y1f1{bottom:700.093333pt;}
.yf2{bottom:700.253333pt;}
.ya{bottom:702.013333pt;}
.y12d{bottom:706.973333pt;}
.y1a{bottom:707.613333pt;}
.ya7{bottom:708.093333pt;}
.y237{bottom:708.253333pt;}
.y4e{bottom:709.053333pt;}
.y1c6{bottom:712.733333pt;}
.yd0{bottom:716.093333pt;}
.ya6{bottom:723.933333pt;}
.y236{bottom:724.093333pt;}
.y4d{bottom:724.893333pt;}
.y12c{bottom:726.813333pt;}
.y193{bottom:728.413333pt;}
.y1c5{bottom:728.573333pt;}
.y21d{bottom:731.613333pt;}
.ycf{bottom:731.933333pt;}
.y159{bottom:732.733333pt;}
.y15f{bottom:732.893333pt;}
.ya5{bottom:739.773333pt;}
.yf1{bottom:739.933333pt;}
.y4c{bottom:740.733333pt;}
.y192{bottom:744.413333pt;}
.yce{bottom:747.773333pt;}
.y12a{bottom:749.213333pt;}
.y10e{bottom:755.613333pt;}
.yf0{bottom:755.773333pt;}
.y4b{bottom:756.573333pt;}
.y15e{bottom:756.733333pt;}
.y17{bottom:757.213333pt;}
.y191{bottom:760.253333pt;}
.y1c4{bottom:760.413333pt;}
.ya4{bottom:763.613333pt;}
.y117{bottom:771.453333pt;}
.yef{bottom:771.613333pt;}
.y129{bottom:771.773333pt;}
.y4a{bottom:772.413333pt;}
.y158{bottom:772.573333pt;}
.y190{bottom:776.093333pt;}
.y1c3{bottom:776.253333pt;}
.ya3{bottom:779.453333pt;}
.y213{bottom:781.693333pt;}
.yee{bottom:787.453333pt;}
.y84{bottom:788.413333pt;}
.y15d{bottom:788.573333pt;}
.y18f{bottom:791.933333pt;}
.y1c2{bottom:792.093333pt;}
.y125{bottom:794.173333pt;}
.ya2{bottom:795.453333pt;}
.y49{bottom:796.413333pt;}
.y116{bottom:803.333333pt;}
.yed{bottom:803.493333pt;}
.y157{bottom:804.293333pt;}
.y15c{bottom:804.453333pt;}
.y83{bottom:806.373333pt;}
.y18e{bottom:807.813333pt;}
.y1c1{bottom:807.973333pt;}
.ya1{bottom:811.333333pt;}
.y48{bottom:812.293333pt;}
.y127{bottom:816.773333pt;}
.y115{bottom:819.173333pt;}
.yec{bottom:819.333333pt;}
.y1f6{bottom:820.133333pt;}
.y15b{bottom:820.293333pt;}
.y18d{bottom:823.653333pt;}
.y1c0{bottom:823.813333pt;}
.ya0{bottom:827.173333pt;}
.y47{bottom:828.133333pt;}
.y9{bottom:830.533333pt;}
.y1f0{bottom:835.013333pt;}
.y82{bottom:835.173333pt;}
.y1f5{bottom:835.973333pt;}
.y15a{bottom:836.133333pt;}
.y15{bottom:836.613333pt;}
.y124{bottom:839.173333pt;}
.y18c{bottom:839.653333pt;}
.y9f{bottom:843.013333pt;}
.y46{bottom:843.973333pt;}
.y37{bottom:849.600000pt;}
.y1ef{bottom:850.853333pt;}
.y81{bottom:851.013333pt;}
.y1f4{bottom:851.813333pt;}
.y18b{bottom:855.493333pt;}
.y1bf{bottom:855.653333pt;}
.y9e{bottom:858.853333pt;}
.y45{bottom:859.813333pt;}
.y122{bottom:861.733333pt;}
.y80{bottom:866.853333pt;}
.y1f3{bottom:867.653333pt;}
.y18a{bottom:871.333333pt;}
.y1be{bottom:871.493333pt;}
.y156{bottom:871.813333pt;}
.y9d{bottom:874.853333pt;}
.y44{bottom:875.653333pt;}
.y36{bottom:879.333333pt;}
.y1ee{bottom:882.693333pt;}
.y7f{bottom:882.853333pt;}
.y1f2{bottom:885.733333pt;}
.y218{bottom:886.053333pt;}
.y1bd{bottom:887.333333pt;}
.y9c{bottom:890.693333pt;}
.y43{bottom:891.653333pt;}
.y189{bottom:895.173333pt;}
.y1ed{bottom:898.533333pt;}
.y7e{bottom:898.693333pt;}
.y121{bottom:899.493333pt;}
.y35{bottom:902.693333pt;}
.y1bc{bottom:903.173333pt;}
.y9b{bottom:906.533333pt;}
.y42{bottom:907.493333pt;}
.y188{bottom:911.013333pt;}
.y7d{bottom:914.533333pt;}
.y120{bottom:917.413333pt;}
.y1bb{bottom:919.013333pt;}
.y9a{bottom:922.373333pt;}
.y41{bottom:923.333333pt;}
.y34{bottom:926.053333pt;}
.y153{bottom:929.893333pt;}
.y7c{bottom:930.373333pt;}
.y187{bottom:935.013333pt;}
.y217{bottom:936.133333pt;}
.y99{bottom:938.213333pt;}
.y40{bottom:939.173333pt;}
.y1ba{bottom:943.013333pt;}
.y7b{bottom:946.213333pt;}
.y33{bottom:949.573333pt;}
.y98{bottom:954.053333pt;}
.y3f{bottom:955.013333pt;}
.y7a{bottom:962.053333pt;}
.y97{bottom:970.053333pt;}
.y3e{bottom:971.013333pt;}
.y79{bottom:978.053333pt;}
.y186{bottom:978.693333pt;}
.y8{bottom:984.453333pt;}
.y96{bottom:985.893333pt;}
.y212{bottom:986.213333pt;}
.y3d{bottom:986.853333pt;}
.y78{bottom:993.893333pt;}
.y185{bottom:1001.093333pt;}
.y95{bottom:1001.733333pt;}
.y3c{bottom:1002.693333pt;}
.y152{bottom:1005.733333pt;}
.y77{bottom:1009.733333pt;}
.y94{bottom:1017.600000pt;}
.y3b{bottom:1018.560000pt;}
.y184{bottom:1023.680000pt;}
.y76{bottom:1025.600000pt;}
.y150{bottom:1028.320000pt;}
.y3a{bottom:1034.400000pt;}
.y211{bottom:1036.320000pt;}
.y13{bottom:1041.280000pt;}
.y75{bottom:1041.440000pt;}
.y183{bottom:1046.080000pt;}
.y39{bottom:1052.320000pt;}
.y74{bottom:1057.280000pt;}
.y3{bottom:1080.000000pt;}
.y1{bottom:1088.000000pt;}
.h27{height:15.840000pt;}
.ha{height:18.400000pt;}
.h2{height:19.520000pt;}
.h25{height:19.840000pt;}
.h1c{height:21.760000pt;}
.h2c{height:21.792000pt;}
.h1f{height:21.920000pt;}
.h1e{height:21.952000pt;}
.h29{height:23.872000pt;}
.h36{height:31.520000pt;}
.h3{height:32.060937pt;}
.h26{height:32.320000pt;}
.h12{height:33.078125pt;}
.h6{height:33.867188pt;}
.h35{height:35.520000pt;}
.h21{height:35.552000pt;}
.h1b{height:36.164062pt;}
.h16{height:37.479688pt;}
.hf{height:39.360000pt;}
.h22{height:39.520000pt;}
.h5{height:39.562500pt;}
.h20{height:39.680000pt;}
.h18{height:41.543750pt;}
.h2b{height:42.375000pt;}
.h9{height:42.773438pt;}
.h2a{height:43.680000pt;}
.h15{height:43.782500pt;}
.h1d{height:44.352000pt;}
.h10{height:47.310625pt;}
.h17{height:47.335938pt;}
.h8{height:47.742188pt;}
.h40{height:48.768750pt;}
.h30{height:49.280000pt;}
.h32{height:49.312000pt;}
.h2f{height:49.440000pt;}
.h34{height:49.472000pt;}
.h7{height:49.622500pt;}
.h1a{height:50.321250pt;}
.h4{height:52.468750pt;}
.he{height:52.832812pt;}
.h2e{height:53.440000pt;}
.h38{height:53.632000pt;}
.h3a{height:55.552000pt;}
.h24{height:57.440000pt;}
.h11{height:57.600000pt;}
.h3b{height:57.760000pt;}
.h3e{height:58.080000pt;}
.h3f{height:58.240000pt;}
.hb{height:58.270625pt;}
.h3d{height:63.232000pt;}
.hd{height:68.192000pt;}
.h13{height:69.632000pt;}
.h23{height:75.200000pt;}
.h3c{height:81.120000pt;}
.h28{height:106.112000pt;}
.h33{height:108.192000pt;}
.h19{height:117.760000pt;}
.hc{height:142.720000pt;}
.h31{height:199.546667pt;}
.h2d{height:203.520000pt;}
.h37{height:203.866667pt;}
.h39{height:205.786667pt;}
.h14{height:333.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w39{width:22.400000pt;}
.we{width:25.792000pt;}
.w34{width:53.312000pt;}
.wb{width:57.120000pt;}
.wd{width:57.152000pt;}
.wf{width:60.480000pt;}
.w26{width:62.432000pt;}
.w24{width:85.632000pt;}
.w23{width:86.240000pt;}
.w22{width:86.272000pt;}
.wc{width:86.912000pt;}
.w31{width:90.432000pt;}
.w2f{width:91.360000pt;}
.w29{width:91.392000pt;}
.w32{width:92.800000pt;}
.w2a{width:93.120000pt;}
.w2b{width:95.232000pt;}
.w33{width:97.152000pt;}
.w2c{width:97.632000pt;}
.w2d{width:97.760000pt;}
.w27{width:99.520000pt;}
.w12{width:106.912000pt;}
.w25{width:107.360000pt;}
.w14{width:107.392000pt;}
.w2e{width:108.832000pt;}
.w3e{width:113.280000pt;}
.w3c{width:113.472000pt;}
.w3d{width:113.632000pt;}
.w3b{width:114.560000pt;}
.w30{width:114.592000pt;}
.w1b{width:121.632000pt;}
.w15{width:122.112000pt;}
.w36{width:131.360000pt;}
.w1a{width:138.426667pt;}
.w1d{width:141.466667pt;}
.w1c{width:145.120000pt;}
.w17{width:145.600000pt;}
.w16{width:145.626667pt;}
.w18{width:146.266667pt;}
.w21{width:160.666667pt;}
.w35{width:161.466667pt;}
.w11{width:161.786667pt;}
.w1f{width:162.586667pt;}
.w20{width:193.626667pt;}
.w3a{width:202.466667pt;}
.wa{width:260.546667pt;}
.w10{width:270.146667pt;}
.w37{width:349.186667pt;}
.w2{width:417.920000pt;}
.w9{width:445.280000pt;}
.w4{width:654.560000pt;}
.w13{width:672.293333pt;}
.w38{width:683.333333pt;}
.w8{width:688.480000pt;}
.w1e{width:692.133333pt;}
.w28{width:692.773333pt;}
.w19{width:695.013333pt;}
.w5{width:696.453333pt;}
.w6{width:697.253333pt;}
.w7{width:697.413333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x73{left:1.600000pt;}
.x6c{left:6.880000pt;}
.x6f{left:8.160000pt;}
.xc{left:9.600000pt;}
.x77{left:10.560000pt;}
.x27{left:11.546667pt;}
.xd{left:13.440000pt;}
.x79{left:15.200000pt;}
.x68{left:17.760000pt;}
.x29{left:19.840000pt;}
.x2d{left:21.120000pt;}
.x2a{left:22.560000pt;}
.x38{left:24.640000pt;}
.x72{left:25.952000pt;}
.x2b{left:28.480000pt;}
.x22{left:31.520000pt;}
.x2c{left:32.826667pt;}
.x49{left:34.720000pt;}
.x48{left:36.160000pt;}
.x31{left:37.160000pt;}
.x4a{left:38.880000pt;}
.x4b{left:41.000000pt;}
.x39{left:42.400000pt;}
.x5f{left:44.320000pt;}
.x3b{left:45.440000pt;}
.x23{left:46.586667pt;}
.x3{left:47.999988pt;}
.x3e{left:49.440000pt;}
.x4e{left:50.880000pt;}
.x5e{left:52.000000pt;}
.x12{left:54.400000pt;}
.x60{left:56.000000pt;}
.x3d{left:56.960000pt;}
.x67{left:58.752000pt;}
.x33{left:59.880000pt;}
.x2e{left:60.800000pt;}
.x36{left:63.072000pt;}
.x13{left:63.999988pt;}
.x41{left:66.112000pt;}
.x47{left:67.720000pt;}
.xb{left:68.800000pt;}
.x44{left:69.760000pt;}
.x1a{left:71.999988pt;}
.x54{left:76.026667pt;}
.x70{left:78.400000pt;}
.x32{left:79.866667pt;}
.x74{left:81.626667pt;}
.x56{left:86.906667pt;}
.x57{left:90.911988pt;}
.x2f{left:93.306667pt;}
.x1b{left:96.031988pt;}
.x14{left:97.466667pt;}
.x71{left:101.306667pt;}
.x69{left:102.272000pt;}
.x58{left:109.311988pt;}
.x20{left:110.266667pt;}
.x55{left:113.952000pt;}
.x10{left:129.146667pt;}
.x4{left:143.706655pt;}
.x59{left:149.306667pt;}
.x19{left:151.906667pt;}
.x8{left:154.746655pt;}
.x37{left:169.466667pt;}
.x61{left:171.386667pt;}
.x18{left:176.320000pt;}
.xf{left:177.306667pt;}
.x42{left:188.506667pt;}
.x4f{left:214.106667pt;}
.x4c{left:215.586667pt;}
.xe{left:217.026667pt;}
.x30{left:224.026667pt;}
.x17{left:226.426655pt;}
.x11{left:234.786667pt;}
.x5a{left:243.066667pt;}
.x6e{left:251.426667pt;}
.x15{left:256.386655pt;}
.x4d{left:258.626667pt;}
.x62{left:262.466667pt;}
.x6a{left:264.386667pt;}
.x40{left:269.986667pt;}
.x3f{left:274.146667pt;}
.x75{left:281.666667pt;}
.x35{left:293.346667pt;}
.x53{left:300.386667pt;}
.x43{left:310.786667pt;}
.x5{left:317.346655pt;}
.x16{left:318.786655pt;}
.x1{left:327.040000pt;}
.x5b{left:339.106667pt;}
.x6d{left:341.666667pt;}
.x34{left:345.506667pt;}
.x63{left:355.906667pt;}
.x6b{left:396.386667pt;}
.x2{left:403.653333pt;}
.x50{left:408.386667pt;}
.xa{left:414.146655pt;}
.x1f{left:420.866667pt;}
.x1c{left:438.173322pt;}
.x3a{left:439.933333pt;}
.x28{left:447.293333pt;}
.x64{left:453.693333pt;}
.x45{left:457.213333pt;}
.x1d{left:462.173322pt;}
.x24{left:508.573333pt;}
.x76{left:510.973333pt;}
.x5c{left:535.773333pt;}
.x65{left:547.133333pt;}
.x25{left:566.333333pt;}
.x51{left:569.853333pt;}
.x3c{left:586.813333pt;}
.x46{left:602.973333pt;}
.x26{left:624.133333pt;}
.x78{left:625.253333pt;}
.x66{left:638.373333pt;}
.x5d{left:645.253333pt;}
.x52{left:656.773333pt;}
.x1e{left:662.213322pt;}
.x21{left:682.053333pt;}
.x6{left:744.133322pt;}
.x7{left:746.053322pt;}
.x9{left:752.133322pt;}
}




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