
    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_da78ed211b1b803e3fab4fdd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d2d7a3d158ad980613559ee8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1eded828a84d1d011494ce81.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ef511b832fa865ee1fa97f7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b627b74b3ad90920f55c8a58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_b7c6a092e5b66da75c59592a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_b155ad510288e6057e36ae64.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f64e85023c62467e17fb0472.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_76089250834fa65b9c990e4b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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_4b3a83eeb034b18d1dddbcd4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.612000px;}
.ls22{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls24{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.119520px;}
.lse{letter-spacing:0.135600px;}
.ls16{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.460200px;}
.ls28{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.714000px;}
.lsd{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.900000px;}
.ls23{letter-spacing:2.340000px;}
.ls27{letter-spacing:11.466720px;}
.ls25{letter-spacing:41.706720px;}
.lsc{letter-spacing:80.244000px;}
.lsb{letter-spacing:95.364000px;}
.ls20{letter-spacing:168.636000px;}
.ls21{letter-spacing:172.236000px;}
.ls1e{letter-spacing:310.620000px;}
.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;}
}
.ws15{word-spacing:-60.019800px;}
.ws14{word-spacing:-59.760000px;}
.ws16{word-spacing:-38.880000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.075600px;}
.wsd{word-spacing:-15.059520px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.400000px;}
.ws3{word-spacing:-10.440000px;}
.wse{word-spacing:-10.434000px;}
.ws4{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.711360px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._a{margin-left:-6.990480px;}
._13{margin-left:-5.976000px;}
._e{margin-left:-4.651200px;}
._c{margin-left:-2.993280px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.759040px;}
._d{width:3.827520px;}
._9{width:5.509200px;}
._12{width:6.738240px;}
._8{width:7.852320px;}
._b{width:8.888880px;}
._15{width:10.458000px;}
._17{width:11.481840px;}
._10{width:12.858480px;}
._11{width:13.890960px;}
._14{width:16.780320px;}
._16{width:18.296640px;}
._20{width:19.692000px;}
._21{width:21.979680px;}
._19{width:25.995600px;}
._18{width:38.664720px;}
._1b{width:48.047040px;}
._1d{width:59.112720px;}
._1c{width:60.297840px;}
._1a{width:69.152400px;}
._1f{width:84.502560px;}
._22{width:144.588480px;}
._1e{width:200.197200px;}
.fc5{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(35,35,35);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:5.760000px;}
.y1d7{bottom:5.790000px;}
.y19e{bottom:5.805000px;}
.y9a{bottom:5.940000px;}
.y125{bottom:5.970000px;}
.ya3{bottom:5.985000px;}
.yd6{bottom:6.300000px;}
.y140{bottom:6.480000px;}
.y1d3{bottom:6.660000px;}
.y1a7{bottom:6.840000px;}
.y117{bottom:7.200000px;}
.yf1{bottom:7.380000px;}
.y126{bottom:7.410000px;}
.y178{bottom:7.560000px;}
.yef{bottom:7.920000px;}
.yd4{bottom:8.820000px;}
.y1c1{bottom:10.620000px;}
.y115{bottom:15.660000px;}
.y9e{bottom:25.560000px;}
.ya7{bottom:25.740000px;}
.ya2{bottom:25.785000px;}
.y6{bottom:60.120000px;}
.y191{bottom:87.300000px;}
.y33{bottom:90.900000px;}
.y176{bottom:93.060000px;}
.y14d{bottom:94.500000px;}
.y106{bottom:100.620000px;}
.y1f1{bottom:101.880000px;}
.y67{bottom:102.600000px;}
.y128{bottom:104.040000px;}
.yaf{bottom:105.120000px;}
.ydb{bottom:105.660000px;}
.y190{bottom:107.280000px;}
.y32{bottom:110.700000px;}
.y175{bottom:112.860000px;}
.y14c{bottom:114.300000px;}
.y105{bottom:120.420000px;}
.y8a{bottom:120.600000px;}
.y1f0{bottom:121.680000px;}
.y66{bottom:122.400000px;}
.y1c3{bottom:123.840000px;}
.yae{bottom:125.100000px;}
.yda{bottom:125.460000px;}
.y127{bottom:126.900000px;}
.y18f{bottom:127.080000px;}
.y31{bottom:130.500000px;}
.y174{bottom:132.840000px;}
.y14b{bottom:134.100000px;}
.y1c2{bottom:138.600000px;}
.y104{bottom:140.220000px;}
.y89{bottom:140.400000px;}
.y1ef{bottom:141.480000px;}
.y65{bottom:142.200000px;}
.yad{bottom:144.900000px;}
.yd9{bottom:145.260000px;}
.y18e{bottom:146.880000px;}
.y20b{bottom:147.600000px;}
.y124{bottom:149.760000px;}
.y30{bottom:150.300000px;}
.y173{bottom:152.670000px;}
.y14a{bottom:153.930000px;}
.y1c0{bottom:158.610000px;}
.y103{bottom:160.050000px;}
.y88{bottom:160.230000px;}
.y1ee{bottom:161.310000px;}
.y64{bottom:162.030000px;}
.yac{bottom:164.730000px;}
.yd8{bottom:165.270000px;}
.y172{bottom:167.430000px;}
.y2f{bottom:170.130000px;}
.y123{bottom:172.650000px;}
.y149{bottom:173.910000px;}
.y18d{bottom:175.710000px;}
.y102{bottom:179.850000px;}
.y87{bottom:180.030000px;}
.y1ed{bottom:181.290000px;}
.yab{bottom:184.530000px;}
.yd7{bottom:185.070000px;}
.y171{bottom:187.230000px;}
.y1bf{bottom:189.750000px;}
.y2e{bottom:190.110000px;}
.y63{bottom:190.830000px;}
.y148{bottom:193.710000px;}
.y18c{bottom:195.510000px;}
.y122{bottom:195.690000px;}
.y101{bottom:199.830000px;}
.y1ec{bottom:201.090000px;}
.yaa{bottom:204.330000px;}
.yd5{bottom:204.870000px;}
.y170{bottom:207.030000px;}
.y86{bottom:208.830000px;}
.y1be{bottom:209.550000px;}
.y2d{bottom:209.910000px;}
.y62{bottom:210.810000px;}
.y147{bottom:213.510000px;}
.y18b{bottom:215.490000px;}
.y121{bottom:218.550000px;}
.y100{bottom:219.630000px;}
.y1fd{bottom:219.810000px;}
.y1eb{bottom:220.890000px;}
.ya9{bottom:224.310000px;}
.yd3{bottom:226.470000px;}
.y20a{bottom:226.830000px;}
.y16f{bottom:227.010000px;}
.y85{bottom:228.810000px;}
.y1bd{bottom:229.350000px;}
.y2c{bottom:229.710000px;}
.y61{bottom:230.610000px;}
.y146{bottom:233.310000px;}
.y18a{bottom:235.290000px;}
.ya8{bottom:239.070000px;}
.yff{bottom:239.430000px;}
.y1fc{bottom:239.610000px;}
.y1ea{bottom:240.690000px;}
.y120{bottom:241.410000px;}
.y16e{bottom:246.810000px;}
.y84{bottom:248.610000px;}
.y1bc{bottom:249.330000px;}
.y2b{bottom:249.510000px;}
.y60{bottom:250.410000px;}
.y145{bottom:253.110000px;}
.y189{bottom:255.090000px;}
.yd2{bottom:259.050000px;}
.yfe{bottom:259.230000px;}
.y1fb{bottom:259.410000px;}
.y1e9{bottom:260.490000px;}
.y11f{bottom:264.270000px;}
.y209{bottom:266.610000px;}
.y16d{bottom:267.330000px;}
.y83{bottom:268.410000px;}
.y1bb{bottom:269.130000px;}
.y2a{bottom:269.310000px;}
.y5f{bottom:270.210000px;}
.y144{bottom:273.090000px;}
.y188{bottom:274.890000px;}
.ya6{bottom:278.670000px;}
.yd1{bottom:278.850000px;}
.yfd{bottom:279.030000px;}
.y1fa{bottom:279.210000px;}
.y208{bottom:286.410000px;}
.y11e{bottom:287.130000px;}
.y82{bottom:288.210000px;}
.y1ba{bottom:288.930000px;}
.y29{bottom:289.290000px;}
.y1e8{bottom:289.470000px;}
.y5e{bottom:290.010000px;}
.y143{bottom:292.890000px;}
.y16c{bottom:293.790000px;}
.y187{bottom:294.690000px;}
.yd0{bottom:298.650000px;}
.yfc{bottom:299.010000px;}
.y207{bottom:306.210000px;}
.y142{bottom:307.650000px;}
.y81{bottom:308.010000px;}
.y1b9{bottom:308.730000px;}
.y28{bottom:309.090000px;}
.y1e7{bottom:309.270000px;}
.y5d{bottom:309.990000px;}
.y16b{bottom:313.590000px;}
.y186{bottom:314.670000px;}
.ya5{bottom:318.450000px;}
.y1f9{bottom:318.990000px;}
.y206{bottom:326.010000px;}
.y141{bottom:327.450000px;}
.yfb{bottom:327.810000px;}
.y27{bottom:328.890000px;}
.y1e6{bottom:329.070000px;}
.y5c{bottom:329.790000px;}
.y11d{bottom:332.850000px;}
.y16a{bottom:333.390000px;}
.y185{bottom:334.470000px;}
.y80{bottom:336.990000px;}
.y1b8{bottom:337.530000px;}
.ycf{bottom:338.250000px;}
.y1f8{bottom:338.790000px;}
.y205{bottom:345.990000px;}
.y13f{bottom:347.250000px;}
.yfa{bottom:347.610000px;}
.y26{bottom:348.690000px;}
.y1e5{bottom:348.870000px;}
.y5b{bottom:349.590000px;}
.y184{bottom:351.030000px;}
.y169{bottom:353.190000px;}
.y11c{bottom:355.710000px;}
.y7f{bottom:356.790000px;}
.y1b7{bottom:357.510000px;}
.ya4{bottom:358.050000px;}
.yce{bottom:358.230000px;}
.y1f7{bottom:358.590000px;}
.y204{bottom:365.790000px;}
.yf9{bottom:367.410000px;}
.y13e{bottom:368.310000px;}
.y25{bottom:368.490000px;}
.y1e4{bottom:368.670000px;}
.y5a{bottom:369.390000px;}
.y168{bottom:372.990000px;}
.y7e{bottom:376.590000px;}
.y1b6{bottom:377.310000px;}
.ycd{bottom:378.030000px;}
.y1f6{bottom:378.390000px;}
.y11b{bottom:378.570000px;}
.y203{bottom:385.590000px;}
.yf8{bottom:387.210000px;}
.y13d{bottom:388.110000px;}
.y24{bottom:388.470000px;}
.y1e3{bottom:388.650000px;}
.y59{bottom:389.190000px;}
.y167{bottom:392.970000px;}
.y7d{bottom:396.390000px;}
.y1b5{bottom:397.110000px;}
.ya1{bottom:397.650000px;}
.ycc{bottom:397.830000px;}
.y1f5{bottom:398.190000px;}
.y11a{bottom:401.475000px;}
.y202{bottom:405.435000px;}
.yf7{bottom:407.235000px;}
.y23{bottom:408.315000px;}
.y1e2{bottom:408.495000px;}
.y13c{bottom:408.855000px;}
.y58{bottom:409.215000px;}
.y166{bottom:412.815000px;}
.y7c{bottom:416.235000px;}
.y1b4{bottom:416.955000px;}
.y1f4{bottom:418.215000px;}
.yf6{bottom:421.995000px;}
.y119{bottom:424.335000px;}
.y201{bottom:425.235000px;}
.ycb{bottom:426.675000px;}
.y22{bottom:428.115000px;}
.y1e1{bottom:428.295000px;}
.y165{bottom:432.615000px;}
.y13b{bottom:435.135000px;}
.y7b{bottom:436.215000px;}
.y1b3{bottom:436.755000px;}
.y57{bottom:438.015000px;}
.ya0{bottom:438.195000px;}
.yf5{bottom:444.855000px;}
.y200{bottom:445.215000px;}
.yca{bottom:446.475000px;}
.y118{bottom:447.195000px;}
.y21{bottom:447.915000px;}
.y1e0{bottom:448.095000px;}
.y164{bottom:452.415000px;}
.y13a{bottom:454.935000px;}
.y7a{bottom:456.015000px;}
.y1b2{bottom:456.735000px;}
.y56{bottom:457.815000px;}
.y9f{bottom:458.715000px;}
.y1ff{bottom:465.015000px;}
.yc9{bottom:466.455000px;}
.y20{bottom:467.715000px;}
.yf4{bottom:467.895000px;}
.y116{bottom:470.235000px;}
.y163{bottom:472.215000px;}
.y139{bottom:474.915000px;}
.y79{bottom:475.815000px;}
.y1b1{bottom:476.535000px;}
.y55{bottom:477.615000px;}
.y9d{bottom:478.695000px;}
.y1fe{bottom:484.815000px;}
.yc8{bottom:486.255000px;}
.y1f{bottom:487.695000px;}
.y1df{bottom:487.875000px;}
.yf3{bottom:490.755000px;}
.y162{bottom:492.195000px;}
.y114{bottom:493.815000px;}
.y138{bottom:494.715000px;}
.y1b0{bottom:496.335000px;}
.y54{bottom:497.415000px;}
.y78{bottom:504.615000px;}
.yc7{bottom:506.055000px;}
.y1f3{bottom:506.415000px;}
.y1e{bottom:507.495000px;}
.y1de{bottom:507.675000px;}
.y161{bottom:508.755000px;}
.y137{bottom:511.095000px;}
.yf2{bottom:513.795000px;}
.y1af{bottom:516.135000px;}
.y53{bottom:517.395000px;}
.y9b{bottom:519.015000px;}
.y77{bottom:524.415000px;}
.yc6{bottom:525.855000px;}
.y1f2{bottom:526.395000px;}
.y1d{bottom:527.295000px;}
.y1dd{bottom:527.475000px;}
.y1ae{bottom:535.935000px;}
.yf0{bottom:537.375000px;}
.y99{bottom:539.535000px;}
.y113{bottom:540.075000px;}
.y1dc{bottom:542.235000px;}
.y76{bottom:544.395000px;}
.y52{bottom:546.195000px;}
.y1c{bottom:547.095000px;}
.yc5{bottom:550.875000px;}
.y112{bottom:559.875000px;}
.yee{bottom:561.855000px;}
.y1db{bottom:563.115000px;}
.y75{bottom:564.195000px;}
.yc4{bottom:565.635000px;}
.y51{bottom:565.995000px;}
.y1b{bottom:566.895000px;}
.y1ad{bottom:570.675000px;}
.y160{bottom:573.555000px;}
.y111{bottom:579.675000px;}
.yc3{bottom:580.395000px;}
.y1da{bottom:583.815000px;}
.y74{bottom:583.995000px;}
.y50{bottom:585.795000px;}
.y1ac{bottom:590.475000px;}
.yed{bottom:592.635000px;}
.y15f{bottom:593.355000px;}
.y110{bottom:599.475000px;}
.yc2{bottom:600.195000px;}
.y73{bottom:603.795000px;}
.y1d9{bottom:604.515000px;}
.y4f{bottom:605.595000px;}
.y1a{bottom:607.035000px;}
.y183{bottom:608.835000px;}
.y1ab{bottom:610.275000px;}
.yec{bottom:612.435000px;}
.y15e{bottom:613.155000px;}
.y10f{bottom:619.275000px;}
.yc1{bottom:619.995000px;}
.y72{bottom:623.595000px;}
.y1d8{bottom:625.395000px;}
.y4e{bottom:625.575000px;}
.y19{bottom:626.835000px;}
.y182{bottom:628.815000px;}
.y1aa{bottom:630.075000px;}
.yeb{bottom:632.235000px;}
.y15d{bottom:632.955000px;}
.y10e{bottom:639.255000px;}
.yc0{bottom:639.795000px;}
.y71{bottom:643.575000px;}
.y98{bottom:645.375000px;}
.y1d6{bottom:646.095000px;}
.y181{bottom:648.615000px;}
.y1a9{bottom:650.085000px;}
.yea{bottom:652.065000px;}
.y15c{bottom:652.965000px;}
.y4d{bottom:654.405000px;}
.y18{bottom:655.665000px;}
.y10d{bottom:659.085000px;}
.ybf{bottom:659.805000px;}
.y70{bottom:663.405000px;}
.y1d5{bottom:665.925000px;}
.y180{bottom:668.445000px;}
.y1a8{bottom:670.605000px;}
.ye9{bottom:672.045000px;}
.y15b{bottom:672.765000px;}
.y4c{bottom:674.205000px;}
.y17{bottom:675.645000px;}
.y10c{bottom:678.885000px;}
.ybe{bottom:679.605000px;}
.y6f{bottom:683.205000px;}
.y1d4{bottom:687.525000px;}
.y17f{bottom:688.245000px;}
.y1a6{bottom:691.125000px;}
.ye8{bottom:691.845000px;}
.y15a{bottom:692.565000px;}
.y4b{bottom:694.005000px;}
.y16{bottom:695.445000px;}
.y10b{bottom:698.685000px;}
.ybd{bottom:699.405000px;}
.y6e{bottom:703.005000px;}
.ye7{bottom:706.605000px;}
.y17e{bottom:708.045000px;}
.y1d2{bottom:709.125000px;}
.y159{bottom:712.365000px;}
.y4a{bottom:713.805000px;}
.y15{bottom:715.245000px;}
.y10a{bottom:718.485000px;}
.ybc{bottom:719.205000px;}
.y6d{bottom:722.805000px;}
.ye6{bottom:726.405000px;}
.y158{bottom:732.165000px;}
.y49{bottom:733.785000px;}
.y14{bottom:735.045000px;}
.y1d1{bottom:736.305000px;}
.y1a5{bottom:738.285000px;}
.y109{bottom:738.465000px;}
.ybb{bottom:739.725000px;}
.y6c{bottom:742.785000px;}
.y17d{bottom:746.025000px;}
.ye5{bottom:746.205000px;}
.y48{bottom:753.585000px;}
.y13{bottom:754.845000px;}
.y1d0{bottom:756.285000px;}
.y1a4{bottom:758.085000px;}
.y108{bottom:758.265000px;}
.y157{bottom:761.145000px;}
.y6b{bottom:762.585000px;}
.ye4{bottom:766.185000px;}
.y17c{bottom:769.245000px;}
.yba{bottom:769.965000px;}
.y47{bottom:773.385000px;}
.y12{bottom:774.825000px;}
.y1cf{bottom:776.085000px;}
.y107{bottom:778.065000px;}
.y156{bottom:780.945000px;}
.y6a{bottom:782.385000px;}
.ye3{bottom:785.985000px;}
.yb9{bottom:789.765000px;}
.y17b{bottom:792.465000px;}
.y46{bottom:793.185000px;}
.y11{bottom:794.625000px;}
.y1ce{bottom:795.885000px;}
.y1a3{bottom:797.865000px;}
.y155{bottom:800.745000px;}
.y69{bottom:802.185000px;}
.ye2{bottom:806.505000px;}
.yb8{bottom:809.565000px;}
.y45{bottom:812.985000px;}
.y10{bottom:814.425000px;}
.y17a{bottom:815.505000px;}
.y1cd{bottom:815.685000px;}
.y1a2{bottom:817.665000px;}
.y154{bottom:820.545000px;}
.y68{bottom:821.985000px;}
.yb7{bottom:829.545000px;}
.y97{bottom:832.965000px;}
.yf{bottom:834.225000px;}
.y1cc{bottom:835.485000px;}
.y1a1{bottom:837.465000px;}
.y179{bottom:838.725000px;}
.y153{bottom:840.345000px;}
.y44{bottom:841.965000px;}
.y96{bottom:852.765000px;}
.ye{bottom:854.025000px;}
.y1cb{bottom:855.465000px;}
.y136{bottom:855.825000px;}
.y1a0{bottom:857.265000px;}
.yb6{bottom:858.345000px;}
.y152{bottom:860.325000px;}
.y43{bottom:861.765000px;}
.y177{bottom:862.665000px;}
.y95{bottom:872.565000px;}
.y1ca{bottom:875.265000px;}
.y135{bottom:875.625000px;}
.yd{bottom:876.165000px;}
.y19f{bottom:877.245000px;}
.yb5{bottom:878.145000px;}
.y151{bottom:880.125000px;}
.y42{bottom:881.565000px;}
.y19d{bottom:892.005000px;}
.y94{bottom:892.365000px;}
.y1c9{bottom:895.065000px;}
.y134{bottom:895.425000px;}
.yb4{bottom:897.990000px;}
.y150{bottom:899.970000px;}
.yc{bottom:901.230000px;}
.y41{bottom:901.410000px;}
.y19c{bottom:911.850000px;}
.y93{bottom:912.210000px;}
.y14f{bottom:914.730000px;}
.y1c8{bottom:914.910000px;}
.y133{bottom:915.270000px;}
.yb3{bottom:917.790000px;}
.yb{bottom:921.210000px;}
.y92{bottom:932.190000px;}
.y14e{bottom:934.530000px;}
.y1c7{bottom:934.710000px;}
.y132{bottom:935.070000px;}
.ya{bottom:936.330000px;}
.yb2{bottom:937.770000px;}
.y19b{bottom:939.570000px;}
.y40{bottom:941.190000px;}
.y91{bottom:951.990000px;}
.y1c6{bottom:954.690000px;}
.y131{bottom:955.050000px;}
.y9{bottom:957.570000px;}
.y19a{bottom:959.550000px;}
.y3f{bottom:960.990000px;}
.y1c5{bottom:969.450000px;}
.y130{bottom:969.810000px;}
.y90{bottom:971.790000px;}
.yb1{bottom:977.370000px;}
.y199{bottom:979.350000px;}
.y3e{bottom:980.790000px;}
.y8{bottom:980.970000px;}
.y1c4{bottom:989.250000px;}
.y8f{bottom:991.590000px;}
.y12f{bottom:992.670000px;}
.yb0{bottom:997.170000px;}
.y198{bottom:999.150000px;}
.y3d{bottom:1000.590000px;}
.y8e{bottom:1011.390000px;}
.ye1{bottom:1011.930000px;}
.y7{bottom:1012.830000px;}
.y12e{bottom:1015.530000px;}
.y197{bottom:1018.950000px;}
.y3c{bottom:1020.390000px;}
.y8d{bottom:1031.370000px;}
.ye0{bottom:1031.910000px;}
.y12d{bottom:1038.390000px;}
.y196{bottom:1038.750000px;}
.y3b{bottom:1040.370000px;}
.y5{bottom:1051.170000px;}
.ydf{bottom:1051.710000px;}
.y195{bottom:1058.730000px;}
.y3a{bottom:1060.170000px;}
.y12c{bottom:1061.250000px;}
.y8c{bottom:1070.970000px;}
.yde{bottom:1071.510000px;}
.y194{bottom:1078.530000px;}
.y39{bottom:1079.970000px;}
.y4{bottom:1081.950000px;}
.y12b{bottom:1084.110000px;}
.y8b{bottom:1090.770000px;}
.ydd{bottom:1091.310000px;}
.y193{bottom:1093.290000px;}
.y38{bottom:1099.770000px;}
.y12a{bottom:1106.970000px;}
.ydc{bottom:1112.010000px;}
.y3{bottom:1112.730000px;}
.y192{bottom:1113.090000px;}
.y37{bottom:1119.570000px;}
.y129{bottom:1129.830000px;}
.y36{bottom:1139.550000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1170.000000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.hc{height:19.800000px;}
.h19{height:19.836000px;}
.hb{height:19.980000px;}
.h11{height:20.016000px;}
.h22{height:20.700000px;}
.h13{height:20.880000px;}
.h1a{height:21.060000px;}
.h20{height:21.240000px;}
.h17{height:22.860000px;}
.h18{height:22.896000px;}
.h16{height:23.040000px;}
.h1e{height:23.220000px;}
.h10{height:23.760000px;}
.h15{height:24.120000px;}
.h21{height:24.660000px;}
.h12{height:25.920000px;}
.h7{height:27.147656px;}
.hd{height:39.600000px;}
.hf{height:39.780000px;}
.he{height:39.816000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h23{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h1c{height:47.230313px;}
.h14{height:48.027656px;}
.h1b{height:48.312422px;}
.ha{height:49.255313px;}
.h1d{height:52.925625px;}
.h1f{height:53.045625px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w36{width:37.296000px;}
.wa{width:63.576000px;}
.wb{width:63.720000px;}
.wc{width:63.756000px;}
.wd{width:63.900000px;}
.w35{width:67.176000px;}
.w25{width:68.796000px;}
.we{width:74.376000px;}
.w1f{width:81.900000px;}
.w10{width:84.996000px;}
.wf{width:85.140000px;}
.w22{width:85.176000px;}
.w11{width:86.796000px;}
.w21{width:95.580000px;}
.w18{width:103.356000px;}
.w17{width:103.500000px;}
.w16{width:103.536000px;}
.w26{width:106.020000px;}
.w23{width:106.200000px;}
.w27{width:106.416000px;}
.w15{width:113.580000px;}
.w1a{width:113.940000px;}
.w19{width:113.976000px;}
.w28{width:116.820000px;}
.w37{width:127.980000px;}
.w14{width:135.000000px;}
.w2f{width:144.180000px;}
.w30{width:144.216000px;}
.w3d{width:148.860000px;}
.w2d{width:153.720000px;}
.w3c{width:159.510000px;}
.w1e{width:162.570000px;}
.w2e{width:163.110000px;}
.w24{width:170.130000px;}
.w3b{width:180.750000px;}
.w13{width:188.850000px;}
.w1c{width:194.250000px;}
.w3a{width:201.630000px;}
.w20{width:201.855000px;}
.w31{width:212.970000px;}
.w3{width:215.715000px;}
.w2c{width:216.615000px;}
.w2a{width:222.690000px;}
.w1b{width:229.890000px;}
.w1d{width:244.650000px;}
.w4{width:270.030000px;}
.w5{width:270.075000px;}
.w34{width:286.770000px;}
.w2b{width:305.310000px;}
.w8{width:350.490000px;}
.w7{width:351.615000px;}
.w12{width:374.115000px;}
.w38{width:429.225000px;}
.w29{width:475.095000px;}
.w33{width:632.805000px;}
.w39{width:690.765000px;}
.w9{width:702.105000px;}
.w32{width:702.285000px;}
.w6{width:755.820000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:54.179987px;}
.x3{left:68.580000px;}
.xb{left:79.020000px;}
.x42{left:80.999987px;}
.x23{left:82.620000px;}
.xa{left:92.375987px;}
.x8{left:95.436000px;}
.x7{left:96.515987px;}
.x30{left:97.596000px;}
.x40{left:101.196000px;}
.x2{left:108.035987px;}
.x1c{left:112.176000px;}
.x35{left:114.336000px;}
.x2a{left:117.036000px;}
.x16{left:120.636000px;}
.x3a{left:130.176000px;}
.xc{left:142.596000px;}
.x32{left:162.029987px;}
.xd{left:206.310000px;}
.x2b{left:223.050000px;}
.x3f{left:231.870000px;}
.x17{left:234.210000px;}
.xe{left:270.075000px;}
.x36{left:277.455000px;}
.x5{left:284.295000px;}
.x41{left:302.835000px;}
.x22{left:322.994987px;}
.x29{left:324.074987px;}
.x2c{left:329.475000px;}
.xf{left:333.975000px;}
.x18{left:337.755000px;}
.x1d{left:342.075000px;}
.x21{left:349.094987px;}
.x28{left:359.714987px;}
.x24{left:380.055000px;}
.x2d{left:393.195000px;}
.x10{left:397.695000px;}
.x33{left:414.075000px;}
.x3b{left:416.955000px;}
.x37{left:421.635000px;}
.x19{left:441.255000px;}
.x9{left:447.045000px;}
.x25{left:465.225000px;}
.x11{left:472.065000px;}
.x2e{left:478.365000px;}
.x3c{left:484.125000px;}
.x1e{left:536.325000px;}
.x1a{left:544.605000px;}
.x6{left:554.325000px;}
.x12{left:557.205000px;}
.x38{left:565.845000px;}
.x26{left:571.425000px;}
.x31{left:572.685000px;}
.x2f{left:573.945000px;}
.x3d{left:597.705000px;}
.x34{left:630.690000px;}
.x3e{left:635.010000px;}
.x13{left:642.210000px;}
.x1b{left:658.590000px;}
.x15{left:660.030000px;}
.x1f{left:699.090000px;}
.x14{left:727.350000px;}
.x39{left:735.989987px;}
.x27{left:739.049987px;}
.x20{left:740.669987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.120533pt;}
.ls16{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.409067pt;}
.ls28{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.634667pt;}
.lsd{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls23{letter-spacing:2.080000pt;}
.ls27{letter-spacing:10.192640pt;}
.ls25{letter-spacing:37.072640pt;}
.lsc{letter-spacing:71.328000pt;}
.lsb{letter-spacing:84.768000pt;}
.ls20{letter-spacing:149.898667pt;}
.ls21{letter-spacing:153.098667pt;}
.ls1e{letter-spacing:276.106667pt;}
.ws15{word-spacing:-53.350933pt;}
.ws14{word-spacing:-53.120000pt;}
.ws16{word-spacing:-34.560000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.400533pt;}
.wsd{word-spacing:-13.386240pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.800000pt;}
.ws3{word-spacing:-9.280000pt;}
.wse{word-spacing:-9.274667pt;}
.ws4{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.632320pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._a{margin-left:-6.213760pt;}
._13{margin-left:-5.312000pt;}
._e{margin-left:-4.134400pt;}
._c{margin-left:-2.660693pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.452480pt;}
._d{width:3.402240pt;}
._9{width:4.897067pt;}
._12{width:5.989547pt;}
._8{width:6.979840pt;}
._b{width:7.901227pt;}
._15{width:9.296000pt;}
._17{width:10.206080pt;}
._10{width:11.429760pt;}
._11{width:12.347520pt;}
._14{width:14.915840pt;}
._16{width:16.263680pt;}
._20{width:17.504000pt;}
._21{width:19.537493pt;}
._19{width:23.107200pt;}
._18{width:34.368640pt;}
._1b{width:42.708480pt;}
._1d{width:52.544640pt;}
._1c{width:53.598080pt;}
._1a{width:61.468800pt;}
._1f{width:75.113387pt;}
._22{width:128.523093pt;}
._1e{width:177.953067pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:5.120000pt;}
.y1d7{bottom:5.146667pt;}
.y19e{bottom:5.160000pt;}
.y9a{bottom:5.280000pt;}
.y125{bottom:5.306667pt;}
.ya3{bottom:5.320000pt;}
.yd6{bottom:5.600000pt;}
.y140{bottom:5.760000pt;}
.y1d3{bottom:5.920000pt;}
.y1a7{bottom:6.080000pt;}
.y117{bottom:6.400000pt;}
.yf1{bottom:6.560000pt;}
.y126{bottom:6.586667pt;}
.y178{bottom:6.720000pt;}
.yef{bottom:7.040000pt;}
.yd4{bottom:7.840000pt;}
.y1c1{bottom:9.440000pt;}
.y115{bottom:13.920000pt;}
.y9e{bottom:22.720000pt;}
.ya7{bottom:22.880000pt;}
.ya2{bottom:22.920000pt;}
.y6{bottom:53.440000pt;}
.y191{bottom:77.600000pt;}
.y33{bottom:80.800000pt;}
.y176{bottom:82.720000pt;}
.y14d{bottom:84.000000pt;}
.y106{bottom:89.440000pt;}
.y1f1{bottom:90.560000pt;}
.y67{bottom:91.200000pt;}
.y128{bottom:92.480000pt;}
.yaf{bottom:93.440000pt;}
.ydb{bottom:93.920000pt;}
.y190{bottom:95.360000pt;}
.y32{bottom:98.400000pt;}
.y175{bottom:100.320000pt;}
.y14c{bottom:101.600000pt;}
.y105{bottom:107.040000pt;}
.y8a{bottom:107.200000pt;}
.y1f0{bottom:108.160000pt;}
.y66{bottom:108.800000pt;}
.y1c3{bottom:110.080000pt;}
.yae{bottom:111.200000pt;}
.yda{bottom:111.520000pt;}
.y127{bottom:112.800000pt;}
.y18f{bottom:112.960000pt;}
.y31{bottom:116.000000pt;}
.y174{bottom:118.080000pt;}
.y14b{bottom:119.200000pt;}
.y1c2{bottom:123.200000pt;}
.y104{bottom:124.640000pt;}
.y89{bottom:124.800000pt;}
.y1ef{bottom:125.760000pt;}
.y65{bottom:126.400000pt;}
.yad{bottom:128.800000pt;}
.yd9{bottom:129.120000pt;}
.y18e{bottom:130.560000pt;}
.y20b{bottom:131.200000pt;}
.y124{bottom:133.120000pt;}
.y30{bottom:133.600000pt;}
.y173{bottom:135.706667pt;}
.y14a{bottom:136.826667pt;}
.y1c0{bottom:140.986667pt;}
.y103{bottom:142.266667pt;}
.y88{bottom:142.426667pt;}
.y1ee{bottom:143.386667pt;}
.y64{bottom:144.026667pt;}
.yac{bottom:146.426667pt;}
.yd8{bottom:146.906667pt;}
.y172{bottom:148.826667pt;}
.y2f{bottom:151.226667pt;}
.y123{bottom:153.466667pt;}
.y149{bottom:154.586667pt;}
.y18d{bottom:156.186667pt;}
.y102{bottom:159.866667pt;}
.y87{bottom:160.026667pt;}
.y1ed{bottom:161.146667pt;}
.yab{bottom:164.026667pt;}
.yd7{bottom:164.506667pt;}
.y171{bottom:166.426667pt;}
.y1bf{bottom:168.666667pt;}
.y2e{bottom:168.986667pt;}
.y63{bottom:169.626667pt;}
.y148{bottom:172.186667pt;}
.y18c{bottom:173.786667pt;}
.y122{bottom:173.946667pt;}
.y101{bottom:177.626667pt;}
.y1ec{bottom:178.746667pt;}
.yaa{bottom:181.626667pt;}
.yd5{bottom:182.106667pt;}
.y170{bottom:184.026667pt;}
.y86{bottom:185.626667pt;}
.y1be{bottom:186.266667pt;}
.y2d{bottom:186.586667pt;}
.y62{bottom:187.386667pt;}
.y147{bottom:189.786667pt;}
.y18b{bottom:191.546667pt;}
.y121{bottom:194.266667pt;}
.y100{bottom:195.226667pt;}
.y1fd{bottom:195.386667pt;}
.y1eb{bottom:196.346667pt;}
.ya9{bottom:199.386667pt;}
.yd3{bottom:201.306667pt;}
.y20a{bottom:201.626667pt;}
.y16f{bottom:201.786667pt;}
.y85{bottom:203.386667pt;}
.y1bd{bottom:203.866667pt;}
.y2c{bottom:204.186667pt;}
.y61{bottom:204.986667pt;}
.y146{bottom:207.386667pt;}
.y18a{bottom:209.146667pt;}
.ya8{bottom:212.506667pt;}
.yff{bottom:212.826667pt;}
.y1fc{bottom:212.986667pt;}
.y1ea{bottom:213.946667pt;}
.y120{bottom:214.586667pt;}
.y16e{bottom:219.386667pt;}
.y84{bottom:220.986667pt;}
.y1bc{bottom:221.626667pt;}
.y2b{bottom:221.786667pt;}
.y60{bottom:222.586667pt;}
.y145{bottom:224.986667pt;}
.y189{bottom:226.746667pt;}
.yd2{bottom:230.266667pt;}
.yfe{bottom:230.426667pt;}
.y1fb{bottom:230.586667pt;}
.y1e9{bottom:231.546667pt;}
.y11f{bottom:234.906667pt;}
.y209{bottom:236.986667pt;}
.y16d{bottom:237.626667pt;}
.y83{bottom:238.586667pt;}
.y1bb{bottom:239.226667pt;}
.y2a{bottom:239.386667pt;}
.y5f{bottom:240.186667pt;}
.y144{bottom:242.746667pt;}
.y188{bottom:244.346667pt;}
.ya6{bottom:247.706667pt;}
.yd1{bottom:247.866667pt;}
.yfd{bottom:248.026667pt;}
.y1fa{bottom:248.186667pt;}
.y208{bottom:254.586667pt;}
.y11e{bottom:255.226667pt;}
.y82{bottom:256.186667pt;}
.y1ba{bottom:256.826667pt;}
.y29{bottom:257.146667pt;}
.y1e8{bottom:257.306667pt;}
.y5e{bottom:257.786667pt;}
.y143{bottom:260.346667pt;}
.y16c{bottom:261.146667pt;}
.y187{bottom:261.946667pt;}
.yd0{bottom:265.466667pt;}
.yfc{bottom:265.786667pt;}
.y207{bottom:272.186667pt;}
.y142{bottom:273.466667pt;}
.y81{bottom:273.786667pt;}
.y1b9{bottom:274.426667pt;}
.y28{bottom:274.746667pt;}
.y1e7{bottom:274.906667pt;}
.y5d{bottom:275.546667pt;}
.y16b{bottom:278.746667pt;}
.y186{bottom:279.706667pt;}
.ya5{bottom:283.066667pt;}
.y1f9{bottom:283.546667pt;}
.y206{bottom:289.786667pt;}
.y141{bottom:291.066667pt;}
.yfb{bottom:291.386667pt;}
.y27{bottom:292.346667pt;}
.y1e6{bottom:292.506667pt;}
.y5c{bottom:293.146667pt;}
.y11d{bottom:295.866667pt;}
.y16a{bottom:296.346667pt;}
.y185{bottom:297.306667pt;}
.y80{bottom:299.546667pt;}
.y1b8{bottom:300.026667pt;}
.ycf{bottom:300.666667pt;}
.y1f8{bottom:301.146667pt;}
.y205{bottom:307.546667pt;}
.y13f{bottom:308.666667pt;}
.yfa{bottom:308.986667pt;}
.y26{bottom:309.946667pt;}
.y1e5{bottom:310.106667pt;}
.y5b{bottom:310.746667pt;}
.y184{bottom:312.026667pt;}
.y169{bottom:313.946667pt;}
.y11c{bottom:316.186667pt;}
.y7f{bottom:317.146667pt;}
.y1b7{bottom:317.786667pt;}
.ya4{bottom:318.266667pt;}
.yce{bottom:318.426667pt;}
.y1f7{bottom:318.746667pt;}
.y204{bottom:325.146667pt;}
.yf9{bottom:326.586667pt;}
.y13e{bottom:327.386667pt;}
.y25{bottom:327.546667pt;}
.y1e4{bottom:327.706667pt;}
.y5a{bottom:328.346667pt;}
.y168{bottom:331.546667pt;}
.y7e{bottom:334.746667pt;}
.y1b6{bottom:335.386667pt;}
.ycd{bottom:336.026667pt;}
.y1f6{bottom:336.346667pt;}
.y11b{bottom:336.506667pt;}
.y203{bottom:342.746667pt;}
.yf8{bottom:344.186667pt;}
.y13d{bottom:344.986667pt;}
.y24{bottom:345.306667pt;}
.y1e3{bottom:345.466667pt;}
.y59{bottom:345.946667pt;}
.y167{bottom:349.306667pt;}
.y7d{bottom:352.346667pt;}
.y1b5{bottom:352.986667pt;}
.ya1{bottom:353.466667pt;}
.ycc{bottom:353.626667pt;}
.y1f5{bottom:353.946667pt;}
.y11a{bottom:356.866667pt;}
.y202{bottom:360.386667pt;}
.yf7{bottom:361.986667pt;}
.y23{bottom:362.946667pt;}
.y1e2{bottom:363.106667pt;}
.y13c{bottom:363.426667pt;}
.y58{bottom:363.746667pt;}
.y166{bottom:366.946667pt;}
.y7c{bottom:369.986667pt;}
.y1b4{bottom:370.626667pt;}
.y1f4{bottom:371.746667pt;}
.yf6{bottom:375.106667pt;}
.y119{bottom:377.186667pt;}
.y201{bottom:377.986667pt;}
.ycb{bottom:379.266667pt;}
.y22{bottom:380.546667pt;}
.y1e1{bottom:380.706667pt;}
.y165{bottom:384.546667pt;}
.y13b{bottom:386.786667pt;}
.y7b{bottom:387.746667pt;}
.y1b3{bottom:388.226667pt;}
.y57{bottom:389.346667pt;}
.ya0{bottom:389.506667pt;}
.yf5{bottom:395.426667pt;}
.y200{bottom:395.746667pt;}
.yca{bottom:396.866667pt;}
.y118{bottom:397.506667pt;}
.y21{bottom:398.146667pt;}
.y1e0{bottom:398.306667pt;}
.y164{bottom:402.146667pt;}
.y13a{bottom:404.386667pt;}
.y7a{bottom:405.346667pt;}
.y1b2{bottom:405.986667pt;}
.y56{bottom:406.946667pt;}
.y9f{bottom:407.746667pt;}
.y1ff{bottom:413.346667pt;}
.yc9{bottom:414.626667pt;}
.y20{bottom:415.746667pt;}
.yf4{bottom:415.906667pt;}
.y116{bottom:417.986667pt;}
.y163{bottom:419.746667pt;}
.y139{bottom:422.146667pt;}
.y79{bottom:422.946667pt;}
.y1b1{bottom:423.586667pt;}
.y55{bottom:424.546667pt;}
.y9d{bottom:425.506667pt;}
.y1fe{bottom:430.946667pt;}
.yc8{bottom:432.226667pt;}
.y1f{bottom:433.506667pt;}
.y1df{bottom:433.666667pt;}
.yf3{bottom:436.226667pt;}
.y162{bottom:437.506667pt;}
.y114{bottom:438.946667pt;}
.y138{bottom:439.746667pt;}
.y1b0{bottom:441.186667pt;}
.y54{bottom:442.146667pt;}
.y78{bottom:448.546667pt;}
.yc7{bottom:449.826667pt;}
.y1f3{bottom:450.146667pt;}
.y1e{bottom:451.106667pt;}
.y1de{bottom:451.266667pt;}
.y161{bottom:452.226667pt;}
.y137{bottom:454.306667pt;}
.yf2{bottom:456.706667pt;}
.y1af{bottom:458.786667pt;}
.y53{bottom:459.906667pt;}
.y9b{bottom:461.346667pt;}
.y77{bottom:466.146667pt;}
.yc6{bottom:467.426667pt;}
.y1f2{bottom:467.906667pt;}
.y1d{bottom:468.706667pt;}
.y1dd{bottom:468.866667pt;}
.y1ae{bottom:476.386667pt;}
.yf0{bottom:477.666667pt;}
.y99{bottom:479.586667pt;}
.y113{bottom:480.066667pt;}
.y1dc{bottom:481.986667pt;}
.y76{bottom:483.906667pt;}
.y52{bottom:485.506667pt;}
.y1c{bottom:486.306667pt;}
.yc5{bottom:489.666667pt;}
.y112{bottom:497.666667pt;}
.yee{bottom:499.426667pt;}
.y1db{bottom:500.546667pt;}
.y75{bottom:501.506667pt;}
.yc4{bottom:502.786667pt;}
.y51{bottom:503.106667pt;}
.y1b{bottom:503.906667pt;}
.y1ad{bottom:507.266667pt;}
.y160{bottom:509.826667pt;}
.y111{bottom:515.266667pt;}
.yc3{bottom:515.906667pt;}
.y1da{bottom:518.946667pt;}
.y74{bottom:519.106667pt;}
.y50{bottom:520.706667pt;}
.y1ac{bottom:524.866667pt;}
.yed{bottom:526.786667pt;}
.y15f{bottom:527.426667pt;}
.y110{bottom:532.866667pt;}
.yc2{bottom:533.506667pt;}
.y73{bottom:536.706667pt;}
.y1d9{bottom:537.346667pt;}
.y4f{bottom:538.306667pt;}
.y1a{bottom:539.586667pt;}
.y183{bottom:541.186667pt;}
.y1ab{bottom:542.466667pt;}
.yec{bottom:544.386667pt;}
.y15e{bottom:545.026667pt;}
.y10f{bottom:550.466667pt;}
.yc1{bottom:551.106667pt;}
.y72{bottom:554.306667pt;}
.y1d8{bottom:555.906667pt;}
.y4e{bottom:556.066667pt;}
.y19{bottom:557.186667pt;}
.y182{bottom:558.946667pt;}
.y1aa{bottom:560.066667pt;}
.yeb{bottom:561.986667pt;}
.y15d{bottom:562.626667pt;}
.y10e{bottom:568.226667pt;}
.yc0{bottom:568.706667pt;}
.y71{bottom:572.066667pt;}
.y98{bottom:573.666667pt;}
.y1d6{bottom:574.306667pt;}
.y181{bottom:576.546667pt;}
.y1a9{bottom:577.853333pt;}
.yea{bottom:579.613333pt;}
.y15c{bottom:580.413333pt;}
.y4d{bottom:581.693333pt;}
.y18{bottom:582.813333pt;}
.y10d{bottom:585.853333pt;}
.ybf{bottom:586.493333pt;}
.y70{bottom:589.693333pt;}
.y1d5{bottom:591.933333pt;}
.y180{bottom:594.173333pt;}
.y1a8{bottom:596.093333pt;}
.ye9{bottom:597.373333pt;}
.y15b{bottom:598.013333pt;}
.y4c{bottom:599.293333pt;}
.y17{bottom:600.573333pt;}
.y10c{bottom:603.453333pt;}
.ybe{bottom:604.093333pt;}
.y6f{bottom:607.293333pt;}
.y1d4{bottom:611.133333pt;}
.y17f{bottom:611.773333pt;}
.y1a6{bottom:614.333333pt;}
.ye8{bottom:614.973333pt;}
.y15a{bottom:615.613333pt;}
.y4b{bottom:616.893333pt;}
.y16{bottom:618.173333pt;}
.y10b{bottom:621.053333pt;}
.ybd{bottom:621.693333pt;}
.y6e{bottom:624.893333pt;}
.ye7{bottom:628.093333pt;}
.y17e{bottom:629.373333pt;}
.y1d2{bottom:630.333333pt;}
.y159{bottom:633.213333pt;}
.y4a{bottom:634.493333pt;}
.y15{bottom:635.773333pt;}
.y10a{bottom:638.653333pt;}
.ybc{bottom:639.293333pt;}
.y6d{bottom:642.493333pt;}
.ye6{bottom:645.693333pt;}
.y158{bottom:650.813333pt;}
.y49{bottom:652.253333pt;}
.y14{bottom:653.373333pt;}
.y1d1{bottom:654.493333pt;}
.y1a5{bottom:656.253333pt;}
.y109{bottom:656.413333pt;}
.ybb{bottom:657.533333pt;}
.y6c{bottom:660.253333pt;}
.y17d{bottom:663.133333pt;}
.ye5{bottom:663.293333pt;}
.y48{bottom:669.853333pt;}
.y13{bottom:670.973333pt;}
.y1d0{bottom:672.253333pt;}
.y1a4{bottom:673.853333pt;}
.y108{bottom:674.013333pt;}
.y157{bottom:676.573333pt;}
.y6b{bottom:677.853333pt;}
.ye4{bottom:681.053333pt;}
.y17c{bottom:683.773333pt;}
.yba{bottom:684.413333pt;}
.y47{bottom:687.453333pt;}
.y12{bottom:688.733333pt;}
.y1cf{bottom:689.853333pt;}
.y107{bottom:691.613333pt;}
.y156{bottom:694.173333pt;}
.y6a{bottom:695.453333pt;}
.ye3{bottom:698.653333pt;}
.yb9{bottom:702.013333pt;}
.y17b{bottom:704.413333pt;}
.y46{bottom:705.053333pt;}
.y11{bottom:706.333333pt;}
.y1ce{bottom:707.453333pt;}
.y1a3{bottom:709.213333pt;}
.y155{bottom:711.773333pt;}
.y69{bottom:713.053333pt;}
.ye2{bottom:716.893333pt;}
.yb8{bottom:719.613333pt;}
.y45{bottom:722.653333pt;}
.y10{bottom:723.933333pt;}
.y17a{bottom:724.893333pt;}
.y1cd{bottom:725.053333pt;}
.y1a2{bottom:726.813333pt;}
.y154{bottom:729.373333pt;}
.y68{bottom:730.653333pt;}
.yb7{bottom:737.373333pt;}
.y97{bottom:740.413333pt;}
.yf{bottom:741.533333pt;}
.y1cc{bottom:742.653333pt;}
.y1a1{bottom:744.413333pt;}
.y179{bottom:745.533333pt;}
.y153{bottom:746.973333pt;}
.y44{bottom:748.413333pt;}
.y96{bottom:758.013333pt;}
.ye{bottom:759.133333pt;}
.y1cb{bottom:760.413333pt;}
.y136{bottom:760.733333pt;}
.y1a0{bottom:762.013333pt;}
.yb6{bottom:762.973333pt;}
.y152{bottom:764.733333pt;}
.y43{bottom:766.013333pt;}
.y177{bottom:766.813333pt;}
.y95{bottom:775.613333pt;}
.y1ca{bottom:778.013333pt;}
.y135{bottom:778.333333pt;}
.yd{bottom:778.813333pt;}
.y19f{bottom:779.773333pt;}
.yb5{bottom:780.573333pt;}
.y151{bottom:782.333333pt;}
.y42{bottom:783.613333pt;}
.y19d{bottom:792.893333pt;}
.y94{bottom:793.213333pt;}
.y1c9{bottom:795.613333pt;}
.y134{bottom:795.933333pt;}
.yb4{bottom:798.213333pt;}
.y150{bottom:799.973333pt;}
.yc{bottom:801.093333pt;}
.y41{bottom:801.253333pt;}
.y19c{bottom:810.533333pt;}
.y93{bottom:810.853333pt;}
.y14f{bottom:813.093333pt;}
.y1c8{bottom:813.253333pt;}
.y133{bottom:813.573333pt;}
.yb3{bottom:815.813333pt;}
.yb{bottom:818.853333pt;}
.y92{bottom:828.613333pt;}
.y14e{bottom:830.693333pt;}
.y1c7{bottom:830.853333pt;}
.y132{bottom:831.173333pt;}
.ya{bottom:832.293333pt;}
.yb2{bottom:833.573333pt;}
.y19b{bottom:835.173333pt;}
.y40{bottom:836.613333pt;}
.y91{bottom:846.213333pt;}
.y1c6{bottom:848.613333pt;}
.y131{bottom:848.933333pt;}
.y9{bottom:851.173333pt;}
.y19a{bottom:852.933333pt;}
.y3f{bottom:854.213333pt;}
.y1c5{bottom:861.733333pt;}
.y130{bottom:862.053333pt;}
.y90{bottom:863.813333pt;}
.yb1{bottom:868.773333pt;}
.y199{bottom:870.533333pt;}
.y3e{bottom:871.813333pt;}
.y8{bottom:871.973333pt;}
.y1c4{bottom:879.333333pt;}
.y8f{bottom:881.413333pt;}
.y12f{bottom:882.373333pt;}
.yb0{bottom:886.373333pt;}
.y198{bottom:888.133333pt;}
.y3d{bottom:889.413333pt;}
.y8e{bottom:899.013333pt;}
.ye1{bottom:899.493333pt;}
.y7{bottom:900.293333pt;}
.y12e{bottom:902.693333pt;}
.y197{bottom:905.733333pt;}
.y3c{bottom:907.013333pt;}
.y8d{bottom:916.773333pt;}
.ye0{bottom:917.253333pt;}
.y12d{bottom:923.013333pt;}
.y196{bottom:923.333333pt;}
.y3b{bottom:924.773333pt;}
.y5{bottom:934.373333pt;}
.ydf{bottom:934.853333pt;}
.y195{bottom:941.093333pt;}
.y3a{bottom:942.373333pt;}
.y12c{bottom:943.333333pt;}
.y8c{bottom:951.973333pt;}
.yde{bottom:952.453333pt;}
.y194{bottom:958.693333pt;}
.y39{bottom:959.973333pt;}
.y4{bottom:961.733333pt;}
.y12b{bottom:963.653333pt;}
.y8b{bottom:969.573333pt;}
.ydd{bottom:970.053333pt;}
.y193{bottom:971.813333pt;}
.y38{bottom:977.573333pt;}
.y12a{bottom:983.973333pt;}
.ydc{bottom:988.453333pt;}
.y3{bottom:989.093333pt;}
.y192{bottom:989.413333pt;}
.y37{bottom:995.173333pt;}
.y129{bottom:1004.293333pt;}
.y36{bottom:1012.933333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1040.000000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.hc{height:17.600000pt;}
.h19{height:17.632000pt;}
.hb{height:17.760000pt;}
.h11{height:17.792000pt;}
.h22{height:18.400000pt;}
.h13{height:18.560000pt;}
.h1a{height:18.720000pt;}
.h20{height:18.880000pt;}
.h17{height:20.320000pt;}
.h18{height:20.352000pt;}
.h16{height:20.480000pt;}
.h1e{height:20.640000pt;}
.h10{height:21.120000pt;}
.h15{height:21.440000pt;}
.h21{height:21.920000pt;}
.h12{height:23.040000pt;}
.h7{height:24.131250pt;}
.hd{height:35.200000pt;}
.hf{height:35.360000pt;}
.he{height:35.392000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h23{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h1c{height:41.982500pt;}
.h14{height:42.691250pt;}
.h1b{height:42.944375pt;}
.ha{height:43.782500pt;}
.h1d{height:47.045000pt;}
.h1f{height:47.151667pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w36{width:33.152000pt;}
.wa{width:56.512000pt;}
.wb{width:56.640000pt;}
.wc{width:56.672000pt;}
.wd{width:56.800000pt;}
.w35{width:59.712000pt;}
.w25{width:61.152000pt;}
.we{width:66.112000pt;}
.w1f{width:72.800000pt;}
.w10{width:75.552000pt;}
.wf{width:75.680000pt;}
.w22{width:75.712000pt;}
.w11{width:77.152000pt;}
.w21{width:84.960000pt;}
.w18{width:91.872000pt;}
.w17{width:92.000000pt;}
.w16{width:92.032000pt;}
.w26{width:94.240000pt;}
.w23{width:94.400000pt;}
.w27{width:94.592000pt;}
.w15{width:100.960000pt;}
.w1a{width:101.280000pt;}
.w19{width:101.312000pt;}
.w28{width:103.840000pt;}
.w37{width:113.760000pt;}
.w14{width:120.000000pt;}
.w2f{width:128.160000pt;}
.w30{width:128.192000pt;}
.w3d{width:132.320000pt;}
.w2d{width:136.640000pt;}
.w3c{width:141.786667pt;}
.w1e{width:144.506667pt;}
.w2e{width:144.986667pt;}
.w24{width:151.226667pt;}
.w3b{width:160.666667pt;}
.w13{width:167.866667pt;}
.w1c{width:172.666667pt;}
.w3a{width:179.226667pt;}
.w20{width:179.426667pt;}
.w31{width:189.306667pt;}
.w3{width:191.746667pt;}
.w2c{width:192.546667pt;}
.w2a{width:197.946667pt;}
.w1b{width:204.346667pt;}
.w1d{width:217.466667pt;}
.w4{width:240.026667pt;}
.w5{width:240.066667pt;}
.w34{width:254.906667pt;}
.w2b{width:271.386667pt;}
.w8{width:311.546667pt;}
.w7{width:312.546667pt;}
.w12{width:332.546667pt;}
.w38{width:381.533333pt;}
.w29{width:422.306667pt;}
.w33{width:562.493333pt;}
.w39{width:614.013333pt;}
.w9{width:624.093333pt;}
.w32{width:624.253333pt;}
.w6{width:671.840000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:48.159988pt;}
.x3{left:60.960000pt;}
.xb{left:70.240000pt;}
.x42{left:71.999988pt;}
.x23{left:73.440000pt;}
.xa{left:82.111988pt;}
.x8{left:84.832000pt;}
.x7{left:85.791988pt;}
.x30{left:86.752000pt;}
.x40{left:89.952000pt;}
.x2{left:96.031988pt;}
.x1c{left:99.712000pt;}
.x35{left:101.632000pt;}
.x2a{left:104.032000pt;}
.x16{left:107.232000pt;}
.x3a{left:115.712000pt;}
.xc{left:126.752000pt;}
.x32{left:144.026655pt;}
.xd{left:183.386667pt;}
.x2b{left:198.266667pt;}
.x3f{left:206.106667pt;}
.x17{left:208.186667pt;}
.xe{left:240.066667pt;}
.x36{left:246.626667pt;}
.x5{left:252.706667pt;}
.x41{left:269.186667pt;}
.x22{left:287.106655pt;}
.x29{left:288.066655pt;}
.x2c{left:292.866667pt;}
.xf{left:296.866667pt;}
.x18{left:300.226667pt;}
.x1d{left:304.066667pt;}
.x21{left:310.306655pt;}
.x28{left:319.746655pt;}
.x24{left:337.826667pt;}
.x2d{left:349.506667pt;}
.x10{left:353.506667pt;}
.x33{left:368.066667pt;}
.x3b{left:370.626667pt;}
.x37{left:374.786667pt;}
.x19{left:392.226667pt;}
.x9{left:397.373333pt;}
.x25{left:413.533333pt;}
.x11{left:419.613333pt;}
.x2e{left:425.213333pt;}
.x3c{left:430.333333pt;}
.x1e{left:476.733333pt;}
.x1a{left:484.093333pt;}
.x6{left:492.733333pt;}
.x12{left:495.293333pt;}
.x38{left:502.973333pt;}
.x26{left:507.933333pt;}
.x31{left:509.053333pt;}
.x2f{left:510.173333pt;}
.x3d{left:531.293333pt;}
.x34{left:560.613333pt;}
.x3e{left:564.453333pt;}
.x13{left:570.853333pt;}
.x1b{left:585.413333pt;}
.x15{left:586.693333pt;}
.x1f{left:621.413333pt;}
.x14{left:646.533333pt;}
.x39{left:654.213322pt;}
.x27{left:656.933322pt;}
.x20{left:658.373322pt;}
}




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