
    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_b4305f139418fb510e40f738.woff')format("woff");}.ff1{font-family:ff1;line-height:0.727539;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_4f26f5040bb479490b175e28.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_d93e3e8dc9734c5961535551.woff')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_060620336af8577e0c9bdb86.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_fec33f226704092a5b14780b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_7be6c96c5a6f0acdae720c98.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_bcf377dcba37a031e7544aed.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_66732dca7a5889be20ac292d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_1efe2e8882bbf5c0d80077fd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.000000px;}
.ls5{letter-spacing:-1.812000px;}
.lse{letter-spacing:-1.524000px;}
.ls4{letter-spacing:-1.242000px;}
.ls1c{letter-spacing:-0.978000px;}
.ls18{letter-spacing:-0.954000px;}
.lsc{letter-spacing:-0.768000px;}
.lsb{letter-spacing:-0.732000px;}
.lsf{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.522000px;}
.ls9{letter-spacing:-0.516000px;}
.ls21{letter-spacing:-0.492000px;}
.ls19{letter-spacing:-0.318000px;}
.ls13{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.012000px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.132000px;}
.ls1e{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.342000px;}
.ls11{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.522000px;}
.ls16{letter-spacing:0.546000px;}
.ls14{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.ls20{letter-spacing:0.744000px;}
.ls0{letter-spacing:0.750000px;}
.lsa{letter-spacing:0.780000px;}
.ls2{letter-spacing:1.488000px;}
.ls1{letter-spacing:1.668000px;}
.ls17{letter-spacing:6.060000px;}
.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;}
}
.ws1c{word-spacing:-23.508000px;}
.wsa{word-spacing:-18.780000px;}
.wsd{word-spacing:-18.732000px;}
.ws10{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.024000px;}
.ws1e{word-spacing:-18.012000px;}
.ws1d{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.268000px;}
.ws18{word-spacing:-17.046000px;}
.ws1b{word-spacing:-17.022000px;}
.ws19{word-spacing:-16.632000px;}
.ws15{word-spacing:-16.500000px;}
.ws17{word-spacing:-16.182000px;}
.ws1a{word-spacing:-15.978000px;}
.ws13{word-spacing:-15.720000px;}
.ws12{word-spacing:-15.600000px;}
.ws16{word-spacing:-15.546000px;}
.wsf{word-spacing:-15.240000px;}
.wsc{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.880000px;}
.wse{word-spacing:-14.400000px;}
.wsb{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.504000px;}
.ws1{word-spacing:-12.312000px;}
.ws6{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.988000px;}
.ws5{word-spacing:-11.484000px;}
.ws0{word-spacing:-11.070000px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._2d{margin-left:-14.154000px;}
._18{margin-left:-6.162000px;}
._2{margin-left:-4.428000px;}
._0{margin-left:-3.294000px;}
._1{margin-left:-1.782000px;}
._3{width:1.197000px;}
._4{width:2.490000px;}
._5{width:3.585000px;}
._10{width:4.644000px;}
._7{width:5.760000px;}
._17{width:7.587000px;}
._f{width:9.180000px;}
._14{width:10.545000px;}
._13{width:11.940000px;}
._6{width:13.242000px;}
._19{width:14.820000px;}
._b{width:16.428000px;}
._a{width:17.580000px;}
._c{width:18.900000px;}
._e{width:19.923000px;}
._8{width:21.663000px;}
._9{width:22.908000px;}
._12{width:24.960000px;}
._11{width:26.145000px;}
._1c{width:27.468000px;}
._1b{width:28.683000px;}
._1e{width:30.141000px;}
._25{width:31.428000px;}
._34{width:33.471000px;}
._24{width:35.325000px;}
._1a{width:36.396000px;}
._23{width:37.404000px;}
._d{width:39.102000px;}
._1d{width:41.796000px;}
._22{width:43.821000px;}
._21{width:45.540000px;}
._2a{width:48.444000px;}
._2b{width:55.407000px;}
._31{width:70.323000px;}
._28{width:102.858000px;}
._29{width:110.172000px;}
._2c{width:113.016000px;}
._32{width:125.067000px;}
._30{width:146.277000px;}
._2f{width:159.483000px;}
._33{width:160.980000px;}
._2e{width:178.593000px;}
._27{width:179.859000px;}
._26{width:192.618000px;}
._15{width:842.397000px;}
._16{width:878.550000px;}
._1f{width:1755.897000px;}
._20{width:1795.350000px;}
.fc7{color:rgb(21,101,147);}
.fc6{color:transparent;}
.fc8{color:rgb(65,71,81);}
.fc3{color:rgb(0,124,176);}
.fc2{color:rgb(20,101,147);}
.fc1{color:rgb(29,29,27);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsb{font-size:63.244921px;}
.fsd{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fsc{font-size:82.218397px;}
.fs2{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.000000px;}
.yf1{bottom:4.110000px;}
.ye1{bottom:4.125000px;}
.yf8{bottom:4.875000px;}
.y112{bottom:5.235000px;}
.yeb{bottom:5.250000px;}
.yfb{bottom:6.375000px;}
.yf4{bottom:6.765000px;}
.y28{bottom:8.625000px;}
.y7{bottom:9.375000px;}
.y143{bottom:11.250000px;}
.y1ce{bottom:12.750000px;}
.y6{bottom:13.875000px;}
.y4d{bottom:13.912500px;}
.y3e{bottom:14.625000px;}
.yf9{bottom:15.000000px;}
.y47{bottom:15.375000px;}
.y48{bottom:16.500000px;}
.y1ed{bottom:17.250000px;}
.y171{bottom:19.500000px;}
.yf0{bottom:20.985000px;}
.y10c{bottom:21.000000px;}
.ye6{bottom:21.030000px;}
.y10a{bottom:21.045000px;}
.yd8{bottom:21.750000px;}
.yf6{bottom:21.780000px;}
.y4b{bottom:22.125000px;}
.y155{bottom:22.500000px;}
.y1d0{bottom:22.530000px;}
.yfa{bottom:23.250000px;}
.yf3{bottom:23.625000px;}
.y1de{bottom:24.000000px;}
.y1d2{bottom:24.030000px;}
.y27{bottom:25.545000px;}
.y142{bottom:28.125000px;}
.y175{bottom:29.610000px;}
.y5{bottom:29.625000px;}
.y100{bottom:29.655000px;}
.y46{bottom:30.000000px;}
.ye8{bottom:30.750000px;}
.y177{bottom:31.125000px;}
.y166{bottom:31.170000px;}
.y3d{bottom:31.500000px;}
.y1ec{bottom:34.125000px;}
.yd9{bottom:35.625000px;}
.y4c{bottom:36.000000px;}
.y170{bottom:36.405000px;}
.yed{bottom:37.860000px;}
.y10d{bottom:37.875000px;}
.y101{bottom:37.905000px;}
.y109{bottom:37.920000px;}
.yf7{bottom:38.655000px;}
.yea{bottom:39.000000px;}
.y10f{bottom:39.030000px;}
.y13f{bottom:39.375000px;}
.y154{bottom:39.420000px;}
.y148{bottom:40.875000px;}
.y1d1{bottom:40.905000px;}
.y167{bottom:40.920000px;}
.y164{bottom:42.375000px;}
.y26{bottom:42.420000px;}
.y1e3{bottom:43.875000px;}
.y45{bottom:44.250000px;}
.y4{bottom:45.000000px;}
.y174{bottom:46.485000px;}
.yff{bottom:46.530000px;}
.y104{bottom:46.545000px;}
.y13c{bottom:48.000000px;}
.y3c{bottom:48.375000px;}
.y49{bottom:52.912500px;}
.y1eb{bottom:54.000000px;}
.y162{bottom:54.750000px;}
.yef{bottom:54.780000px;}
.y108{bottom:54.795000px;}
.ye9{bottom:55.875000px;}
.y10e{bottom:55.905000px;}
.y13e{bottom:56.250000px;}
.y16f{bottom:56.280000px;}
.y147{bottom:57.750000px;}
.y1cc{bottom:57.780000px;}
.y14f{bottom:57.795000px;}
.y15c{bottom:59.250000px;}
.y153{bottom:59.280000px;}
.y25{bottom:59.295000px;}
.y1dd{bottom:60.750000px;}
.y1f2{bottom:60.795000px;}
.y103{bottom:63.420000px;}
.y13b{bottom:64.875000px;}
.y3b{bottom:65.250000px;}
.y14a{bottom:67.920000px;}
.y44{bottom:68.287500px;}
.y1cb{bottom:70.170000px;}
.y1ea{bottom:70.920000px;}
.y176{bottom:71.625000px;}
.yee{bottom:71.655000px;}
.y107{bottom:71.670000px;}
.y111{bottom:72.780000px;}
.y13d{bottom:73.125000px;}
.y16e{bottom:73.155000px;}
.y146{bottom:74.625000px;}
.y14e{bottom:74.670000px;}
.y15a{bottom:76.125000px;}
.y152{bottom:76.155000px;}
.y24{bottom:76.170000px;}
.y1dc{bottom:77.625000px;}
.y1d7{bottom:80.625000px;}
.y1e5{bottom:80.670000px;}
.y141{bottom:81.750000px;}
.y3a{bottom:82.125000px;}
.y114{bottom:84.000000px;}
.y1ca{bottom:87.045000px;}
.y172{bottom:88.530000px;}
.y106{bottom:88.545000px;}
.y110{bottom:89.655000px;}
.y1e9{bottom:90.795000px;}
.y145{bottom:91.500000px;}
.y161{bottom:91.530000px;}
.y159{bottom:93.030000px;}
.y23{bottom:93.045000px;}
.y14d{bottom:94.530000px;}
.y151{bottom:96.030000px;}
.y1d6{bottom:97.500000px;}
.y39{bottom:99.045000px;}
.y1f1{bottom:100.545000px;}
.y140{bottom:101.625000px;}
.y16c{bottom:103.920000px;}
.y105{bottom:105.420000px;}
.y1e8{bottom:107.670000px;}
.y144{bottom:108.375000px;}
.y160{bottom:108.405000px;}
.y15b{bottom:109.905000px;}
.y22{bottom:109.920000px;}
.y14c{bottom:111.405000px;}
.y150{bottom:112.905000px;}
.y1d5{bottom:114.420000px;}
.y38{bottom:115.920000px;}
.y1e2{bottom:117.420000px;}
.y1f0{bottom:120.420000px;}
.y16b{bottom:120.795000px;}
.y119{bottom:122.287500px;}
.y157{bottom:123.795000px;}
.ybc{bottom:124.537500px;}
.y163{bottom:126.780000px;}
.y21{bottom:126.795000px;}
.y1e7{bottom:127.545000px;}
.y21e{bottom:127.912500px;}
.y15f{bottom:128.280000px;}
.y14b{bottom:131.280000px;}
.y1a6{bottom:132.412500px;}
.y19{bottom:132.420000px;}
.y37{bottom:132.795000px;}
.y201{bottom:133.537500px;}
.y13a{bottom:133.905000px;}
.y1db{bottom:134.295000px;}
.y7a{bottom:134.662500px;}
.yde{bottom:135.075000px;}
.y16a{bottom:137.670000px;}
.y43{bottom:139.537500px;}
.y1ef{bottom:140.295000px;}
.y17b{bottom:140.662500px;}
.y118{bottom:142.537500px;}
.y20{bottom:143.670000px;}
.y1e6{bottom:144.420000px;}
.ybb{bottom:144.787500px;}
.y15e{bottom:145.155000px;}
.yb2{bottom:145.912500px;}
.y21d{bottom:148.162500px;}
.y36{bottom:149.670000px;}
.ydd{bottom:150.450000px;}
.y139{bottom:150.780000px;}
.y1da{bottom:151.170000px;}
.y1a5{bottom:152.670000px;}
.y42{bottom:153.045000px;}
.y200{bottom:153.795000px;}
.y1e1{bottom:154.155000px;}
.y169{bottom:154.545000px;}
.y79{bottom:154.905000px;}
.ye4{bottom:155.655000px;}
.y1ee{bottom:157.170000px;}
.y18{bottom:158.325000px;}
.y1f{bottom:160.575000px;}
.y17a{bottom:160.920000px;}
.y28f{bottom:163.920000px;}
.y2f{bottom:164.295000px;}
.y15d{bottom:165.030000px;}
.yaa{bottom:166.170000px;}
.y35{bottom:166.545000px;}
.y26d{bottom:166.920000px;}
.y41{bottom:167.670000px;}
.y21c{bottom:168.405000px;}
.yba{bottom:169.155000px;}
.y1d9{bottom:171.030000px;}
.ydc{bottom:171.075000px;}
.ye3{bottom:172.530000px;}
.y1a4{bottom:172.920000px;}
.y1ff{bottom:174.075000px;}
.y1e{bottom:177.450000px;}
.y117{bottom:179.325000px;}
.yfd{bottom:179.700000px;}
.y179{bottom:181.200000px;}
.y40{bottom:181.950000px;}
.y34{bottom:183.420000px;}
.y17{bottom:184.200000px;}
.y26c{bottom:185.700000px;}
.ya9{bottom:186.450000px;}
.y1d8{bottom:187.905000px;}
.y21b{bottom:188.700000px;}
.y2e{bottom:190.170000px;}
.y1e0{bottom:190.905000px;}
.y1c8{bottom:191.700000px;}
.y1a3{bottom:193.200000px;}
.y1d{bottom:194.325000px;}
.y116{bottom:194.700000px;}
.y3f{bottom:195.450000px;}
.y242{bottom:196.200000px;}
.y33{bottom:200.295000px;}
.y178{bottom:201.450000px;}
.y78{bottom:204.450000px;}
.ya8{bottom:206.700000px;}
.y135{bottom:207.450000px;}
.y1df{bottom:207.780000px;}
.y16{bottom:210.075000px;}
.y1c{bottom:211.200000px;}
.y1d3{bottom:211.575000px;}
.y1c7{bottom:211.950000px;}
.y113{bottom:213.075000px;}
.y212{bottom:213.450000px;}
.y1fe{bottom:214.575000px;}
.y2d{bottom:216.075000px;}
.y32{bottom:217.200000px;}
.y21a{bottom:217.950000px;}
.y2a{bottom:220.200000px;}
.y1a2{bottom:222.450000px;}
.y241{bottom:223.575000px;}
.y77{bottom:224.700000px;}
.ya7{bottom:226.950000px;}
.y134{bottom:227.700000px;}
.y1b{bottom:228.075000px;}
.y26b{bottom:231.825000px;}
.y1c6{bottom:232.200000px;}
.y211{bottom:233.700000px;}
.y31{bottom:234.075000px;}
.y1fd{bottom:234.825000px;}
.y28e{bottom:235.200000px;}
.y15{bottom:235.950000px;}
.y168{bottom:238.200000px;}
.y2c{bottom:241.950000px;}
.y240{bottom:242.325000px;}
.y1a1{bottom:242.700000px;}
.y1a{bottom:244.950000px;}
.ya6{bottom:247.200000px;}
.y133{bottom:247.950000px;}
.y30{bottom:250.950000px;}
.y1c5{bottom:252.450000px;}
.y1fc{bottom:255.075000px;}
.y219{bottom:258.450000px;}
.y26a{bottom:259.200000px;}
.y23f{bottom:261.075000px;}
.y14{bottom:261.825000px;}
.y1a0{bottom:262.950000px;}
.ya5{bottom:267.450000px;}
.y2b{bottom:267.825000px;}
.y132{bottom:268.200000px;}
.yd6{bottom:269.700000px;}
.y1c4{bottom:272.700000px;}
.y76{bottom:274.200000px;}
.y1fb{bottom:275.325000px;}
.y269{bottom:277.950000px;}
.y218{bottom:278.700000px;}
.y19f{bottom:283.200000px;}
.y28d{bottom:287.325000px;}
.ya4{bottom:287.700000px;}
.y131{bottom:288.450000px;}
.y1c3{bottom:292.950000px;}
.y75{bottom:294.450000px;}
.y268{bottom:296.325000px;}
.yd5{bottom:298.950000px;}
.y19e{bottom:303.495000px;}
.y1fa{bottom:304.605000px;}
.y28c{bottom:306.120000px;}
.y23e{bottom:307.230000px;}
.ya3{bottom:307.980000px;}
.y130{bottom:308.745000px;}
.y1c2{bottom:313.245000px;}
.y74{bottom:314.730000px;}
.y173{bottom:314.745000px;}
.yd4{bottom:319.245000px;}
.y19d{bottom:323.745000px;}
.y28b{bottom:324.480000px;}
.y1f9{bottom:324.855000px;}
.y23d{bottom:325.620000px;}
.ya2{bottom:328.230000px;}
.y12f{bottom:328.995000px;}
.y1c1{bottom:333.495000px;}
.y73{bottom:334.980000px;}
.yd3{bottom:339.495000px;}
.y267{bottom:342.495000px;}
.y210{bottom:343.995000px;}
.y1f8{bottom:345.105000px;}
.ya1{bottom:348.480000px;}
.y12e{bottom:349.245000px;}
.y28a{bottom:351.855000px;}
.y19c{bottom:352.995000px;}
.y1c0{bottom:353.745000px;}
.y72{bottom:355.230000px;}
.y115{bottom:355.620000px;}
.yd2{bottom:359.745000px;}
.y20f{bottom:364.245000px;}
.y1f7{bottom:365.355000px;}
.yb1{bottom:368.730000px;}
.y12d{bottom:369.495000px;}
.y266{bottom:369.870000px;}
.y289{bottom:370.620000px;}
.y23c{bottom:371.730000px;}
.y19b{bottom:373.245000px;}
.y1bf{bottom:373.995000px;}
.y71{bottom:375.480000px;}
.ya0{bottom:377.745000px;}
.yd1{bottom:379.995000px;}
.y20e{bottom:384.495000px;}
.y1f6{bottom:385.605000px;}
.y265{bottom:388.605000px;}
.y299{bottom:388.980000px;}
.y288{bottom:389.370000px;}
.y12c{bottom:389.745000px;}
.y23b{bottom:390.495000px;}
.yfc{bottom:393.120000px;}
.y19a{bottom:393.495000px;}
.y1be{bottom:394.245000px;}
.y70{bottom:395.730000px;}
.y9f{bottom:397.995000px;}
.yd0{bottom:400.245000px;}
.y16d{bottom:403.995000px;}
.y20d{bottom:404.745000px;}
.y1f5{bottom:405.870000px;}
.y264{bottom:407.370000px;}
.y217{bottom:409.245000px;}
.y199{bottom:413.745000px;}
.y6f{bottom:415.995000px;}
.y287{bottom:416.745000px;}
.y23a{bottom:417.870000px;}
.y9e{bottom:418.245000px;}
.y12b{bottom:418.995000px;}
.ycf{bottom:420.495000px;}
.y1bd{bottom:423.495000px;}
.y20c{bottom:424.995000px;}
.y216{bottom:429.495000px;}
.y198{bottom:434.025000px;}
.y263{bottom:434.775000px;}
.y1f4{bottom:435.150000px;}
.y286{bottom:435.525000px;}
.y239{bottom:436.650000px;}
.y9d{bottom:438.525000px;}
.y12a{bottom:439.275000px;}
.y1bc{bottom:443.775000px;}
.y6e{bottom:445.275000px;}
.yce{bottom:449.775000px;}
.y262{bottom:453.525000px;}
.y285{bottom:453.900000px;}
.y197{bottom:454.275000px;}
.y238{bottom:455.025000px;}
.y1f3{bottom:455.400000px;}
.y9c{bottom:458.775000px;}
.y129{bottom:459.525000px;}
.y1bb{bottom:464.025000px;}
.y6d{bottom:465.525000px;}
.ycd{bottom:470.025000px;}
.y196{bottom:474.525000px;}
.y20b{bottom:476.025000px;}
.y9b{bottom:479.025000px;}
.y261{bottom:480.900000px;}
.y284{bottom:481.275000px;}
.y237{bottom:482.400000px;}
.y1ba{bottom:484.275000px;}
.y6c{bottom:485.775000px;}
.y128{bottom:488.775000px;}
.ycc{bottom:490.275000px;}
.y195{bottom:494.775000px;}
.yb0{bottom:499.275000px;}
.y260{bottom:499.650000px;}
.y10b{bottom:500.025000px;}
.y236{bottom:501.150000px;}
.y6b{bottom:506.025000px;}
.y9a{bottom:508.275000px;}
.y127{bottom:509.025000px;}
.y29{bottom:509.775000px;}
.y156{bottom:510.150000px;}
.ycb{bottom:510.525000px;}
.y1b9{bottom:513.525000px;}
.y194{bottom:515.025000px;}
.y25f{bottom:518.025000px;}
.y235{bottom:519.900000px;}
.y6a{bottom:526.275000px;}
.y283{bottom:527.400000px;}
.y99{bottom:528.525000px;}
.yca{bottom:530.775000px;}
.y165{bottom:533.025000px;}
.y1b8{bottom:533.775000px;}
.y13{bottom:534.900000px;}
.y193{bottom:535.275000px;}
.y25e{bottom:536.775000px;}
.y234{bottom:538.275000px;}
.y282{bottom:546.150000px;}
.y69{bottom:546.525000px;}
.y126{bottom:547.275000px;}
.y98{bottom:548.775000px;}
.yc9{bottom:551.025000px;}
.y1b7{bottom:554.025000px;}
.y102{bottom:554.400000px;}
.y298{bottom:555.525000px;}
.y215{bottom:560.070000px;}
.y25d{bottom:564.195000px;}
.y192{bottom:564.570000px;}
.y281{bottom:564.945000px;}
.y233{bottom:565.695000px;}
.y68{bottom:566.820000px;}
.y125{bottom:567.570000px;}
.y97{bottom:569.070000px;}
.yc8{bottom:571.320000px;}
.y1b6{bottom:574.320000px;}
.y297{bottom:575.820000px;}
.y214{bottom:580.320000px;}
.y25c{bottom:582.945000px;}
.y280{bottom:583.320000px;}
.y232{bottom:584.445000px;}
.y124{bottom:587.820000px;}
.y96{bottom:589.320000px;}
.yc7{bottom:591.570000px;}
.y1b5{bottom:594.570000px;}
.y67{bottom:596.070000px;}
.yb9{bottom:599.820000px;}
.y213{bottom:600.570000px;}
.y25b{bottom:601.320000px;}
.y191{bottom:602.820000px;}
.y231{bottom:603.195000px;}
.y123{bottom:608.070000px;}
.y158{bottom:608.445000px;}
.y95{bottom:609.570000px;}
.y27f{bottom:610.695000px;}
.y1b4{bottom:614.820000px;}
.y66{bottom:616.320000px;}
.yc6{bottom:620.820000px;}
.yb8{bottom:621.195000px;}
.y190{bottom:623.070000px;}
.y122{bottom:628.320000px;}
.y25a{bottom:628.695000px;}
.y27e{bottom:629.445000px;}
.y94{bottom:629.820000px;}
.y230{bottom:630.570000px;}
.y1b3{bottom:635.070000px;}
.y65{bottom:636.570000px;}
.yc5{bottom:641.070000px;}
.y18f{bottom:643.320000px;}
.y259{bottom:647.445000px;}
.y121{bottom:648.570000px;}
.y22f{bottom:649.320000px;}
.y93{bottom:650.070000px;}
.y64{bottom:656.820000px;}
.yc4{bottom:661.320000px;}
.y18e{bottom:663.570000px;}
.y1b2{bottom:664.320000px;}
.y296{bottom:665.820000px;}
.y258{bottom:666.195000px;}
.y22e{bottom:667.695000px;}
.y92{bottom:670.320000px;}
.y1e4{bottom:673.695000px;}
.y27d{bottom:675.570000px;}
.yfe{bottom:676.320000px;}
.y63{bottom:677.070000px;}
.y120{bottom:677.820000px;}
.y20a{bottom:679.320000px;}
.yc3{bottom:681.570000px;}
.y18d{bottom:683.820000px;}
.y1b1{bottom:684.570000px;}
.y22d{bottom:686.445000px;}
.ydb{bottom:688.425000px;}
.y91{bottom:690.600000px;}
.y257{bottom:693.600000px;}
.y27c{bottom:694.350000px;}
.y62{bottom:697.350000px;}
.y209{bottom:699.600000px;}
.yc2{bottom:701.850000px;}
.y1b0{bottom:704.850000px;}
.yda{bottom:709.800000px;}
.y90{bottom:710.850000px;}
.y1d4{bottom:711.225000px;}
.y256{bottom:712.350000px;}
.y27b{bottom:712.725000px;}
.y18c{bottom:713.100000px;}
.y22c{bottom:713.850000px;}
.y61{bottom:717.600000px;}
.y208{bottom:719.850000px;}
.yaf{bottom:721.350000px;}
.y8f{bottom:731.100000px;}
.y22b{bottom:732.600000px;}
.y18b{bottom:733.350000px;}
.y1af{bottom:734.100000px;}
.y60{bottom:737.850000px;}
.y255{bottom:739.725000px;}
.y207{bottom:740.100000px;}
.y295{bottom:742.350000px;}
.yae{bottom:748.350000px;}
.y22a{bottom:750.975000px;}
.y8e{bottom:751.350000px;}
.y18a{bottom:753.600000px;}
.y5f{bottom:758.100000px;}
.y254{bottom:758.475000px;}
.y27a{bottom:758.850000px;}
.y206{bottom:760.350000px;}
.y294{bottom:762.600000px;}
.ye2{bottom:764.475000px;}
.y8d{bottom:771.600000px;}
.y1ae{bottom:772.350000px;}
.y189{bottom:773.850000px;}
.y11f{bottom:778.350000px;}
.y205{bottom:780.600000px;}
.y293{bottom:782.850000px;}
.y253{bottom:785.850000px;}
.y279{bottom:786.225000px;}
.y5e{bottom:787.350000px;}
.yb7{bottom:788.850000px;}
.y138{bottom:791.100000px;}
.y8c{bottom:791.850000px;}
.y1ad{bottom:792.600000px;}
.y229{bottom:797.100000px;}
.y11e{bottom:798.600000px;}
.yad{bottom:800.850000px;}
.y188{bottom:803.100000px;}
.y252{bottom:804.600000px;}
.y278{bottom:804.975000px;}
.yf5{bottom:806.475000px;}
.y5d{bottom:807.600000px;}
.yc1{bottom:812.100000px;}
.y1ac{bottom:812.850000px;}
.y228{bottom:815.850000px;}
.y11{bottom:818.505000px;}
.y11d{bottom:818.895000px;}
.y8b{bottom:821.130000px;}
.y187{bottom:823.380000px;}
.y5c{bottom:827.880000px;}
.y251{bottom:832.020000px;}
.yc0{bottom:832.380000px;}
.y1ab{bottom:833.130000px;}
.yd7{bottom:833.205000px;}
.y11c{bottom:839.130000px;}
.y8a{bottom:841.380000px;}
.y227{bottom:843.255000px;}
.y186{bottom:843.630000px;}
.y10{bottom:847.755000px;}
.y5b{bottom:848.130000px;}
.y250{bottom:850.755000px;}
.y277{bottom:851.130000px;}
.ybf{bottom:852.630000px;}
.y1aa{bottom:853.380000px;}
.y11b{bottom:859.380000px;}
.y89{bottom:861.630000px;}
.y226{bottom:862.005000px;}
.yf2{bottom:862.380000px;}
.y185{bottom:863.880000px;}
.y5a{bottom:868.380000px;}
.yf{bottom:869.145000px;}
.y276{bottom:869.895000px;}
.ybe{bottom:872.880000px;}
.y1a9{bottom:873.630000px;}
.y225{bottom:880.380000px;}
.y88{bottom:881.880000px;}
.y184{bottom:884.130000px;}
.ye{bottom:886.005000px;}
.y59{bottom:888.630000px;}
.y11a{bottom:890.130000px;}
.ybd{bottom:893.130000px;}
.y1a8{bottom:893.880000px;}
.y24f{bottom:896.505000px;}
.y275{bottom:897.255000px;}
.y87{bottom:902.130000px;}
.yd{bottom:902.880000px;}
.y183{bottom:904.380000px;}
.yec{bottom:905.145000px;}
.y224{bottom:907.755000px;}
.y58{bottom:908.880000px;}
.y292{bottom:920.130000px;}
.y86{bottom:922.380000px;}
.y1a7{bottom:923.130000px;}
.y24e{bottom:924.255000px;}
.y182{bottom:924.630000px;}
.y223{bottom:926.505000px;}
.y57{bottom:929.130000px;}
.yc{bottom:933.255000px;}
.y1c9{bottom:935.505000px;}
.y1cf{bottom:935.520000px;}
.y149{bottom:941.145000px;}
.y85{bottom:942.630000px;}
.y24d{bottom:943.005000px;}
.y274{bottom:943.380000px;}
.y181{bottom:944.880000px;}
.y56{bottom:949.425000px;}
.y204{bottom:951.675000px;}
.y222{bottom:953.925000px;}
.y24c{bottom:961.425000px;}
.y84{bottom:962.925000px;}
.y180{bottom:965.175000px;}
.y55{bottom:969.675000px;}
.y273{bottom:970.800000px;}
.yb{bottom:971.175000px;}
.y203{bottom:971.925000px;}
.y221{bottom:972.675000px;}
.y83{bottom:983.175000px;}
.y17f{bottom:985.425000px;}
.y24b{bottom:988.800000px;}
.y54{bottom:989.925000px;}
.y220{bottom:991.425000px;}
.y202{bottom:992.175000px;}
.y1cd{bottom:992.925000px;}
.ye7{bottom:993.300000px;}
.ya{bottom:995.175000px;}
.y272{bottom:998.550000px;}
.yac{bottom:1003.425000px;}
.y17e{bottom:1005.675000px;}
.y24a{bottom:1007.550000px;}
.y53{bottom:1010.175000px;}
.y82{bottom:1012.425000px;}
.y271{bottom:1017.300000px;}
.y21f{bottom:1020.675000px;}
.yab{bottom:1023.675000px;}
.y17d{bottom:1025.925000px;}
.y249{bottom:1026.300000px;}
.y52{bottom:1030.425000px;}
.y81{bottom:1032.675000px;}
.y9{bottom:1039.050000px;}
.yb6{bottom:1043.925000px;}
.y270{bottom:1044.675000px;}
.y51{bottom:1050.675000px;}
.y80{bottom:1052.925000px;}
.y248{bottom:1053.675000px;}
.y17c{bottom:1055.175000px;}
.y26f{bottom:1063.425000px;}
.yb5{bottom:1064.175000px;}
.ye5{bottom:1067.175000px;}
.y8{bottom:1068.300000px;}
.y50{bottom:1070.925000px;}
.y247{bottom:1072.425000px;}
.y7f{bottom:1073.175000px;}
.yb4{bottom:1084.455000px;}
.y137{bottom:1087.830000px;}
.y246{bottom:1090.830000px;}
.y4f{bottom:1091.205000px;}
.y7e{bottom:1093.455000px;}
.y291{bottom:1100.205000px;}
.y3{bottom:1102.830000px;}
.yb3{bottom:1104.705000px;}
.y26e{bottom:1109.580000px;}
.y7d{bottom:1113.705000px;}
.y245{bottom:1118.205000px;}
.y136{bottom:1118.580000px;}
.y4e{bottom:1121.955000px;}
.y7c{bottom:1133.955000px;}
.ye0{bottom:1135.455000px;}
.y244{bottom:1136.955000px;}
.y290{bottom:1148.955000px;}
.y7b{bottom:1154.205000px;}
.y243{bottom:1155.705000px;}
.ydf{bottom:1156.830000px;}
.y2{bottom:1173.330000px;}
.y1{bottom:1197.705000px;}
.y4a{bottom:1203.375000px;}
.h1a{height:19.875000px;}
.h2d{height:19.897500px;}
.h9{height:24.375000px;}
.h7{height:24.380859px;}
.h11{height:32.639648px;}
.he{height:33.421875px;}
.h28{height:36.750000px;}
.h39{height:36.772500px;}
.h1d{height:36.787500px;}
.hd{height:38.206055px;}
.h13{height:38.287500px;}
.h1{height:38.654297px;}
.h8{height:40.634766px;}
.h22{height:41.250000px;}
.hb{height:41.777344px;}
.h20{height:42.000000px;}
.h6{height:44.244141px;}
.h3c{height:44.698242px;}
.h19{height:45.193359px;}
.h10{height:48.761719px;}
.h2{height:49.122070px;}
.h1b{height:50.214844px;}
.h15{height:50.273438px;}
.h16{height:52.992326px;}
.h25{height:53.625000px;}
.h21{height:55.162500px;}
.h3b{height:55.236328px;}
.h36{height:56.647500px;}
.h5{height:56.888672px;}
.h12{height:60.257812px;}
.h3d{height:60.328125px;}
.hf{height:63.750000px;}
.h3{height:66.375000px;}
.h2a{height:68.890024px;}
.h4{height:69.079102px;}
.h1e{height:73.125000px;}
.h31{height:73.537500px;}
.h14{height:80.437500px;}
.h34{height:87.375000px;}
.h1f{height:87.397500px;}
.h29{height:87.412500px;}
.h33{height:104.287500px;}
.h26{height:106.162500px;}
.h24{height:121.162500px;}
.h2c{height:124.162500px;}
.h2e{height:147.037500px;}
.h35{height:168.450000px;}
.h3a{height:172.905000px;}
.h27{height:179.295000px;}
.h30{height:180.780000px;}
.h38{height:223.545000px;}
.h32{height:270.075000px;}
.h2f{height:279.075000px;}
.ha{height:283.605000px;}
.hc{height:289.575000px;}
.h2b{height:295.980000px;}
.h1c{height:339.495000px;}
.h23{height:370.605000px;}
.h37{height:434.730000px;}
.h17{height:892.875000px;}
.h18{height:893.250000px;}
.h0{height:1263.000000px;}
.wb{width:8.625000px;}
.w11{width:16.875000px;}
.w14{width:65.287500px;}
.w19{width:69.037500px;}
.w12{width:77.287500px;}
.w17{width:88.537500px;}
.w13{width:96.037500px;}
.w18{width:97.537500px;}
.we{width:106.575000px;}
.w1a{width:127.537500px;}
.w4{width:151.200000px;}
.w15{width:165.825000px;}
.w3{width:177.450000px;}
.w16{width:191.325000px;}
.w7{width:194.325000px;}
.w1b{width:212.745000px;}
.wf{width:223.200000px;}
.w10{width:265.995000px;}
.w6{width:507.975000px;}
.w2{width:524.850000px;}
.w5{width:551.475000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.wa{width:892.874987px;}
.w8{width:892.875000px;}
.w9{width:893.250000px;}
.wd{width:1262.999981px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x23{left:9.375000px;}
.x27{left:10.500000px;}
.x16{left:12.787500px;}
.xf{left:15.037500px;}
.x18{left:16.537500px;}
.x1f{left:19.170000px;}
.x15{left:21.000000px;}
.x20{left:22.125000px;}
.x14{left:24.412500px;}
.x13{left:25.912500px;}
.x17{left:33.787500px;}
.x1c{left:37.920000px;}
.x1e{left:65.280000px;}
.x26{left:76.170000px;}
.x11{left:81.405000px;}
.x3{left:91.537500px;}
.xd{left:93.412481px;}
.x9{left:127.537487px;}
.xb{left:170.324987px;}
.x5{left:177.810000px;}
.x19{left:204.825000px;}
.x28{left:212.699987px;}
.x10{left:234.120000px;}
.x6{left:242.745000px;}
.x21{left:258.870000px;}
.x1a{left:300.870000px;}
.x22{left:356.400000px;}
.x1b{left:366.150000px;}
.x24{left:425.445000px;}
.x12{left:457.320000px;}
.xa{left:465.195000px;}
.x1d{left:531.975000px;}
.x25{left:552.975000px;}
.x8{left:599.520000px;}
.x4{left:616.395000px;}
.x2{left:716.924987px;}
.xc{left:723.299987px;}
.x1{left:793.469987px;}
.xe{left:998.174981px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.333333pt;}
.ls5{letter-spacing:-1.610667pt;}
.lse{letter-spacing:-1.354667pt;}
.ls4{letter-spacing:-1.104000pt;}
.ls1c{letter-spacing:-0.869333pt;}
.ls18{letter-spacing:-0.848000pt;}
.lsc{letter-spacing:-0.682667pt;}
.lsb{letter-spacing:-0.650667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.464000pt;}
.ls9{letter-spacing:-0.458667pt;}
.ls21{letter-spacing:-0.437333pt;}
.ls19{letter-spacing:-0.282667pt;}
.ls13{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls1e{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.304000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.464000pt;}
.ls16{letter-spacing:0.485333pt;}
.ls14{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.ls20{letter-spacing:0.661333pt;}
.ls0{letter-spacing:0.666667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls2{letter-spacing:1.322667pt;}
.ls1{letter-spacing:1.482667pt;}
.ls17{letter-spacing:5.386667pt;}
.ws1c{word-spacing:-20.896000pt;}
.wsa{word-spacing:-16.693333pt;}
.wsd{word-spacing:-16.650667pt;}
.ws10{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.021333pt;}
.ws1e{word-spacing:-16.010667pt;}
.ws1d{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.349333pt;}
.ws18{word-spacing:-15.152000pt;}
.ws1b{word-spacing:-15.130667pt;}
.ws19{word-spacing:-14.784000pt;}
.ws15{word-spacing:-14.666667pt;}
.ws17{word-spacing:-14.384000pt;}
.ws1a{word-spacing:-14.202667pt;}
.ws13{word-spacing:-13.973333pt;}
.ws12{word-spacing:-13.866667pt;}
.ws16{word-spacing:-13.818667pt;}
.wsf{word-spacing:-13.546667pt;}
.wsc{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.226667pt;}
.wse{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.114667pt;}
.ws1{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.656000pt;}
.ws5{word-spacing:-10.208000pt;}
.ws0{word-spacing:-9.840000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._2d{margin-left:-12.581333pt;}
._18{margin-left:-5.477333pt;}
._2{margin-left:-3.936000pt;}
._0{margin-left:-2.928000pt;}
._1{margin-left:-1.584000pt;}
._3{width:1.064000pt;}
._4{width:2.213333pt;}
._5{width:3.186667pt;}
._10{width:4.128000pt;}
._7{width:5.120000pt;}
._17{width:6.744000pt;}
._f{width:8.160000pt;}
._14{width:9.373333pt;}
._13{width:10.613333pt;}
._6{width:11.770667pt;}
._19{width:13.173333pt;}
._b{width:14.602667pt;}
._a{width:15.626667pt;}
._c{width:16.800000pt;}
._e{width:17.709333pt;}
._8{width:19.256000pt;}
._9{width:20.362667pt;}
._12{width:22.186667pt;}
._11{width:23.240000pt;}
._1c{width:24.416000pt;}
._1b{width:25.496000pt;}
._1e{width:26.792000pt;}
._25{width:27.936000pt;}
._34{width:29.752000pt;}
._24{width:31.400000pt;}
._1a{width:32.352000pt;}
._23{width:33.248000pt;}
._d{width:34.757333pt;}
._1d{width:37.152000pt;}
._22{width:38.952000pt;}
._21{width:40.480000pt;}
._2a{width:43.061333pt;}
._2b{width:49.250667pt;}
._31{width:62.509333pt;}
._28{width:91.429333pt;}
._29{width:97.930667pt;}
._2c{width:100.458667pt;}
._32{width:111.170667pt;}
._30{width:130.024000pt;}
._2f{width:141.762667pt;}
._33{width:143.093333pt;}
._2e{width:158.749333pt;}
._27{width:159.874667pt;}
._26{width:171.216000pt;}
._15{width:748.797333pt;}
._16{width:780.933333pt;}
._1f{width:1560.797333pt;}
._20{width:1595.866667pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsb{font-size:56.217707pt;}
.fsd{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fsc{font-size:73.083020pt;}
.fs2{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:2.666667pt;}
.yf1{bottom:3.653333pt;}
.ye1{bottom:3.666667pt;}
.yf8{bottom:4.333333pt;}
.y112{bottom:4.653333pt;}
.yeb{bottom:4.666667pt;}
.yfb{bottom:5.666667pt;}
.yf4{bottom:6.013333pt;}
.y28{bottom:7.666667pt;}
.y7{bottom:8.333333pt;}
.y143{bottom:10.000000pt;}
.y1ce{bottom:11.333333pt;}
.y6{bottom:12.333333pt;}
.y4d{bottom:12.366667pt;}
.y3e{bottom:13.000000pt;}
.yf9{bottom:13.333333pt;}
.y47{bottom:13.666667pt;}
.y48{bottom:14.666667pt;}
.y1ed{bottom:15.333333pt;}
.y171{bottom:17.333333pt;}
.yf0{bottom:18.653333pt;}
.y10c{bottom:18.666667pt;}
.ye6{bottom:18.693333pt;}
.y10a{bottom:18.706667pt;}
.yd8{bottom:19.333333pt;}
.yf6{bottom:19.360000pt;}
.y4b{bottom:19.666667pt;}
.y155{bottom:20.000000pt;}
.y1d0{bottom:20.026667pt;}
.yfa{bottom:20.666667pt;}
.yf3{bottom:21.000000pt;}
.y1de{bottom:21.333333pt;}
.y1d2{bottom:21.360000pt;}
.y27{bottom:22.706667pt;}
.y142{bottom:25.000000pt;}
.y175{bottom:26.320000pt;}
.y5{bottom:26.333333pt;}
.y100{bottom:26.360000pt;}
.y46{bottom:26.666667pt;}
.ye8{bottom:27.333333pt;}
.y177{bottom:27.666667pt;}
.y166{bottom:27.706667pt;}
.y3d{bottom:28.000000pt;}
.y1ec{bottom:30.333333pt;}
.yd9{bottom:31.666667pt;}
.y4c{bottom:32.000000pt;}
.y170{bottom:32.360000pt;}
.yed{bottom:33.653333pt;}
.y10d{bottom:33.666667pt;}
.y101{bottom:33.693333pt;}
.y109{bottom:33.706667pt;}
.yf7{bottom:34.360000pt;}
.yea{bottom:34.666667pt;}
.y10f{bottom:34.693333pt;}
.y13f{bottom:35.000000pt;}
.y154{bottom:35.040000pt;}
.y148{bottom:36.333333pt;}
.y1d1{bottom:36.360000pt;}
.y167{bottom:36.373333pt;}
.y164{bottom:37.666667pt;}
.y26{bottom:37.706667pt;}
.y1e3{bottom:39.000000pt;}
.y45{bottom:39.333333pt;}
.y4{bottom:40.000000pt;}
.y174{bottom:41.320000pt;}
.yff{bottom:41.360000pt;}
.y104{bottom:41.373333pt;}
.y13c{bottom:42.666667pt;}
.y3c{bottom:43.000000pt;}
.y49{bottom:47.033333pt;}
.y1eb{bottom:48.000000pt;}
.y162{bottom:48.666667pt;}
.yef{bottom:48.693333pt;}
.y108{bottom:48.706667pt;}
.ye9{bottom:49.666667pt;}
.y10e{bottom:49.693333pt;}
.y13e{bottom:50.000000pt;}
.y16f{bottom:50.026667pt;}
.y147{bottom:51.333333pt;}
.y1cc{bottom:51.360000pt;}
.y14f{bottom:51.373333pt;}
.y15c{bottom:52.666667pt;}
.y153{bottom:52.693333pt;}
.y25{bottom:52.706667pt;}
.y1dd{bottom:54.000000pt;}
.y1f2{bottom:54.040000pt;}
.y103{bottom:56.373333pt;}
.y13b{bottom:57.666667pt;}
.y3b{bottom:58.000000pt;}
.y14a{bottom:60.373333pt;}
.y44{bottom:60.700000pt;}
.y1cb{bottom:62.373333pt;}
.y1ea{bottom:63.040000pt;}
.y176{bottom:63.666667pt;}
.yee{bottom:63.693333pt;}
.y107{bottom:63.706667pt;}
.y111{bottom:64.693333pt;}
.y13d{bottom:65.000000pt;}
.y16e{bottom:65.026667pt;}
.y146{bottom:66.333333pt;}
.y14e{bottom:66.373333pt;}
.y15a{bottom:67.666667pt;}
.y152{bottom:67.693333pt;}
.y24{bottom:67.706667pt;}
.y1dc{bottom:69.000000pt;}
.y1d7{bottom:71.666667pt;}
.y1e5{bottom:71.706667pt;}
.y141{bottom:72.666667pt;}
.y3a{bottom:73.000000pt;}
.y114{bottom:74.666667pt;}
.y1ca{bottom:77.373333pt;}
.y172{bottom:78.693333pt;}
.y106{bottom:78.706667pt;}
.y110{bottom:79.693333pt;}
.y1e9{bottom:80.706667pt;}
.y145{bottom:81.333333pt;}
.y161{bottom:81.360000pt;}
.y159{bottom:82.693333pt;}
.y23{bottom:82.706667pt;}
.y14d{bottom:84.026667pt;}
.y151{bottom:85.360000pt;}
.y1d6{bottom:86.666667pt;}
.y39{bottom:88.040000pt;}
.y1f1{bottom:89.373333pt;}
.y140{bottom:90.333333pt;}
.y16c{bottom:92.373333pt;}
.y105{bottom:93.706667pt;}
.y1e8{bottom:95.706667pt;}
.y144{bottom:96.333333pt;}
.y160{bottom:96.360000pt;}
.y15b{bottom:97.693333pt;}
.y22{bottom:97.706667pt;}
.y14c{bottom:99.026667pt;}
.y150{bottom:100.360000pt;}
.y1d5{bottom:101.706667pt;}
.y38{bottom:103.040000pt;}
.y1e2{bottom:104.373333pt;}
.y1f0{bottom:107.040000pt;}
.y16b{bottom:107.373333pt;}
.y119{bottom:108.700000pt;}
.y157{bottom:110.040000pt;}
.ybc{bottom:110.700000pt;}
.y163{bottom:112.693333pt;}
.y21{bottom:112.706667pt;}
.y1e7{bottom:113.373333pt;}
.y21e{bottom:113.700000pt;}
.y15f{bottom:114.026667pt;}
.y14b{bottom:116.693333pt;}
.y1a6{bottom:117.700000pt;}
.y19{bottom:117.706667pt;}
.y37{bottom:118.040000pt;}
.y201{bottom:118.700000pt;}
.y13a{bottom:119.026667pt;}
.y1db{bottom:119.373333pt;}
.y7a{bottom:119.700000pt;}
.yde{bottom:120.066667pt;}
.y16a{bottom:122.373333pt;}
.y43{bottom:124.033333pt;}
.y1ef{bottom:124.706667pt;}
.y17b{bottom:125.033333pt;}
.y118{bottom:126.700000pt;}
.y20{bottom:127.706667pt;}
.y1e6{bottom:128.373333pt;}
.ybb{bottom:128.700000pt;}
.y15e{bottom:129.026667pt;}
.yb2{bottom:129.700000pt;}
.y21d{bottom:131.700000pt;}
.y36{bottom:133.040000pt;}
.ydd{bottom:133.733333pt;}
.y139{bottom:134.026667pt;}
.y1da{bottom:134.373333pt;}
.y1a5{bottom:135.706667pt;}
.y42{bottom:136.040000pt;}
.y200{bottom:136.706667pt;}
.y1e1{bottom:137.026667pt;}
.y169{bottom:137.373333pt;}
.y79{bottom:137.693333pt;}
.ye4{bottom:138.360000pt;}
.y1ee{bottom:139.706667pt;}
.y18{bottom:140.733333pt;}
.y1f{bottom:142.733333pt;}
.y17a{bottom:143.040000pt;}
.y28f{bottom:145.706667pt;}
.y2f{bottom:146.040000pt;}
.y15d{bottom:146.693333pt;}
.yaa{bottom:147.706667pt;}
.y35{bottom:148.040000pt;}
.y26d{bottom:148.373333pt;}
.y41{bottom:149.040000pt;}
.y21c{bottom:149.693333pt;}
.yba{bottom:150.360000pt;}
.y1d9{bottom:152.026667pt;}
.ydc{bottom:152.066667pt;}
.ye3{bottom:153.360000pt;}
.y1a4{bottom:153.706667pt;}
.y1ff{bottom:154.733333pt;}
.y1e{bottom:157.733333pt;}
.y117{bottom:159.400000pt;}
.yfd{bottom:159.733333pt;}
.y179{bottom:161.066667pt;}
.y40{bottom:161.733333pt;}
.y34{bottom:163.040000pt;}
.y17{bottom:163.733333pt;}
.y26c{bottom:165.066667pt;}
.ya9{bottom:165.733333pt;}
.y1d8{bottom:167.026667pt;}
.y21b{bottom:167.733333pt;}
.y2e{bottom:169.040000pt;}
.y1e0{bottom:169.693333pt;}
.y1c8{bottom:170.400000pt;}
.y1a3{bottom:171.733333pt;}
.y1d{bottom:172.733333pt;}
.y116{bottom:173.066667pt;}
.y3f{bottom:173.733333pt;}
.y242{bottom:174.400000pt;}
.y33{bottom:178.040000pt;}
.y178{bottom:179.066667pt;}
.y78{bottom:181.733333pt;}
.ya8{bottom:183.733333pt;}
.y135{bottom:184.400000pt;}
.y1df{bottom:184.693333pt;}
.y16{bottom:186.733333pt;}
.y1c{bottom:187.733333pt;}
.y1d3{bottom:188.066667pt;}
.y1c7{bottom:188.400000pt;}
.y113{bottom:189.400000pt;}
.y212{bottom:189.733333pt;}
.y1fe{bottom:190.733333pt;}
.y2d{bottom:192.066667pt;}
.y32{bottom:193.066667pt;}
.y21a{bottom:193.733333pt;}
.y2a{bottom:195.733333pt;}
.y1a2{bottom:197.733333pt;}
.y241{bottom:198.733333pt;}
.y77{bottom:199.733333pt;}
.ya7{bottom:201.733333pt;}
.y134{bottom:202.400000pt;}
.y1b{bottom:202.733333pt;}
.y26b{bottom:206.066667pt;}
.y1c6{bottom:206.400000pt;}
.y211{bottom:207.733333pt;}
.y31{bottom:208.066667pt;}
.y1fd{bottom:208.733333pt;}
.y28e{bottom:209.066667pt;}
.y15{bottom:209.733333pt;}
.y168{bottom:211.733333pt;}
.y2c{bottom:215.066667pt;}
.y240{bottom:215.400000pt;}
.y1a1{bottom:215.733333pt;}
.y1a{bottom:217.733333pt;}
.ya6{bottom:219.733333pt;}
.y133{bottom:220.400000pt;}
.y30{bottom:223.066667pt;}
.y1c5{bottom:224.400000pt;}
.y1fc{bottom:226.733333pt;}
.y219{bottom:229.733333pt;}
.y26a{bottom:230.400000pt;}
.y23f{bottom:232.066667pt;}
.y14{bottom:232.733333pt;}
.y1a0{bottom:233.733333pt;}
.ya5{bottom:237.733333pt;}
.y2b{bottom:238.066667pt;}
.y132{bottom:238.400000pt;}
.yd6{bottom:239.733333pt;}
.y1c4{bottom:242.400000pt;}
.y76{bottom:243.733333pt;}
.y1fb{bottom:244.733333pt;}
.y269{bottom:247.066667pt;}
.y218{bottom:247.733333pt;}
.y19f{bottom:251.733333pt;}
.y28d{bottom:255.400000pt;}
.ya4{bottom:255.733333pt;}
.y131{bottom:256.400000pt;}
.y1c3{bottom:260.400000pt;}
.y75{bottom:261.733333pt;}
.y268{bottom:263.400000pt;}
.yd5{bottom:265.733333pt;}
.y19e{bottom:269.773333pt;}
.y1fa{bottom:270.760000pt;}
.y28c{bottom:272.106667pt;}
.y23e{bottom:273.093333pt;}
.ya3{bottom:273.760000pt;}
.y130{bottom:274.440000pt;}
.y1c2{bottom:278.440000pt;}
.y74{bottom:279.760000pt;}
.y173{bottom:279.773333pt;}
.yd4{bottom:283.773333pt;}
.y19d{bottom:287.773333pt;}
.y28b{bottom:288.426667pt;}
.y1f9{bottom:288.760000pt;}
.y23d{bottom:289.440000pt;}
.ya2{bottom:291.760000pt;}
.y12f{bottom:292.440000pt;}
.y1c1{bottom:296.440000pt;}
.y73{bottom:297.760000pt;}
.yd3{bottom:301.773333pt;}
.y267{bottom:304.440000pt;}
.y210{bottom:305.773333pt;}
.y1f8{bottom:306.760000pt;}
.ya1{bottom:309.760000pt;}
.y12e{bottom:310.440000pt;}
.y28a{bottom:312.760000pt;}
.y19c{bottom:313.773333pt;}
.y1c0{bottom:314.440000pt;}
.y72{bottom:315.760000pt;}
.y115{bottom:316.106667pt;}
.yd2{bottom:319.773333pt;}
.y20f{bottom:323.773333pt;}
.y1f7{bottom:324.760000pt;}
.yb1{bottom:327.760000pt;}
.y12d{bottom:328.440000pt;}
.y266{bottom:328.773333pt;}
.y289{bottom:329.440000pt;}
.y23c{bottom:330.426667pt;}
.y19b{bottom:331.773333pt;}
.y1bf{bottom:332.440000pt;}
.y71{bottom:333.760000pt;}
.ya0{bottom:335.773333pt;}
.yd1{bottom:337.773333pt;}
.y20e{bottom:341.773333pt;}
.y1f6{bottom:342.760000pt;}
.y265{bottom:345.426667pt;}
.y299{bottom:345.760000pt;}
.y288{bottom:346.106667pt;}
.y12c{bottom:346.440000pt;}
.y23b{bottom:347.106667pt;}
.yfc{bottom:349.440000pt;}
.y19a{bottom:349.773333pt;}
.y1be{bottom:350.440000pt;}
.y70{bottom:351.760000pt;}
.y9f{bottom:353.773333pt;}
.yd0{bottom:355.773333pt;}
.y16d{bottom:359.106667pt;}
.y20d{bottom:359.773333pt;}
.y1f5{bottom:360.773333pt;}
.y264{bottom:362.106667pt;}
.y217{bottom:363.773333pt;}
.y199{bottom:367.773333pt;}
.y6f{bottom:369.773333pt;}
.y287{bottom:370.440000pt;}
.y23a{bottom:371.440000pt;}
.y9e{bottom:371.773333pt;}
.y12b{bottom:372.440000pt;}
.ycf{bottom:373.773333pt;}
.y1bd{bottom:376.440000pt;}
.y20c{bottom:377.773333pt;}
.y216{bottom:381.773333pt;}
.y198{bottom:385.800000pt;}
.y263{bottom:386.466667pt;}
.y1f4{bottom:386.800000pt;}
.y286{bottom:387.133333pt;}
.y239{bottom:388.133333pt;}
.y9d{bottom:389.800000pt;}
.y12a{bottom:390.466667pt;}
.y1bc{bottom:394.466667pt;}
.y6e{bottom:395.800000pt;}
.yce{bottom:399.800000pt;}
.y262{bottom:403.133333pt;}
.y285{bottom:403.466667pt;}
.y197{bottom:403.800000pt;}
.y238{bottom:404.466667pt;}
.y1f3{bottom:404.800000pt;}
.y9c{bottom:407.800000pt;}
.y129{bottom:408.466667pt;}
.y1bb{bottom:412.466667pt;}
.y6d{bottom:413.800000pt;}
.ycd{bottom:417.800000pt;}
.y196{bottom:421.800000pt;}
.y20b{bottom:423.133333pt;}
.y9b{bottom:425.800000pt;}
.y261{bottom:427.466667pt;}
.y284{bottom:427.800000pt;}
.y237{bottom:428.800000pt;}
.y1ba{bottom:430.466667pt;}
.y6c{bottom:431.800000pt;}
.y128{bottom:434.466667pt;}
.ycc{bottom:435.800000pt;}
.y195{bottom:439.800000pt;}
.yb0{bottom:443.800000pt;}
.y260{bottom:444.133333pt;}
.y10b{bottom:444.466667pt;}
.y236{bottom:445.466667pt;}
.y6b{bottom:449.800000pt;}
.y9a{bottom:451.800000pt;}
.y127{bottom:452.466667pt;}
.y29{bottom:453.133333pt;}
.y156{bottom:453.466667pt;}
.ycb{bottom:453.800000pt;}
.y1b9{bottom:456.466667pt;}
.y194{bottom:457.800000pt;}
.y25f{bottom:460.466667pt;}
.y235{bottom:462.133333pt;}
.y6a{bottom:467.800000pt;}
.y283{bottom:468.800000pt;}
.y99{bottom:469.800000pt;}
.yca{bottom:471.800000pt;}
.y165{bottom:473.800000pt;}
.y1b8{bottom:474.466667pt;}
.y13{bottom:475.466667pt;}
.y193{bottom:475.800000pt;}
.y25e{bottom:477.133333pt;}
.y234{bottom:478.466667pt;}
.y282{bottom:485.466667pt;}
.y69{bottom:485.800000pt;}
.y126{bottom:486.466667pt;}
.y98{bottom:487.800000pt;}
.yc9{bottom:489.800000pt;}
.y1b7{bottom:492.466667pt;}
.y102{bottom:492.800000pt;}
.y298{bottom:493.800000pt;}
.y215{bottom:497.840000pt;}
.y25d{bottom:501.506667pt;}
.y192{bottom:501.840000pt;}
.y281{bottom:502.173333pt;}
.y233{bottom:502.840000pt;}
.y68{bottom:503.840000pt;}
.y125{bottom:504.506667pt;}
.y97{bottom:505.840000pt;}
.yc8{bottom:507.840000pt;}
.y1b6{bottom:510.506667pt;}
.y297{bottom:511.840000pt;}
.y214{bottom:515.840000pt;}
.y25c{bottom:518.173333pt;}
.y280{bottom:518.506667pt;}
.y232{bottom:519.506667pt;}
.y124{bottom:522.506667pt;}
.y96{bottom:523.840000pt;}
.yc7{bottom:525.840000pt;}
.y1b5{bottom:528.506667pt;}
.y67{bottom:529.840000pt;}
.yb9{bottom:533.173333pt;}
.y213{bottom:533.840000pt;}
.y25b{bottom:534.506667pt;}
.y191{bottom:535.840000pt;}
.y231{bottom:536.173333pt;}
.y123{bottom:540.506667pt;}
.y158{bottom:540.840000pt;}
.y95{bottom:541.840000pt;}
.y27f{bottom:542.840000pt;}
.y1b4{bottom:546.506667pt;}
.y66{bottom:547.840000pt;}
.yc6{bottom:551.840000pt;}
.yb8{bottom:552.173333pt;}
.y190{bottom:553.840000pt;}
.y122{bottom:558.506667pt;}
.y25a{bottom:558.840000pt;}
.y27e{bottom:559.506667pt;}
.y94{bottom:559.840000pt;}
.y230{bottom:560.506667pt;}
.y1b3{bottom:564.506667pt;}
.y65{bottom:565.840000pt;}
.yc5{bottom:569.840000pt;}
.y18f{bottom:571.840000pt;}
.y259{bottom:575.506667pt;}
.y121{bottom:576.506667pt;}
.y22f{bottom:577.173333pt;}
.y93{bottom:577.840000pt;}
.y64{bottom:583.840000pt;}
.yc4{bottom:587.840000pt;}
.y18e{bottom:589.840000pt;}
.y1b2{bottom:590.506667pt;}
.y296{bottom:591.840000pt;}
.y258{bottom:592.173333pt;}
.y22e{bottom:593.506667pt;}
.y92{bottom:595.840000pt;}
.y1e4{bottom:598.840000pt;}
.y27d{bottom:600.506667pt;}
.yfe{bottom:601.173333pt;}
.y63{bottom:601.840000pt;}
.y120{bottom:602.506667pt;}
.y20a{bottom:603.840000pt;}
.yc3{bottom:605.840000pt;}
.y18d{bottom:607.840000pt;}
.y1b1{bottom:608.506667pt;}
.y22d{bottom:610.173333pt;}
.ydb{bottom:611.933333pt;}
.y91{bottom:613.866667pt;}
.y257{bottom:616.533333pt;}
.y27c{bottom:617.200000pt;}
.y62{bottom:619.866667pt;}
.y209{bottom:621.866667pt;}
.yc2{bottom:623.866667pt;}
.y1b0{bottom:626.533333pt;}
.yda{bottom:630.933333pt;}
.y90{bottom:631.866667pt;}
.y1d4{bottom:632.200000pt;}
.y256{bottom:633.200000pt;}
.y27b{bottom:633.533333pt;}
.y18c{bottom:633.866667pt;}
.y22c{bottom:634.533333pt;}
.y61{bottom:637.866667pt;}
.y208{bottom:639.866667pt;}
.yaf{bottom:641.200000pt;}
.y8f{bottom:649.866667pt;}
.y22b{bottom:651.200000pt;}
.y18b{bottom:651.866667pt;}
.y1af{bottom:652.533333pt;}
.y60{bottom:655.866667pt;}
.y255{bottom:657.533333pt;}
.y207{bottom:657.866667pt;}
.y295{bottom:659.866667pt;}
.yae{bottom:665.200000pt;}
.y22a{bottom:667.533333pt;}
.y8e{bottom:667.866667pt;}
.y18a{bottom:669.866667pt;}
.y5f{bottom:673.866667pt;}
.y254{bottom:674.200000pt;}
.y27a{bottom:674.533333pt;}
.y206{bottom:675.866667pt;}
.y294{bottom:677.866667pt;}
.ye2{bottom:679.533333pt;}
.y8d{bottom:685.866667pt;}
.y1ae{bottom:686.533333pt;}
.y189{bottom:687.866667pt;}
.y11f{bottom:691.866667pt;}
.y205{bottom:693.866667pt;}
.y293{bottom:695.866667pt;}
.y253{bottom:698.533333pt;}
.y279{bottom:698.866667pt;}
.y5e{bottom:699.866667pt;}
.yb7{bottom:701.200000pt;}
.y138{bottom:703.200000pt;}
.y8c{bottom:703.866667pt;}
.y1ad{bottom:704.533333pt;}
.y229{bottom:708.533333pt;}
.y11e{bottom:709.866667pt;}
.yad{bottom:711.866667pt;}
.y188{bottom:713.866667pt;}
.y252{bottom:715.200000pt;}
.y278{bottom:715.533333pt;}
.yf5{bottom:716.866667pt;}
.y5d{bottom:717.866667pt;}
.yc1{bottom:721.866667pt;}
.y1ac{bottom:722.533333pt;}
.y228{bottom:725.200000pt;}
.y11{bottom:727.560000pt;}
.y11d{bottom:727.906667pt;}
.y8b{bottom:729.893333pt;}
.y187{bottom:731.893333pt;}
.y5c{bottom:735.893333pt;}
.y251{bottom:739.573333pt;}
.yc0{bottom:739.893333pt;}
.y1ab{bottom:740.560000pt;}
.yd7{bottom:740.626667pt;}
.y11c{bottom:745.893333pt;}
.y8a{bottom:747.893333pt;}
.y227{bottom:749.560000pt;}
.y186{bottom:749.893333pt;}
.y10{bottom:753.560000pt;}
.y5b{bottom:753.893333pt;}
.y250{bottom:756.226667pt;}
.y277{bottom:756.560000pt;}
.ybf{bottom:757.893333pt;}
.y1aa{bottom:758.560000pt;}
.y11b{bottom:763.893333pt;}
.y89{bottom:765.893333pt;}
.y226{bottom:766.226667pt;}
.yf2{bottom:766.560000pt;}
.y185{bottom:767.893333pt;}
.y5a{bottom:771.893333pt;}
.yf{bottom:772.573333pt;}
.y276{bottom:773.240000pt;}
.ybe{bottom:775.893333pt;}
.y1a9{bottom:776.560000pt;}
.y225{bottom:782.560000pt;}
.y88{bottom:783.893333pt;}
.y184{bottom:785.893333pt;}
.ye{bottom:787.560000pt;}
.y59{bottom:789.893333pt;}
.y11a{bottom:791.226667pt;}
.ybd{bottom:793.893333pt;}
.y1a8{bottom:794.560000pt;}
.y24f{bottom:796.893333pt;}
.y275{bottom:797.560000pt;}
.y87{bottom:801.893333pt;}
.yd{bottom:802.560000pt;}
.y183{bottom:803.893333pt;}
.yec{bottom:804.573333pt;}
.y224{bottom:806.893333pt;}
.y58{bottom:807.893333pt;}
.y292{bottom:817.893333pt;}
.y86{bottom:819.893333pt;}
.y1a7{bottom:820.560000pt;}
.y24e{bottom:821.560000pt;}
.y182{bottom:821.893333pt;}
.y223{bottom:823.560000pt;}
.y57{bottom:825.893333pt;}
.yc{bottom:829.560000pt;}
.y1c9{bottom:831.560000pt;}
.y1cf{bottom:831.573333pt;}
.y149{bottom:836.573333pt;}
.y85{bottom:837.893333pt;}
.y24d{bottom:838.226667pt;}
.y274{bottom:838.560000pt;}
.y181{bottom:839.893333pt;}
.y56{bottom:843.933333pt;}
.y204{bottom:845.933333pt;}
.y222{bottom:847.933333pt;}
.y24c{bottom:854.600000pt;}
.y84{bottom:855.933333pt;}
.y180{bottom:857.933333pt;}
.y55{bottom:861.933333pt;}
.y273{bottom:862.933333pt;}
.yb{bottom:863.266667pt;}
.y203{bottom:863.933333pt;}
.y221{bottom:864.600000pt;}
.y83{bottom:873.933333pt;}
.y17f{bottom:875.933333pt;}
.y24b{bottom:878.933333pt;}
.y54{bottom:879.933333pt;}
.y220{bottom:881.266667pt;}
.y202{bottom:881.933333pt;}
.y1cd{bottom:882.600000pt;}
.ye7{bottom:882.933333pt;}
.ya{bottom:884.600000pt;}
.y272{bottom:887.600000pt;}
.yac{bottom:891.933333pt;}
.y17e{bottom:893.933333pt;}
.y24a{bottom:895.600000pt;}
.y53{bottom:897.933333pt;}
.y82{bottom:899.933333pt;}
.y271{bottom:904.266667pt;}
.y21f{bottom:907.266667pt;}
.yab{bottom:909.933333pt;}
.y17d{bottom:911.933333pt;}
.y249{bottom:912.266667pt;}
.y52{bottom:915.933333pt;}
.y81{bottom:917.933333pt;}
.y9{bottom:923.600000pt;}
.yb6{bottom:927.933333pt;}
.y270{bottom:928.600000pt;}
.y51{bottom:933.933333pt;}
.y80{bottom:935.933333pt;}
.y248{bottom:936.600000pt;}
.y17c{bottom:937.933333pt;}
.y26f{bottom:945.266667pt;}
.yb5{bottom:945.933333pt;}
.ye5{bottom:948.600000pt;}
.y8{bottom:949.600000pt;}
.y50{bottom:951.933333pt;}
.y247{bottom:953.266667pt;}
.y7f{bottom:953.933333pt;}
.yb4{bottom:963.960000pt;}
.y137{bottom:966.960000pt;}
.y246{bottom:969.626667pt;}
.y4f{bottom:969.960000pt;}
.y7e{bottom:971.960000pt;}
.y291{bottom:977.960000pt;}
.y3{bottom:980.293333pt;}
.yb3{bottom:981.960000pt;}
.y26e{bottom:986.293333pt;}
.y7d{bottom:989.960000pt;}
.y245{bottom:993.960000pt;}
.y136{bottom:994.293333pt;}
.y4e{bottom:997.293333pt;}
.y7c{bottom:1007.960000pt;}
.ye0{bottom:1009.293333pt;}
.y244{bottom:1010.626667pt;}
.y290{bottom:1021.293333pt;}
.y7b{bottom:1025.960000pt;}
.y243{bottom:1027.293333pt;}
.ydf{bottom:1028.293333pt;}
.y2{bottom:1042.960000pt;}
.y1{bottom:1064.626667pt;}
.y4a{bottom:1069.666667pt;}
.h1a{height:17.666667pt;}
.h2d{height:17.686667pt;}
.h9{height:21.666667pt;}
.h7{height:21.671875pt;}
.h11{height:29.013021pt;}
.he{height:29.708333pt;}
.h28{height:32.666667pt;}
.h39{height:32.686667pt;}
.h1d{height:32.700000pt;}
.hd{height:33.960938pt;}
.h13{height:34.033333pt;}
.h1{height:34.359375pt;}
.h8{height:36.119792pt;}
.h22{height:36.666667pt;}
.hb{height:37.135417pt;}
.h20{height:37.333333pt;}
.h6{height:39.328125pt;}
.h3c{height:39.731771pt;}
.h19{height:40.171875pt;}
.h10{height:43.343750pt;}
.h2{height:43.664062pt;}
.h1b{height:44.635417pt;}
.h15{height:44.687500pt;}
.h16{height:47.104290pt;}
.h25{height:47.666667pt;}
.h21{height:49.033333pt;}
.h3b{height:49.098958pt;}
.h36{height:50.353333pt;}
.h5{height:50.567708pt;}
.h12{height:53.562500pt;}
.h3d{height:53.625000pt;}
.hf{height:56.666667pt;}
.h3{height:59.000000pt;}
.h2a{height:61.235577pt;}
.h4{height:61.403646pt;}
.h1e{height:65.000000pt;}
.h31{height:65.366667pt;}
.h14{height:71.500000pt;}
.h34{height:77.666667pt;}
.h1f{height:77.686667pt;}
.h29{height:77.700000pt;}
.h33{height:92.700000pt;}
.h26{height:94.366667pt;}
.h24{height:107.700000pt;}
.h2c{height:110.366667pt;}
.h2e{height:130.700000pt;}
.h35{height:149.733333pt;}
.h3a{height:153.693333pt;}
.h27{height:159.373333pt;}
.h30{height:160.693333pt;}
.h38{height:198.706667pt;}
.h32{height:240.066667pt;}
.h2f{height:248.066667pt;}
.ha{height:252.093333pt;}
.hc{height:257.400000pt;}
.h2b{height:263.093333pt;}
.h1c{height:301.773333pt;}
.h23{height:329.426667pt;}
.h37{height:386.426667pt;}
.h17{height:793.666667pt;}
.h18{height:794.000000pt;}
.h0{height:1122.666667pt;}
.wb{width:7.666667pt;}
.w11{width:15.000000pt;}
.w14{width:58.033333pt;}
.w19{width:61.366667pt;}
.w12{width:68.700000pt;}
.w17{width:78.700000pt;}
.w13{width:85.366667pt;}
.w18{width:86.700000pt;}
.we{width:94.733333pt;}
.w1a{width:113.366667pt;}
.w4{width:134.400000pt;}
.w15{width:147.400000pt;}
.w3{width:157.733333pt;}
.w16{width:170.066667pt;}
.w7{width:172.733333pt;}
.w1b{width:189.106667pt;}
.wf{width:198.400000pt;}
.w10{width:236.440000pt;}
.w6{width:451.533333pt;}
.w2{width:466.533333pt;}
.w5{width:490.200000pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.wa{width:793.666655pt;}
.w8{width:793.666667pt;}
.w9{width:794.000000pt;}
.wd{width:1122.666650pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x23{left:8.333333pt;}
.x27{left:9.333333pt;}
.x16{left:11.366667pt;}
.xf{left:13.366667pt;}
.x18{left:14.700000pt;}
.x1f{left:17.040000pt;}
.x15{left:18.666667pt;}
.x20{left:19.666667pt;}
.x14{left:21.700000pt;}
.x13{left:23.033333pt;}
.x17{left:30.033333pt;}
.x1c{left:33.706667pt;}
.x1e{left:58.026667pt;}
.x26{left:67.706667pt;}
.x11{left:72.360000pt;}
.x3{left:81.366667pt;}
.xd{left:83.033317pt;}
.x9{left:113.366655pt;}
.xb{left:151.399988pt;}
.x5{left:158.053333pt;}
.x19{left:182.066667pt;}
.x28{left:189.066655pt;}
.x10{left:208.106667pt;}
.x6{left:215.773333pt;}
.x21{left:230.106667pt;}
.x1a{left:267.440000pt;}
.x22{left:316.800000pt;}
.x1b{left:325.466667pt;}
.x24{left:378.173333pt;}
.x12{left:406.506667pt;}
.xa{left:413.506667pt;}
.x1d{left:472.866667pt;}
.x25{left:491.533333pt;}
.x8{left:532.906667pt;}
.x4{left:547.906667pt;}
.x2{left:637.266655pt;}
.xc{left:642.933322pt;}
.x1{left:705.306655pt;}
.xe{left:887.266650pt;}
}




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