
    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_6978a4422098eeda73099f7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_cffaa37612f46f1830f148f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_918ed03a46db98a72aea1914.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_a0a4216dcd981ddeaf89e63d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_6b2d450ef1822ae6456bccb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_ce197d6395ed5052df109329.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_4daa7ca30ccbd6d76e6e45e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a80e629dc0c2d38bba743293.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7111024616cb7f4dc1cb95c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_187f33123e33390f64b648dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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;}
.m3{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253588,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:-27.360000px;}
.v9{vertical-align:-21.600000px;}
.v4{vertical-align:-20.160000px;}
.v3{vertical-align:-12.240000px;}
.v5{vertical-align:-10.800000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.800000px;}
.va{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.vb{vertical-align:30.240000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:41.040000px;}
.lsb{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.156000px;}
.ls6{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.262080px;}
.ls18{letter-spacing:0.355800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:1.098000px;}
.ls20{letter-spacing:1.814006px;}
.ls15{letter-spacing:1.968480px;}
.ls22{letter-spacing:1.982594px;}
.ls17{letter-spacing:2.688480px;}
.lsf{letter-spacing:2.705760px;}
.ls25{letter-spacing:3.060000px;}
.ls1d{letter-spacing:3.121920px;}
.ls16{letter-spacing:3.212640px;}
.lse{letter-spacing:3.879360px;}
.ls9{letter-spacing:5.940000px;}
.ls23{letter-spacing:7.380000px;}
.ls2{letter-spacing:11.628000px;}
.ls1c{letter-spacing:14.580000px;}
.ls5{letter-spacing:15.300000px;}
.ls24{letter-spacing:16.020000px;}
.ls8{letter-spacing:16.740000px;}
.ls1{letter-spacing:21.780000px;}
.lsd{letter-spacing:26.820000px;}
.ls14{letter-spacing:38.688480px;}
.ls1b{letter-spacing:39.905280px;}
.ls1a{letter-spacing:44.820000px;}
.ls3{letter-spacing:57.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-54.000000px;}
.ws8{word-spacing:-44.910000px;}
.wsd{word-spacing:-42.498000px;}
.wsa{word-spacing:-39.618000px;}
.wsc{word-spacing:-39.235800px;}
.wsb{word-spacing:-38.898000px;}
.wse{word-spacing:-38.880000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.140000px;}
.ws0{word-spacing:-12.060000px;}
.wsf{word-spacing:-9.000000px;}
.ws4{word-spacing:-6.605607px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:520.797989px;}
.ws11{word-spacing:522.418287px;}
._24{margin-left:-6.804000px;}
._25{margin-left:-4.950000px;}
._23{margin-left:-3.618000px;}
._6{margin-left:-2.527200px;}
._0{margin-left:-1.179360px;}
._1{width:1.566240px;}
._a{width:2.763360px;}
._3{width:4.374000px;}
._5{width:6.264000px;}
._2{width:7.506000px;}
._19{width:8.586000px;}
._9{width:9.612000px;}
._7{width:11.016000px;}
._b{width:12.303360px;}
._22{width:14.742000px;}
._15{width:15.768000px;}
._14{width:16.902000px;}
._11{width:18.198000px;}
._c{width:19.818000px;}
._d{width:20.844000px;}
._f{width:22.482000px;}
._e{width:23.490000px;}
._1d{width:24.732000px;}
._21{width:25.812000px;}
._13{width:27.000000px;}
._12{width:28.404000px;}
._1f{width:30.456000px;}
._18{width:31.536000px;}
._10{width:32.616000px;}
._17{width:34.659360px;}
._16{width:36.018000px;}
._28{width:37.134240px;}
._4{width:38.988000px;}
._1e{width:40.662000px;}
._8{width:42.552000px;}
._29{width:44.238000px;}
._26{width:45.522000px;}
._27{width:46.755120px;}
._2b{width:51.624000px;}
._1c{width:56.538000px;}
._1b{width:57.600000px;}
._34{width:58.752000px;}
._2a{width:62.694000px;}
._33{width:63.720000px;}
._2d{width:64.800000px;}
._2c{width:69.786000px;}
._20{width:71.064000px;}
._1a{width:72.306000px;}
._32{width:73.872000px;}
._31{width:80.244000px;}
._39{width:87.696000px;}
._37{width:95.418000px;}
._38{width:96.606000px;}
._35{width:199.476000px;}
._36{width:362.610000px;}
._30{width:539.001777px;}
._2e{width:572.316609px;}
._2f{width:574.946581px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.228348px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:66.255061px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:1.260000px;}
.ybe{bottom:2.880000px;}
.yc3{bottom:3.060000px;}
.y7f{bottom:3.294376px;}
.y15f{bottom:3.420000px;}
.y167{bottom:5.690666px;}
.ycb{bottom:9.360000px;}
.ycd{bottom:9.540000px;}
.yf7{bottom:10.260000px;}
.yd7{bottom:10.800000px;}
.y119{bottom:11.160000px;}
.ydf{bottom:11.520000px;}
.yfe{bottom:11.565000px;}
.y7e{bottom:12.046499px;}
.yfb{bottom:12.105000px;}
.ycc{bottom:14.400000px;}
.yfc{bottom:17.325000px;}
.yfd{bottom:17.505000px;}
.yeb{bottom:18.360000px;}
.yd6{bottom:18.540000px;}
.y15e{bottom:19.080000px;}
.y81{bottom:38.926126px;}
.y7d{bottom:38.926132px;}
.y7b{bottom:38.926140px;}
.y77{bottom:38.926148px;}
.y79{bottom:38.926160px;}
.y80{bottom:47.678572px;}
.y7c{bottom:47.678576px;}
.y7a{bottom:47.678586px;}
.y76{bottom:47.678593px;}
.y78{bottom:47.678604px;}
.y166{bottom:100.563529px;}
.y58{bottom:150.150000px;}
.y161{bottom:160.950000px;}
.y57{bottom:165.810000px;}
.y14c{bottom:166.530000px;}
.y91{bottom:166.710000px;}
.yb4{bottom:168.690000px;}
.y120{bottom:172.470000px;}
.y160{bottom:173.550000px;}
.y32{bottom:174.090000px;}
.y19d{bottom:174.810000px;}
.y56{bottom:181.290000px;}
.y14b{bottom:182.010000px;}
.y90{bottom:182.190000px;}
.y17e{bottom:183.090000px;}
.ye9{bottom:183.450000px;}
.yb3{bottom:184.350000px;}
.y11f{bottom:187.950000px;}
.y19c{bottom:191.370000px;}
.y55{bottom:196.770000px;}
.y14a{bottom:197.670000px;}
.y8f{bottom:197.850000px;}
.y17d{bottom:198.570000px;}
.ye8{bottom:198.930000px;}
.yb2{bottom:199.830000px;}
.y11e{bottom:203.430000px;}
.y19b{bottom:207.750000px;}
.y31{bottom:209.010000px;}
.y149{bottom:213.150000px;}
.y8e{bottom:213.330000px;}
.y17c{bottom:214.230000px;}
.ye7{bottom:214.590000px;}
.yb1{bottom:215.310000px;}
.y11d{bottom:218.910000px;}
.y19a{bottom:224.310000px;}
.y30{bottom:224.490000px;}
.y148{bottom:225.750000px;}
.y54{bottom:228.810000px;}
.y17b{bottom:229.710000px;}
.ye6{bottom:230.070000px;}
.yb0{bottom:230.790000px;}
.y11c{bottom:234.570000px;}
.y2f{bottom:239.970000px;}
.y199{bottom:240.870000px;}
.y8d{bottom:244.290000px;}
.y17a{bottom:245.190000px;}
.ye5{bottom:245.550000px;}
.yaf{bottom:246.270000px;}
.y11b{bottom:250.050000px;}
.y2e{bottom:255.450000px;}
.y198{bottom:257.250000px;}
.y179{bottom:260.670000px;}
.y53{bottom:260.850000px;}
.ye4{bottom:261.030000px;}
.yae{bottom:261.930000px;}
.y8c{bottom:264.450000px;}
.y11a{bottom:265.530000px;}
.y2d{bottom:271.110000px;}
.y197{bottom:273.810000px;}
.y52{bottom:276.330000px;}
.ye3{bottom:276.690000px;}
.yad{bottom:277.410000px;}
.y118{bottom:278.130000px;}
.y178{bottom:285.870000px;}
.y2c{bottom:286.590000px;}
.y196{bottom:290.370000px;}
.y51{bottom:291.990000px;}
.ye2{bottom:292.170000px;}
.yac{bottom:292.890000px;}
.y2b{bottom:302.070000px;}
.y195{bottom:306.750000px;}
.y50{bottom:307.470000px;}
.ye1{bottom:307.650000px;}
.yab{bottom:308.370000px;}
.y117{bottom:313.770000px;}
.y2a{bottom:317.550000px;}
.y177{bottom:317.730000px;}
.y4f{bottom:322.950000px;}
.ye0{bottom:323.130000px;}
.yaa{bottom:324.030000px;}
.y116{bottom:329.250000px;}
.y176{bottom:330.510000px;}
.y194{bottom:332.670000px;}
.y29{bottom:333.210000px;}
.yde{bottom:335.730000px;}
.y4e{bottom:338.430000px;}
.ya9{bottom:339.510000px;}
.y15d{bottom:344.550000px;}
.y115{bottom:344.730000px;}
.y28{bottom:348.690000px;}
.y4d{bottom:353.910000px;}
.ya8{bottom:354.990000px;}
.y114{bottom:360.210000px;}
.y27{bottom:364.170000px;}
.y193{bottom:364.530000px;}
.y4c{bottom:369.570000px;}
.ya7{bottom:370.470000px;}
.ydd{bottom:371.370000px;}
.y113{bottom:375.690000px;}
.y26{bottom:379.650000px;}
.y192{bottom:380.010000px;}
.y15c{bottom:380.190000px;}
.y4b{bottom:385.050000px;}
.ya6{bottom:386.130000px;}
.ydc{bottom:386.850000px;}
.y147{bottom:388.515000px;}
.y112{bottom:391.395000px;}
.y25{bottom:395.355000px;}
.y191{bottom:395.535000px;}
.y15b{bottom:395.715000px;}
.y4a{bottom:400.575000px;}
.ya5{bottom:401.655000px;}
.ydb{bottom:402.375000px;}
.y146{bottom:403.995000px;}
.y111{bottom:406.875000px;}
.y24{bottom:410.835000px;}
.y190{bottom:411.015000px;}
.y15a{bottom:411.195000px;}
.y49{bottom:416.055000px;}
.ya4{bottom:417.135000px;}
.yda{bottom:418.035000px;}
.y145{bottom:419.475000px;}
.y110{bottom:422.355000px;}
.y23{bottom:426.315000px;}
.y159{bottom:426.675000px;}
.ya3{bottom:429.735000px;}
.yd9{bottom:431.355000px;}
.y48{bottom:431.715000px;}
.y144{bottom:434.955000px;}
.y10f{bottom:437.835000px;}
.y22{bottom:441.795000px;}
.y18f{bottom:442.155000px;}
.y158{bottom:442.335000px;}
.yd8{bottom:446.835000px;}
.y47{bottom:447.195000px;}
.y143{bottom:450.615000px;}
.y8b{bottom:453.675000px;}
.y18e{bottom:457.635000px;}
.y157{bottom:457.815000px;}
.yd5{bottom:462.315000px;}
.y10e{bottom:462.495000px;}
.y46{bottom:462.675000px;}
.y142{bottom:466.095000px;}
.y21{bottom:466.995000px;}
.y8a{bottom:470.595000px;}
.y18d{bottom:473.115000px;}
.y156{bottom:473.295000px;}
.y45{bottom:478.155000px;}
.y141{bottom:481.575000px;}
.y89{bottom:486.255000px;}
.y155{bottom:488.775000px;}
.y10d{bottom:491.475000px;}
.yd4{bottom:493.455000px;}
.y44{bottom:493.815000px;}
.y140{bottom:497.055000px;}
.y1c3{bottom:499.935000px;}
.y20{bottom:500.295000px;}
.y88{bottom:501.735000px;}
.y10c{bottom:504.075000px;}
.y18c{bottom:504.255000px;}
.y154{bottom:504.435000px;}
.y43{bottom:509.295000px;}
.yd3{bottom:509.655000px;}
.y13f{bottom:512.715000px;}
.y1f{bottom:515.955000px;}
.y1c2{bottom:516.315000px;}
.y87{bottom:517.215000px;}
.y18b{bottom:519.735000px;}
.y153{bottom:519.915000px;}
.y42{bottom:524.775000px;}
.y13e{bottom:528.195000px;}
.yd2{bottom:528.915000px;}
.y1e{bottom:531.435000px;}
.y86{bottom:532.695000px;}
.y1c1{bottom:532.875000px;}
.y18a{bottom:535.215000px;}
.y152{bottom:535.395000px;}
.y175{bottom:537.915000px;}
.y41{bottom:540.255000px;}
.y13d{bottom:543.675000px;}
.yd1{bottom:544.395000px;}
.y1d{bottom:546.915000px;}
.y85{bottom:548.355000px;}
.y1c0{bottom:549.435000px;}
.y151{bottom:550.875000px;}
.y174{bottom:553.395000px;}
.y40{bottom:555.915000px;}
.y13c{bottom:559.155000px;}
.yd0{bottom:559.875000px;}
.y1c{bottom:562.395000px;}
.y84{bottom:563.835000px;}
.y1bf{bottom:565.815000px;}
.y189{bottom:566.355000px;}
.y150{bottom:566.535000px;}
.y173{bottom:568.875000px;}
.y3f{bottom:571.395000px;}
.y13b{bottom:574.815000px;}
.ycf{bottom:575.535000px;}
.y1b{bottom:578.055000px;}
.y14f{bottom:579.135000px;}
.y188{bottom:581.835000px;}
.y1be{bottom:582.375000px;}
.y172{bottom:584.535000px;}
.y3e{bottom:586.875000px;}
.y83{bottom:587.055000px;}
.y13a{bottom:590.295000px;}
.yce{bottom:591.375000px;}
.y1a{bottom:593.535000px;}
.y171{bottom:597.135000px;}
.y187{bottom:597.315000px;}
.y1bd{bottom:598.935000px;}
.y3d{bottom:602.355000px;}
.yca{bottom:604.155000px;}
.y139{bottom:605.775000px;}
.y82{bottom:608.475000px;}
.y75{bottom:608.817639px;}
.y19{bottom:609.015000px;}
.ya2{bottom:610.275000px;}
.y186{bottom:612.975000px;}
.y1bc{bottom:615.315000px;}
.y3c{bottom:618.015000px;}
.y138{bottom:621.255000px;}
.y18{bottom:624.495000px;}
.ya1{bottom:625.755000px;}
.y185{bottom:628.455000px;}
.y1bb{bottom:631.875000px;}
.y3b{bottom:633.495000px;}
.yc9{bottom:636.015000px;}
.y137{bottom:636.735000px;}
.y17{bottom:640.185000px;}
.ya0{bottom:641.265000px;}
.y184{bottom:643.965000px;}
.y1ba{bottom:648.465000px;}
.y3a{bottom:649.005000px;}
.yc8{bottom:651.525000px;}
.y136{bottom:652.425000px;}
.y10b{bottom:654.405000px;}
.y16{bottom:655.665000px;}
.y9f{bottom:656.745000px;}
.y183{bottom:659.445000px;}
.y39{bottom:664.485000px;}
.y1b9{bottom:664.845000px;}
.yc7{bottom:667.005000px;}
.y135{bottom:667.905000px;}
.y10a{bottom:669.885000px;}
.y15{bottom:671.145000px;}
.y9e{bottom:672.405000px;}
.y182{bottom:675.105000px;}
.y38{bottom:680.145000px;}
.y1b8{bottom:681.405000px;}
.yc6{bottom:682.665000px;}
.y134{bottom:683.385000px;}
.y109{bottom:685.365000px;}
.y14{bottom:686.625000px;}
.y74{bottom:687.345000px;}
.y9d{bottom:687.885000px;}
.y181{bottom:690.585000px;}
.y37{bottom:695.625000px;}
.y1b7{bottom:697.965000px;}
.y108{bottom:698.865000px;}
.y13{bottom:702.105000px;}
.y73{bottom:703.005000px;}
.y9c{bottom:703.365000px;}
.y180{bottom:706.065000px;}
.yc5{bottom:707.145000px;}
.y36{bottom:711.105000px;}
.y107{bottom:714.345000px;}
.y133{bottom:714.525000px;}
.y12{bottom:717.585000px;}
.y72{bottom:718.485000px;}
.y9b{bottom:718.845000px;}
.y17f{bottom:721.545000px;}
.y14e{bottom:723.705000px;}
.y35{bottom:726.585000px;}
.y132{bottom:730.005000px;}
.y106{bottom:730.545000px;}
.y1b6{bottom:730.905000px;}
.y71{bottom:733.965000px;}
.y9a{bottom:734.505000px;}
.y14d{bottom:736.305000px;}
.y170{bottom:737.205000px;}
.y34{bottom:742.245000px;}
.y131{bottom:745.485000px;}
.y1b5{bottom:747.465000px;}
.y11{bottom:748.905000px;}
.yc4{bottom:749.445000px;}
.y99{bottom:749.985000px;}
.y16f{bottom:752.685000px;}
.y33{bottom:757.725000px;}
.y130{bottom:760.965000px;}
.y1b4{bottom:763.845000px;}
.yc2{bottom:764.925000px;}
.y105{bottom:765.285000px;}
.y98{bottom:765.465000px;}
.y70{bottom:766.005000px;}
.y16e{bottom:768.165000px;}
.y12f{bottom:776.625000px;}
.y1b3{bottom:780.405000px;}
.yc1{bottom:780.585000px;}
.y104{bottom:780.765000px;}
.y97{bottom:780.945000px;}
.y16d{bottom:783.645000px;}
.y10{bottom:789.765000px;}
.y12e{bottom:792.105000px;}
.yc0{bottom:796.065000px;}
.y96{bottom:796.425000px;}
.y1b2{bottom:796.965000px;}
.y16c{bottom:799.305000px;}
.y6f{bottom:802.545000px;}
.yf{bottom:805.065000px;}
.y12d{bottom:807.585000px;}
.ybf{bottom:811.545000px;}
.y103{bottom:811.905000px;}
.y95{bottom:812.085000px;}
.y1b1{bottom:813.345000px;}
.y16b{bottom:814.785000px;}
.y6e{bottom:818.025000px;}
.ye{bottom:820.185000px;}
.y12c{bottom:823.065000px;}
.y102{bottom:827.385000px;}
.y94{bottom:827.565000px;}
.ybd{bottom:827.925000px;}
.y1b0{bottom:829.905000px;}
.y16a{bottom:830.265000px;}
.y6d{bottom:833.505000px;}
.y12b{bottom:838.725000px;}
.y101{bottom:842.865000px;}
.y169{bottom:845.745000px;}
.y93{bottom:846.105000px;}
.y1af{bottom:846.465000px;}
.ybc{bottom:847.005000px;}
.yd{bottom:847.725000px;}
.y6c{bottom:849.165000px;}
.y12a{bottom:854.205000px;}
.y100{bottom:858.525000px;}
.y168{bottom:861.405000px;}
.yc{bottom:861.585000px;}
.ybb{bottom:862.485000px;}
.y1ae{bottom:862.845000px;}
.y6b{bottom:864.645000px;}
.y129{bottom:869.685000px;}
.yff{bottom:874.005000px;}
.y165{bottom:874.636192px;}
.y92{bottom:877.065000px;}
.yba{bottom:878.145000px;}
.y1ad{bottom:879.405000px;}
.y6a{bottom:880.125000px;}
.yb{bottom:882.465000px;}
.y128{bottom:885.165000px;}
.yfa{bottom:886.605000px;}
.yb9{bottom:893.670000px;}
.y69{bottom:895.650000px;}
.y1ac{bottom:896.010000px;}
.ya{bottom:897.630000px;}
.y127{bottom:900.870000px;}
.yb8{bottom:909.150000px;}
.y68{bottom:911.310000px;}
.y1ab{bottom:912.390000px;}
.y126{bottom:916.350000px;}
.yf9{bottom:922.110000px;}
.yb7{bottom:924.630000px;}
.y9{bottom:925.170000px;}
.y67{bottom:926.790000px;}
.y1aa{bottom:928.950000px;}
.y125{bottom:931.830000px;}
.yf6{bottom:934.710000px;}
.y8{bottom:939.030000px;}
.yb6{bottom:940.290000px;}
.y66{bottom:942.270000px;}
.y1a9{bottom:945.510000px;}
.y124{bottom:947.310000px;}
.yb5{bottom:952.890000px;}
.y65{bottom:957.750000px;}
.y7{bottom:959.730000px;}
.y1a8{bottom:961.890000px;}
.y123{bottom:962.970000px;}
.yf5{bottom:970.350000px;}
.y64{bottom:973.230000px;}
.y122{bottom:978.450000px;}
.y6{bottom:979.710000px;}
.yf4{bottom:985.830000px;}
.y63{bottom:988.890000px;}
.y1a7{bottom:995.010000px;}
.y5{bottom:998.250000px;}
.yf3{bottom:1001.310000px;}
.y121{bottom:1003.470000px;}
.y62{bottom:1004.370000px;}
.y1a6{bottom:1011.390000px;}
.yf2{bottom:1016.970000px;}
.y61{bottom:1019.850000px;}
.y4{bottom:1022.370000px;}
.y1a5{bottom:1027.950000px;}
.yf1{bottom:1032.450000px;}
.y60{bottom:1035.330000px;}
.y1a4{bottom:1044.510000px;}
.yf0{bottom:1047.930000px;}
.y5f{bottom:1050.990000px;}
.y1a3{bottom:1060.890000px;}
.y3{bottom:1062.330000px;}
.yef{bottom:1063.410000px;}
.y5e{bottom:1066.470000px;}
.y164{bottom:1071.510000px;}
.y1a2{bottom:1077.450000px;}
.yee{bottom:1079.070000px;}
.y5d{bottom:1081.950000px;}
.y163{bottom:1087.170000px;}
.yed{bottom:1092.390000px;}
.y1a1{bottom:1094.010000px;}
.y5c{bottom:1097.430000px;}
.y2{bottom:1100.130000px;}
.yec{bottom:1108.590000px;}
.y1a0{bottom:1110.390000px;}
.y162{bottom:1112.190000px;}
.y5b{bottom:1113.090000px;}
.y1{bottom:1124.250000px;}
.yea{bottom:1124.970000px;}
.y19f{bottom:1126.950000px;}
.y5a{bottom:1128.570000px;}
.y19e{bottom:1143.510000px;}
.y59{bottom:1144.050000px;}
.h13{height:15.480000px;}
.h14{height:15.660000px;}
.h15{height:28.980000px;}
.he{height:29.071360px;}
.h1a{height:30.996000px;}
.h18{height:31.140000px;}
.h1f{height:32.580000px;}
.h1d{height:32.616000px;}
.h19{height:32.760000px;}
.h17{height:32.767031px;}
.h8{height:35.991211px;}
.h11{height:39.313477px;}
.h7{height:40.254961px;}
.ha{height:45.061523px;}
.h12{height:45.377930px;}
.h16{height:45.509766px;}
.hb{height:46.300781px;}
.h1e{height:48.041016px;}
.h4{height:49.868086px;}
.hf{height:50.218242px;}
.h10{height:51.239531px;}
.h20{height:52.207031px;}
.hc{height:55.275469px;}
.h9{height:56.795625px;}
.h6{height:60.082031px;}
.hd{height:60.223285px;}
.h3{height:60.503906px;}
.h22{height:65.899199px;}
.h5{height:67.897617px;}
.h2{height:72.229219px;}
.h1c{height:81.061523px;}
.h1b{height:86.549766px;}
.h21{height:193.454743px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:31.860000px;}
.w13{width:32.040000px;}
.wa{width:45.180000px;}
.wb{width:46.476000px;}
.wd{width:52.380000px;}
.wf{width:63.180000px;}
.wc{width:63.540000px;}
.we{width:83.880000px;}
.w14{width:84.420000px;}
.w17{width:84.780000px;}
.w16{width:84.996000px;}
.w15{width:85.320000px;}
.w8{width:91.656000px;}
.w11{width:94.500000px;}
.w10{width:94.896000px;}
.w9{width:115.740000px;}
.w7{width:130.716000px;}
.w4{width:169.770000px;}
.w12{width:307.470000px;}
.w5{width:307.695000px;}
.w3{width:337.814434px;}
.w18{width:637.561662px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:8.136000px;}
.x2f{left:10.620000px;}
.x11{left:13.946912px;}
.x34{left:15.156000px;}
.x31{left:16.380000px;}
.x35{left:17.460000px;}
.x36{left:18.945000px;}
.x44{left:20.340000px;}
.x2e{left:21.456000px;}
.x10{left:23.843102px;}
.x46{left:25.425000px;}
.x37{left:26.640000px;}
.x3e{left:28.080000px;}
.x48{left:30.420000px;}
.x3f{left:32.220000px;}
.x2c{left:33.840000px;}
.x40{left:35.640000px;}
.x3c{left:38.205000px;}
.x33{left:42.336000px;}
.x2a{left:65.550000px;}
.x4{left:85.499987px;}
.x59{left:97.415987px;}
.x5e{left:99.035987px;}
.x1b{left:100.115987px;}
.x5a{left:101.915987px;}
.x1{left:107.135987px;}
.xf{left:109.365742px;}
.x4b{left:111.780000px;}
.x25{left:120.105000px;}
.x38{left:121.530000px;}
.x28{left:122.610000px;}
.x27{left:126.765000px;}
.x55{left:129.196041px;}
.x26{left:133.605000px;}
.x1d{left:135.755987px;}
.x54{left:137.512057px;}
.x21{left:149.075987px;}
.x51{left:153.720000px;}
.x39{left:156.989987px;}
.x8{left:162.209987px;}
.x17{left:169.907630px;}
.x12{left:174.305934px;}
.x13{left:177.987481px;}
.x16{left:180.023736px;}
.x42{left:192.105000px;}
.x22{left:193.349987px;}
.x6{left:204.869987px;}
.x5b{left:209.909987px;}
.x2b{left:216.390000px;}
.xd{left:222.689987px;}
.xc{left:229.529987px;}
.x57{left:235.829987px;}
.x9{left:239.789987px;}
.x15{left:247.896130px;}
.x14{left:249.272637px;}
.x24{left:254.730000px;}
.x30{left:261.570000px;}
.x18{left:287.822985px;}
.xa{left:289.154987px;}
.x19{left:295.642198px;}
.x2d{left:308.775000px;}
.x7{left:342.974987px;}
.xb{left:345.134987px;}
.x20{left:350.174987px;}
.x32{left:372.135000px;}
.x29{left:392.655000px;}
.x1c{left:402.374987px;}
.x2{left:405.434987px;}
.x4c{left:408.674987px;}
.x5{left:416.054987px;}
.x1a{left:423.434987px;}
.x58{left:424.514987px;}
.x3{left:446.474987px;}
.xe{left:467.924987px;}
.x5d{left:481.964987px;}
.x53{left:496.724987px;}
.x43{left:513.104987px;}
.x1f{left:541.004987px;}
.x3a{left:553.245000px;}
.x4e{left:556.484987px;}
.x50{left:565.124987px;}
.x4a{left:575.204987px;}
.x5c{left:602.204987px;}
.x3b{left:617.145000px;}
.x45{left:637.665000px;}
.x3d{left:712.950000px;}
.x47{left:722.670000px;}
.x1e{left:727.529987px;}
.x56{left:765.869987px;}
.x41{left:775.410000px;}
.x4d{left:800.069987px;}
.x4f{left:801.689987px;}
.x49{left:804.569987px;}
.x52{left:806.369987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v9{vertical-align:-19.200000pt;}
.v4{vertical-align:-17.920000pt;}
.v3{vertical-align:-10.880000pt;}
.v5{vertical-align:-9.600000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.600000pt;}
.va{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.vb{vertical-align:26.880000pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:36.480000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.138667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.232960pt;}
.ls18{letter-spacing:0.316267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.976000pt;}
.ls20{letter-spacing:1.612450pt;}
.ls15{letter-spacing:1.749760pt;}
.ls22{letter-spacing:1.762306pt;}
.ls17{letter-spacing:2.389760pt;}
.lsf{letter-spacing:2.405120pt;}
.ls25{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:2.775040pt;}
.ls16{letter-spacing:2.855680pt;}
.lse{letter-spacing:3.448320pt;}
.ls9{letter-spacing:5.280000pt;}
.ls23{letter-spacing:6.560000pt;}
.ls2{letter-spacing:10.336000pt;}
.ls1c{letter-spacing:12.960000pt;}
.ls5{letter-spacing:13.600000pt;}
.ls24{letter-spacing:14.240000pt;}
.ls8{letter-spacing:14.880000pt;}
.ls1{letter-spacing:19.360000pt;}
.lsd{letter-spacing:23.840000pt;}
.ls14{letter-spacing:34.389760pt;}
.ls1b{letter-spacing:35.471360pt;}
.ls1a{letter-spacing:39.840000pt;}
.ls3{letter-spacing:50.720000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws8{word-spacing:-39.920000pt;}
.wsd{word-spacing:-37.776000pt;}
.wsa{word-spacing:-35.216000pt;}
.wsc{word-spacing:-34.876267pt;}
.wsb{word-spacing:-34.576000pt;}
.wse{word-spacing:-34.560000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws4{word-spacing:-5.871650pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:462.931545pt;}
.ws11{word-spacing:464.371811pt;}
._24{margin-left:-6.048000pt;}
._25{margin-left:-4.400000pt;}
._23{margin-left:-3.216000pt;}
._6{margin-left:-2.246400pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.392213pt;}
._a{width:2.456320pt;}
._3{width:3.888000pt;}
._5{width:5.568000pt;}
._2{width:6.672000pt;}
._19{width:7.632000pt;}
._9{width:8.544000pt;}
._7{width:9.792000pt;}
._b{width:10.936320pt;}
._22{width:13.104000pt;}
._15{width:14.016000pt;}
._14{width:15.024000pt;}
._11{width:16.176000pt;}
._c{width:17.616000pt;}
._d{width:18.528000pt;}
._f{width:19.984000pt;}
._e{width:20.880000pt;}
._1d{width:21.984000pt;}
._21{width:22.944000pt;}
._13{width:24.000000pt;}
._12{width:25.248000pt;}
._1f{width:27.072000pt;}
._18{width:28.032000pt;}
._10{width:28.992000pt;}
._17{width:30.808320pt;}
._16{width:32.016000pt;}
._28{width:33.008213pt;}
._4{width:34.656000pt;}
._1e{width:36.144000pt;}
._8{width:37.824000pt;}
._29{width:39.322667pt;}
._26{width:40.464000pt;}
._27{width:41.560107pt;}
._2b{width:45.888000pt;}
._1c{width:50.256000pt;}
._1b{width:51.200000pt;}
._34{width:52.224000pt;}
._2a{width:55.728000pt;}
._33{width:56.640000pt;}
._2d{width:57.600000pt;}
._2c{width:62.032000pt;}
._20{width:63.168000pt;}
._1a{width:64.272000pt;}
._32{width:65.664000pt;}
._31{width:71.328000pt;}
._39{width:77.952000pt;}
._37{width:84.816000pt;}
._38{width:85.872000pt;}
._35{width:177.312000pt;}
._36{width:322.320000pt;}
._30{width:479.112691pt;}
._2e{width:508.725874pt;}
._2f{width:511.063627pt;}
.fs6{font-size:25.980754pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:58.893387pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:1.120000pt;}
.ybe{bottom:2.560000pt;}
.yc3{bottom:2.720000pt;}
.y7f{bottom:2.928334pt;}
.y15f{bottom:3.040000pt;}
.y167{bottom:5.058370pt;}
.ycb{bottom:8.320000pt;}
.ycd{bottom:8.480000pt;}
.yf7{bottom:9.120000pt;}
.yd7{bottom:9.600000pt;}
.y119{bottom:9.920000pt;}
.ydf{bottom:10.240000pt;}
.yfe{bottom:10.280000pt;}
.y7e{bottom:10.707999pt;}
.yfb{bottom:10.760000pt;}
.ycc{bottom:12.800000pt;}
.yfc{bottom:15.400000pt;}
.yfd{bottom:15.560000pt;}
.yeb{bottom:16.320000pt;}
.yd6{bottom:16.480000pt;}
.y15e{bottom:16.960000pt;}
.y81{bottom:34.601001pt;}
.y7d{bottom:34.601006pt;}
.y7b{bottom:34.601014pt;}
.y77{bottom:34.601021pt;}
.y79{bottom:34.601031pt;}
.y80{bottom:42.380953pt;}
.y7c{bottom:42.380957pt;}
.y7a{bottom:42.380965pt;}
.y76{bottom:42.380972pt;}
.y78{bottom:42.380981pt;}
.y166{bottom:89.389804pt;}
.y58{bottom:133.466667pt;}
.y161{bottom:143.066667pt;}
.y57{bottom:147.386667pt;}
.y14c{bottom:148.026667pt;}
.y91{bottom:148.186667pt;}
.yb4{bottom:149.946667pt;}
.y120{bottom:153.306667pt;}
.y160{bottom:154.266667pt;}
.y32{bottom:154.746667pt;}
.y19d{bottom:155.386667pt;}
.y56{bottom:161.146667pt;}
.y14b{bottom:161.786667pt;}
.y90{bottom:161.946667pt;}
.y17e{bottom:162.746667pt;}
.ye9{bottom:163.066667pt;}
.yb3{bottom:163.866667pt;}
.y11f{bottom:167.066667pt;}
.y19c{bottom:170.106667pt;}
.y55{bottom:174.906667pt;}
.y14a{bottom:175.706667pt;}
.y8f{bottom:175.866667pt;}
.y17d{bottom:176.506667pt;}
.ye8{bottom:176.826667pt;}
.yb2{bottom:177.626667pt;}
.y11e{bottom:180.826667pt;}
.y19b{bottom:184.666667pt;}
.y31{bottom:185.786667pt;}
.y149{bottom:189.466667pt;}
.y8e{bottom:189.626667pt;}
.y17c{bottom:190.426667pt;}
.ye7{bottom:190.746667pt;}
.yb1{bottom:191.386667pt;}
.y11d{bottom:194.586667pt;}
.y19a{bottom:199.386667pt;}
.y30{bottom:199.546667pt;}
.y148{bottom:200.666667pt;}
.y54{bottom:203.386667pt;}
.y17b{bottom:204.186667pt;}
.ye6{bottom:204.506667pt;}
.yb0{bottom:205.146667pt;}
.y11c{bottom:208.506667pt;}
.y2f{bottom:213.306667pt;}
.y199{bottom:214.106667pt;}
.y8d{bottom:217.146667pt;}
.y17a{bottom:217.946667pt;}
.ye5{bottom:218.266667pt;}
.yaf{bottom:218.906667pt;}
.y11b{bottom:222.266667pt;}
.y2e{bottom:227.066667pt;}
.y198{bottom:228.666667pt;}
.y179{bottom:231.706667pt;}
.y53{bottom:231.866667pt;}
.ye4{bottom:232.026667pt;}
.yae{bottom:232.826667pt;}
.y8c{bottom:235.066667pt;}
.y11a{bottom:236.026667pt;}
.y2d{bottom:240.986667pt;}
.y197{bottom:243.386667pt;}
.y52{bottom:245.626667pt;}
.ye3{bottom:245.946667pt;}
.yad{bottom:246.586667pt;}
.y118{bottom:247.226667pt;}
.y178{bottom:254.106667pt;}
.y2c{bottom:254.746667pt;}
.y196{bottom:258.106667pt;}
.y51{bottom:259.546667pt;}
.ye2{bottom:259.706667pt;}
.yac{bottom:260.346667pt;}
.y2b{bottom:268.506667pt;}
.y195{bottom:272.666667pt;}
.y50{bottom:273.306667pt;}
.ye1{bottom:273.466667pt;}
.yab{bottom:274.106667pt;}
.y117{bottom:278.906667pt;}
.y2a{bottom:282.266667pt;}
.y177{bottom:282.426667pt;}
.y4f{bottom:287.066667pt;}
.ye0{bottom:287.226667pt;}
.yaa{bottom:288.026667pt;}
.y116{bottom:292.666667pt;}
.y176{bottom:293.786667pt;}
.y194{bottom:295.706667pt;}
.y29{bottom:296.186667pt;}
.yde{bottom:298.426667pt;}
.y4e{bottom:300.826667pt;}
.ya9{bottom:301.786667pt;}
.y15d{bottom:306.266667pt;}
.y115{bottom:306.426667pt;}
.y28{bottom:309.946667pt;}
.y4d{bottom:314.586667pt;}
.ya8{bottom:315.546667pt;}
.y114{bottom:320.186667pt;}
.y27{bottom:323.706667pt;}
.y193{bottom:324.026667pt;}
.y4c{bottom:328.506667pt;}
.ya7{bottom:329.306667pt;}
.ydd{bottom:330.106667pt;}
.y113{bottom:333.946667pt;}
.y26{bottom:337.466667pt;}
.y192{bottom:337.786667pt;}
.y15c{bottom:337.946667pt;}
.y4b{bottom:342.266667pt;}
.ya6{bottom:343.226667pt;}
.ydc{bottom:343.866667pt;}
.y147{bottom:345.346667pt;}
.y112{bottom:347.906667pt;}
.y25{bottom:351.426667pt;}
.y191{bottom:351.586667pt;}
.y15b{bottom:351.746667pt;}
.y4a{bottom:356.066667pt;}
.ya5{bottom:357.026667pt;}
.ydb{bottom:357.666667pt;}
.y146{bottom:359.106667pt;}
.y111{bottom:361.666667pt;}
.y24{bottom:365.186667pt;}
.y190{bottom:365.346667pt;}
.y15a{bottom:365.506667pt;}
.y49{bottom:369.826667pt;}
.ya4{bottom:370.786667pt;}
.yda{bottom:371.586667pt;}
.y145{bottom:372.866667pt;}
.y110{bottom:375.426667pt;}
.y23{bottom:378.946667pt;}
.y159{bottom:379.266667pt;}
.ya3{bottom:381.986667pt;}
.yd9{bottom:383.426667pt;}
.y48{bottom:383.746667pt;}
.y144{bottom:386.626667pt;}
.y10f{bottom:389.186667pt;}
.y22{bottom:392.706667pt;}
.y18f{bottom:393.026667pt;}
.y158{bottom:393.186667pt;}
.yd8{bottom:397.186667pt;}
.y47{bottom:397.506667pt;}
.y143{bottom:400.546667pt;}
.y8b{bottom:403.266667pt;}
.y18e{bottom:406.786667pt;}
.y157{bottom:406.946667pt;}
.yd5{bottom:410.946667pt;}
.y10e{bottom:411.106667pt;}
.y46{bottom:411.266667pt;}
.y142{bottom:414.306667pt;}
.y21{bottom:415.106667pt;}
.y8a{bottom:418.306667pt;}
.y18d{bottom:420.546667pt;}
.y156{bottom:420.706667pt;}
.y45{bottom:425.026667pt;}
.y141{bottom:428.066667pt;}
.y89{bottom:432.226667pt;}
.y155{bottom:434.466667pt;}
.y10d{bottom:436.866667pt;}
.yd4{bottom:438.626667pt;}
.y44{bottom:438.946667pt;}
.y140{bottom:441.826667pt;}
.y1c3{bottom:444.386667pt;}
.y20{bottom:444.706667pt;}
.y88{bottom:445.986667pt;}
.y10c{bottom:448.066667pt;}
.y18c{bottom:448.226667pt;}
.y154{bottom:448.386667pt;}
.y43{bottom:452.706667pt;}
.yd3{bottom:453.026667pt;}
.y13f{bottom:455.746667pt;}
.y1f{bottom:458.626667pt;}
.y1c2{bottom:458.946667pt;}
.y87{bottom:459.746667pt;}
.y18b{bottom:461.986667pt;}
.y153{bottom:462.146667pt;}
.y42{bottom:466.466667pt;}
.y13e{bottom:469.506667pt;}
.yd2{bottom:470.146667pt;}
.y1e{bottom:472.386667pt;}
.y86{bottom:473.506667pt;}
.y1c1{bottom:473.666667pt;}
.y18a{bottom:475.746667pt;}
.y152{bottom:475.906667pt;}
.y175{bottom:478.146667pt;}
.y41{bottom:480.226667pt;}
.y13d{bottom:483.266667pt;}
.yd1{bottom:483.906667pt;}
.y1d{bottom:486.146667pt;}
.y85{bottom:487.426667pt;}
.y1c0{bottom:488.386667pt;}
.y151{bottom:489.666667pt;}
.y174{bottom:491.906667pt;}
.y40{bottom:494.146667pt;}
.y13c{bottom:497.026667pt;}
.yd0{bottom:497.666667pt;}
.y1c{bottom:499.906667pt;}
.y84{bottom:501.186667pt;}
.y1bf{bottom:502.946667pt;}
.y189{bottom:503.426667pt;}
.y150{bottom:503.586667pt;}
.y173{bottom:505.666667pt;}
.y3f{bottom:507.906667pt;}
.y13b{bottom:510.946667pt;}
.ycf{bottom:511.586667pt;}
.y1b{bottom:513.826667pt;}
.y14f{bottom:514.786667pt;}
.y188{bottom:517.186667pt;}
.y1be{bottom:517.666667pt;}
.y172{bottom:519.586667pt;}
.y3e{bottom:521.666667pt;}
.y83{bottom:521.826667pt;}
.y13a{bottom:524.706667pt;}
.yce{bottom:525.666667pt;}
.y1a{bottom:527.586667pt;}
.y171{bottom:530.786667pt;}
.y187{bottom:530.946667pt;}
.y1bd{bottom:532.386667pt;}
.y3d{bottom:535.426667pt;}
.yca{bottom:537.026667pt;}
.y139{bottom:538.466667pt;}
.y82{bottom:540.866667pt;}
.y75{bottom:541.171234pt;}
.y19{bottom:541.346667pt;}
.ya2{bottom:542.466667pt;}
.y186{bottom:544.866667pt;}
.y1bc{bottom:546.946667pt;}
.y3c{bottom:549.346667pt;}
.y138{bottom:552.226667pt;}
.y18{bottom:555.106667pt;}
.ya1{bottom:556.226667pt;}
.y185{bottom:558.626667pt;}
.y1bb{bottom:561.666667pt;}
.y3b{bottom:563.106667pt;}
.yc9{bottom:565.346667pt;}
.y137{bottom:565.986667pt;}
.y17{bottom:569.053333pt;}
.ya0{bottom:570.013333pt;}
.y184{bottom:572.413333pt;}
.y1ba{bottom:576.413333pt;}
.y3a{bottom:576.893333pt;}
.yc8{bottom:579.133333pt;}
.y136{bottom:579.933333pt;}
.y10b{bottom:581.693333pt;}
.y16{bottom:582.813333pt;}
.y9f{bottom:583.773333pt;}
.y183{bottom:586.173333pt;}
.y39{bottom:590.653333pt;}
.y1b9{bottom:590.973333pt;}
.yc7{bottom:592.893333pt;}
.y135{bottom:593.693333pt;}
.y10a{bottom:595.453333pt;}
.y15{bottom:596.573333pt;}
.y9e{bottom:597.693333pt;}
.y182{bottom:600.093333pt;}
.y38{bottom:604.573333pt;}
.y1b8{bottom:605.693333pt;}
.yc6{bottom:606.813333pt;}
.y134{bottom:607.453333pt;}
.y109{bottom:609.213333pt;}
.y14{bottom:610.333333pt;}
.y74{bottom:610.973333pt;}
.y9d{bottom:611.453333pt;}
.y181{bottom:613.853333pt;}
.y37{bottom:618.333333pt;}
.y1b7{bottom:620.413333pt;}
.y108{bottom:621.213333pt;}
.y13{bottom:624.093333pt;}
.y73{bottom:624.893333pt;}
.y9c{bottom:625.213333pt;}
.y180{bottom:627.613333pt;}
.yc5{bottom:628.573333pt;}
.y36{bottom:632.093333pt;}
.y107{bottom:634.973333pt;}
.y133{bottom:635.133333pt;}
.y12{bottom:637.853333pt;}
.y72{bottom:638.653333pt;}
.y9b{bottom:638.973333pt;}
.y17f{bottom:641.373333pt;}
.y14e{bottom:643.293333pt;}
.y35{bottom:645.853333pt;}
.y132{bottom:648.893333pt;}
.y106{bottom:649.373333pt;}
.y1b6{bottom:649.693333pt;}
.y71{bottom:652.413333pt;}
.y9a{bottom:652.893333pt;}
.y14d{bottom:654.493333pt;}
.y170{bottom:655.293333pt;}
.y34{bottom:659.773333pt;}
.y131{bottom:662.653333pt;}
.y1b5{bottom:664.413333pt;}
.y11{bottom:665.693333pt;}
.yc4{bottom:666.173333pt;}
.y99{bottom:666.653333pt;}
.y16f{bottom:669.053333pt;}
.y33{bottom:673.533333pt;}
.y130{bottom:676.413333pt;}
.y1b4{bottom:678.973333pt;}
.yc2{bottom:679.933333pt;}
.y105{bottom:680.253333pt;}
.y98{bottom:680.413333pt;}
.y70{bottom:680.893333pt;}
.y16e{bottom:682.813333pt;}
.y12f{bottom:690.333333pt;}
.y1b3{bottom:693.693333pt;}
.yc1{bottom:693.853333pt;}
.y104{bottom:694.013333pt;}
.y97{bottom:694.173333pt;}
.y16d{bottom:696.573333pt;}
.y10{bottom:702.013333pt;}
.y12e{bottom:704.093333pt;}
.yc0{bottom:707.613333pt;}
.y96{bottom:707.933333pt;}
.y1b2{bottom:708.413333pt;}
.y16c{bottom:710.493333pt;}
.y6f{bottom:713.373333pt;}
.yf{bottom:715.613333pt;}
.y12d{bottom:717.853333pt;}
.ybf{bottom:721.373333pt;}
.y103{bottom:721.693333pt;}
.y95{bottom:721.853333pt;}
.y1b1{bottom:722.973333pt;}
.y16b{bottom:724.253333pt;}
.y6e{bottom:727.133333pt;}
.ye{bottom:729.053333pt;}
.y12c{bottom:731.613333pt;}
.y102{bottom:735.453333pt;}
.y94{bottom:735.613333pt;}
.ybd{bottom:735.933333pt;}
.y1b0{bottom:737.693333pt;}
.y16a{bottom:738.013333pt;}
.y6d{bottom:740.893333pt;}
.y12b{bottom:745.533333pt;}
.y101{bottom:749.213333pt;}
.y169{bottom:751.773333pt;}
.y93{bottom:752.093333pt;}
.y1af{bottom:752.413333pt;}
.ybc{bottom:752.893333pt;}
.yd{bottom:753.533333pt;}
.y6c{bottom:754.813333pt;}
.y12a{bottom:759.293333pt;}
.y100{bottom:763.133333pt;}
.y168{bottom:765.693333pt;}
.yc{bottom:765.853333pt;}
.ybb{bottom:766.653333pt;}
.y1ae{bottom:766.973333pt;}
.y6b{bottom:768.573333pt;}
.y129{bottom:773.053333pt;}
.yff{bottom:776.893333pt;}
.y165{bottom:777.454393pt;}
.y92{bottom:779.613333pt;}
.yba{bottom:780.573333pt;}
.y1ad{bottom:781.693333pt;}
.y6a{bottom:782.333333pt;}
.yb{bottom:784.413333pt;}
.y128{bottom:786.813333pt;}
.yfa{bottom:788.093333pt;}
.yb9{bottom:794.373333pt;}
.y69{bottom:796.133333pt;}
.y1ac{bottom:796.453333pt;}
.ya{bottom:797.893333pt;}
.y127{bottom:800.773333pt;}
.yb8{bottom:808.133333pt;}
.y68{bottom:810.053333pt;}
.y1ab{bottom:811.013333pt;}
.y126{bottom:814.533333pt;}
.yf9{bottom:819.653333pt;}
.yb7{bottom:821.893333pt;}
.y9{bottom:822.373333pt;}
.y67{bottom:823.813333pt;}
.y1aa{bottom:825.733333pt;}
.y125{bottom:828.293333pt;}
.yf6{bottom:830.853333pt;}
.y8{bottom:834.693333pt;}
.yb6{bottom:835.813333pt;}
.y66{bottom:837.573333pt;}
.y1a9{bottom:840.453333pt;}
.y124{bottom:842.053333pt;}
.yb5{bottom:847.013333pt;}
.y65{bottom:851.333333pt;}
.y7{bottom:853.093333pt;}
.y1a8{bottom:855.013333pt;}
.y123{bottom:855.973333pt;}
.yf5{bottom:862.533333pt;}
.y64{bottom:865.093333pt;}
.y122{bottom:869.733333pt;}
.y6{bottom:870.853333pt;}
.yf4{bottom:876.293333pt;}
.y63{bottom:879.013333pt;}
.y1a7{bottom:884.453333pt;}
.y5{bottom:887.333333pt;}
.yf3{bottom:890.053333pt;}
.y121{bottom:891.973333pt;}
.y62{bottom:892.773333pt;}
.y1a6{bottom:899.013333pt;}
.yf2{bottom:903.973333pt;}
.y61{bottom:906.533333pt;}
.y4{bottom:908.773333pt;}
.y1a5{bottom:913.733333pt;}
.yf1{bottom:917.733333pt;}
.y60{bottom:920.293333pt;}
.y1a4{bottom:928.453333pt;}
.yf0{bottom:931.493333pt;}
.y5f{bottom:934.213333pt;}
.y1a3{bottom:943.013333pt;}
.y3{bottom:944.293333pt;}
.yef{bottom:945.253333pt;}
.y5e{bottom:947.973333pt;}
.y164{bottom:952.453333pt;}
.y1a2{bottom:957.733333pt;}
.yee{bottom:959.173333pt;}
.y5d{bottom:961.733333pt;}
.y163{bottom:966.373333pt;}
.yed{bottom:971.013333pt;}
.y1a1{bottom:972.453333pt;}
.y5c{bottom:975.493333pt;}
.y2{bottom:977.893333pt;}
.yec{bottom:985.413333pt;}
.y1a0{bottom:987.013333pt;}
.y162{bottom:988.613333pt;}
.y5b{bottom:989.413333pt;}
.y1{bottom:999.333333pt;}
.yea{bottom:999.973333pt;}
.y19f{bottom:1001.733333pt;}
.y5a{bottom:1003.173333pt;}
.y19e{bottom:1016.453333pt;}
.y59{bottom:1016.933333pt;}
.h13{height:13.760000pt;}
.h14{height:13.920000pt;}
.h15{height:25.760000pt;}
.he{height:25.841209pt;}
.h1a{height:27.552000pt;}
.h18{height:27.680000pt;}
.h1f{height:28.960000pt;}
.h1d{height:28.992000pt;}
.h19{height:29.120000pt;}
.h17{height:29.126250pt;}
.h8{height:31.992188pt;}
.h11{height:34.945312pt;}
.h7{height:35.782187pt;}
.ha{height:40.054688pt;}
.h12{height:40.335938pt;}
.h16{height:40.453125pt;}
.hb{height:41.156250pt;}
.h1e{height:42.703125pt;}
.h4{height:44.327188pt;}
.hf{height:44.638438pt;}
.h10{height:45.546250pt;}
.h20{height:46.406250pt;}
.hc{height:49.133750pt;}
.h9{height:50.485000pt;}
.h6{height:53.406250pt;}
.hd{height:53.531809pt;}
.h3{height:53.781250pt;}
.h22{height:58.577065pt;}
.h5{height:60.353438pt;}
.h2{height:64.203750pt;}
.h1c{height:72.054688pt;}
.h1b{height:76.933125pt;}
.h21{height:171.959772pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:28.320000pt;}
.w13{width:28.480000pt;}
.wa{width:40.160000pt;}
.wb{width:41.312000pt;}
.wd{width:46.560000pt;}
.wf{width:56.160000pt;}
.wc{width:56.480000pt;}
.we{width:74.560000pt;}
.w14{width:75.040000pt;}
.w17{width:75.360000pt;}
.w16{width:75.552000pt;}
.w15{width:75.840000pt;}
.w8{width:81.472000pt;}
.w11{width:84.000000pt;}
.w10{width:84.352000pt;}
.w9{width:102.880000pt;}
.w7{width:116.192000pt;}
.w4{width:150.906667pt;}
.w12{width:273.306667pt;}
.w5{width:273.506667pt;}
.w3{width:300.279497pt;}
.w18{width:566.721477pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:7.232000pt;}
.x2f{left:9.440000pt;}
.x11{left:12.397255pt;}
.x34{left:13.472000pt;}
.x31{left:14.560000pt;}
.x35{left:15.520000pt;}
.x36{left:16.840000pt;}
.x44{left:18.080000pt;}
.x2e{left:19.072000pt;}
.x10{left:21.193869pt;}
.x46{left:22.600000pt;}
.x37{left:23.680000pt;}
.x3e{left:24.960000pt;}
.x48{left:27.040000pt;}
.x3f{left:28.640000pt;}
.x2c{left:30.080000pt;}
.x40{left:31.680000pt;}
.x3c{left:33.960000pt;}
.x33{left:37.632000pt;}
.x2a{left:58.266667pt;}
.x4{left:75.999988pt;}
.x59{left:86.591988pt;}
.x5e{left:88.031988pt;}
.x1b{left:88.991988pt;}
.x5a{left:90.591988pt;}
.x1{left:95.231988pt;}
.xf{left:97.213993pt;}
.x4b{left:99.360000pt;}
.x25{left:106.760000pt;}
.x38{left:108.026667pt;}
.x28{left:108.986667pt;}
.x27{left:112.680000pt;}
.x55{left:114.840925pt;}
.x26{left:118.760000pt;}
.x1d{left:120.671988pt;}
.x54{left:122.232940pt;}
.x21{left:132.511988pt;}
.x51{left:136.640000pt;}
.x39{left:139.546655pt;}
.x8{left:144.186655pt;}
.x17{left:151.029005pt;}
.x12{left:154.938608pt;}
.x13{left:158.211094pt;}
.x16{left:160.021099pt;}
.x42{left:170.760000pt;}
.x22{left:171.866655pt;}
.x6{left:182.106655pt;}
.x5b{left:186.586655pt;}
.x2b{left:192.346667pt;}
.xd{left:197.946655pt;}
.xc{left:204.026655pt;}
.x57{left:209.626655pt;}
.x9{left:213.146655pt;}
.x15{left:220.352116pt;}
.x14{left:221.575677pt;}
.x24{left:226.426667pt;}
.x30{left:232.506667pt;}
.x18{left:255.842653pt;}
.xa{left:257.026655pt;}
.x19{left:262.793065pt;}
.x2d{left:274.466667pt;}
.x7{left:304.866655pt;}
.xb{left:306.786655pt;}
.x20{left:311.266655pt;}
.x32{left:330.786667pt;}
.x29{left:349.026667pt;}
.x1c{left:357.666655pt;}
.x2{left:360.386655pt;}
.x4c{left:363.266655pt;}
.x5{left:369.826655pt;}
.x1a{left:376.386655pt;}
.x58{left:377.346655pt;}
.x3{left:396.866655pt;}
.xe{left:415.933322pt;}
.x5d{left:428.413322pt;}
.x53{left:441.533322pt;}
.x43{left:456.093322pt;}
.x1f{left:480.893322pt;}
.x3a{left:491.773333pt;}
.x4e{left:494.653322pt;}
.x50{left:502.333322pt;}
.x4a{left:511.293322pt;}
.x5c{left:535.293322pt;}
.x3b{left:548.573333pt;}
.x45{left:566.813333pt;}
.x3d{left:633.733333pt;}
.x47{left:642.373333pt;}
.x1e{left:646.693322pt;}
.x56{left:680.773322pt;}
.x41{left:689.253333pt;}
.x4d{left:711.173322pt;}
.x4f{left:712.613322pt;}
.x49{left:715.173322pt;}
.x52{left:716.773322pt;}
}




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