
    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_e4890fcb0028f0bd817ed5c3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c642765a8cad025d4a5dc4b9.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bafb85bb4b5d208a1d7f6c31.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_56e808a3e44d8959c236a011.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_ce4f813b510cd728a1693583.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_269c240316a4c38b4370931c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.945989;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_591e89426bcad05b521ee651.woff')format("woff");}.ff9{font-family:ff9;line-height:0.945989;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_91d168c5375b075ea462fb26.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.978000px;}
.ls14{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.513600px;}
.ls15{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.720000px;}
.lsf{letter-spacing:18.180000px;}
.ls18{letter-spacing:21.546720px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.093600px;}
.ws4{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._46{margin-left:-8.197440px;}
._f{margin-left:-3.554640px;}
._e{margin-left:-2.471520px;}
._0{margin-left:-1.286160px;}
._2{width:1.283760px;}
._9{width:2.639040px;}
._d{width:3.794160px;}
._1{width:5.046240px;}
._11{width:6.633360px;}
._c{width:8.277840px;}
._b{width:9.501840px;}
._5{width:10.967040px;}
._6{width:11.983440px;}
._a{width:13.686240px;}
._16{width:16.015680px;}
._10{width:18.018720px;}
._13{width:19.242720px;}
._19{width:20.588400px;}
._7{width:21.664080px;}
._8{width:22.673280px;}
._12{width:23.765760px;}
._15{width:25.140720px;}
._14{width:26.234640px;}
._2b{width:28.416960px;}
._24{width:30.716640px;}
._3a{width:33.346080px;}
._36{width:35.557200px;}
._3b{width:36.604080px;}
._30{width:37.799280px;}
._3d{width:38.873760px;}
._37{width:41.086080px;}
._3c{width:44.820000px;}
._2a{width:45.926640px;}
._1e{width:47.210400px;}
._2e{width:53.066880px;}
._1d{width:54.979200px;}
._43{width:59.222160px;}
._42{width:60.536880px;}
._25{width:62.664240px;}
._40{width:64.272960px;}
._23{width:67.739040px;}
._1b{width:70.397280px;}
._44{width:72.818640px;}
._28{width:74.998800px;}
._3e{width:76.230720px;}
._27{width:78.106320px;}
._1a{width:83.723760px;}
._2d{width:93.225600px;}
._21{width:95.257440px;}
._2c{width:97.320240px;}
._29{width:101.890800px;}
._3f{width:117.189360px;}
._26{width:122.762640px;}
._20{width:125.615520px;}
._38{width:140.017680px;}
._22{width:144.499680px;}
._1f{width:153.002640px;}
._17{width:166.610880px;}
._41{width:167.686560px;}
._39{width:172.900080px;}
._45{width:201.036000px;}
._34{width:206.291520px;}
._33{width:211.521600px;}
._1c{width:217.645920px;}
._31{width:219.378960px;}
._32{width:262.047600px;}
._2f{width:392.682960px;}
._18{width:515.071440px;}
._3{width:636.906000px;}
._35{width:1202.132160px;}
._4{width:1340.256000px;}
.fc6{color:rgb(57,100,254);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc5{color:rgb(15,17,21);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.240000px;}
.y139{bottom:5.040000px;}
.yc2{bottom:5.580000px;}
.y110{bottom:5.760000px;}
.y118{bottom:5.940000px;}
.y1b9{bottom:6.480000px;}
.y19d{bottom:6.660000px;}
.y174{bottom:8.100000px;}
.y16d{bottom:8.145000px;}
.y1c3{bottom:8.820000px;}
.y1c0{bottom:9.000000px;}
.y106{bottom:9.540000px;}
.y107{bottom:9.720000px;}
.y7d{bottom:20.520000px;}
.yc5{bottom:20.550000px;}
.y9e{bottom:20.565000px;}
.y10f{bottom:23.040000px;}
.y117{bottom:23.070000px;}
.y136{bottom:23.220000px;}
.y1d7{bottom:23.250000px;}
.y1a2{bottom:23.760000px;}
.y19c{bottom:23.940000px;}
.y199{bottom:24.660000px;}
.y173{bottom:25.380000px;}
.y16c{bottom:25.425000px;}
.y164{bottom:25.554000px;}
.y14a{bottom:25.560000px;}
.y14d{bottom:25.740000px;}
.y1c2{bottom:26.100000px;}
.y1bf{bottom:26.280000px;}
.yf1{bottom:36.225000px;}
.yd{bottom:36.720000px;}
.yde{bottom:37.614000px;}
.ya5{bottom:37.620000px;}
.yf5{bottom:37.665000px;}
.yf3{bottom:37.794000px;}
.ya8{bottom:37.800000px;}
.yc4{bottom:37.830000px;}
.y9d{bottom:37.845000px;}
.y19f{bottom:41.040000px;}
.y1a1{bottom:41.070000px;}
.y19b{bottom:41.220000px;}
.y198{bottom:41.940000px;}
.y176{bottom:42.480000px;}
.y172{bottom:42.660000px;}
.y16b{bottom:42.705000px;}
.y1be{bottom:43.380000px;}
.y14f{bottom:45.360000px;}
.y149{bottom:45.540000px;}
.ydd{bottom:54.894000px;}
.ya4{bottom:54.900000px;}
.ye3{bottom:54.930000px;}
.y9c{bottom:54.945000px;}
.y103{bottom:55.074000px;}
.yaf{bottom:55.080000px;}
.yc{bottom:55.260000px;}
.y197{bottom:59.220000px;}
.y171{bottom:59.760000px;}
.y16a{bottom:59.985000px;}
.y1bd{bottom:60.660000px;}
.y1c7{bottom:60.705000px;}
.y15b{bottom:65.340000px;}
.yb{bottom:70.776000px;}
.yfe{bottom:71.460000px;}
.yf0{bottom:71.505000px;}
.ydc{bottom:72.174000px;}
.ya3{bottom:72.180000px;}
.ye2{bottom:72.210000px;}
.y9b{bottom:72.225000px;}
.yae{bottom:72.360000px;}
.y170{bottom:75.960000px;}
.y169{bottom:76.005000px;}
.y16f{bottom:77.040000px;}
.y168{bottom:77.265000px;}
.y1bc{bottom:77.940000px;}
.y1c6{bottom:77.985000px;}
.ya{bottom:86.256000px;}
.yfd{bottom:88.740000px;}
.yef{bottom:88.785000px;}
.ydb{bottom:89.454000px;}
.ya2{bottom:89.460000px;}
.ye1{bottom:89.490000px;}
.y9a{bottom:89.505000px;}
.yad{bottom:89.640000px;}
.y1c5{bottom:95.085000px;}
.y1bb{bottom:95.220000px;}
.yfc{bottom:106.020000px;}
.yee{bottom:106.065000px;}
.yda{bottom:106.734000px;}
.ya1{bottom:106.740000px;}
.yb9{bottom:106.770000px;}
.y99{bottom:106.785000px;}
.y72{bottom:118.836000px;}
.ya6{bottom:121.356000px;}
.y1b7{bottom:121.716000px;}
.y7a{bottom:122.436000px;}
.yed{bottom:123.165000px;}
.yfb{bottom:123.300000px;}
.ydf{bottom:123.885000px;}
.yd9{bottom:124.014000px;}
.ya0{bottom:124.020000px;}
.yb8{bottom:124.050000px;}
.y98{bottom:124.065000px;}
.y165{bottom:124.236000px;}
.yc6{bottom:126.036000px;}
.ybc{bottom:127.476000px;}
.y1d0{bottom:128.376000px;}
.y1f1{bottom:128.916000px;}
.y3c{bottom:129.636000px;}
.y147{bottom:135.396000px;}
.y71{bottom:135.936000px;}
.y132{bottom:137.016000px;}
.y1b6{bottom:138.816000px;}
.y163{bottom:139.176000px;}
.y79{bottom:139.716000px;}
.yec{bottom:140.445000px;}
.yfa{bottom:140.580000px;}
.yd8{bottom:141.114000px;}
.yb7{bottom:141.150000px;}
.ye6{bottom:141.165000px;}
.yac{bottom:141.300000px;}
.ye0{bottom:141.330000px;}
.y97{bottom:141.345000px;}
.y161{bottom:143.685000px;}
.y194{bottom:144.216000px;}
.y1cf{bottom:145.656000px;}
.y1f0{bottom:146.196000px;}
.y3b{bottom:146.916000px;}
.y146{bottom:152.670000px;}
.y70{bottom:153.210000px;}
.y131{bottom:154.110000px;}
.y1b5{bottom:156.090000px;}
.y78{bottom:156.990000px;}
.yeb{bottom:157.725000px;}
.yf9{bottom:157.860000px;}
.yd7{bottom:158.394000px;}
.yb6{bottom:158.430000px;}
.y96{bottom:158.445000px;}
.ybf{bottom:158.580000px;}
.y101{bottom:158.610000px;}
.yab{bottom:158.625000px;}
.y193{bottom:161.490000px;}
.y1ce{bottom:162.930000px;}
.y1ef{bottom:163.470000px;}
.y160{bottom:163.485000px;}
.y3a{bottom:164.190000px;}
.y145{bottom:169.950000px;}
.y6f{bottom:170.490000px;}
.y130{bottom:171.390000px;}
.y9f{bottom:172.470000px;}
.y1b4{bottom:173.370000px;}
.y77{bottom:174.270000px;}
.yf7{bottom:174.960000px;}
.yea{bottom:175.005000px;}
.yd6{bottom:175.674000px;}
.yb5{bottom:175.710000px;}
.y95{bottom:175.725000px;}
.y100{bottom:175.890000px;}
.yaa{bottom:175.905000px;}
.ybb{bottom:178.410000px;}
.y192{bottom:178.770000px;}
.y1cd{bottom:180.210000px;}
.y1ee{bottom:180.750000px;}
.y39{bottom:181.470000px;}
.y15f{bottom:183.285000px;}
.y144{bottom:187.230000px;}
.y6e{bottom:187.770000px;}
.y12f{bottom:188.670000px;}
.y1b3{bottom:190.650000px;}
.y76{bottom:191.370000px;}
.ye9{bottom:192.285000px;}
.yd5{bottom:192.954000px;}
.yb4{bottom:192.990000px;}
.y94{bottom:193.005000px;}
.yf2{bottom:195.690000px;}
.y191{bottom:195.870000px;}
.y1cc{bottom:197.490000px;}
.y1ed{bottom:197.850000px;}
.y38{bottom:198.750000px;}
.y143{bottom:204.510000px;}
.y6d{bottom:205.050000px;}
.y15e{bottom:205.230000px;}
.y12e{bottom:205.950000px;}
.y1b2{bottom:207.930000px;}
.y75{bottom:208.650000px;}
.ye8{bottom:209.565000px;}
.yd4{bottom:210.234000px;}
.y93{bottom:210.285000px;}
.y190{bottom:213.150000px;}
.y1cb{bottom:214.770000px;}
.y1ec{bottom:215.130000px;}
.y37{bottom:216.030000px;}
.y142{bottom:221.610000px;}
.y6c{bottom:222.150000px;}
.y12d{bottom:223.230000px;}
.y1b1{bottom:225.210000px;}
.y74{bottom:225.930000px;}
.ye7{bottom:226.665000px;}
.yd3{bottom:227.559000px;}
.y92{bottom:227.565000px;}
.y102{bottom:230.250000px;}
.y18f{bottom:230.430000px;}
.y1ca{bottom:231.870000px;}
.y152{bottom:232.410000px;}
.y36{bottom:233.130000px;}
.y141{bottom:238.890000px;}
.y6b{bottom:239.430000px;}
.y73{bottom:239.970000px;}
.y12c{bottom:240.330000px;}
.y1b0{bottom:242.310000px;}
.yd2{bottom:244.659000px;}
.ye5{bottom:244.665000px;}
.y91{bottom:244.845000px;}
.y18e{bottom:247.710000px;}
.y1c9{bottom:249.150000px;}
.y1eb{bottom:249.690000px;}
.y35{bottom:250.410000px;}
.y140{bottom:256.170000px;}
.y6a{bottom:256.710000px;}
.y12b{bottom:257.610000px;}
.y1af{bottom:259.590000px;}
.yd1{bottom:261.939000px;}
.y90{bottom:261.945000px;}
.y18d{bottom:264.990000px;}
.y1c8{bottom:266.430000px;}
.y1ea{bottom:266.970000px;}
.y34{bottom:267.690000px;}
.y13f{bottom:273.450000px;}
.y69{bottom:273.990000px;}
.y12a{bottom:274.890000px;}
.y1ae{bottom:276.870000px;}
.y162{bottom:277.950000px;}
.yd0{bottom:279.219000px;}
.y8f{bottom:279.255000px;}
.y1c4{bottom:281.370000px;}
.y18c{bottom:282.090000px;}
.y1e9{bottom:284.070000px;}
.y33{bottom:284.970000px;}
.y13e{bottom:290.730000px;}
.y151{bottom:291.090000px;}
.y68{bottom:291.270000px;}
.y129{bottom:292.170000px;}
.y1ad{bottom:294.150000px;}
.yba{bottom:295.770000px;}
.ycf{bottom:296.499000px;}
.y8e{bottom:296.535000px;}
.y18b{bottom:299.370000px;}
.y1e8{bottom:301.350000px;}
.y32{bottom:302.250000px;}
.y13d{bottom:308.010000px;}
.y67{bottom:308.550000px;}
.y128{bottom:309.450000px;}
.y1ac{bottom:311.430000px;}
.yb2{bottom:313.050000px;}
.yce{bottom:313.779000px;}
.y8d{bottom:313.815000px;}
.ye4{bottom:315.750000px;}
.y18a{bottom:316.650000px;}
.y1e7{bottom:318.630000px;}
.y31{bottom:319.350000px;}
.y13c{bottom:325.110000px;}
.y66{bottom:325.650000px;}
.y127{bottom:326.730000px;}
.y7f{bottom:326.910000px;}
.y1ab{bottom:328.530000px;}
.yb1{bottom:330.330000px;}
.ycd{bottom:330.879000px;}
.y8c{bottom:331.095000px;}
.y189{bottom:333.930000px;}
.y1e6{bottom:335.910000px;}
.y30{bottom:336.675000px;}
.y13b{bottom:342.435000px;}
.y65{bottom:342.975000px;}
.y126{bottom:343.875000px;}
.y1aa{bottom:345.855000px;}
.ycc{bottom:348.159000px;}
.y8b{bottom:348.375000px;}
.y150{bottom:349.635000px;}
.y188{bottom:351.255000px;}
.y1e5{bottom:353.235000px;}
.y2f{bottom:356.655000px;}
.y13a{bottom:359.715000px;}
.y64{bottom:360.255000px;}
.y125{bottom:361.155000px;}
.y15d{bottom:362.955000px;}
.y1a9{bottom:363.135000px;}
.ycb{bottom:365.439000px;}
.y8a{bottom:365.475000px;}
.yb0{bottom:367.455000px;}
.y187{bottom:368.535000px;}
.y1e4{bottom:370.515000px;}
.y2e{bottom:373.935000px;}
.y138{bottom:374.655000px;}
.y63{bottom:377.535000px;}
.y124{bottom:378.435000px;}
.y1a8{bottom:380.415000px;}
.yca{bottom:382.719000px;}
.y89{bottom:382.755000px;}
.y186{bottom:385.635000px;}
.y1e3{bottom:387.615000px;}
.y2d{bottom:391.035000px;}
.y1c1{bottom:391.395000px;}
.y137{bottom:394.635000px;}
.y62{bottom:394.815000px;}
.y123{bottom:395.715000px;}
.y1a7{bottom:397.695000px;}
.yc9{bottom:399.999000px;}
.y88{bottom:400.035000px;}
.y185{bottom:402.915000px;}
.y1e2{bottom:404.895000px;}
.y61{bottom:412.095000px;}
.y122{bottom:412.995000px;}
.y1a6{bottom:414.975000px;}
.yc8{bottom:417.279000px;}
.y87{bottom:417.315000px;}
.y184{bottom:420.195000px;}
.y15c{bottom:421.455000px;}
.y1e1{bottom:422.175000px;}
.y14e{bottom:428.115000px;}
.y2c{bottom:428.835000px;}
.y60{bottom:429.195000px;}
.y121{bottom:430.275000px;}
.y1a5{bottom:432.075000px;}
.y135{bottom:432.615000px;}
.yc7{bottom:434.379000px;}
.y86{bottom:434.595000px;}
.y183{bottom:437.475000px;}
.y1e0{bottom:439.455000px;}
.y5f{bottom:446.475000px;}
.y1a4{bottom:447.015000px;}
.y120{bottom:447.375000px;}
.y2b{bottom:448.815000px;}
.y85{bottom:451.695000px;}
.yff{bottom:453.675000px;}
.y182{bottom:454.755000px;}
.y1df{bottom:456.735000px;}
.y5e{bottom:463.755000px;}
.y11f{bottom:464.655000px;}
.y2a{bottom:468.615000px;}
.y84{bottom:468.975000px;}
.y134{bottom:470.775000px;}
.y181{bottom:472.035000px;}
.y1de{bottom:474.015000px;}
.y5d{bottom:481.035000px;}
.y11e{bottom:481.935000px;}
.y83{bottom:486.255000px;}
.y29{bottom:488.415000px;}
.y180{bottom:489.135000px;}
.y1dd{bottom:491.115000px;}
.y5c{bottom:498.315000px;}
.y11d{bottom:499.215000px;}
.y1ba{bottom:501.375000px;}
.y82{bottom:503.535000px;}
.yb3{bottom:504.795000px;}
.y14c{bottom:506.415000px;}
.y28{bottom:508.215000px;}
.y1dc{bottom:508.395000px;}
.y133{bottom:508.755000px;}
.y5b{bottom:515.415000px;}
.y11c{bottom:516.495000px;}
.y15a{bottom:519.735000px;}
.y81{bottom:520.815000px;}
.y1a3{bottom:520.995000px;}
.y17f{bottom:523.695000px;}
.y1db{bottom:525.675000px;}
.y27{bottom:528.015000px;}
.y5a{bottom:532.695000px;}
.y11b{bottom:533.775000px;}
.y80{bottom:538.095000px;}
.y17e{bottom:540.975000px;}
.y1da{bottom:542.955000px;}
.y26{bottom:547.995000px;}
.y59{bottom:549.975000px;}
.y11a{bottom:550.875000px;}
.y17d{bottom:558.255000px;}
.y1d9{bottom:560.235000px;}
.y14b{bottom:565.095000px;}
.y58{bottom:567.255000px;}
.y25{bottom:567.795000px;}
.y119{bottom:568.155000px;}
.y17c{bottom:576.615000px;}
.y1a0{bottom:577.155000px;}
.y1d8{bottom:577.335000px;}
.y116{bottom:583.095000px;}
.y57{bottom:584.535000px;}
.y24{bottom:587.595000px;}
.yc3{bottom:591.015000px;}
.y1d6{bottom:592.275000px;}
.y17b{bottom:596.055000px;}
.y56{bottom:601.815000px;}
.y23{bottom:607.425000px;}
.y1b8{bottom:611.565000px;}
.y17a{bottom:614.445000px;}
.y159{bottom:618.045000px;}
.y55{bottom:618.945000px;}
.y115{bottom:621.105000px;}
.y148{bottom:623.625000px;}
.y22{bottom:627.225000px;}
.y1d5{bottom:630.465000px;}
.y179{bottom:631.725000px;}
.y19e{bottom:633.165000px;}
.y54{bottom:636.225000px;}
.y114{bottom:645.585000px;}
.y21{bottom:647.205000px;}
.y178{bottom:649.005000px;}
.y53{bottom:653.505000px;}
.ybe{bottom:659.265000px;}
.yf6{bottom:659.985000px;}
.y177{bottom:666.285000px;}
.y20{bottom:667.005000px;}
.y113{bottom:670.245000px;}
.y52{bottom:670.785000px;}
.y175{bottom:681.225000px;}
.y1d4{bottom:686.445000px;}
.y1f{bottom:686.805000px;}
.y51{bottom:688.065000px;}
.y19a{bottom:689.145000px;}
.y112{bottom:694.725000px;}
.yc1{bottom:695.265000px;}
.y158{bottom:696.525000px;}
.y50{bottom:705.345000px;}
.y1e{bottom:706.605000px;}
.y111{bottom:719.205000px;}
.y4f{bottom:722.445000px;}
.y1d{bottom:726.405000px;}
.ya9{bottom:728.205000px;}
.y4e{bottom:739.725000px;}
.y1d3{bottom:742.425000px;}
.y10e{bottom:743.865000px;}
.y196{bottom:745.125000px;}
.yf8{bottom:745.485000px;}
.yc0{bottom:746.205000px;}
.y157{bottom:755.025000px;}
.y4d{bottom:757.005000px;}
.y1c{bottom:761.685000px;}
.y16e{bottom:773.205000px;}
.y4c{bottom:774.285000px;}
.y1b{bottom:778.965000px;}
.y10d{bottom:781.845000px;}
.y4b{bottom:791.565000px;}
.y1a{bottom:797.325000px;}
.y1d2{bottom:798.405000px;}
.y10c{bottom:806.325000px;}
.y4a{bottom:808.845000px;}
.y156{bottom:813.525000px;}
.y195{bottom:819.285000px;}
.y19{bottom:821.085000px;}
.y49{bottom:825.945000px;}
.y10b{bottom:830.805000px;}
.y18{bottom:839.985000px;}
.y48{bottom:843.225000px;}
.ybd{bottom:848.265000px;}
.y17{bottom:852.945000px;}
.y1d1{bottom:854.565000px;}
.y10a{bottom:855.465000px;}
.y47{bottom:860.505000px;}
.y167{bottom:865.185000px;}
.yf4{bottom:865.545000px;}
.y16{bottom:872.070000px;}
.y155{bottom:872.250000px;}
.y46{bottom:877.830000px;}
.y109{bottom:879.990000px;}
.y15{bottom:890.970000px;}
.y45{bottom:895.110000px;}
.y7c{bottom:895.470000px;}
.y108{bottom:904.470000px;}
.y14{bottom:910.050000px;}
.y44{bottom:912.210000px;}
.y13{bottom:928.950000px;}
.y43{bottom:929.490000px;}
.y154{bottom:930.750000px;}
.y104{bottom:934.530000px;}
.y7b{bottom:945.330000px;}
.y42{bottom:946.770000px;}
.y12{bottom:947.850000px;}
.ya7{bottom:951.810000px;}
.y105{bottom:953.610000px;}
.y166{bottom:957.210000px;}
.y41{bottom:964.050000px;}
.y11{bottom:966.930000px;}
.y40{bottom:981.330000px;}
.y10{bottom:985.470000px;}
.y153{bottom:989.430000px;}
.y3f{bottom:998.610000px;}
.yf{bottom:1006.530000px;}
.y3e{bottom:1015.710000px;}
.ye{bottom:1030.290000px;}
.y3d{bottom:1032.990000px;}
.y9{bottom:1051.530000px;}
.y8{bottom:1070.430000px;}
.y7{bottom:1087.710000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1122.450000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h29{height:19.080000px;}
.h3f{height:19.116000px;}
.h18{height:19.440000px;}
.h23{height:23.580000px;}
.h25{height:23.616000px;}
.h24{height:23.760000px;}
.h17{height:34.380000px;}
.hc{height:34.560000px;}
.h9{height:35.623125px;}
.h26{height:37.080000px;}
.h27{height:37.116000px;}
.h28{height:37.260000px;}
.h40{height:37.296000px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h36{height:48.070168px;}
.hb{height:48.224531px;}
.h7{height:48.410156px;}
.he{height:49.255313px;}
.h4{height:50.800781px;}
.h19{height:51.696000px;}
.h1e{height:51.840000px;}
.h8{height:53.224453px;}
.h2{height:53.573906px;}
.h38{height:55.080000px;}
.h39{height:55.116000px;}
.h3a{height:55.260000px;}
.h2e{height:57.600000px;}
.h2b{height:57.636000px;}
.h2c{height:57.780000px;}
.h2f{height:57.816000px;}
.h3{height:59.383125px;}
.h6{height:65.884219px;}
.h21{height:69.120000px;}
.h3b{height:73.080000px;}
.h37{height:73.260000px;}
.h2d{height:77.400000px;}
.h33{height:77.436000px;}
.h2a{height:77.580000px;}
.h10{height:86.220000px;}
.h35{height:91.080000px;}
.h34{height:91.116000px;}
.h31{height:97.380000px;}
.h30{height:97.416000px;}
.h1d{height:103.500000px;}
.h3d{height:109.080000px;}
.h3e{height:109.116000px;}
.h3c{height:109.296000px;}
.h13{height:120.780000px;}
.hf{height:137.880000px;}
.h1b{height:137.916000px;}
.h16{height:172.440000px;}
.h1f{height:172.470000px;}
.h14{height:172.650000px;}
.h20{height:189.000000px;}
.h15{height:189.750000px;}
.h22{height:189.930000px;}
.h11{height:207.030000px;}
.h32{height:215.310000px;}
.h1c{height:258.690000px;}
.h12{height:344.370000px;}
.h1a{height:448.410000px;}
.hd{height:551.985000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:60.300000px;}
.w9{width:82.800000px;}
.w13{width:83.916000px;}
.w7{width:86.220000px;}
.w11{width:92.916000px;}
.w5{width:94.140000px;}
.w16{width:95.220000px;}
.w12{width:98.460000px;}
.w15{width:100.836000px;}
.w1e{width:106.020000px;}
.w4{width:109.836000px;}
.w3{width:113.256000px;}
.w21{width:114.300000px;}
.w1f{width:121.176000px;}
.w6{width:125.676000px;}
.w20{width:126.756000px;}
.w8{width:140.436000px;}
.w10{width:141.840000px;}
.w18{width:159.330000px;}
.w1a{width:162.180000px;}
.w17{width:162.750000px;}
.wd{width:163.830000px;}
.w1d{width:164.910000px;}
.we{width:165.090000px;}
.wc{width:166.680000px;}
.w1c{width:167.250000px;}
.wf{width:168.330000px;}
.w1b{width:170.490000px;}
.w19{width:176.070000px;}
.w22{width:219.630000px;}
.wb{width:221.250000px;}
.w23{width:223.410000px;}
.wa{width:232.590000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.840000px;}
.x33{left:9.900000px;}
.x25{left:11.520000px;}
.x3e{left:15.840000px;}
.x20{left:16.920000px;}
.x24{left:18.000000px;}
.x1d{left:19.980000px;}
.x44{left:22.500000px;}
.x2e{left:24.165000px;}
.x29{left:25.200000px;}
.x38{left:30.285000px;}
.x1b{left:31.500000px;}
.x31{left:32.970000px;}
.x19{left:34.236000px;}
.x40{left:38.520000px;}
.x54{left:42.120000px;}
.x49{left:43.770000px;}
.x42{left:45.030000px;}
.x39{left:46.800000px;}
.x22{left:48.060000px;}
.x36{left:50.934000px;}
.x2f{left:56.205000px;}
.x18{left:58.860000px;}
.x2b{left:61.020000px;}
.x47{left:62.145000px;}
.x27{left:68.574000px;}
.x56{left:70.740000px;}
.x52{left:88.014000px;}
.x35{left:106.776000px;}
.x2{left:108.035987px;}
.x17{left:122.975987px;}
.x1{left:128.015987px;}
.x45{left:134.855987px;}
.x4b{left:137.195987px;}
.xf{left:140.975987px;}
.x8{left:150.689987px;}
.x5{left:157.169987px;}
.x10{left:161.669987px;}
.x15{left:171.029987px;}
.x1a{left:173.730000px;}
.x34{left:174.809987px;}
.x2c{left:185.609987px;}
.x11{left:200.729987px;}
.x4c{left:215.310000px;}
.x51{left:217.289987px;}
.x37{left:249.150000px;}
.x3f{left:250.229987px;}
.x46{left:271.650000px;}
.x2d{left:276.150000px;}
.x1c{left:285.015000px;}
.x53{left:329.115000px;}
.x4d{left:336.855000px;}
.x28{left:342.075000px;}
.xb{left:343.694987px;}
.x16{left:346.394987px;}
.xc{left:355.034987px;}
.xd{left:358.094987px;}
.x9{left:362.414987px;}
.xe{left:366.914987px;}
.x1e{left:380.775000px;}
.x13{left:384.554987px;}
.x7{left:386.354987px;}
.xa{left:395.174987px;}
.x57{left:396.254987px;}
.x12{left:399.134987px;}
.x6{left:412.274987px;}
.x4e{left:432.615000px;}
.x41{left:439.275000px;}
.x30{left:440.355000px;}
.x3a{left:441.615000px;}
.x48{left:442.695000px;}
.x3{left:446.474987px;}
.x1f{left:507.885000px;}
.x4{left:518.324987px;}
.x3b{left:525.885000px;}
.x4f{left:533.805000px;}
.x55{left:552.885000px;}
.x2a{left:563.685000px;}
.x3c{left:586.725000px;}
.x21{left:595.545000px;}
.x43{left:599.145000px;}
.x32{left:605.805000px;}
.x4a{left:610.305000px;}
.x50{left:660.930000px;}
.x3d{left:687.930000px;}
.x14{left:724.829987px;}
.x23{left:737.430000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.869333pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.456533pt;}
.ls15{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.640000pt;}
.lsf{letter-spacing:16.160000pt;}
.ls18{letter-spacing:19.152640pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.416533pt;}
.ws4{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._46{margin-left:-7.286613pt;}
._f{margin-left:-3.159680pt;}
._e{margin-left:-2.196907pt;}
._0{margin-left:-1.143253pt;}
._2{width:1.141120pt;}
._9{width:2.345813pt;}
._d{width:3.372587pt;}
._1{width:4.485547pt;}
._11{width:5.896320pt;}
._c{width:7.358080pt;}
._b{width:8.446080pt;}
._5{width:9.748480pt;}
._6{width:10.651947pt;}
._a{width:12.165547pt;}
._16{width:14.236160pt;}
._10{width:16.016640pt;}
._13{width:17.104640pt;}
._19{width:18.300800pt;}
._7{width:19.256960pt;}
._8{width:20.154027pt;}
._12{width:21.125120pt;}
._15{width:22.347307pt;}
._14{width:23.319680pt;}
._2b{width:25.259520pt;}
._24{width:27.303680pt;}
._3a{width:29.640960pt;}
._36{width:31.606400pt;}
._3b{width:32.536960pt;}
._30{width:33.599360pt;}
._3d{width:34.554453pt;}
._37{width:36.520960pt;}
._3c{width:39.840000pt;}
._2a{width:40.823680pt;}
._1e{width:41.964800pt;}
._2e{width:47.170560pt;}
._1d{width:48.870400pt;}
._43{width:52.641920pt;}
._42{width:53.810560pt;}
._25{width:55.701547pt;}
._40{width:57.131520pt;}
._23{width:60.212480pt;}
._1b{width:62.575360pt;}
._44{width:64.727680pt;}
._28{width:66.665600pt;}
._3e{width:67.760640pt;}
._27{width:69.427840pt;}
._1a{width:74.421120pt;}
._2d{width:82.867200pt;}
._21{width:84.673280pt;}
._2c{width:86.506880pt;}
._29{width:90.569600pt;}
._3f{width:104.168320pt;}
._26{width:109.122347pt;}
._20{width:111.658240pt;}
._38{width:124.460160pt;}
._22{width:128.444160pt;}
._1f{width:136.002347pt;}
._17{width:148.098560pt;}
._41{width:149.054720pt;}
._39{width:153.688960pt;}
._45{width:178.698667pt;}
._34{width:183.370240pt;}
._33{width:188.019200pt;}
._1c{width:193.463040pt;}
._31{width:195.003520pt;}
._32{width:232.931200pt;}
._2f{width:349.051520pt;}
._18{width:457.841280pt;}
._3{width:566.138667pt;}
._35{width:1068.561920pt;}
._4{width:1191.338667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.880000pt;}
.y139{bottom:4.480000pt;}
.yc2{bottom:4.960000pt;}
.y110{bottom:5.120000pt;}
.y118{bottom:5.280000pt;}
.y1b9{bottom:5.760000pt;}
.y19d{bottom:5.920000pt;}
.y174{bottom:7.200000pt;}
.y16d{bottom:7.240000pt;}
.y1c3{bottom:7.840000pt;}
.y1c0{bottom:8.000000pt;}
.y106{bottom:8.480000pt;}
.y107{bottom:8.640000pt;}
.y7d{bottom:18.240000pt;}
.yc5{bottom:18.266667pt;}
.y9e{bottom:18.280000pt;}
.y10f{bottom:20.480000pt;}
.y117{bottom:20.506667pt;}
.y136{bottom:20.640000pt;}
.y1d7{bottom:20.666667pt;}
.y1a2{bottom:21.120000pt;}
.y19c{bottom:21.280000pt;}
.y199{bottom:21.920000pt;}
.y173{bottom:22.560000pt;}
.y16c{bottom:22.600000pt;}
.y164{bottom:22.714667pt;}
.y14a{bottom:22.720000pt;}
.y14d{bottom:22.880000pt;}
.y1c2{bottom:23.200000pt;}
.y1bf{bottom:23.360000pt;}
.yf1{bottom:32.200000pt;}
.yd{bottom:32.640000pt;}
.yde{bottom:33.434667pt;}
.ya5{bottom:33.440000pt;}
.yf5{bottom:33.480000pt;}
.yf3{bottom:33.594667pt;}
.ya8{bottom:33.600000pt;}
.yc4{bottom:33.626667pt;}
.y9d{bottom:33.640000pt;}
.y19f{bottom:36.480000pt;}
.y1a1{bottom:36.506667pt;}
.y19b{bottom:36.640000pt;}
.y198{bottom:37.280000pt;}
.y176{bottom:37.760000pt;}
.y172{bottom:37.920000pt;}
.y16b{bottom:37.960000pt;}
.y1be{bottom:38.560000pt;}
.y14f{bottom:40.320000pt;}
.y149{bottom:40.480000pt;}
.ydd{bottom:48.794667pt;}
.ya4{bottom:48.800000pt;}
.ye3{bottom:48.826667pt;}
.y9c{bottom:48.840000pt;}
.y103{bottom:48.954667pt;}
.yaf{bottom:48.960000pt;}
.yc{bottom:49.120000pt;}
.y197{bottom:52.640000pt;}
.y171{bottom:53.120000pt;}
.y16a{bottom:53.320000pt;}
.y1bd{bottom:53.920000pt;}
.y1c7{bottom:53.960000pt;}
.y15b{bottom:58.080000pt;}
.yb{bottom:62.912000pt;}
.yfe{bottom:63.520000pt;}
.yf0{bottom:63.560000pt;}
.ydc{bottom:64.154667pt;}
.ya3{bottom:64.160000pt;}
.ye2{bottom:64.186667pt;}
.y9b{bottom:64.200000pt;}
.yae{bottom:64.320000pt;}
.y170{bottom:67.520000pt;}
.y169{bottom:67.560000pt;}
.y16f{bottom:68.480000pt;}
.y168{bottom:68.680000pt;}
.y1bc{bottom:69.280000pt;}
.y1c6{bottom:69.320000pt;}
.ya{bottom:76.672000pt;}
.yfd{bottom:78.880000pt;}
.yef{bottom:78.920000pt;}
.ydb{bottom:79.514667pt;}
.ya2{bottom:79.520000pt;}
.ye1{bottom:79.546667pt;}
.y9a{bottom:79.560000pt;}
.yad{bottom:79.680000pt;}
.y1c5{bottom:84.520000pt;}
.y1bb{bottom:84.640000pt;}
.yfc{bottom:94.240000pt;}
.yee{bottom:94.280000pt;}
.yda{bottom:94.874667pt;}
.ya1{bottom:94.880000pt;}
.yb9{bottom:94.906667pt;}
.y99{bottom:94.920000pt;}
.y72{bottom:105.632000pt;}
.ya6{bottom:107.872000pt;}
.y1b7{bottom:108.192000pt;}
.y7a{bottom:108.832000pt;}
.yed{bottom:109.480000pt;}
.yfb{bottom:109.600000pt;}
.ydf{bottom:110.120000pt;}
.yd9{bottom:110.234667pt;}
.ya0{bottom:110.240000pt;}
.yb8{bottom:110.266667pt;}
.y98{bottom:110.280000pt;}
.y165{bottom:110.432000pt;}
.yc6{bottom:112.032000pt;}
.ybc{bottom:113.312000pt;}
.y1d0{bottom:114.112000pt;}
.y1f1{bottom:114.592000pt;}
.y3c{bottom:115.232000pt;}
.y147{bottom:120.352000pt;}
.y71{bottom:120.832000pt;}
.y132{bottom:121.792000pt;}
.y1b6{bottom:123.392000pt;}
.y163{bottom:123.712000pt;}
.y79{bottom:124.192000pt;}
.yec{bottom:124.840000pt;}
.yfa{bottom:124.960000pt;}
.yd8{bottom:125.434667pt;}
.yb7{bottom:125.466667pt;}
.ye6{bottom:125.480000pt;}
.yac{bottom:125.600000pt;}
.ye0{bottom:125.626667pt;}
.y97{bottom:125.640000pt;}
.y161{bottom:127.720000pt;}
.y194{bottom:128.192000pt;}
.y1cf{bottom:129.472000pt;}
.y1f0{bottom:129.952000pt;}
.y3b{bottom:130.592000pt;}
.y146{bottom:135.706667pt;}
.y70{bottom:136.186667pt;}
.y131{bottom:136.986667pt;}
.y1b5{bottom:138.746667pt;}
.y78{bottom:139.546667pt;}
.yeb{bottom:140.200000pt;}
.yf9{bottom:140.320000pt;}
.yd7{bottom:140.794667pt;}
.yb6{bottom:140.826667pt;}
.y96{bottom:140.840000pt;}
.ybf{bottom:140.960000pt;}
.y101{bottom:140.986667pt;}
.yab{bottom:141.000000pt;}
.y193{bottom:143.546667pt;}
.y1ce{bottom:144.826667pt;}
.y1ef{bottom:145.306667pt;}
.y160{bottom:145.320000pt;}
.y3a{bottom:145.946667pt;}
.y145{bottom:151.066667pt;}
.y6f{bottom:151.546667pt;}
.y130{bottom:152.346667pt;}
.y9f{bottom:153.306667pt;}
.y1b4{bottom:154.106667pt;}
.y77{bottom:154.906667pt;}
.yf7{bottom:155.520000pt;}
.yea{bottom:155.560000pt;}
.yd6{bottom:156.154667pt;}
.yb5{bottom:156.186667pt;}
.y95{bottom:156.200000pt;}
.y100{bottom:156.346667pt;}
.yaa{bottom:156.360000pt;}
.ybb{bottom:158.586667pt;}
.y192{bottom:158.906667pt;}
.y1cd{bottom:160.186667pt;}
.y1ee{bottom:160.666667pt;}
.y39{bottom:161.306667pt;}
.y15f{bottom:162.920000pt;}
.y144{bottom:166.426667pt;}
.y6e{bottom:166.906667pt;}
.y12f{bottom:167.706667pt;}
.y1b3{bottom:169.466667pt;}
.y76{bottom:170.106667pt;}
.ye9{bottom:170.920000pt;}
.yd5{bottom:171.514667pt;}
.yb4{bottom:171.546667pt;}
.y94{bottom:171.560000pt;}
.yf2{bottom:173.946667pt;}
.y191{bottom:174.106667pt;}
.y1cc{bottom:175.546667pt;}
.y1ed{bottom:175.866667pt;}
.y38{bottom:176.666667pt;}
.y143{bottom:181.786667pt;}
.y6d{bottom:182.266667pt;}
.y15e{bottom:182.426667pt;}
.y12e{bottom:183.066667pt;}
.y1b2{bottom:184.826667pt;}
.y75{bottom:185.466667pt;}
.ye8{bottom:186.280000pt;}
.yd4{bottom:186.874667pt;}
.y93{bottom:186.920000pt;}
.y190{bottom:189.466667pt;}
.y1cb{bottom:190.906667pt;}
.y1ec{bottom:191.226667pt;}
.y37{bottom:192.026667pt;}
.y142{bottom:196.986667pt;}
.y6c{bottom:197.466667pt;}
.y12d{bottom:198.426667pt;}
.y1b1{bottom:200.186667pt;}
.y74{bottom:200.826667pt;}
.ye7{bottom:201.480000pt;}
.yd3{bottom:202.274667pt;}
.y92{bottom:202.280000pt;}
.y102{bottom:204.666667pt;}
.y18f{bottom:204.826667pt;}
.y1ca{bottom:206.106667pt;}
.y152{bottom:206.586667pt;}
.y36{bottom:207.226667pt;}
.y141{bottom:212.346667pt;}
.y6b{bottom:212.826667pt;}
.y73{bottom:213.306667pt;}
.y12c{bottom:213.626667pt;}
.y1b0{bottom:215.386667pt;}
.yd2{bottom:217.474667pt;}
.ye5{bottom:217.480000pt;}
.y91{bottom:217.640000pt;}
.y18e{bottom:220.186667pt;}
.y1c9{bottom:221.466667pt;}
.y1eb{bottom:221.946667pt;}
.y35{bottom:222.586667pt;}
.y140{bottom:227.706667pt;}
.y6a{bottom:228.186667pt;}
.y12b{bottom:228.986667pt;}
.y1af{bottom:230.746667pt;}
.yd1{bottom:232.834667pt;}
.y90{bottom:232.840000pt;}
.y18d{bottom:235.546667pt;}
.y1c8{bottom:236.826667pt;}
.y1ea{bottom:237.306667pt;}
.y34{bottom:237.946667pt;}
.y13f{bottom:243.066667pt;}
.y69{bottom:243.546667pt;}
.y12a{bottom:244.346667pt;}
.y1ae{bottom:246.106667pt;}
.y162{bottom:247.066667pt;}
.yd0{bottom:248.194667pt;}
.y8f{bottom:248.226667pt;}
.y1c4{bottom:250.106667pt;}
.y18c{bottom:250.746667pt;}
.y1e9{bottom:252.506667pt;}
.y33{bottom:253.306667pt;}
.y13e{bottom:258.426667pt;}
.y151{bottom:258.746667pt;}
.y68{bottom:258.906667pt;}
.y129{bottom:259.706667pt;}
.y1ad{bottom:261.466667pt;}
.yba{bottom:262.906667pt;}
.ycf{bottom:263.554667pt;}
.y8e{bottom:263.586667pt;}
.y18b{bottom:266.106667pt;}
.y1e8{bottom:267.866667pt;}
.y32{bottom:268.666667pt;}
.y13d{bottom:273.786667pt;}
.y67{bottom:274.266667pt;}
.y128{bottom:275.066667pt;}
.y1ac{bottom:276.826667pt;}
.yb2{bottom:278.266667pt;}
.yce{bottom:278.914667pt;}
.y8d{bottom:278.946667pt;}
.ye4{bottom:280.666667pt;}
.y18a{bottom:281.466667pt;}
.y1e7{bottom:283.226667pt;}
.y31{bottom:283.866667pt;}
.y13c{bottom:288.986667pt;}
.y66{bottom:289.466667pt;}
.y127{bottom:290.426667pt;}
.y7f{bottom:290.586667pt;}
.y1ab{bottom:292.026667pt;}
.yb1{bottom:293.626667pt;}
.ycd{bottom:294.114667pt;}
.y8c{bottom:294.306667pt;}
.y189{bottom:296.826667pt;}
.y1e6{bottom:298.586667pt;}
.y30{bottom:299.266667pt;}
.y13b{bottom:304.386667pt;}
.y65{bottom:304.866667pt;}
.y126{bottom:305.666667pt;}
.y1aa{bottom:307.426667pt;}
.ycc{bottom:309.474667pt;}
.y8b{bottom:309.666667pt;}
.y150{bottom:310.786667pt;}
.y188{bottom:312.226667pt;}
.y1e5{bottom:313.986667pt;}
.y2f{bottom:317.026667pt;}
.y13a{bottom:319.746667pt;}
.y64{bottom:320.226667pt;}
.y125{bottom:321.026667pt;}
.y15d{bottom:322.626667pt;}
.y1a9{bottom:322.786667pt;}
.ycb{bottom:324.834667pt;}
.y8a{bottom:324.866667pt;}
.yb0{bottom:326.626667pt;}
.y187{bottom:327.586667pt;}
.y1e4{bottom:329.346667pt;}
.y2e{bottom:332.386667pt;}
.y138{bottom:333.026667pt;}
.y63{bottom:335.586667pt;}
.y124{bottom:336.386667pt;}
.y1a8{bottom:338.146667pt;}
.yca{bottom:340.194667pt;}
.y89{bottom:340.226667pt;}
.y186{bottom:342.786667pt;}
.y1e3{bottom:344.546667pt;}
.y2d{bottom:347.586667pt;}
.y1c1{bottom:347.906667pt;}
.y137{bottom:350.786667pt;}
.y62{bottom:350.946667pt;}
.y123{bottom:351.746667pt;}
.y1a7{bottom:353.506667pt;}
.yc9{bottom:355.554667pt;}
.y88{bottom:355.586667pt;}
.y185{bottom:358.146667pt;}
.y1e2{bottom:359.906667pt;}
.y61{bottom:366.306667pt;}
.y122{bottom:367.106667pt;}
.y1a6{bottom:368.866667pt;}
.yc8{bottom:370.914667pt;}
.y87{bottom:370.946667pt;}
.y184{bottom:373.506667pt;}
.y15c{bottom:374.626667pt;}
.y1e1{bottom:375.266667pt;}
.y14e{bottom:380.546667pt;}
.y2c{bottom:381.186667pt;}
.y60{bottom:381.506667pt;}
.y121{bottom:382.466667pt;}
.y1a5{bottom:384.066667pt;}
.y135{bottom:384.546667pt;}
.yc7{bottom:386.114667pt;}
.y86{bottom:386.306667pt;}
.y183{bottom:388.866667pt;}
.y1e0{bottom:390.626667pt;}
.y5f{bottom:396.866667pt;}
.y1a4{bottom:397.346667pt;}
.y120{bottom:397.666667pt;}
.y2b{bottom:398.946667pt;}
.y85{bottom:401.506667pt;}
.yff{bottom:403.266667pt;}
.y182{bottom:404.226667pt;}
.y1df{bottom:405.986667pt;}
.y5e{bottom:412.226667pt;}
.y11f{bottom:413.026667pt;}
.y2a{bottom:416.546667pt;}
.y84{bottom:416.866667pt;}
.y134{bottom:418.466667pt;}
.y181{bottom:419.586667pt;}
.y1de{bottom:421.346667pt;}
.y5d{bottom:427.586667pt;}
.y11e{bottom:428.386667pt;}
.y83{bottom:432.226667pt;}
.y29{bottom:434.146667pt;}
.y180{bottom:434.786667pt;}
.y1dd{bottom:436.546667pt;}
.y5c{bottom:442.946667pt;}
.y11d{bottom:443.746667pt;}
.y1ba{bottom:445.666667pt;}
.y82{bottom:447.586667pt;}
.yb3{bottom:448.706667pt;}
.y14c{bottom:450.146667pt;}
.y28{bottom:451.746667pt;}
.y1dc{bottom:451.906667pt;}
.y133{bottom:452.226667pt;}
.y5b{bottom:458.146667pt;}
.y11c{bottom:459.106667pt;}
.y15a{bottom:461.986667pt;}
.y81{bottom:462.946667pt;}
.y1a3{bottom:463.106667pt;}
.y17f{bottom:465.506667pt;}
.y1db{bottom:467.266667pt;}
.y27{bottom:469.346667pt;}
.y5a{bottom:473.506667pt;}
.y11b{bottom:474.466667pt;}
.y80{bottom:478.306667pt;}
.y17e{bottom:480.866667pt;}
.y1da{bottom:482.626667pt;}
.y26{bottom:487.106667pt;}
.y59{bottom:488.866667pt;}
.y11a{bottom:489.666667pt;}
.y17d{bottom:496.226667pt;}
.y1d9{bottom:497.986667pt;}
.y14b{bottom:502.306667pt;}
.y58{bottom:504.226667pt;}
.y25{bottom:504.706667pt;}
.y119{bottom:505.026667pt;}
.y17c{bottom:512.546667pt;}
.y1a0{bottom:513.026667pt;}
.y1d8{bottom:513.186667pt;}
.y116{bottom:518.306667pt;}
.y57{bottom:519.586667pt;}
.y24{bottom:522.306667pt;}
.yc3{bottom:525.346667pt;}
.y1d6{bottom:526.466667pt;}
.y17b{bottom:529.826667pt;}
.y56{bottom:534.946667pt;}
.y23{bottom:539.933333pt;}
.y1b8{bottom:543.613333pt;}
.y17a{bottom:546.173333pt;}
.y159{bottom:549.373333pt;}
.y55{bottom:550.173333pt;}
.y115{bottom:552.093333pt;}
.y148{bottom:554.333333pt;}
.y22{bottom:557.533333pt;}
.y1d5{bottom:560.413333pt;}
.y179{bottom:561.533333pt;}
.y19e{bottom:562.813333pt;}
.y54{bottom:565.533333pt;}
.y114{bottom:573.853333pt;}
.y21{bottom:575.293333pt;}
.y178{bottom:576.893333pt;}
.y53{bottom:580.893333pt;}
.ybe{bottom:586.013333pt;}
.yf6{bottom:586.653333pt;}
.y177{bottom:592.253333pt;}
.y20{bottom:592.893333pt;}
.y113{bottom:595.773333pt;}
.y52{bottom:596.253333pt;}
.y175{bottom:605.533333pt;}
.y1d4{bottom:610.173333pt;}
.y1f{bottom:610.493333pt;}
.y51{bottom:611.613333pt;}
.y19a{bottom:612.573333pt;}
.y112{bottom:617.533333pt;}
.yc1{bottom:618.013333pt;}
.y158{bottom:619.133333pt;}
.y50{bottom:626.973333pt;}
.y1e{bottom:628.093333pt;}
.y111{bottom:639.293333pt;}
.y4f{bottom:642.173333pt;}
.y1d{bottom:645.693333pt;}
.ya9{bottom:647.293333pt;}
.y4e{bottom:657.533333pt;}
.y1d3{bottom:659.933333pt;}
.y10e{bottom:661.213333pt;}
.y196{bottom:662.333333pt;}
.yf8{bottom:662.653333pt;}
.yc0{bottom:663.293333pt;}
.y157{bottom:671.133333pt;}
.y4d{bottom:672.893333pt;}
.y1c{bottom:677.053333pt;}
.y16e{bottom:687.293333pt;}
.y4c{bottom:688.253333pt;}
.y1b{bottom:692.413333pt;}
.y10d{bottom:694.973333pt;}
.y4b{bottom:703.613333pt;}
.y1a{bottom:708.733333pt;}
.y1d2{bottom:709.693333pt;}
.y10c{bottom:716.733333pt;}
.y4a{bottom:718.973333pt;}
.y156{bottom:723.133333pt;}
.y195{bottom:728.253333pt;}
.y19{bottom:729.853333pt;}
.y49{bottom:734.173333pt;}
.y10b{bottom:738.493333pt;}
.y18{bottom:746.653333pt;}
.y48{bottom:749.533333pt;}
.ybd{bottom:754.013333pt;}
.y17{bottom:758.173333pt;}
.y1d1{bottom:759.613333pt;}
.y10a{bottom:760.413333pt;}
.y47{bottom:764.893333pt;}
.y167{bottom:769.053333pt;}
.yf4{bottom:769.373333pt;}
.y16{bottom:775.173333pt;}
.y155{bottom:775.333333pt;}
.y46{bottom:780.293333pt;}
.y109{bottom:782.213333pt;}
.y15{bottom:791.973333pt;}
.y45{bottom:795.653333pt;}
.y7c{bottom:795.973333pt;}
.y108{bottom:803.973333pt;}
.y14{bottom:808.933333pt;}
.y44{bottom:810.853333pt;}
.y13{bottom:825.733333pt;}
.y43{bottom:826.213333pt;}
.y154{bottom:827.333333pt;}
.y104{bottom:830.693333pt;}
.y7b{bottom:840.293333pt;}
.y42{bottom:841.573333pt;}
.y12{bottom:842.533333pt;}
.ya7{bottom:846.053333pt;}
.y105{bottom:847.653333pt;}
.y166{bottom:850.853333pt;}
.y41{bottom:856.933333pt;}
.y11{bottom:859.493333pt;}
.y40{bottom:872.293333pt;}
.y10{bottom:875.973333pt;}
.y153{bottom:879.493333pt;}
.y3f{bottom:887.653333pt;}
.yf{bottom:894.693333pt;}
.y3e{bottom:902.853333pt;}
.ye{bottom:915.813333pt;}
.y3d{bottom:918.213333pt;}
.y9{bottom:934.693333pt;}
.y8{bottom:951.493333pt;}
.y7{bottom:966.853333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:997.733333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h29{height:16.960000pt;}
.h3f{height:16.992000pt;}
.h18{height:17.280000pt;}
.h23{height:20.960000pt;}
.h25{height:20.992000pt;}
.h24{height:21.120000pt;}
.h17{height:30.560000pt;}
.hc{height:30.720000pt;}
.h9{height:31.665000pt;}
.h26{height:32.960000pt;}
.h27{height:32.992000pt;}
.h28{height:33.120000pt;}
.h40{height:33.152000pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h36{height:42.729038pt;}
.hb{height:42.866250pt;}
.h7{height:43.031250pt;}
.he{height:43.782500pt;}
.h4{height:45.156250pt;}
.h19{height:45.952000pt;}
.h1e{height:46.080000pt;}
.h8{height:47.310625pt;}
.h2{height:47.621250pt;}
.h38{height:48.960000pt;}
.h39{height:48.992000pt;}
.h3a{height:49.120000pt;}
.h2e{height:51.200000pt;}
.h2b{height:51.232000pt;}
.h2c{height:51.360000pt;}
.h2f{height:51.392000pt;}
.h3{height:52.785000pt;}
.h6{height:58.563750pt;}
.h21{height:61.440000pt;}
.h3b{height:64.960000pt;}
.h37{height:65.120000pt;}
.h2d{height:68.800000pt;}
.h33{height:68.832000pt;}
.h2a{height:68.960000pt;}
.h10{height:76.640000pt;}
.h35{height:80.960000pt;}
.h34{height:80.992000pt;}
.h31{height:86.560000pt;}
.h30{height:86.592000pt;}
.h1d{height:92.000000pt;}
.h3d{height:96.960000pt;}
.h3e{height:96.992000pt;}
.h3c{height:97.152000pt;}
.h13{height:107.360000pt;}
.hf{height:122.560000pt;}
.h1b{height:122.592000pt;}
.h16{height:153.280000pt;}
.h1f{height:153.306667pt;}
.h14{height:153.466667pt;}
.h20{height:168.000000pt;}
.h15{height:168.666667pt;}
.h22{height:168.826667pt;}
.h11{height:184.026667pt;}
.h32{height:191.386667pt;}
.h1c{height:229.946667pt;}
.h12{height:306.106667pt;}
.h1a{height:398.586667pt;}
.hd{height:490.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:53.600000pt;}
.w9{width:73.600000pt;}
.w13{width:74.592000pt;}
.w7{width:76.640000pt;}
.w11{width:82.592000pt;}
.w5{width:83.680000pt;}
.w16{width:84.640000pt;}
.w12{width:87.520000pt;}
.w15{width:89.632000pt;}
.w1e{width:94.240000pt;}
.w4{width:97.632000pt;}
.w3{width:100.672000pt;}
.w21{width:101.600000pt;}
.w1f{width:107.712000pt;}
.w6{width:111.712000pt;}
.w20{width:112.672000pt;}
.w8{width:124.832000pt;}
.w10{width:126.080000pt;}
.w18{width:141.626667pt;}
.w1a{width:144.160000pt;}
.w17{width:144.666667pt;}
.wd{width:145.626667pt;}
.w1d{width:146.586667pt;}
.we{width:146.746667pt;}
.wc{width:148.160000pt;}
.w1c{width:148.666667pt;}
.wf{width:149.626667pt;}
.w1b{width:151.546667pt;}
.w19{width:156.506667pt;}
.w22{width:195.226667pt;}
.wb{width:196.666667pt;}
.w23{width:198.586667pt;}
.wa{width:206.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.080000pt;}
.x33{left:8.800000pt;}
.x25{left:10.240000pt;}
.x3e{left:14.080000pt;}
.x20{left:15.040000pt;}
.x24{left:16.000000pt;}
.x1d{left:17.760000pt;}
.x44{left:20.000000pt;}
.x2e{left:21.480000pt;}
.x29{left:22.400000pt;}
.x38{left:26.920000pt;}
.x1b{left:28.000000pt;}
.x31{left:29.306667pt;}
.x19{left:30.432000pt;}
.x40{left:34.240000pt;}
.x54{left:37.440000pt;}
.x49{left:38.906667pt;}
.x42{left:40.026667pt;}
.x39{left:41.600000pt;}
.x22{left:42.720000pt;}
.x36{left:45.274667pt;}
.x2f{left:49.960000pt;}
.x18{left:52.320000pt;}
.x2b{left:54.240000pt;}
.x47{left:55.240000pt;}
.x27{left:60.954667pt;}
.x56{left:62.880000pt;}
.x52{left:78.234667pt;}
.x35{left:94.912000pt;}
.x2{left:96.031988pt;}
.x17{left:109.311988pt;}
.x1{left:113.791988pt;}
.x45{left:119.871988pt;}
.x4b{left:121.951988pt;}
.xf{left:125.311988pt;}
.x8{left:133.946655pt;}
.x5{left:139.706655pt;}
.x10{left:143.706655pt;}
.x15{left:152.026655pt;}
.x1a{left:154.426667pt;}
.x34{left:155.386655pt;}
.x2c{left:164.986655pt;}
.x11{left:178.426655pt;}
.x4c{left:191.386667pt;}
.x51{left:193.146655pt;}
.x37{left:221.466667pt;}
.x3f{left:222.426655pt;}
.x46{left:241.466667pt;}
.x2d{left:245.466667pt;}
.x1c{left:253.346667pt;}
.x53{left:292.546667pt;}
.x4d{left:299.426667pt;}
.x28{left:304.066667pt;}
.xb{left:305.506655pt;}
.x16{left:307.906655pt;}
.xc{left:315.586655pt;}
.xd{left:318.306655pt;}
.x9{left:322.146655pt;}
.xe{left:326.146655pt;}
.x1e{left:338.466667pt;}
.x13{left:341.826655pt;}
.x7{left:343.426655pt;}
.xa{left:351.266655pt;}
.x57{left:352.226655pt;}
.x12{left:354.786655pt;}
.x6{left:366.466655pt;}
.x4e{left:384.546667pt;}
.x41{left:390.466667pt;}
.x30{left:391.426667pt;}
.x3a{left:392.546667pt;}
.x48{left:393.506667pt;}
.x3{left:396.866655pt;}
.x1f{left:451.453333pt;}
.x4{left:460.733322pt;}
.x3b{left:467.453333pt;}
.x4f{left:474.493333pt;}
.x55{left:491.453333pt;}
.x2a{left:501.053333pt;}
.x3c{left:521.533333pt;}
.x21{left:529.373333pt;}
.x43{left:532.573333pt;}
.x32{left:538.493333pt;}
.x4a{left:542.493333pt;}
.x50{left:587.493333pt;}
.x3d{left:611.493333pt;}
.x14{left:644.293322pt;}
.x23{left:655.493333pt;}
}




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