
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ad862bdd6663ac86d57fb877.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;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_00324532a7a437121b736fa8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ef3739d61350753b75a6fb3d.woff2')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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_4874bf05f269de54da558a74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_621d247149ed22a2f46ed985.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_069c48937c45eecf06d4b504.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c1e41d11ab18e56f8a258ad6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952637;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_45e96781412ca1eaa21410e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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;}
.m2{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);}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-1.368000px;}
.lsa{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.237600px;}
.ls5{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.137400px;}
.ls17{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.052560px;}
.ls2{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.094800px;}
.ls8{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.212400px;}
.lsc{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.318754px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.792000px;}
.ls1{letter-spacing:2.160000px;}
.ls0{letter-spacing:71.429760px;}
.ls7{letter-spacing:1322.250240px;}
.ls6{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.352000px;}
.wse{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.152400px;}
.wsa{word-spacing:-15.034800px;}
.wsd{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.802600px;}
.wsc{word-spacing:-14.702400px;}
.ws5{word-spacing:-12.060000px;}
.ws10{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-216.299760px;}
._14{margin-left:-153.628080px;}
._1f{margin-left:-51.018240px;}
._1e{margin-left:-47.481840px;}
._12{margin-left:-38.967840px;}
._1b{margin-left:-30.234960px;}
._1a{margin-left:-25.433280px;}
._16{margin-left:-23.530320px;}
._19{margin-left:-21.940560px;}
._1c{margin-left:-18.894960px;}
._13{margin-left:-13.759200px;}
._18{margin-left:-10.292400px;}
._15{margin-left:-7.571520px;}
._1d{margin-left:-6.538320px;}
._28{margin-left:-5.076000px;}
._d{margin-left:-4.050000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._24{width:2.056560px;}
._7{width:3.073440px;}
._a{width:4.083360px;}
._b{width:5.088240px;}
._9{width:6.336000px;}
._f{width:7.337760px;}
._21{width:9.108000px;}
._20{width:10.296000px;}
._e{width:11.952000px;}
._25{width:13.608000px;}
._26{width:15.336000px;}
._c{width:16.524000px;}
._52{width:17.875680px;}
._27{width:19.770000px;}
._29{width:20.838000px;}
._2f{width:21.858000px;}
._2a{width:23.070000px;}
._2e{width:24.258000px;}
._2c{width:25.344000px;}
._2d{width:26.352000px;}
._4f{width:28.422000px;}
._4{width:29.754000px;}
._3d{width:30.972000px;}
._50{width:32.832000px;}
._23{width:34.218000px;}
._22{width:35.496000px;}
._4a{width:37.872000px;}
._2b{width:39.600000px;}
._51{width:40.727520px;}
._35{width:53.784000px;}
._36{width:55.398000px;}
._41{width:57.024000px;}
._40{width:58.464000px;}
._47{width:60.546000px;}
._46{width:62.064000px;}
._4c{width:68.184000px;}
._3a{width:70.272000px;}
._8{width:71.976000px;}
._31{width:73.356000px;}
._30{width:74.592000px;}
._43{width:86.856000px;}
._42{width:88.248000px;}
._3{width:90.504000px;}
._4b{width:92.520000px;}
._34{width:98.064000px;}
._4e{width:103.536000px;}
._4d{width:105.048000px;}
._45{width:108.072000px;}
._44{width:109.224000px;}
._33{width:112.410000px;}
._32{width:113.688000px;}
._49{width:126.018000px;}
._48{width:127.296000px;}
._3f{width:134.280000px;}
._3e{width:135.288000px;}
._3c{width:141.642000px;}
._3b{width:142.848000px;}
._38{width:164.664000px;}
._37{width:166.320000px;}
._11{width:180.120720px;}
._6{width:641.556000px;}
._39{width:889.128000px;}
._10{width:1432.554240px;}
._5{width:1433.832000px;}
.fc4{color:transparent;}
.fc1{color:rgb(15,120,80);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y36{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.600000px;}
.y176{bottom:3.960000px;}
.y1e9{bottom:3.990000px;}
.y1a2{bottom:20.700000px;}
.y1ca{bottom:20.730000px;}
.y196{bottom:20.880000px;}
.y1e8{bottom:20.910000px;}
.y1a6{bottom:20.925000px;}
.y66{bottom:28.830000px;}
.y6a{bottom:34.995000px;}
.y198{bottom:37.620000px;}
.y1be{bottom:37.650000px;}
.y1a5{bottom:37.665000px;}
.y19c{bottom:37.800000px;}
.y1f7{bottom:37.830000px;}
.y65{bottom:41.070000px;}
.y69{bottom:47.055000px;}
.y64{bottom:53.130000px;}
.y19b{bottom:54.540000px;}
.y1bd{bottom:54.570000px;}
.y1af{bottom:54.720000px;}
.y32{bottom:56.160000px;}
.y7{bottom:57.600000px;}
.y68{bottom:59.325000px;}
.y63{bottom:65.370000px;}
.y31{bottom:69.660000px;}
.y67{bottom:71.385000px;}
.y1bb{bottom:71.460000px;}
.y6{bottom:76.860000px;}
.y62{bottom:77.430000px;}
.y1ba{bottom:88.380000px;}
.y5{bottom:91.980000px;}
.y33{bottom:98.280000px;}
.y35{bottom:104.580000px;}
.y4{bottom:107.280000px;}
.y5d{bottom:109.260000px;}
.y5c{bottom:121.500000px;}
.y3{bottom:122.400000px;}
.y5b{bottom:133.560000px;}
.y2{bottom:137.520000px;}
.y30{bottom:148.500000px;}
.y2e{bottom:166.710000px;}
.y131{bottom:169.050000px;}
.y1d8{bottom:169.230000px;}
.y174{bottom:171.210000px;}
.y1f5{bottom:172.110000px;}
.y94{bottom:172.470000px;}
.y59{bottom:173.550000px;}
.y2d{bottom:186.870000px;}
.y1d7{bottom:187.770000px;}
.y19e{bottom:188.490000px;}
.y130{bottom:189.390000px;}
.y93{bottom:192.810000px;}
.ye0{bottom:193.710000px;}
.y143{bottom:198.210000px;}
.y15b{bottom:200.550000px;}
.yee{bottom:201.630000px;}
.y19d{bottom:202.170000px;}
.y58{bottom:202.710000px;}
.y10f{bottom:203.970000px;}
.y2c{bottom:207.210000px;}
.y249{bottom:208.830000px;}
.y12f{bottom:209.550000px;}
.y92{bottom:212.970000px;}
.ydf{bottom:214.050000px;}
.y142{bottom:218.550000px;}
.y19a{bottom:219.810000px;}
.y1d6{bottom:220.350000px;}
.y15a{bottom:220.890000px;}
.y21e{bottom:221.790000px;}
.y57{bottom:223.050000px;}
.y1f4{bottom:223.410000px;}
.y61{bottom:223.815000px;}
.y10e{bottom:224.310000px;}
.y2b{bottom:227.370000px;}
.y248{bottom:229.170000px;}
.y173{bottom:229.710000px;}
.yed{bottom:230.970000px;}
.y91{bottom:233.310000px;}
.yde{bottom:234.390000px;}
.y60{bottom:235.875000px;}
.y12e{bottom:238.710000px;}
.y5a{bottom:238.860000px;}
.yc1{bottom:242.130000px;}
.y10d{bottom:244.470000px;}
.y56{bottom:247.530000px;}
.y2a{bottom:247.710000px;}
.y5f{bottom:248.115000px;}
.y247{bottom:249.330000px;}
.y159{bottom:250.050000px;}
.yec{bottom:251.310000px;}
.y90{bottom:253.470000px;}
.y1d5{bottom:254.730000px;}
.y1f3{bottom:257.970000px;}
.y12d{bottom:259.050000px;}
.y5e{bottom:260.175000px;}
.y21d{bottom:262.290000px;}
.yb2{bottom:262.470000px;}
.ydd{bottom:263.550000px;}
.y141{bottom:268.050000px;}
.y246{bottom:269.670000px;}
.y158{bottom:270.390000px;}
.yeb{bottom:271.470000px;}
.y10c{bottom:273.630000px;}
.y8f{bottom:273.810000px;}
.y29{bottom:277.590000px;}
.y21c{bottom:282.630000px;}
.yb1{bottom:282.810000px;}
.ydc{bottom:283.890000px;}
.y199{bottom:288.030000px;}
.y12c{bottom:288.210000px;}
.y140{bottom:288.390000px;}
.y1b9{bottom:288.930000px;}
.y245{bottom:289.830000px;}
.yea{bottom:291.810000px;}
.y10b{bottom:293.970000px;}
.y157{bottom:299.550000px;}
.y21b{bottom:302.790000px;}
.y8e{bottom:302.970000px;}
.ydb{bottom:304.050000px;}
.y1f2{bottom:306.030000px;}
.y1d4{bottom:306.210000px;}
.y12b{bottom:308.550000px;}
.y28{bottom:309.450000px;}
.ye9{bottom:311.970000px;}
.y13f{bottom:317.550000px;}
.y156{bottom:319.890000px;}
.y197{bottom:322.590000px;}
.y10a{bottom:323.130000px;}
.yb0{bottom:323.310000px;}
.y244{bottom:323.850000px;}
.yda{bottom:324.390000px;}
.y1f1{bottom:326.370000px;}
.y12a{bottom:328.890000px;}
.y8d{bottom:332.130000px;}
.ye8{bottom:332.310000px;}
.y13e{bottom:337.890000px;}
.y21a{bottom:339.510000px;}
.y1b8{bottom:340.230000px;}
.y243{bottom:341.490000px;}
.yaf{bottom:343.470000px;}
.yd9{bottom:344.550000px;}
.y27{bottom:344.910000px;}
.y172{bottom:346.710000px;}
.y129{bottom:349.050000px;}
.y8c{bottom:352.470000px;}
.y219{bottom:356.970000px;}
.y1d3{bottom:357.510000px;}
.y13d{bottom:358.050000px;}
.y242{bottom:359.130000px;}
.y1f0{bottom:359.670000px;}
.yae{bottom:363.810000px;}
.yd8{bottom:364.890000px;}
.y26{bottom:368.130000px;}
.y155{bottom:369.390000px;}
.y1b7{bottom:371.550000px;}
.yc0{bottom:372.630000px;}
.y8b{bottom:372.810000px;}
.y195{bottom:373.890000px;}
.y218{bottom:374.610000px;}
.y171{bottom:376.050000px;}
.y241{bottom:376.770000px;}
.y128{bottom:378.210000px;}
.y109{bottom:383.970000px;}
.yd7{bottom:385.050000px;}
.y13c{bottom:387.210000px;}
.y154{bottom:389.550000px;}
.y25{bottom:391.530000px;}
.y1ef{bottom:391.710000px;}
.y1b6{bottom:391.890000px;}
.y217{bottom:392.250000px;}
.y8a{bottom:392.970000px;}
.y240{bottom:394.230000px;}
.y127{bottom:398.550000px;}
.y170{bottom:405.255000px;}
.y1d2{bottom:405.615000px;}
.y13b{bottom:407.595000px;}
.y194{bottom:408.495000px;}
.y153{bottom:409.935000px;}
.y1ee{bottom:410.295000px;}
.y1b5{bottom:412.095000px;}
.y108{bottom:413.175000px;}
.y89{bottom:413.355000px;}
.yd6{bottom:414.255000px;}
.y126{bottom:418.935000px;}
.y24{bottom:420.555000px;}
.y1ed{bottom:425.415000px;}
.y23f{bottom:425.595000px;}
.y1d1{bottom:425.955000px;}
.y216{bottom:427.575000px;}
.y13a{bottom:427.935000px;}
.y1b4{bottom:432.435000px;}
.yad{bottom:433.515000px;}
.yd5{bottom:434.595000px;}
.y152{bottom:439.095000px;}
.y193{bottom:439.635000px;}
.y88{bottom:442.515000px;}
.y1ec{bottom:443.055000px;}
.y23e{bottom:445.935000px;}
.y1d0{bottom:446.295000px;}
.y125{bottom:448.095000px;}
.y23{bottom:449.895000px;}
.y1b3{bottom:452.235000px;}
.yac{bottom:453.855000px;}
.yd4{bottom:454.935000px;}
.y215{bottom:458.895000px;}
.y151{bottom:459.435000px;}
.y192{bottom:459.975000px;}
.y87{bottom:462.855000px;}
.y16f{bottom:463.755000px;}
.y23d{bottom:466.095000px;}
.y1cf{bottom:466.455000px;}
.y1b2{bottom:467.355000px;}
.y124{bottom:468.435000px;}
.y22{bottom:470.235000px;}
.yab{bottom:474.015000px;}
.yd3{bottom:475.095000px;}
.y139{bottom:477.255000px;}
.y214{bottom:479.235000px;}
.y86{bottom:483.015000px;}
.y1b1{bottom:484.995000px;}
.y1ce{bottom:486.435000px;}
.y123{bottom:488.595000px;}
.y21{bottom:490.395000px;}
.y16e{bottom:493.095000px;}
.y191{bottom:493.995000px;}
.yaa{bottom:494.355000px;}
.yd2{bottom:495.435000px;}
.y138{bottom:497.595000px;}
.y213{bottom:499.395000px;}
.y1cd{bottom:501.375000px;}
.y85{bottom:503.355000px;}
.y23c{bottom:506.595000px;}
.y122{bottom:508.935000px;}
.y190{bottom:510.195000px;}
.y20{bottom:510.735000px;}
.y137{bottom:517.935000px;}
.y1cc{bottom:519.015000px;}
.y212{bottom:519.735000px;}
.y16d{bottom:522.255000px;}
.y84{bottom:523.515000px;}
.yd1{bottom:524.595000px;}
.y23b{bottom:526.935000px;}
.y18f{bottom:527.835000px;}
.y150{bottom:529.095000px;}
.y1f{bottom:530.895000px;}
.y1b0{bottom:536.295000px;}
.y121{bottom:538.095000px;}
.y211{bottom:539.895000px;}
.y55{bottom:542.595000px;}
.y23a{bottom:543.315000px;}
.y83{bottom:543.855000px;}
.yd0{bottom:544.935000px;}
.y18e{bottom:545.475000px;}
.y1eb{bottom:545.655000px;}
.y1e{bottom:551.235000px;}
.y16c{bottom:551.595000px;}
.y107{bottom:552.675000px;}
.y14f{bottom:558.255000px;}
.y120{bottom:558.435000px;}
.y210{bottom:560.235000px;}
.y239{bottom:560.775000px;}
.y54{bottom:562.935000px;}
.y18d{bottom:563.115000px;}
.y82{bottom:564.015000px;}
.ycf{bottom:565.095000px;}
.y136{bottom:567.255000px;}
.y1d{bottom:571.395000px;}
.y106{bottom:573.015000px;}
.y20f{bottom:576.435000px;}
.y238{bottom:578.415000px;}
.y11f{bottom:578.595000px;}
.y16b{bottom:580.755000px;}
.y53{bottom:583.095000px;}
.y81{bottom:584.355000px;}
.yce{bottom:585.435000px;}
.y1cb{bottom:587.235000px;}
.y135{bottom:587.595000px;}
.y105{bottom:593.355000px;}
.y20e{bottom:594.075000px;}
.y237{bottom:596.055000px;}
.y1ea{bottom:597.135000px;}
.y18c{bottom:598.395000px;}
.y14e{bottom:598.935000px;}
.y1c{bottom:600.555000px;}
.y52{bottom:603.435000px;}
.ya9{bottom:604.515000px;}
.ycd{bottom:605.595000px;}
.y11e{bottom:607.755000px;}
.y134{bottom:607.935000px;}
.y16a{bottom:610.095000px;}
.y20d{bottom:611.715000px;}
.y80{bottom:613.515000px;}
.y236{bottom:613.695000px;}
.ye7{bottom:614.235000px;}
.y18b{bottom:616.035000px;}
.y14d{bottom:619.095000px;}
.y1b{bottom:620.895000px;}
.y104{bottom:622.515000px;}
.y51{bottom:623.595000px;}
.ycc{bottom:625.935000px;}
.y11d{bottom:628.095000px;}
.y20c{bottom:629.355000px;}
.y235{bottom:631.335000px;}
.ya8{bottom:633.675000px;}
.ybf{bottom:633.855000px;}
.y1c9{bottom:638.715000px;}
.y169{bottom:639.255000px;}
.y1a{bottom:641.235000px;}
.y7f{bottom:642.675000px;}
.y103{bottom:642.855000px;}
.y50{bottom:643.935000px;}
.ye6{bottom:646.095000px;}
.y20b{bottom:646.995000px;}
.y14c{bottom:648.255000px;}
.y1e7{bottom:648.435000px;}
.y18a{bottom:651.345000px;}
.ya7{bottom:654.045000px;}
.ycb{bottom:655.125000px;}
.y1ae{bottom:656.025000px;}
.y11c{bottom:657.285000px;}
.y19{bottom:661.425000px;}
.y234{bottom:662.685000px;}
.y7e{bottom:663.045000px;}
.y4f{bottom:664.125000px;}
.y20a{bottom:664.665000px;}
.y14b{bottom:668.625000px;}
.y189{bottom:668.805000px;}
.ya6{bottom:674.385000px;}
.ye5{bottom:675.285000px;}
.yca{bottom:675.465000px;}
.y11b{bottom:677.625000px;}
.y18{bottom:681.765000px;}
.y1e6{bottom:683.025000px;}
.y7d{bottom:683.385000px;}
.y4e{bottom:684.465000px;}
.y188{bottom:686.445000px;}
.y14a{bottom:688.965000px;}
.y102{bottom:692.205000px;}
.ya5{bottom:694.545000px;}
.yc9{bottom:695.625000px;}
.y209{bottom:695.805000px;}
.y168{bottom:697.785000px;}
.y11a{bottom:697.965000px;}
.y17{bottom:701.925000px;}
.y233{bottom:703.185000px;}
.y7c{bottom:703.545000px;}
.y4d{bottom:704.625000px;}
.y1c8{bottom:706.965000px;}
.y1ad{bottom:707.325000px;}
.y101{bottom:712.545000px;}
.ybe{bottom:714.885000px;}
.yc8{bottom:715.965000px;}
.y208{bottom:716.145000px;}
.y187{bottom:717.765000px;}
.y149{bottom:718.125000px;}
.y16{bottom:722.265000px;}
.y232{bottom:723.525000px;}
.ya4{bottom:723.705000px;}
.y7b{bottom:723.885000px;}
.y119{bottom:727.125000px;}
.y100{bottom:732.885000px;}
.y4c{bottom:733.785000px;}
.y1e5{bottom:734.325000px;}
.ybd{bottom:735.045000px;}
.yc7{bottom:736.125000px;}
.y207{bottom:736.485000px;}
.y186{bottom:738.105000px;}
.y148{bottom:738.465000px;}
.y231{bottom:743.685000px;}
.ya3{bottom:744.045000px;}
.y118{bottom:747.465000px;}
.y15{bottom:752.145000px;}
.y7a{bottom:753.045000px;}
.y4b{bottom:754.125000px;}
.y185{bottom:754.305000px;}
.y167{bottom:756.285000px;}
.yc6{bottom:756.465000px;}
.y206{bottom:756.645000px;}
.y1c7{bottom:758.265000px;}
.y147{bottom:758.625000px;}
.y1ac{bottom:758.805000px;}
.yff{bottom:762.045000px;}
.y230{bottom:764.025000px;}
.ya2{bottom:764.385000px;}
.ybc{bottom:765.105000px;}
.y117{bottom:767.625000px;}
.y184{bottom:771.945000px;}
.y79{bottom:773.385000px;}
.y4a{bottom:774.465000px;}
.ye4{bottom:776.625000px;}
.y205{bottom:776.985000px;}
.y1ab{bottom:779.145000px;}
.y22f{bottom:780.225000px;}
.yfe{bottom:782.385000px;}
.y14{bottom:784.005000px;}
.ya1{bottom:784.545000px;}
.yc5{bottom:785.625000px;}
.y1e4{bottom:785.805000px;}
.y146{bottom:787.785000px;}
.y133{bottom:787.965000px;}
.y183{bottom:789.585000px;}
.y78{bottom:793.545000px;}
.y49{bottom:794.625000px;}
.ybb{bottom:796.785000px;}
.y204{bottom:797.145000px;}
.y22e{bottom:797.865000px;}
.y1aa{bottom:799.305000px;}
.ya0{bottom:804.885000px;}
.ye3{bottom:805.785000px;}
.yc4{bottom:805.965000px;}
.y182{bottom:807.225000px;}
.y145{bottom:808.125000px;}
.y1c6{bottom:809.745000px;}
.yfd{bottom:811.545000px;}
.y13{bottom:813.165000px;}
.y203{bottom:813.525000px;}
.y77{bottom:813.885000px;}
.y166{bottom:814.785000px;}
.y48{bottom:814.965000px;}
.y22d{bottom:815.505000px;}
.y116{bottom:817.125000px;}
.y1a9{bottom:819.285000px;}
.y1e3{bottom:820.185000px;}
.y9f{bottom:825.045000px;}
.yba{bottom:826.125000px;}
.y144{bottom:828.465000px;}
.y202{bottom:831.165000px;}
.yfc{bottom:831.885000px;}
.y22c{bottom:833.145000px;}
.y12{bottom:833.505000px;}
.y76{bottom:834.045000px;}
.y1a8{bottom:834.225000px;}
.y47{bottom:835.125000px;}
.y115{bottom:837.465000px;}
.y181{bottom:838.545000px;}
.y165{bottom:844.125000px;}
.y9e{bottom:845.385000px;}
.yb9{bottom:846.465000px;}
.y201{bottom:848.805000px;}
.y22b{bottom:850.785000px;}
.y1a7{bottom:851.865000px;}
.yfb{bottom:852.045000px;}
.y11{bottom:853.845000px;}
.y46{bottom:855.465000px;}
.y114{bottom:857.625000px;}
.y180{bottom:858.885000px;}
.y75{bottom:863.205000px;}
.y200{bottom:866.445000px;}
.yb8{bottom:866.625000px;}
.y1e2{bottom:868.425000px;}
.y164{bottom:873.285000px;}
.y17f{bottom:875.085000px;}
.y9d{bottom:875.265000px;}
.y45{bottom:875.625000px;}
.y113{bottom:877.965000px;}
.yfa{bottom:881.205000px;}
.y10{bottom:883.005000px;}
.y1ff{bottom:884.085000px;}
.y1a4{bottom:886.425000px;}
.y132{bottom:886.785000px;}
.yb7{bottom:886.965000px;}
.y1e1{bottom:888.765000px;}
.y17e{bottom:892.725000px;}
.y74{bottom:893.265000px;}
.ye2{bottom:895.785000px;}
.y44{bottom:895.965000px;}
.y22a{bottom:899.610000px;}
.yf9{bottom:901.590000px;}
.y163{bottom:902.670000px;}
.yf{bottom:903.390000px;}
.y9c{bottom:907.170000px;}
.y1c5{bottom:909.150000px;}
.y17d{bottom:910.410000px;}
.yc3{bottom:916.170000px;}
.y229{bottom:919.950000px;}
.yf8{bottom:921.930000px;}
.y1e0{bottom:922.110000px;}
.ye{bottom:923.730000px;}
.y43{bottom:925.170000px;}
.y112{bottom:927.510000px;}
.y17c{bottom:928.050000px;}
.y1c4{bottom:929.490000px;}
.y162{bottom:931.830000px;}
.y1fe{bottom:932.910000px;}
.y9b{bottom:936.330000px;}
.yc2{bottom:936.510000px;}
.y1a3{bottom:937.770000px;}
.y228{bottom:940.290000px;}
.y42{bottom:945.510000px;}
.y111{bottom:947.670000px;}
.y1c3{bottom:949.830000px;}
.yf7{bottom:951.810000px;}
.y1fd{bottom:953.250000px;}
.y1df{bottom:954.150000px;}
.y73{bottom:954.330000px;}
.yd{bottom:955.230000px;}
.y9a{bottom:956.670000px;}
.y17b{bottom:959.190000px;}
.y227{bottom:960.450000px;}
.y161{bottom:961.170000px;}
.y41{bottom:965.670000px;}
.y1c2{bottom:969.990000px;}
.y1de{bottom:972.690000px;}
.y1fc{bottom:973.410000px;}
.y72{bottom:974.670000px;}
.yc{bottom:975.570000px;}
.y110{bottom:976.830000px;}
.y99{bottom:977.010000px;}
.y17a{bottom:979.530000px;}
.y226{bottom:980.790000px;}
.yf6{bottom:983.670000px;}
.y40{bottom:986.010000px;}
.y1dd{bottom:987.630000px;}
.y1a1{bottom:989.250000px;}
.y1c1{bottom:989.970000px;}
.y160{bottom:990.330000px;}
.y71{bottom:995.010000px;}
.yb{bottom:995.910000px;}
.y98{bottom:997.170000px;}
.y225{bottom:1000.950000px;}
.y1c0{bottom:1004.910000px;}
.y1dc{bottom:1005.270000px;}
.y3f{bottom:1006.170000px;}
.y1fb{bottom:1006.890000px;}
.yf5{bottom:1012.830000px;}
.y179{bottom:1013.550000px;}
.y70{bottom:1015.170000px;}
.y224{bottom:1017.330000px;}
.y97{bottom:1017.510000px;}
.y15f{bottom:1019.670000px;}
.y1bf{bottom:1022.550000px;}
.yb6{bottom:1026.330000px;}
.y3e{bottom:1026.510000px;}
.y178{bottom:1031.190000px;}
.y223{bottom:1034.970000px;}
.y6f{bottom:1035.510000px;}
.y96{bottom:1037.670000px;}
.ya{bottom:1038.210000px;}
.y1fa{bottom:1038.930000px;}
.y1db{bottom:1039.830000px;}
.yf4{bottom:1043.070000px;}
.y3d{bottom:1046.670000px;}
.y15e{bottom:1048.830000px;}
.y222{bottom:1052.610000px;}
.y6e{bottom:1055.670000px;}
.y1a0{bottom:1057.470000px;}
.y95{bottom:1058.010000px;}
.y9{bottom:1065.210000px;}
.y177{bottom:1066.470000px;}
.ye1{bottom:1066.830000px;}
.y3c{bottom:1067.010000px;}
.y221{bottom:1070.250000px;}
.y1f9{bottom:1072.410000px;}
.y1da{bottom:1074.390000px;}
.yf3{bottom:1074.750000px;}
.y6d{bottom:1076.010000px;}
.y15d{bottom:1078.170000px;}
.y175{bottom:1084.110000px;}
.y3b{bottom:1087.170000px;}
.y220{bottom:1087.890000px;}
.y1f8{bottom:1090.050000px;}
.y6c{bottom:1096.170000px;}
.y8{bottom:1099.590000px;}
.yf2{bottom:1104.090000px;}
.y21f{bottom:1105.350000px;}
.y15c{bottom:1107.330000px;}
.yb5{bottom:1107.510000px;}
.y19f{bottom:1108.770000px;}
.y1{bottom:1115.250000px;}
.y3a{bottom:1116.330000px;}
.y6b{bottom:1116.510000px;}
.yf1{bottom:1124.430000px;}
.y1bc{bottom:1124.610000px;}
.y1d9{bottom:1125.690000px;}
.yb4{bottom:1127.670000px;}
.y39{bottom:1136.670000px;}
.y1f6{bottom:1141.350000px;}
.yf0{bottom:1144.590000px;}
.yb3{bottom:1156.860000px;}
.y38{bottom:1157.040000px;}
.yef{bottom:1174.680000px;}
.y37{bottom:1177.200000px;}
.y2f{bottom:1196.820000px;}
.hd{height:10.620000px;}
.h11{height:16.740000px;}
.h14{height:16.776000px;}
.h12{height:16.920000px;}
.h13{height:16.956000px;}
.hb{height:22.500000px;}
.hf{height:33.588984px;}
.h1e{height:33.660000px;}
.h10{height:33.689250px;}
.h17{height:33.840000px;}
.h15{height:33.876000px;}
.h3{height:37.599609px;}
.h9{height:41.610234px;}
.h20{height:43.860600px;}
.h1a{height:46.122187px;}
.h4{height:50.132812px;}
.h16{height:50.580000px;}
.h19{height:50.616000px;}
.h1d{height:50.760000px;}
.h1f{height:50.796000px;}
.h6{height:56.437031px;}
.h8{height:58.655391px;}
.ha{height:59.439023px;}
.h2{height:65.884219px;}
.h5{height:66.676641px;}
.h18{height:67.500000px;}
.h1b{height:67.536000px;}
.h7{height:67.824844px;}
.hc{height:83.787539px;}
.h1c{height:101.340000px;}
.he{height:290.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w11{width:54.180000px;}
.w15{width:55.476000px;}
.w1d{width:56.520000px;}
.w19{width:56.880000px;}
.w28{width:56.916000px;}
.w21{width:58.500000px;}
.w25{width:60.336000px;}
.w10{width:66.780000px;}
.w14{width:68.400000px;}
.w1c{width:69.660000px;}
.w18{width:70.200000px;}
.w20{width:72.180000px;}
.w24{width:74.160000px;}
.w29{width:134.820000px;}
.w2d{width:151.560000px;}
.w2c{width:151.590000px;}
.w26{width:165.600000px;}
.w16{width:170.820000px;}
.w22{width:180.390000px;}
.w1e{width:181.830000px;}
.wc{width:184.530000px;}
.w8{width:194.070000px;}
.w1a{width:195.690000px;}
.wd{width:198.030000px;}
.w12{width:203.790000px;}
.w5{width:220.170000px;}
.w6{width:240.870000px;}
.w9{width:253.650000px;}
.w7{width:258.690000px;}
.w2a{width:264.450000px;}
.wa{width:272.190000px;}
.wb{width:337.170000px;}
.we{width:337.350000px;}
.wf{width:394.455000px;}
.w17{width:396.435000px;}
.w1f{width:407.775000px;}
.w1b{width:411.195000px;}
.w23{width:419.115000px;}
.w13{width:424.515000px;}
.w2b{width:456.195000px;}
.w27{width:457.275000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:7.740000px;}
.x12{left:10.836000px;}
.x54{left:15.300000px;}
.x55{left:17.280000px;}
.x57{left:19.440000px;}
.x86{left:20.700000px;}
.x11{left:21.960000px;}
.x73{left:23.940000px;}
.x7d{left:31.140000px;}
.x8b{left:32.400000px;}
.x81{left:36.900000px;}
.x78{left:38.520000px;}
.x7e{left:39.600000px;}
.x61{left:41.220000px;}
.x90{left:43.020000px;}
.x8e{left:44.100000px;}
.x8a{left:45.180000px;}
.x77{left:46.620000px;}
.x60{left:49.140000px;}
.x79{left:52.200000px;}
.x62{left:54.900000px;}
.x43{left:58.530000px;}
.x6f{left:60.345000px;}
.x74{left:62.325000px;}
.x45{left:63.585000px;}
.x8c{left:66.054000px;}
.x6a{left:67.365000px;}
.x7f{left:68.934000px;}
.x68{left:70.065000px;}
.x5a{left:71.325000px;}
.x39{left:73.614000px;}
.x3e{left:75.954000px;}
.x3f{left:80.094000px;}
.x49{left:82.110000px;}
.x35{left:83.694000px;}
.x2{left:84.995987px;}
.x2c{left:86.760000px;}
.x31{left:88.374000px;}
.x2e{left:89.814000px;}
.x47{left:92.025000px;}
.x2d{left:94.005000px;}
.x4d{left:95.445000px;}
.x2a{left:97.554000px;}
.x42{left:99.534000px;}
.x3c{left:100.665000px;}
.x6b{left:103.494000px;}
.x32{left:109.980000px;}
.x70{left:112.175987px;}
.x2f{left:113.400000px;}
.x8f{left:114.515987px;}
.x4e{left:115.554000px;}
.x33{left:117.000000px;}
.x36{left:119.385000px;}
.x89{left:120.594000px;}
.x30{left:122.445000px;}
.x64{left:124.194000px;}
.x34{left:125.865000px;}
.x3d{left:129.105000px;}
.x3{left:130.175987px;}
.x83{left:132.114000px;}
.x6{left:133.775987px;}
.x7a{left:136.074000px;}
.x4f{left:137.514000px;}
.x50{left:139.674000px;}
.x46{left:141.474000px;}
.x4a{left:144.354000px;}
.x41{left:147.635987px;}
.x92{left:150.510000px;}
.x48{left:151.734000px;}
.x4b{left:152.814000px;}
.x4c{left:154.254000px;}
.x38{left:162.209987px;}
.x5c{left:166.674000px;}
.x85{left:168.690000px;}
.x59{left:171.714000px;}
.x69{left:172.794000px;}
.x29{left:179.309987px;}
.x8d{left:182.550000px;}
.x4{left:183.629987px;}
.xc{left:186.689987px;}
.x51{left:190.109987px;}
.x80{left:203.259000px;}
.x9{left:207.389987px;}
.x93{left:215.849987px;}
.x63{left:223.049987px;}
.x95{left:234.929987px;}
.x52{left:238.529987px;}
.x94{left:244.469987px;}
.x91{left:253.109987px;}
.x5b{left:257.429987px;}
.x14{left:273.674987px;}
.x3a{left:280.695000px;}
.x15{left:286.994987px;}
.x20{left:288.329987px;}
.x23{left:292.289987px;}
.x21{left:293.369987px;}
.x22{left:294.989987px;}
.x2b{left:306.795000px;}
.xa{left:349.994987px;}
.x84{left:351.075000px;}
.x7{left:353.774987px;}
.x27{left:358.454987px;}
.x26{left:363.314987px;}
.x5{left:367.994987px;}
.x8{left:378.434987px;}
.xe{left:390.134987px;}
.xb{left:395.714987px;}
.x25{left:397.154987px;}
.x28{left:403.274987px;}
.x24{left:407.234987px;}
.xd{left:409.214987px;}
.x16{left:411.269987px;}
.x1a{left:412.739987px;}
.x18{left:413.819987px;}
.x82{left:416.774987px;}
.x17{left:424.949987px;}
.x19{left:434.009987px;}
.xf{left:446.504987px;}
.x40{left:462.164987px;}
.x37{left:475.664987px;}
.x53{left:481.065000px;}
.x65{left:483.045000px;}
.x71{left:494.565000px;}
.x6c{left:497.805000px;}
.x87{left:503.385000px;}
.x75{left:505.725000px;}
.x5d{left:511.125000px;}
.x1c{left:532.769987px;}
.x3b{left:535.065000px;}
.x1e{left:540.329987px;}
.x1b{left:543.389987px;}
.x1f{left:547.709987px;}
.x1d{left:550.229987px;}
.x66{left:553.965000px;}
.x6d{left:568.185000px;}
.x5e{left:580.245000px;}
.x56{left:603.465000px;}
.x44{left:609.225000px;}
.x67{left:611.565000px;}
.x7b{left:614.805000px;}
.x6e{left:625.425000px;}
.x72{left:626.865000px;}
.x5f{left:636.450000px;}
.x76{left:641.670000px;}
.x13{left:647.789987px;}
.x88{left:655.710000px;}
.x7c{left:672.450000px;}
.x1{left:807.809987px;}
.x10{left:810.360000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-1.216000pt;}
.lsa{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.211200pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.122133pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.046720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.084267pt;}
.ls8{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.188800pt;}
.lsc{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.283337pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls0{letter-spacing:63.493120pt;}
.ls7{letter-spacing:1175.333547pt;}
.ls6{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.424000pt;}
.wse{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.468800pt;}
.wsa{word-spacing:-13.364267pt;}
.wsd{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.157867pt;}
.wsc{word-spacing:-13.068800pt;}
.ws5{word-spacing:-10.720000pt;}
.ws10{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-192.266453pt;}
._14{margin-left:-136.558293pt;}
._1f{margin-left:-45.349547pt;}
._1e{margin-left:-42.206080pt;}
._12{margin-left:-34.638080pt;}
._1b{margin-left:-26.875520pt;}
._1a{margin-left:-22.607360pt;}
._16{margin-left:-20.915840pt;}
._19{margin-left:-19.502720pt;}
._1c{margin-left:-16.795520pt;}
._13{margin-left:-12.230400pt;}
._18{margin-left:-9.148800pt;}
._15{margin-left:-6.730240pt;}
._1d{margin-left:-5.811840pt;}
._28{margin-left:-4.512000pt;}
._d{margin-left:-3.600000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._24{width:1.828053pt;}
._7{width:2.731947pt;}
._a{width:3.629653pt;}
._b{width:4.522880pt;}
._9{width:5.632000pt;}
._f{width:6.522453pt;}
._21{width:8.096000pt;}
._20{width:9.152000pt;}
._e{width:10.624000pt;}
._25{width:12.096000pt;}
._26{width:13.632000pt;}
._c{width:14.688000pt;}
._52{width:15.889493pt;}
._27{width:17.573333pt;}
._29{width:18.522667pt;}
._2f{width:19.429333pt;}
._2a{width:20.506667pt;}
._2e{width:21.562667pt;}
._2c{width:22.528000pt;}
._2d{width:23.424000pt;}
._4f{width:25.264000pt;}
._4{width:26.448000pt;}
._3d{width:27.530667pt;}
._50{width:29.184000pt;}
._23{width:30.416000pt;}
._22{width:31.552000pt;}
._4a{width:33.664000pt;}
._2b{width:35.200000pt;}
._51{width:36.202240pt;}
._35{width:47.808000pt;}
._36{width:49.242667pt;}
._41{width:50.688000pt;}
._40{width:51.968000pt;}
._47{width:53.818667pt;}
._46{width:55.168000pt;}
._4c{width:60.608000pt;}
._3a{width:62.464000pt;}
._8{width:63.978667pt;}
._31{width:65.205333pt;}
._30{width:66.304000pt;}
._43{width:77.205333pt;}
._42{width:78.442667pt;}
._3{width:80.448000pt;}
._4b{width:82.240000pt;}
._34{width:87.168000pt;}
._4e{width:92.032000pt;}
._4d{width:93.376000pt;}
._45{width:96.064000pt;}
._44{width:97.088000pt;}
._33{width:99.920000pt;}
._32{width:101.056000pt;}
._49{width:112.016000pt;}
._48{width:113.152000pt;}
._3f{width:119.360000pt;}
._3e{width:120.256000pt;}
._3c{width:125.904000pt;}
._3b{width:126.976000pt;}
._38{width:146.368000pt;}
._37{width:147.840000pt;}
._11{width:160.107307pt;}
._6{width:570.272000pt;}
._39{width:790.336000pt;}
._10{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y36{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.200000pt;}
.y176{bottom:3.520000pt;}
.y1e9{bottom:3.546667pt;}
.y1a2{bottom:18.400000pt;}
.y1ca{bottom:18.426667pt;}
.y196{bottom:18.560000pt;}
.y1e8{bottom:18.586667pt;}
.y1a6{bottom:18.600000pt;}
.y66{bottom:25.626667pt;}
.y6a{bottom:31.106667pt;}
.y198{bottom:33.440000pt;}
.y1be{bottom:33.466667pt;}
.y1a5{bottom:33.480000pt;}
.y19c{bottom:33.600000pt;}
.y1f7{bottom:33.626667pt;}
.y65{bottom:36.506667pt;}
.y69{bottom:41.826667pt;}
.y64{bottom:47.226667pt;}
.y19b{bottom:48.480000pt;}
.y1bd{bottom:48.506667pt;}
.y1af{bottom:48.640000pt;}
.y32{bottom:49.920000pt;}
.y7{bottom:51.200000pt;}
.y68{bottom:52.733333pt;}
.y63{bottom:58.106667pt;}
.y31{bottom:61.920000pt;}
.y67{bottom:63.453333pt;}
.y1bb{bottom:63.520000pt;}
.y6{bottom:68.320000pt;}
.y62{bottom:68.826667pt;}
.y1ba{bottom:78.560000pt;}
.y5{bottom:81.760000pt;}
.y33{bottom:87.360000pt;}
.y35{bottom:92.960000pt;}
.y4{bottom:95.360000pt;}
.y5d{bottom:97.120000pt;}
.y5c{bottom:108.000000pt;}
.y3{bottom:108.800000pt;}
.y5b{bottom:118.720000pt;}
.y2{bottom:122.240000pt;}
.y30{bottom:132.000000pt;}
.y2e{bottom:148.186667pt;}
.y131{bottom:150.266667pt;}
.y1d8{bottom:150.426667pt;}
.y174{bottom:152.186667pt;}
.y1f5{bottom:152.986667pt;}
.y94{bottom:153.306667pt;}
.y59{bottom:154.266667pt;}
.y2d{bottom:166.106667pt;}
.y1d7{bottom:166.906667pt;}
.y19e{bottom:167.546667pt;}
.y130{bottom:168.346667pt;}
.y93{bottom:171.386667pt;}
.ye0{bottom:172.186667pt;}
.y143{bottom:176.186667pt;}
.y15b{bottom:178.266667pt;}
.yee{bottom:179.226667pt;}
.y19d{bottom:179.706667pt;}
.y58{bottom:180.186667pt;}
.y10f{bottom:181.306667pt;}
.y2c{bottom:184.186667pt;}
.y249{bottom:185.626667pt;}
.y12f{bottom:186.266667pt;}
.y92{bottom:189.306667pt;}
.ydf{bottom:190.266667pt;}
.y142{bottom:194.266667pt;}
.y19a{bottom:195.386667pt;}
.y1d6{bottom:195.866667pt;}
.y15a{bottom:196.346667pt;}
.y21e{bottom:197.146667pt;}
.y57{bottom:198.266667pt;}
.y1f4{bottom:198.586667pt;}
.y61{bottom:198.946667pt;}
.y10e{bottom:199.386667pt;}
.y2b{bottom:202.106667pt;}
.y248{bottom:203.706667pt;}
.y173{bottom:204.186667pt;}
.yed{bottom:205.306667pt;}
.y91{bottom:207.386667pt;}
.yde{bottom:208.346667pt;}
.y60{bottom:209.666667pt;}
.y12e{bottom:212.186667pt;}
.y5a{bottom:212.320000pt;}
.yc1{bottom:215.226667pt;}
.y10d{bottom:217.306667pt;}
.y56{bottom:220.026667pt;}
.y2a{bottom:220.186667pt;}
.y5f{bottom:220.546667pt;}
.y247{bottom:221.626667pt;}
.y159{bottom:222.266667pt;}
.yec{bottom:223.386667pt;}
.y90{bottom:225.306667pt;}
.y1d5{bottom:226.426667pt;}
.y1f3{bottom:229.306667pt;}
.y12d{bottom:230.266667pt;}
.y5e{bottom:231.266667pt;}
.y21d{bottom:233.146667pt;}
.yb2{bottom:233.306667pt;}
.ydd{bottom:234.266667pt;}
.y141{bottom:238.266667pt;}
.y246{bottom:239.706667pt;}
.y158{bottom:240.346667pt;}
.yeb{bottom:241.306667pt;}
.y10c{bottom:243.226667pt;}
.y8f{bottom:243.386667pt;}
.y29{bottom:246.746667pt;}
.y21c{bottom:251.226667pt;}
.yb1{bottom:251.386667pt;}
.ydc{bottom:252.346667pt;}
.y199{bottom:256.026667pt;}
.y12c{bottom:256.186667pt;}
.y140{bottom:256.346667pt;}
.y1b9{bottom:256.826667pt;}
.y245{bottom:257.626667pt;}
.yea{bottom:259.386667pt;}
.y10b{bottom:261.306667pt;}
.y157{bottom:266.266667pt;}
.y21b{bottom:269.146667pt;}
.y8e{bottom:269.306667pt;}
.ydb{bottom:270.266667pt;}
.y1f2{bottom:272.026667pt;}
.y1d4{bottom:272.186667pt;}
.y12b{bottom:274.266667pt;}
.y28{bottom:275.066667pt;}
.ye9{bottom:277.306667pt;}
.y13f{bottom:282.266667pt;}
.y156{bottom:284.346667pt;}
.y197{bottom:286.746667pt;}
.y10a{bottom:287.226667pt;}
.yb0{bottom:287.386667pt;}
.y244{bottom:287.866667pt;}
.yda{bottom:288.346667pt;}
.y1f1{bottom:290.106667pt;}
.y12a{bottom:292.346667pt;}
.y8d{bottom:295.226667pt;}
.ye8{bottom:295.386667pt;}
.y13e{bottom:300.346667pt;}
.y21a{bottom:301.786667pt;}
.y1b8{bottom:302.426667pt;}
.y243{bottom:303.546667pt;}
.yaf{bottom:305.306667pt;}
.yd9{bottom:306.266667pt;}
.y27{bottom:306.586667pt;}
.y172{bottom:308.186667pt;}
.y129{bottom:310.266667pt;}
.y8c{bottom:313.306667pt;}
.y219{bottom:317.306667pt;}
.y1d3{bottom:317.786667pt;}
.y13d{bottom:318.266667pt;}
.y242{bottom:319.226667pt;}
.y1f0{bottom:319.706667pt;}
.yae{bottom:323.386667pt;}
.yd8{bottom:324.346667pt;}
.y26{bottom:327.226667pt;}
.y155{bottom:328.346667pt;}
.y1b7{bottom:330.266667pt;}
.yc0{bottom:331.226667pt;}
.y8b{bottom:331.386667pt;}
.y195{bottom:332.346667pt;}
.y218{bottom:332.986667pt;}
.y171{bottom:334.266667pt;}
.y241{bottom:334.906667pt;}
.y128{bottom:336.186667pt;}
.y109{bottom:341.306667pt;}
.yd7{bottom:342.266667pt;}
.y13c{bottom:344.186667pt;}
.y154{bottom:346.266667pt;}
.y25{bottom:348.026667pt;}
.y1ef{bottom:348.186667pt;}
.y1b6{bottom:348.346667pt;}
.y217{bottom:348.666667pt;}
.y8a{bottom:349.306667pt;}
.y240{bottom:350.426667pt;}
.y127{bottom:354.266667pt;}
.y170{bottom:360.226667pt;}
.y1d2{bottom:360.546667pt;}
.y13b{bottom:362.306667pt;}
.y194{bottom:363.106667pt;}
.y153{bottom:364.386667pt;}
.y1ee{bottom:364.706667pt;}
.y1b5{bottom:366.306667pt;}
.y108{bottom:367.266667pt;}
.y89{bottom:367.426667pt;}
.yd6{bottom:368.226667pt;}
.y126{bottom:372.386667pt;}
.y24{bottom:373.826667pt;}
.y1ed{bottom:378.146667pt;}
.y23f{bottom:378.306667pt;}
.y1d1{bottom:378.626667pt;}
.y216{bottom:380.066667pt;}
.y13a{bottom:380.386667pt;}
.y1b4{bottom:384.386667pt;}
.yad{bottom:385.346667pt;}
.yd5{bottom:386.306667pt;}
.y152{bottom:390.306667pt;}
.y193{bottom:390.786667pt;}
.y88{bottom:393.346667pt;}
.y1ec{bottom:393.826667pt;}
.y23e{bottom:396.386667pt;}
.y1d0{bottom:396.706667pt;}
.y125{bottom:398.306667pt;}
.y23{bottom:399.906667pt;}
.y1b3{bottom:401.986667pt;}
.yac{bottom:403.426667pt;}
.yd4{bottom:404.386667pt;}
.y215{bottom:407.906667pt;}
.y151{bottom:408.386667pt;}
.y192{bottom:408.866667pt;}
.y87{bottom:411.426667pt;}
.y16f{bottom:412.226667pt;}
.y23d{bottom:414.306667pt;}
.y1cf{bottom:414.626667pt;}
.y1b2{bottom:415.426667pt;}
.y124{bottom:416.386667pt;}
.y22{bottom:417.986667pt;}
.yab{bottom:421.346667pt;}
.yd3{bottom:422.306667pt;}
.y139{bottom:424.226667pt;}
.y214{bottom:425.986667pt;}
.y86{bottom:429.346667pt;}
.y1b1{bottom:431.106667pt;}
.y1ce{bottom:432.386667pt;}
.y123{bottom:434.306667pt;}
.y21{bottom:435.906667pt;}
.y16e{bottom:438.306667pt;}
.y191{bottom:439.106667pt;}
.yaa{bottom:439.426667pt;}
.yd2{bottom:440.386667pt;}
.y138{bottom:442.306667pt;}
.y213{bottom:443.906667pt;}
.y1cd{bottom:445.666667pt;}
.y85{bottom:447.426667pt;}
.y23c{bottom:450.306667pt;}
.y122{bottom:452.386667pt;}
.y190{bottom:453.506667pt;}
.y20{bottom:453.986667pt;}
.y137{bottom:460.386667pt;}
.y1cc{bottom:461.346667pt;}
.y212{bottom:461.986667pt;}
.y16d{bottom:464.226667pt;}
.y84{bottom:465.346667pt;}
.yd1{bottom:466.306667pt;}
.y23b{bottom:468.386667pt;}
.y18f{bottom:469.186667pt;}
.y150{bottom:470.306667pt;}
.y1f{bottom:471.906667pt;}
.y1b0{bottom:476.706667pt;}
.y121{bottom:478.306667pt;}
.y211{bottom:479.906667pt;}
.y55{bottom:482.306667pt;}
.y23a{bottom:482.946667pt;}
.y83{bottom:483.426667pt;}
.yd0{bottom:484.386667pt;}
.y18e{bottom:484.866667pt;}
.y1eb{bottom:485.026667pt;}
.y1e{bottom:489.986667pt;}
.y16c{bottom:490.306667pt;}
.y107{bottom:491.266667pt;}
.y14f{bottom:496.226667pt;}
.y120{bottom:496.386667pt;}
.y210{bottom:497.986667pt;}
.y239{bottom:498.466667pt;}
.y54{bottom:500.386667pt;}
.y18d{bottom:500.546667pt;}
.y82{bottom:501.346667pt;}
.ycf{bottom:502.306667pt;}
.y136{bottom:504.226667pt;}
.y1d{bottom:507.906667pt;}
.y106{bottom:509.346667pt;}
.y20f{bottom:512.386667pt;}
.y238{bottom:514.146667pt;}
.y11f{bottom:514.306667pt;}
.y16b{bottom:516.226667pt;}
.y53{bottom:518.306667pt;}
.y81{bottom:519.426667pt;}
.yce{bottom:520.386667pt;}
.y1cb{bottom:521.986667pt;}
.y135{bottom:522.306667pt;}
.y105{bottom:527.426667pt;}
.y20e{bottom:528.066667pt;}
.y237{bottom:529.826667pt;}
.y1ea{bottom:530.786667pt;}
.y18c{bottom:531.906667pt;}
.y14e{bottom:532.386667pt;}
.y1c{bottom:533.826667pt;}
.y52{bottom:536.386667pt;}
.ya9{bottom:537.346667pt;}
.ycd{bottom:538.306667pt;}
.y11e{bottom:540.226667pt;}
.y134{bottom:540.386667pt;}
.y16a{bottom:542.306667pt;}
.y20d{bottom:543.746667pt;}
.y80{bottom:545.346667pt;}
.y236{bottom:545.506667pt;}
.ye7{bottom:545.986667pt;}
.y18b{bottom:547.586667pt;}
.y14d{bottom:550.306667pt;}
.y1b{bottom:551.906667pt;}
.y104{bottom:553.346667pt;}
.y51{bottom:554.306667pt;}
.ycc{bottom:556.386667pt;}
.y11d{bottom:558.306667pt;}
.y20c{bottom:559.426667pt;}
.y235{bottom:561.186667pt;}
.ya8{bottom:563.266667pt;}
.ybf{bottom:563.426667pt;}
.y1c9{bottom:567.746667pt;}
.y169{bottom:568.226667pt;}
.y1a{bottom:569.986667pt;}
.y7f{bottom:571.266667pt;}
.y103{bottom:571.426667pt;}
.y50{bottom:572.386667pt;}
.ye6{bottom:574.306667pt;}
.y20b{bottom:575.106667pt;}
.y14c{bottom:576.226667pt;}
.y1e7{bottom:576.386667pt;}
.y18a{bottom:578.973333pt;}
.ya7{bottom:581.373333pt;}
.ycb{bottom:582.333333pt;}
.y1ae{bottom:583.133333pt;}
.y11c{bottom:584.253333pt;}
.y19{bottom:587.933333pt;}
.y234{bottom:589.053333pt;}
.y7e{bottom:589.373333pt;}
.y4f{bottom:590.333333pt;}
.y20a{bottom:590.813333pt;}
.y14b{bottom:594.333333pt;}
.y189{bottom:594.493333pt;}
.ya6{bottom:599.453333pt;}
.ye5{bottom:600.253333pt;}
.yca{bottom:600.413333pt;}
.y11b{bottom:602.333333pt;}
.y18{bottom:606.013333pt;}
.y1e6{bottom:607.133333pt;}
.y7d{bottom:607.453333pt;}
.y4e{bottom:608.413333pt;}
.y188{bottom:610.173333pt;}
.y14a{bottom:612.413333pt;}
.y102{bottom:615.293333pt;}
.ya5{bottom:617.373333pt;}
.yc9{bottom:618.333333pt;}
.y209{bottom:618.493333pt;}
.y168{bottom:620.253333pt;}
.y11a{bottom:620.413333pt;}
.y17{bottom:623.933333pt;}
.y233{bottom:625.053333pt;}
.y7c{bottom:625.373333pt;}
.y4d{bottom:626.333333pt;}
.y1c8{bottom:628.413333pt;}
.y1ad{bottom:628.733333pt;}
.y101{bottom:633.373333pt;}
.ybe{bottom:635.453333pt;}
.yc8{bottom:636.413333pt;}
.y208{bottom:636.573333pt;}
.y187{bottom:638.013333pt;}
.y149{bottom:638.333333pt;}
.y16{bottom:642.013333pt;}
.y232{bottom:643.133333pt;}
.ya4{bottom:643.293333pt;}
.y7b{bottom:643.453333pt;}
.y119{bottom:646.333333pt;}
.y100{bottom:651.453333pt;}
.y4c{bottom:652.253333pt;}
.y1e5{bottom:652.733333pt;}
.ybd{bottom:653.373333pt;}
.yc7{bottom:654.333333pt;}
.y207{bottom:654.653333pt;}
.y186{bottom:656.093333pt;}
.y148{bottom:656.413333pt;}
.y231{bottom:661.053333pt;}
.ya3{bottom:661.373333pt;}
.y118{bottom:664.413333pt;}
.y15{bottom:668.573333pt;}
.y7a{bottom:669.373333pt;}
.y4b{bottom:670.333333pt;}
.y185{bottom:670.493333pt;}
.y167{bottom:672.253333pt;}
.yc6{bottom:672.413333pt;}
.y206{bottom:672.573333pt;}
.y1c7{bottom:674.013333pt;}
.y147{bottom:674.333333pt;}
.y1ac{bottom:674.493333pt;}
.yff{bottom:677.373333pt;}
.y230{bottom:679.133333pt;}
.ya2{bottom:679.453333pt;}
.ybc{bottom:680.093333pt;}
.y117{bottom:682.333333pt;}
.y184{bottom:686.173333pt;}
.y79{bottom:687.453333pt;}
.y4a{bottom:688.413333pt;}
.ye4{bottom:690.333333pt;}
.y205{bottom:690.653333pt;}
.y1ab{bottom:692.573333pt;}
.y22f{bottom:693.533333pt;}
.yfe{bottom:695.453333pt;}
.y14{bottom:696.893333pt;}
.ya1{bottom:697.373333pt;}
.yc5{bottom:698.333333pt;}
.y1e4{bottom:698.493333pt;}
.y146{bottom:700.253333pt;}
.y133{bottom:700.413333pt;}
.y183{bottom:701.853333pt;}
.y78{bottom:705.373333pt;}
.y49{bottom:706.333333pt;}
.ybb{bottom:708.253333pt;}
.y204{bottom:708.573333pt;}
.y22e{bottom:709.213333pt;}
.y1aa{bottom:710.493333pt;}
.ya0{bottom:715.453333pt;}
.ye3{bottom:716.253333pt;}
.yc4{bottom:716.413333pt;}
.y182{bottom:717.533333pt;}
.y145{bottom:718.333333pt;}
.y1c6{bottom:719.773333pt;}
.yfd{bottom:721.373333pt;}
.y13{bottom:722.813333pt;}
.y203{bottom:723.133333pt;}
.y77{bottom:723.453333pt;}
.y166{bottom:724.253333pt;}
.y48{bottom:724.413333pt;}
.y22d{bottom:724.893333pt;}
.y116{bottom:726.333333pt;}
.y1a9{bottom:728.253333pt;}
.y1e3{bottom:729.053333pt;}
.y9f{bottom:733.373333pt;}
.yba{bottom:734.333333pt;}
.y144{bottom:736.413333pt;}
.y202{bottom:738.813333pt;}
.yfc{bottom:739.453333pt;}
.y22c{bottom:740.573333pt;}
.y12{bottom:740.893333pt;}
.y76{bottom:741.373333pt;}
.y1a8{bottom:741.533333pt;}
.y47{bottom:742.333333pt;}
.y115{bottom:744.413333pt;}
.y181{bottom:745.373333pt;}
.y165{bottom:750.333333pt;}
.y9e{bottom:751.453333pt;}
.yb9{bottom:752.413333pt;}
.y201{bottom:754.493333pt;}
.y22b{bottom:756.253333pt;}
.y1a7{bottom:757.213333pt;}
.yfb{bottom:757.373333pt;}
.y11{bottom:758.973333pt;}
.y46{bottom:760.413333pt;}
.y114{bottom:762.333333pt;}
.y180{bottom:763.453333pt;}
.y75{bottom:767.293333pt;}
.y200{bottom:770.173333pt;}
.yb8{bottom:770.333333pt;}
.y1e2{bottom:771.933333pt;}
.y164{bottom:776.253333pt;}
.y17f{bottom:777.853333pt;}
.y9d{bottom:778.013333pt;}
.y45{bottom:778.333333pt;}
.y113{bottom:780.413333pt;}
.yfa{bottom:783.293333pt;}
.y10{bottom:784.893333pt;}
.y1ff{bottom:785.853333pt;}
.y1a4{bottom:787.933333pt;}
.y132{bottom:788.253333pt;}
.yb7{bottom:788.413333pt;}
.y1e1{bottom:790.013333pt;}
.y17e{bottom:793.533333pt;}
.y74{bottom:794.013333pt;}
.ye2{bottom:796.253333pt;}
.y44{bottom:796.413333pt;}
.y22a{bottom:799.653333pt;}
.yf9{bottom:801.413333pt;}
.y163{bottom:802.373333pt;}
.yf{bottom:803.013333pt;}
.y9c{bottom:806.373333pt;}
.y1c5{bottom:808.133333pt;}
.y17d{bottom:809.253333pt;}
.yc3{bottom:814.373333pt;}
.y229{bottom:817.733333pt;}
.yf8{bottom:819.493333pt;}
.y1e0{bottom:819.653333pt;}
.ye{bottom:821.093333pt;}
.y43{bottom:822.373333pt;}
.y112{bottom:824.453333pt;}
.y17c{bottom:824.933333pt;}
.y1c4{bottom:826.213333pt;}
.y162{bottom:828.293333pt;}
.y1fe{bottom:829.253333pt;}
.y9b{bottom:832.293333pt;}
.yc2{bottom:832.453333pt;}
.y1a3{bottom:833.573333pt;}
.y228{bottom:835.813333pt;}
.y42{bottom:840.453333pt;}
.y111{bottom:842.373333pt;}
.y1c3{bottom:844.293333pt;}
.yf7{bottom:846.053333pt;}
.y1fd{bottom:847.333333pt;}
.y1df{bottom:848.133333pt;}
.y73{bottom:848.293333pt;}
.yd{bottom:849.093333pt;}
.y9a{bottom:850.373333pt;}
.y17b{bottom:852.613333pt;}
.y227{bottom:853.733333pt;}
.y161{bottom:854.373333pt;}
.y41{bottom:858.373333pt;}
.y1c2{bottom:862.213333pt;}
.y1de{bottom:864.613333pt;}
.y1fc{bottom:865.253333pt;}
.y72{bottom:866.373333pt;}
.yc{bottom:867.173333pt;}
.y110{bottom:868.293333pt;}
.y99{bottom:868.453333pt;}
.y17a{bottom:870.693333pt;}
.y226{bottom:871.813333pt;}
.yf6{bottom:874.373333pt;}
.y40{bottom:876.453333pt;}
.y1dd{bottom:877.893333pt;}
.y1a1{bottom:879.333333pt;}
.y1c1{bottom:879.973333pt;}
.y160{bottom:880.293333pt;}
.y71{bottom:884.453333pt;}
.yb{bottom:885.253333pt;}
.y98{bottom:886.373333pt;}
.y225{bottom:889.733333pt;}
.y1c0{bottom:893.253333pt;}
.y1dc{bottom:893.573333pt;}
.y3f{bottom:894.373333pt;}
.y1fb{bottom:895.013333pt;}
.yf5{bottom:900.293333pt;}
.y179{bottom:900.933333pt;}
.y70{bottom:902.373333pt;}
.y224{bottom:904.293333pt;}
.y97{bottom:904.453333pt;}
.y15f{bottom:906.373333pt;}
.y1bf{bottom:908.933333pt;}
.yb6{bottom:912.293333pt;}
.y3e{bottom:912.453333pt;}
.y178{bottom:916.613333pt;}
.y223{bottom:919.973333pt;}
.y6f{bottom:920.453333pt;}
.y96{bottom:922.373333pt;}
.ya{bottom:922.853333pt;}
.y1fa{bottom:923.493333pt;}
.y1db{bottom:924.293333pt;}
.yf4{bottom:927.173333pt;}
.y3d{bottom:930.373333pt;}
.y15e{bottom:932.293333pt;}
.y222{bottom:935.653333pt;}
.y6e{bottom:938.373333pt;}
.y1a0{bottom:939.973333pt;}
.y95{bottom:940.453333pt;}
.y9{bottom:946.853333pt;}
.y177{bottom:947.973333pt;}
.ye1{bottom:948.293333pt;}
.y3c{bottom:948.453333pt;}
.y221{bottom:951.333333pt;}
.y1f9{bottom:953.253333pt;}
.y1da{bottom:955.013333pt;}
.yf3{bottom:955.333333pt;}
.y6d{bottom:956.453333pt;}
.y15d{bottom:958.373333pt;}
.y175{bottom:963.653333pt;}
.y3b{bottom:966.373333pt;}
.y220{bottom:967.013333pt;}
.y1f8{bottom:968.933333pt;}
.y6c{bottom:974.373333pt;}
.y8{bottom:977.413333pt;}
.yf2{bottom:981.413333pt;}
.y21f{bottom:982.533333pt;}
.y15c{bottom:984.293333pt;}
.yb5{bottom:984.453333pt;}
.y19f{bottom:985.573333pt;}
.y1{bottom:991.333333pt;}
.y3a{bottom:992.293333pt;}
.y6b{bottom:992.453333pt;}
.yf1{bottom:999.493333pt;}
.y1bc{bottom:999.653333pt;}
.y1d9{bottom:1000.613333pt;}
.yb4{bottom:1002.373333pt;}
.y39{bottom:1010.373333pt;}
.y1f6{bottom:1014.533333pt;}
.yf0{bottom:1017.413333pt;}
.yb3{bottom:1028.320000pt;}
.y38{bottom:1028.480000pt;}
.yef{bottom:1044.160000pt;}
.y37{bottom:1046.400000pt;}
.y2f{bottom:1063.840000pt;}
.hd{height:9.440000pt;}
.h11{height:14.880000pt;}
.h14{height:14.912000pt;}
.h12{height:15.040000pt;}
.h13{height:15.072000pt;}
.hb{height:20.000000pt;}
.hf{height:29.856875pt;}
.h1e{height:29.920000pt;}
.h10{height:29.946000pt;}
.h17{height:30.080000pt;}
.h15{height:30.112000pt;}
.h3{height:33.421875pt;}
.h9{height:36.986875pt;}
.h20{height:38.987200pt;}
.h1a{height:40.997500pt;}
.h4{height:44.562500pt;}
.h16{height:44.960000pt;}
.h19{height:44.992000pt;}
.h1d{height:45.120000pt;}
.h1f{height:45.152000pt;}
.h6{height:50.166250pt;}
.h8{height:52.138125pt;}
.ha{height:52.834688pt;}
.h2{height:58.563750pt;}
.h5{height:59.268125pt;}
.h18{height:60.000000pt;}
.h1b{height:60.032000pt;}
.h7{height:60.288750pt;}
.hc{height:74.477812pt;}
.h1c{height:90.080000pt;}
.he{height:257.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w11{width:48.160000pt;}
.w15{width:49.312000pt;}
.w1d{width:50.240000pt;}
.w19{width:50.560000pt;}
.w28{width:50.592000pt;}
.w21{width:52.000000pt;}
.w25{width:53.632000pt;}
.w10{width:59.360000pt;}
.w14{width:60.800000pt;}
.w1c{width:61.920000pt;}
.w18{width:62.400000pt;}
.w20{width:64.160000pt;}
.w24{width:65.920000pt;}
.w29{width:119.840000pt;}
.w2d{width:134.720000pt;}
.w2c{width:134.746667pt;}
.w26{width:147.200000pt;}
.w16{width:151.840000pt;}
.w22{width:160.346667pt;}
.w1e{width:161.626667pt;}
.wc{width:164.026667pt;}
.w8{width:172.506667pt;}
.w1a{width:173.946667pt;}
.wd{width:176.026667pt;}
.w12{width:181.146667pt;}
.w5{width:195.706667pt;}
.w6{width:214.106667pt;}
.w9{width:225.466667pt;}
.w7{width:229.946667pt;}
.w2a{width:235.066667pt;}
.wa{width:241.946667pt;}
.wb{width:299.706667pt;}
.we{width:299.866667pt;}
.wf{width:350.626667pt;}
.w17{width:352.386667pt;}
.w1f{width:362.466667pt;}
.w1b{width:365.506667pt;}
.w23{width:372.546667pt;}
.w13{width:377.346667pt;}
.w2b{width:405.506667pt;}
.w27{width:406.466667pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:6.880000pt;}
.x12{left:9.632000pt;}
.x54{left:13.600000pt;}
.x55{left:15.360000pt;}
.x57{left:17.280000pt;}
.x86{left:18.400000pt;}
.x11{left:19.520000pt;}
.x73{left:21.280000pt;}
.x7d{left:27.680000pt;}
.x8b{left:28.800000pt;}
.x81{left:32.800000pt;}
.x78{left:34.240000pt;}
.x7e{left:35.200000pt;}
.x61{left:36.640000pt;}
.x90{left:38.240000pt;}
.x8e{left:39.200000pt;}
.x8a{left:40.160000pt;}
.x77{left:41.440000pt;}
.x60{left:43.680000pt;}
.x79{left:46.400000pt;}
.x62{left:48.800000pt;}
.x43{left:52.026667pt;}
.x6f{left:53.640000pt;}
.x74{left:55.400000pt;}
.x45{left:56.520000pt;}
.x8c{left:58.714667pt;}
.x6a{left:59.880000pt;}
.x7f{left:61.274667pt;}
.x68{left:62.280000pt;}
.x5a{left:63.400000pt;}
.x39{left:65.434667pt;}
.x3e{left:67.514667pt;}
.x3f{left:71.194667pt;}
.x49{left:72.986667pt;}
.x35{left:74.394667pt;}
.x2{left:75.551988pt;}
.x2c{left:77.120000pt;}
.x31{left:78.554667pt;}
.x2e{left:79.834667pt;}
.x47{left:81.800000pt;}
.x2d{left:83.560000pt;}
.x4d{left:84.840000pt;}
.x2a{left:86.714667pt;}
.x42{left:88.474667pt;}
.x3c{left:89.480000pt;}
.x6b{left:91.994667pt;}
.x32{left:97.760000pt;}
.x70{left:99.711988pt;}
.x2f{left:100.800000pt;}
.x8f{left:101.791988pt;}
.x4e{left:102.714667pt;}
.x33{left:104.000000pt;}
.x36{left:106.120000pt;}
.x89{left:107.194667pt;}
.x30{left:108.840000pt;}
.x64{left:110.394667pt;}
.x34{left:111.880000pt;}
.x3d{left:114.760000pt;}
.x3{left:115.711988pt;}
.x83{left:117.434667pt;}
.x6{left:118.911988pt;}
.x7a{left:120.954667pt;}
.x4f{left:122.234667pt;}
.x50{left:124.154667pt;}
.x46{left:125.754667pt;}
.x4a{left:128.314667pt;}
.x41{left:131.231988pt;}
.x92{left:133.786667pt;}
.x48{left:134.874667pt;}
.x4b{left:135.834667pt;}
.x4c{left:137.114667pt;}
.x38{left:144.186655pt;}
.x5c{left:148.154667pt;}
.x85{left:149.946667pt;}
.x59{left:152.634667pt;}
.x69{left:153.594667pt;}
.x29{left:159.386655pt;}
.x8d{left:162.266667pt;}
.x4{left:163.226655pt;}
.xc{left:165.946655pt;}
.x51{left:168.986655pt;}
.x80{left:180.674667pt;}
.x9{left:184.346655pt;}
.x93{left:191.866655pt;}
.x63{left:198.266655pt;}
.x95{left:208.826655pt;}
.x52{left:212.026655pt;}
.x94{left:217.306655pt;}
.x91{left:224.986655pt;}
.x5b{left:228.826655pt;}
.x14{left:243.266655pt;}
.x3a{left:249.506667pt;}
.x15{left:255.106655pt;}
.x20{left:256.293322pt;}
.x23{left:259.813322pt;}
.x21{left:260.773322pt;}
.x22{left:262.213322pt;}
.x2b{left:272.706667pt;}
.xa{left:311.106655pt;}
.x84{left:312.066667pt;}
.x7{left:314.466655pt;}
.x27{left:318.626655pt;}
.x26{left:322.946655pt;}
.x5{left:327.106655pt;}
.x8{left:336.386655pt;}
.xe{left:346.786655pt;}
.xb{left:351.746655pt;}
.x25{left:353.026655pt;}
.x28{left:358.466655pt;}
.x24{left:361.986655pt;}
.xd{left:363.746655pt;}
.x16{left:365.573322pt;}
.x1a{left:366.879988pt;}
.x18{left:367.839988pt;}
.x82{left:370.466655pt;}
.x17{left:377.733322pt;}
.x19{left:385.786655pt;}
.xf{left:396.893322pt;}
.x40{left:410.813322pt;}
.x37{left:422.813322pt;}
.x53{left:427.613333pt;}
.x65{left:429.373333pt;}
.x71{left:439.613333pt;}
.x6c{left:442.493333pt;}
.x87{left:447.453333pt;}
.x75{left:449.533333pt;}
.x5d{left:454.333333pt;}
.x1c{left:473.573322pt;}
.x3b{left:475.613333pt;}
.x1e{left:480.293322pt;}
.x1b{left:483.013322pt;}
.x1f{left:486.853322pt;}
.x1d{left:489.093322pt;}
.x66{left:492.413333pt;}
.x6d{left:505.053333pt;}
.x5e{left:515.773333pt;}
.x56{left:536.413333pt;}
.x44{left:541.533333pt;}
.x67{left:543.613333pt;}
.x7b{left:546.493333pt;}
.x6e{left:555.933333pt;}
.x72{left:557.213333pt;}
.x5f{left:565.733333pt;}
.x76{left:570.373333pt;}
.x13{left:575.813322pt;}
.x88{left:582.853333pt;}
.x7c{left:597.733333pt;}
.x1{left:718.053322pt;}
.x10{left:720.320000pt;}
}




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