
    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_20082871d8e8bb65d500a815.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_2b97ec00a1ba53a16208d92d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_0ec647bce167d20e4a4a4eab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0286e43bdcaa3c5595749200.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1feace83402087e310f99901.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034000;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_8024918f15dc1663419ac8a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.751953;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_05c4e2083f385edfb4df328b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d61fc0ab8dca98364dba65d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-60.480000px;}
.v5{vertical-align:-52.560000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:18.000000px;}
.ls13{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.184200px;}
.ls19{letter-spacing:-0.045360px;}
.lsf{letter-spacing:-0.000001px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.043200px;}
.ls10{letter-spacing:0.046800px;}
.ls1d{letter-spacing:0.057600px;}
.ls7{letter-spacing:0.169920px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.185760px;}
.ls23{letter-spacing:0.189600px;}
.ls22{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.315360px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.450000px;}
.ls0{letter-spacing:0.674640px;}
.ls14{letter-spacing:0.715680px;}
.lsa{letter-spacing:9.396000px;}
.ls16{letter-spacing:11.190960px;}
.ls24{letter-spacing:13.626720px;}
.ls21{letter-spacing:16.506720px;}
.ls1a{letter-spacing:36.390960px;}
.ls8{letter-spacing:37.386720px;}
.ls4{letter-spacing:41.868000px;}
.ls1f{letter-spacing:46.026720px;}
.ls17{letter-spacing:57.546720px;}
.ls15{letter-spacing:64.026720px;}
.ls25{letter-spacing:64.170720px;}
.ls1b{letter-spacing:151.710960px;}
.ls1e{letter-spacing:659.910960px;}
.ls18{letter-spacing:853.050960px;}
.ls3{letter-spacing:1024.140000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-59.760000px;}
.wsb{word-spacing:-54.000000px;}
.ws5{word-spacing:-27.648000px;}
.ws7{word-spacing:-25.148160px;}
.ws16{word-spacing:-22.706640px;}
.ws8{word-spacing:-22.695840px;}
.ws11{word-spacing:-22.649040px;}
.wsa{word-spacing:-22.442640px;}
.ws2{word-spacing:-20.916000px;}
.wsf{word-spacing:-20.466000px;}
.ws1{word-spacing:-20.196000px;}
.ws4{word-spacing:-18.282960px;}
.ws15{word-spacing:-18.237600px;}
.ws18{word-spacing:-16.563840px;}
.ws6{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.735520px;}
.ws17{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.798000px;}
.ws3{word-spacing:-12.060000px;}
.ws12{word-spacing:0.000000px;}
._14{margin-left:-6.689040px;}
._4{margin-left:-1.058400px;}
._1{width:1.135440px;}
._5{width:2.151360px;}
._7{width:3.291600px;}
._9{width:4.394400px;}
._8{width:6.155280px;}
._a{width:7.184640px;}
._6{width:8.246880px;}
._b{width:9.352800px;}
._f{width:11.354400px;}
._10{width:12.489840px;}
._11{width:13.565520px;}
._12{width:15.418080px;}
._15{width:16.553520px;}
._1a{width:17.987760px;}
._1d{width:19.481760px;}
._13{width:20.975760px;}
._1c{width:22.350000px;}
._c{width:24.462000px;}
._d{width:26.352000px;}
._16{width:28.864080px;}
._23{width:30.474480px;}
._1b{width:32.927760px;}
._1f{width:34.122720px;}
._18{width:37.470960px;}
._17{width:38.604240px;}
._22{width:39.916560px;}
._24{width:42.067920px;}
._1e{width:45.776160px;}
._25{width:46.818480px;}
._e{width:47.934000px;}
._19{width:49.408560px;}
._27{width:58.146480px;}
._26{width:59.162400px;}
._21{width:70.755840px;}
._20{width:72.010800px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._0{width:2857.020000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs5{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4a{bottom:2.556000px;}
.y1a3{bottom:2.880000px;}
.y3d{bottom:3.060000px;}
.ycd{bottom:3.105000px;}
.y18{bottom:3.240000px;}
.y99{bottom:3.780000px;}
.ya1{bottom:3.960000px;}
.y17{bottom:5.220000px;}
.y36{bottom:6.120000px;}
.yd2{bottom:6.300000px;}
.ya5{bottom:7.200000px;}
.y7{bottom:8.856000px;}
.yc4{bottom:9.360000px;}
.yc{bottom:14.040000px;}
.yc5{bottom:15.660000px;}
.y1a8{bottom:16.374000px;}
.y17e{bottom:16.380000px;}
.y8{bottom:17.136000px;}
.y49{bottom:17.316000px;}
.y1a2{bottom:18.720000px;}
.y34{bottom:19.260000px;}
.yfa{bottom:24.660000px;}
.y3b{bottom:25.560000px;}
.y1a7{bottom:30.054000px;}
.y17d{bottom:30.240000px;}
.yf8{bottom:30.960000px;}
.y120{bottom:31.005000px;}
.ya{bottom:35.460000px;}
.y33{bottom:35.640000px;}
.y1a1{bottom:36.000000px;}
.yf9{bottom:37.080000px;}
.y4b{bottom:41.400000px;}
.y3a{bottom:41.580000px;}
.y1a6{bottom:43.914000px;}
.y17c{bottom:43.920000px;}
.y32{bottom:51.300000px;}
.y1a0{bottom:53.100000px;}
.y39{bottom:57.600000px;}
.y1a5{bottom:57.774000px;}
.y17b{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y48{bottom:64.080000px;}
.y31{bottom:66.780000px;}
.y19f{bottom:70.380000px;}
.y38{bottom:71.640000px;}
.y30{bottom:82.290000px;}
.y2b{bottom:84.645000px;}
.y19e{bottom:87.660000px;}
.y2f{bottom:97.770000px;}
.y2a{bottom:101.025000px;}
.y19d{bottom:104.985000px;}
.y3c{bottom:106.245000px;}
.ydc{bottom:111.996000px;}
.y12b{bottom:112.716000px;}
.y2e{bottom:113.430000px;}
.y29{bottom:116.685000px;}
.ya7{bottom:119.196000px;}
.y47{bottom:121.176000px;}
.y115{bottom:122.616000px;}
.y5b{bottom:125.496000px;}
.ydb{bottom:127.836000px;}
.y12a{bottom:128.556000px;}
.y2d{bottom:128.910000px;}
.y19b{bottom:132.336000px;}
.y28{bottom:132.525000px;}
.y46{bottom:136.836000px;}
.y114{bottom:138.276000px;}
.y16c{bottom:138.636000px;}
.y5a{bottom:141.156000px;}
.yda{bottom:143.496000px;}
.y1a4{bottom:143.676000px;}
.y129{bottom:144.216000px;}
.y27{bottom:148.185000px;}
.ya6{bottom:149.976000px;}
.y14f{bottom:150.150000px;}
.y45{bottom:152.670000px;}
.y113{bottom:153.930000px;}
.y16b{bottom:155.730000px;}
.y59{bottom:156.990000px;}
.yd9{bottom:159.330000px;}
.y128{bottom:160.050000px;}
.ya4{bottom:160.230000px;}
.y26{bottom:163.845000px;}
.y14e{bottom:167.250000px;}
.y44{bottom:168.330000px;}
.y112{bottom:169.770000px;}
.y58{bottom:172.650000px;}
.y16a{bottom:173.010000px;}
.yd8{bottom:174.990000px;}
.ya3{bottom:175.170000px;}
.y127{bottom:175.710000px;}
.y25{bottom:179.685000px;}
.y43{bottom:184.170000px;}
.y14d{bottom:184.530000px;}
.y111{bottom:185.430000px;}
.y57{bottom:188.490000px;}
.ya2{bottom:190.110000px;}
.y169{bottom:190.290000px;}
.yd7{bottom:190.830000px;}
.y24{bottom:195.345000px;}
.y42{bottom:199.830000px;}
.y110{bottom:201.270000px;}
.y14c{bottom:201.810000px;}
.y56{bottom:204.150000px;}
.ya0{bottom:205.050000px;}
.yd6{bottom:206.490000px;}
.y168{bottom:207.570000px;}
.y23{bottom:211.185000px;}
.y19c{bottom:213.510000px;}
.y41{bottom:215.490000px;}
.y10f{bottom:216.930000px;}
.y55{bottom:218.010000px;}
.y14b{bottom:219.090000px;}
.y9f{bottom:219.990000px;}
.yd5{bottom:222.150000px;}
.y54{bottom:224.130000px;}
.y167{bottom:224.850000px;}
.y22{bottom:226.845000px;}
.y126{bottom:230.250000px;}
.y40{bottom:230.610000px;}
.y10e{bottom:232.770000px;}
.y9e{bottom:234.930000px;}
.y14a{bottom:236.370000px;}
.yd4{bottom:237.990000px;}
.y166{bottom:242.130000px;}
.y21{bottom:242.505000px;}
.y125{bottom:243.570000px;}
.y3f{bottom:246.810000px;}
.y10d{bottom:248.430000px;}
.y9d{bottom:249.870000px;}
.yd3{bottom:253.110000px;}
.y149{bottom:253.650000px;}
.y124{bottom:256.890000px;}
.y20{bottom:258.345000px;}
.y165{bottom:259.230000px;}
.y3e{bottom:261.750000px;}
.yd1{bottom:263.370000px;}
.y10c{bottom:264.090000px;}
.y9c{bottom:264.810000px;}
.y123{bottom:270.210000px;}
.y148{bottom:270.750000px;}
.y1f{bottom:274.005000px;}
.y19{bottom:275.070000px;}
.y164{bottom:276.510000px;}
.yd0{bottom:276.690000px;}
.y9b{bottom:279.750000px;}
.y10b{bottom:279.930000px;}
.y122{bottom:283.530000px;}
.y147{bottom:288.030000px;}
.y1e{bottom:289.845000px;}
.ycf{bottom:290.010000px;}
.y163{bottom:293.790000px;}
.y9a{bottom:294.690000px;}
.y10a{bottom:295.590000px;}
.y121{bottom:296.850000px;}
.yce{bottom:303.330000px;}
.y146{bottom:305.310000px;}
.y1d{bottom:305.535000px;}
.y98{bottom:309.630000px;}
.y11f{bottom:310.170000px;}
.y162{bottom:311.070000px;}
.y109{bottom:311.430000px;}
.ycc{bottom:316.650000px;}
.y1c{bottom:321.375000px;}
.y145{bottom:322.635000px;}
.y97{bottom:324.615000px;}
.y108{bottom:327.135000px;}
.y161{bottom:328.395000px;}
.ycb{bottom:330.015000px;}
.y1b{bottom:337.035000px;}
.y96{bottom:339.735000px;}
.y144{bottom:339.915000px;}
.y19a{bottom:340.095000px;}
.y107{bottom:342.795000px;}
.yca{bottom:343.335000px;}
.y160{bottom:345.675000px;}
.y95{bottom:349.455000px;}
.y1a{bottom:352.515000px;}
.y199{bottom:353.775000px;}
.yc9{bottom:356.835000px;}
.y143{bottom:357.195000px;}
.y106{bottom:358.635000px;}
.y15f{bottom:362.775000px;}
.y94{bottom:365.115000px;}
.y198{bottom:367.635000px;}
.yc8{bottom:370.155000px;}
.y105{bottom:374.295000px;}
.y15e{bottom:380.055000px;}
.y7c{bottom:380.955000px;}
.y11e{bottom:381.135000px;}
.y197{bottom:381.495000px;}
.yc7{bottom:383.475000px;}
.y104{bottom:390.135000px;}
.y142{bottom:392.115000px;}
.y37{bottom:394.815000px;}
.y196{bottom:395.175000px;}
.y7b{bottom:396.615000px;}
.yc6{bottom:396.795000px;}
.y15d{bottom:397.335000px;}
.y93{bottom:399.315000px;}
.y11d{bottom:403.455000px;}
.y103{bottom:405.795000px;}
.y141{bottom:407.775000px;}
.y195{bottom:409.035000px;}
.yc3{bottom:410.115000px;}
.y7a{bottom:412.455000px;}
.y15c{bottom:414.615000px;}
.y92{bottom:414.975000px;}
.y11c{bottom:419.115000px;}
.y102{bottom:420.915000px;}
.y194{bottom:422.895000px;}
.y140{bottom:423.435000px;}
.y79{bottom:428.115000px;}
.y91{bottom:430.815000px;}
.y101{bottom:431.175000px;}
.y15b{bottom:431.895000px;}
.y11b{bottom:434.775000px;}
.y193{bottom:436.575000px;}
.yc2{bottom:437.835000px;}
.y13f{bottom:439.275000px;}
.y78{bottom:443.775000px;}
.y100{bottom:444.495000px;}
.y90{bottom:446.475000px;}
.yc1{bottom:447.015000px;}
.y15a{bottom:449.175000px;}
.y192{bottom:450.435000px;}
.y11a{bottom:450.615000px;}
.y13e{bottom:454.935000px;}
.yff{bottom:457.815000px;}
.y77{bottom:459.615000px;}
.y8f{bottom:462.315000px;}
.y191{bottom:464.295000px;}
.y119{bottom:466.275000px;}
.y13d{bottom:470.775000px;}
.yfe{bottom:471.135000px;}
.yc0{bottom:472.755000px;}
.y76{bottom:475.275000px;}
.y8e{bottom:477.975000px;}
.y35{bottom:479.775000px;}
.y118{bottom:481.755000px;}
.y159{bottom:483.555000px;}
.yfd{bottom:484.635000px;}
.y13c{bottom:486.435000px;}
.ybf{bottom:488.415000px;}
.y75{bottom:491.115000px;}
.y190{bottom:491.835000px;}
.y8d{bottom:493.635000px;}
.y117{bottom:494.355000px;}
.yfc{bottom:497.955000px;}
.y116{bottom:500.475000px;}
.y2c{bottom:500.655000px;}
.y158{bottom:500.835000px;}
.y13b{bottom:502.095000px;}
.ybe{bottom:504.255000px;}
.y18f{bottom:505.695000px;}
.y74{bottom:506.775000px;}
.y8c{bottom:509.475000px;}
.yfb{bottom:511.275000px;}
.y13a{bottom:517.935000px;}
.y157{bottom:518.115000px;}
.y18e{bottom:519.375000px;}
.ybd{bottom:519.915000px;}
.y73{bottom:522.435000px;}
.yf7{bottom:524.595000px;}
.y8b{bottom:525.135000px;}
.y18d{bottom:533.235000px;}
.y139{bottom:533.595000px;}
.y156{bottom:535.395000px;}
.ybc{bottom:535.755000px;}
.y72{bottom:538.275000px;}
.y8a{bottom:540.975000px;}
.y18c{bottom:547.095000px;}
.y138{bottom:549.435000px;}
.ybb{bottom:551.415000px;}
.y155{bottom:552.495000px;}
.y71{bottom:553.935000px;}
.y89{bottom:556.635000px;}
.y18b{bottom:560.775000px;}
.y137{bottom:565.095000px;}
.yba{bottom:567.075000px;}
.y70{bottom:569.805000px;}
.y88{bottom:572.325000px;}
.y18a{bottom:574.665000px;}
.y136{bottom:580.965000px;}
.yb9{bottom:582.945000px;}
.y6f{bottom:585.465000px;}
.y154{bottom:587.085000px;}
.y87{bottom:588.165000px;}
.y189{bottom:588.525000px;}
.yf6{bottom:595.365000px;}
.y135{bottom:596.625000px;}
.yb8{bottom:598.605000px;}
.y6e{bottom:601.305000px;}
.y188{bottom:602.205000px;}
.y86{bottom:603.825000px;}
.y153{bottom:604.365000px;}
.yf5{bottom:604.545000px;}
.y134{bottom:612.285000px;}
.yb7{bottom:614.085000px;}
.y187{bottom:616.065000px;}
.y85{bottom:619.665000px;}
.y6d{bottom:620.025000px;}
.y152{bottom:621.645000px;}
.yb6{bottom:625.605000px;}
.y133{bottom:628.125000px;}
.y186{bottom:629.925000px;}
.yf4{bottom:630.285000px;}
.y84{bottom:635.325000px;}
.y6c{bottom:638.745000px;}
.y151{bottom:638.925000px;}
.yb5{bottom:640.545000px;}
.y16{bottom:642.885000px;}
.y185{bottom:643.605000px;}
.y132{bottom:643.785000px;}
.yf3{bottom:646.125000px;}
.y83{bottom:651.165000px;}
.yb4{bottom:655.485000px;}
.y150{bottom:656.025000px;}
.y184{bottom:657.465000px;}
.y6b{bottom:657.645000px;}
.y131{bottom:659.625000px;}
.yf2{bottom:661.785000px;}
.y82{bottom:666.825000px;}
.yb3{bottom:670.425000px;}
.y183{bottom:671.325000px;}
.y6a{bottom:673.305000px;}
.y130{bottom:675.285000px;}
.yf1{bottom:677.445000px;}
.y15{bottom:677.985000px;}
.y81{bottom:682.485000px;}
.y182{bottom:685.005000px;}
.yb2{bottom:685.365000px;}
.y69{bottom:689.145000px;}
.y12f{bottom:690.945000px;}
.yf0{bottom:693.285000px;}
.y14{bottom:697.785000px;}
.y80{bottom:698.325000px;}
.y181{bottom:698.865000px;}
.yb1{bottom:700.305000px;}
.y12e{bottom:706.065000px;}
.y68{bottom:707.865000px;}
.yef{bottom:708.945000px;}
.y180{bottom:712.725000px;}
.y7f{bottom:713.985000px;}
.yb0{bottom:715.245000px;}
.y12d{bottom:717.405000px;}
.y12c{bottom:723.525000px;}
.y67{bottom:723.705000px;}
.yee{bottom:724.785000px;}
.y17f{bottom:727.665000px;}
.y7e{bottom:729.825000px;}
.yaf{bottom:730.185000px;}
.y13{bottom:732.345000px;}
.yed{bottom:740.445000px;}
.y66{bottom:742.425000px;}
.y17a{bottom:744.585000px;}
.yae{bottom:745.125000px;}
.y7d{bottom:745.485000px;}
.y12{bottom:749.625000px;}
.yec{bottom:756.285000px;}
.yad{bottom:760.065000px;}
.y65{bottom:761.145000px;}
.y11{bottom:762.225000px;}
.yeb{bottom:771.945000px;}
.yac{bottom:775.005000px;}
.y64{bottom:776.985000px;}
.y10{bottom:783.285000px;}
.yea{bottom:787.065000px;}
.yab{bottom:789.765000px;}
.y63{bottom:792.645000px;}
.ye9{bottom:797.325000px;}
.yaa{bottom:805.065000px;}
.y62{bottom:808.485000px;}
.ye8{bottom:810.645000px;}
.ya9{bottom:814.065000px;}
.y179{bottom:814.425000px;}
.yf{bottom:815.325000px;}
.ye7{bottom:824.010000px;}
.y61{bottom:824.190000px;}
.ya8{bottom:826.710000px;}
.y178{bottom:832.830000px;}
.ye6{bottom:837.330000px;}
.y60{bottom:840.030000px;}
.ye{bottom:842.730000px;}
.ye5{bottom:850.650000px;}
.y177{bottom:852.090000px;}
.y5f{bottom:855.690000px;}
.ye4{bottom:864.150000px;}
.y176{bottom:869.370000px;}
.y5e{bottom:871.350000px;}
.yd{bottom:871.710000px;}
.ye3{bottom:877.470000px;}
.y175{bottom:886.650000px;}
.yb{bottom:887.010000px;}
.y5d{bottom:887.190000px;}
.ye2{bottom:890.790000px;}
.y5c{bottom:902.850000px;}
.y174{bottom:903.930000px;}
.ye1{bottom:904.110000px;}
.ye0{bottom:917.430000px;}
.y53{bottom:918.690000px;}
.y173{bottom:923.370000px;}
.ydf{bottom:930.750000px;}
.y52{bottom:934.350000px;}
.y172{bottom:940.650000px;}
.yde{bottom:944.070000px;}
.y51{bottom:950.010000px;}
.y171{bottom:957.750000px;}
.ydd{bottom:959.190000px;}
.y50{bottom:965.850000px;}
.y170{bottom:975.030000px;}
.y4f{bottom:981.510000px;}
.y16f{bottom:992.310000px;}
.y4e{bottom:997.350000px;}
.y16e{bottom:1009.590000px;}
.y4d{bottom:1013.010000px;}
.y16d{bottom:1026.870000px;}
.y4c{bottom:1028.850000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h26{height:12.420000px;}
.h20{height:12.600000px;}
.h27{height:12.636000px;}
.h2b{height:13.716000px;}
.h24{height:14.040000px;}
.h22{height:14.076000px;}
.h23{height:14.220000px;}
.h11{height:17.280000px;}
.h19{height:19.980000px;}
.h1f{height:24.222240px;}
.h25{height:25.200000px;}
.h4{height:28.296000px;}
.h1d{height:28.476000px;}
.he{height:33.449760px;}
.h2e{height:33.683203px;}
.h2c{height:34.036523px;}
.h15{height:37.705078px;}
.h1c{height:38.100586px;}
.h21{height:38.640240px;}
.h7{height:39.336328px;}
.h14{height:39.972656px;}
.h17{height:39.999023px;}
.h5{height:41.726953px;}
.h12{height:42.164648px;}
.h6{height:43.254000px;}
.h29{height:43.506914px;}
.h2a{height:44.236406px;}
.h18{height:44.265586px;}
.h9{height:46.251562px;}
.h10{height:47.867760px;}
.h2{height:48.496641px;}
.h1e{height:49.142880px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.hd{height:57.672000px;}
.h1{height:58.429688px;}
.h28{height:68.256000px;}
.h30{height:68.940000px;}
.h2d{height:69.120000px;}
.hf{height:75.410156px;}
.hb{height:76.201172px;}
.h1a{height:84.240000px;}
.hc{height:86.508000px;}
.h1b{height:118.836000px;}
.h2f{height:119.016000px;}
.h16{height:141.516000px;}
.h8{height:153.900000px;}
.h13{height:367.095000px;}
.h0{height:1188.000000px;}
.w1d{width:20.016000px;}
.w17{width:27.900000px;}
.wc{width:28.656000px;}
.w25{width:30.420000px;}
.we{width:32.796000px;}
.w11{width:38.736000px;}
.w1c{width:39.600000px;}
.w1a{width:39.780000px;}
.w20{width:40.860000px;}
.wf{width:41.040000px;}
.w19{width:41.220000px;}
.w22{width:41.940000px;}
.w13{width:44.280000px;}
.w21{width:44.460000px;}
.w2{width:45.036000px;}
.w10{width:47.160000px;}
.w23{width:49.860000px;}
.w1b{width:51.120000px;}
.w16{width:55.260000px;}
.w14{width:55.296000px;}
.w15{width:56.520000px;}
.w7{width:71.136000px;}
.w1e{width:79.020000px;}
.w1f{width:97.596000px;}
.wa{width:102.600000px;}
.w29{width:111.420000px;}
.w26{width:119.160000px;}
.w9{width:121.536000px;}
.w12{width:122.040000px;}
.w28{width:126.756000px;}
.w2a{width:143.496000px;}
.wb{width:151.050000px;}
.w27{width:167.250000px;}
.w18{width:173.190000px;}
.wd{width:178.560000px;}
.w24{width:198.255000px;}
.w6{width:201.270000px;}
.w8{width:240.870000px;}
.w2b{width:318.270000px;}
.w2c{width:329.295000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w2d{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x59{left:1.080000px;}
.x5a{left:2.340000px;}
.x5d{left:3.420000px;}
.x37{left:5.040000px;}
.x13{left:6.660000px;}
.x5{left:8.640000px;}
.x3b{left:9.900000px;}
.x3d{left:10.980000px;}
.x3f{left:12.060000px;}
.x46{left:14.040000px;}
.x49{left:16.020000px;}
.x16{left:18.045000px;}
.x12{left:20.205000px;}
.x4b{left:22.500000px;}
.x14{left:24.705000px;}
.x15{left:26.505000px;}
.x31{left:28.080000px;}
.x2f{left:30.996000px;}
.x26{left:32.256000px;}
.x43{left:34.200000px;}
.x5e{left:36.000000px;}
.x23{left:37.800000px;}
.x4c{left:39.240000px;}
.x29{left:40.500000px;}
.x4a{left:41.580000px;}
.x28{left:42.840000px;}
.x8{left:45.540000px;}
.x33{left:46.620000px;}
.x27{left:48.960000px;}
.x21{left:50.040000px;}
.x2d{left:51.300000px;}
.x4{left:53.999986px;}
.x66{left:55.125000px;}
.x68{left:56.370000px;}
.x2a{left:57.600000px;}
.x53{left:58.860000px;}
.x3{left:60.659986px;}
.x1e{left:62.100000px;}
.x36{left:63.180000px;}
.x17{left:65.519986px;}
.x40{left:67.494000px;}
.x3e{left:68.934000px;}
.x67{left:70.785000px;}
.x34{left:78.839986px;}
.x6c{left:80.130000px;}
.x6b{left:85.140000px;}
.x1c{left:86.759986px;}
.x41{left:89.274000px;}
.x30{left:92.874000px;}
.x2e{left:96.294000px;}
.x2c{left:98.634000px;}
.x6{left:100.836000px;}
.x2b{left:102.054000px;}
.x7{left:108.035986px;}
.x32{left:120.414000px;}
.x1f{left:134.136000px;}
.x61{left:139.176000px;}
.x1{left:150.509986px;}
.xf{left:164.909986px;}
.xe{left:205.049986px;}
.xb{left:207.929986px;}
.x1d{left:214.949986px;}
.x2{left:220.709986px;}
.x44{left:224.130000px;}
.x35{left:235.289986px;}
.x42{left:252.569986px;}
.x62{left:259.050000px;}
.x45{left:269.130000px;}
.x38{left:272.010000px;}
.x6d{left:295.635000px;}
.x39{left:305.535000px;}
.x47{left:325.335000px;}
.x1b{left:341.714986px;}
.x3a{left:347.475000px;}
.xd{left:358.094986px;}
.x20{left:375.915000px;}
.x60{left:379.694986px;}
.x48{left:382.575000px;}
.x3c{left:395.355000px;}
.x63{left:427.035000px;}
.xa{left:459.074986px;}
.x19{left:461.954986px;}
.xc{left:464.294986px;}
.x10{left:465.374986px;}
.x18{left:478.334986px;}
.x4d{left:480.165000px;}
.x22{left:498.165000px;}
.x56{left:500.145000px;}
.x6a{left:505.364986px;}
.x4e{left:508.785000px;}
.x64{left:554.505000px;}
.x57{left:579.885000px;}
.x24{left:601.485000px;}
.x54{left:640.724986px;}
.x11{left:661.245000px;}
.x65{left:666.645000px;}
.x55{left:671.144986px;}
.x58{left:678.210000px;}
.x4f{left:682.710000px;}
.x1a{left:718.529986px;}
.x5b{left:719.790000px;}
.x50{left:724.650000px;}
.x69{left:739.769986px;}
.x5f{left:745.529986px;}
.x25{left:753.450000px;}
.x51{left:765.150000px;}
.x5c{left:807.630000px;}
.x9{left:812.490000px;}
.x52{left:816.990000px;}
@media print{
.v4{vertical-align:-53.760000pt;}
.v5{vertical-align:-46.720000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:16.000000pt;}
.ls13{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.163733pt;}
.ls19{letter-spacing:-0.040320pt;}
.lsf{letter-spacing:-0.000001pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.038400pt;}
.ls10{letter-spacing:0.041600pt;}
.ls1d{letter-spacing:0.051200pt;}
.ls7{letter-spacing:0.151040pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.165120pt;}
.ls23{letter-spacing:0.168533pt;}
.ls22{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.280320pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.400000pt;}
.ls0{letter-spacing:0.599680pt;}
.ls14{letter-spacing:0.636160pt;}
.lsa{letter-spacing:8.352000pt;}
.ls16{letter-spacing:9.947520pt;}
.ls24{letter-spacing:12.112640pt;}
.ls21{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:32.347520pt;}
.ls8{letter-spacing:33.232640pt;}
.ls4{letter-spacing:37.216000pt;}
.ls1f{letter-spacing:40.912640pt;}
.ls17{letter-spacing:51.152640pt;}
.ls15{letter-spacing:56.912640pt;}
.ls25{letter-spacing:57.040640pt;}
.ls1b{letter-spacing:134.854187pt;}
.ls1e{letter-spacing:586.587520pt;}
.ls18{letter-spacing:758.267520pt;}
.ls3{letter-spacing:910.346667pt;}
.ws14{word-spacing:-53.120000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws5{word-spacing:-24.576000pt;}
.ws7{word-spacing:-22.353920pt;}
.ws16{word-spacing:-20.183680pt;}
.ws8{word-spacing:-20.174080pt;}
.ws11{word-spacing:-20.132480pt;}
.wsa{word-spacing:-19.949013pt;}
.ws2{word-spacing:-18.592000pt;}
.wsf{word-spacing:-18.192000pt;}
.ws1{word-spacing:-17.952000pt;}
.ws4{word-spacing:-16.251520pt;}
.ws15{word-spacing:-16.211200pt;}
.ws18{word-spacing:-14.723413pt;}
.ws6{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.098240pt;}
.ws17{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.376000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws12{word-spacing:0.000000pt;}
._14{margin-left:-5.945813pt;}
._4{margin-left:-0.940800pt;}
._1{width:1.009280pt;}
._5{width:1.912320pt;}
._7{width:2.925867pt;}
._9{width:3.906133pt;}
._8{width:5.471360pt;}
._a{width:6.386347pt;}
._6{width:7.330560pt;}
._b{width:8.313600pt;}
._f{width:10.092800pt;}
._10{width:11.102080pt;}
._11{width:12.058240pt;}
._12{width:13.704960pt;}
._15{width:14.714240pt;}
._1a{width:15.989120pt;}
._1d{width:17.317120pt;}
._13{width:18.645120pt;}
._1c{width:19.866667pt;}
._c{width:21.744000pt;}
._d{width:23.424000pt;}
._16{width:25.656960pt;}
._23{width:27.088427pt;}
._1b{width:29.269120pt;}
._1f{width:30.331307pt;}
._18{width:33.307520pt;}
._17{width:34.314880pt;}
._22{width:35.481387pt;}
._24{width:37.393707pt;}
._1e{width:40.689920pt;}
._25{width:41.616427pt;}
._e{width:42.608000pt;}
._19{width:43.918720pt;}
._27{width:51.685760pt;}
._26{width:52.588800pt;}
._21{width:62.894080pt;}
._20{width:64.009600pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._0{width:2539.573333pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4a{bottom:2.272000pt;}
.y1a3{bottom:2.560000pt;}
.y3d{bottom:2.720000pt;}
.ycd{bottom:2.760000pt;}
.y18{bottom:2.880000pt;}
.y99{bottom:3.360000pt;}
.ya1{bottom:3.520000pt;}
.y17{bottom:4.640000pt;}
.y36{bottom:5.440000pt;}
.yd2{bottom:5.600000pt;}
.ya5{bottom:6.400000pt;}
.y7{bottom:7.872000pt;}
.yc4{bottom:8.320000pt;}
.yc{bottom:12.480000pt;}
.yc5{bottom:13.920000pt;}
.y1a8{bottom:14.554667pt;}
.y17e{bottom:14.560000pt;}
.y8{bottom:15.232000pt;}
.y49{bottom:15.392000pt;}
.y1a2{bottom:16.640000pt;}
.y34{bottom:17.120000pt;}
.yfa{bottom:21.920000pt;}
.y3b{bottom:22.720000pt;}
.y1a7{bottom:26.714667pt;}
.y17d{bottom:26.880000pt;}
.yf8{bottom:27.520000pt;}
.y120{bottom:27.560000pt;}
.ya{bottom:31.520000pt;}
.y33{bottom:31.680000pt;}
.y1a1{bottom:32.000000pt;}
.yf9{bottom:32.960000pt;}
.y4b{bottom:36.800000pt;}
.y3a{bottom:36.960000pt;}
.y1a6{bottom:39.034667pt;}
.y17c{bottom:39.040000pt;}
.y32{bottom:45.600000pt;}
.y1a0{bottom:47.200000pt;}
.y39{bottom:51.200000pt;}
.y1a5{bottom:51.354667pt;}
.y17b{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y48{bottom:56.960000pt;}
.y31{bottom:59.360000pt;}
.y19f{bottom:62.560000pt;}
.y38{bottom:63.680000pt;}
.y30{bottom:73.146667pt;}
.y2b{bottom:75.240000pt;}
.y19e{bottom:77.920000pt;}
.y2f{bottom:86.906667pt;}
.y2a{bottom:89.800000pt;}
.y19d{bottom:93.320000pt;}
.y3c{bottom:94.440000pt;}
.ydc{bottom:99.552000pt;}
.y12b{bottom:100.192000pt;}
.y2e{bottom:100.826667pt;}
.y29{bottom:103.720000pt;}
.ya7{bottom:105.952000pt;}
.y47{bottom:107.712000pt;}
.y115{bottom:108.992000pt;}
.y5b{bottom:111.552000pt;}
.ydb{bottom:113.632000pt;}
.y12a{bottom:114.272000pt;}
.y2d{bottom:114.586667pt;}
.y19b{bottom:117.632000pt;}
.y28{bottom:117.800000pt;}
.y46{bottom:121.632000pt;}
.y114{bottom:122.912000pt;}
.y16c{bottom:123.232000pt;}
.y5a{bottom:125.472000pt;}
.yda{bottom:127.552000pt;}
.y1a4{bottom:127.712000pt;}
.y129{bottom:128.192000pt;}
.y27{bottom:131.720000pt;}
.ya6{bottom:133.312000pt;}
.y14f{bottom:133.466667pt;}
.y45{bottom:135.706667pt;}
.y113{bottom:136.826667pt;}
.y16b{bottom:138.426667pt;}
.y59{bottom:139.546667pt;}
.yd9{bottom:141.626667pt;}
.y128{bottom:142.266667pt;}
.ya4{bottom:142.426667pt;}
.y26{bottom:145.640000pt;}
.y14e{bottom:148.666667pt;}
.y44{bottom:149.626667pt;}
.y112{bottom:150.906667pt;}
.y58{bottom:153.466667pt;}
.y16a{bottom:153.786667pt;}
.yd8{bottom:155.546667pt;}
.ya3{bottom:155.706667pt;}
.y127{bottom:156.186667pt;}
.y25{bottom:159.720000pt;}
.y43{bottom:163.706667pt;}
.y14d{bottom:164.026667pt;}
.y111{bottom:164.826667pt;}
.y57{bottom:167.546667pt;}
.ya2{bottom:168.986667pt;}
.y169{bottom:169.146667pt;}
.yd7{bottom:169.626667pt;}
.y24{bottom:173.640000pt;}
.y42{bottom:177.626667pt;}
.y110{bottom:178.906667pt;}
.y14c{bottom:179.386667pt;}
.y56{bottom:181.466667pt;}
.ya0{bottom:182.266667pt;}
.yd6{bottom:183.546667pt;}
.y168{bottom:184.506667pt;}
.y23{bottom:187.720000pt;}
.y19c{bottom:189.786667pt;}
.y41{bottom:191.546667pt;}
.y10f{bottom:192.826667pt;}
.y55{bottom:193.786667pt;}
.y14b{bottom:194.746667pt;}
.y9f{bottom:195.546667pt;}
.yd5{bottom:197.466667pt;}
.y54{bottom:199.226667pt;}
.y167{bottom:199.866667pt;}
.y22{bottom:201.640000pt;}
.y126{bottom:204.666667pt;}
.y40{bottom:204.986667pt;}
.y10e{bottom:206.906667pt;}
.y9e{bottom:208.826667pt;}
.y14a{bottom:210.106667pt;}
.yd4{bottom:211.546667pt;}
.y166{bottom:215.226667pt;}
.y21{bottom:215.560000pt;}
.y125{bottom:216.506667pt;}
.y3f{bottom:219.386667pt;}
.y10d{bottom:220.826667pt;}
.y9d{bottom:222.106667pt;}
.yd3{bottom:224.986667pt;}
.y149{bottom:225.466667pt;}
.y124{bottom:228.346667pt;}
.y20{bottom:229.640000pt;}
.y165{bottom:230.426667pt;}
.y3e{bottom:232.666667pt;}
.yd1{bottom:234.106667pt;}
.y10c{bottom:234.746667pt;}
.y9c{bottom:235.386667pt;}
.y123{bottom:240.186667pt;}
.y148{bottom:240.666667pt;}
.y1f{bottom:243.560000pt;}
.y19{bottom:244.506667pt;}
.y164{bottom:245.786667pt;}
.yd0{bottom:245.946667pt;}
.y9b{bottom:248.666667pt;}
.y10b{bottom:248.826667pt;}
.y122{bottom:252.026667pt;}
.y147{bottom:256.026667pt;}
.y1e{bottom:257.640000pt;}
.ycf{bottom:257.786667pt;}
.y163{bottom:261.146667pt;}
.y9a{bottom:261.946667pt;}
.y10a{bottom:262.746667pt;}
.y121{bottom:263.866667pt;}
.yce{bottom:269.626667pt;}
.y146{bottom:271.386667pt;}
.y1d{bottom:271.586667pt;}
.y98{bottom:275.226667pt;}
.y11f{bottom:275.706667pt;}
.y162{bottom:276.506667pt;}
.y109{bottom:276.826667pt;}
.ycc{bottom:281.466667pt;}
.y1c{bottom:285.666667pt;}
.y145{bottom:286.786667pt;}
.y97{bottom:288.546667pt;}
.y108{bottom:290.786667pt;}
.y161{bottom:291.906667pt;}
.ycb{bottom:293.346667pt;}
.y1b{bottom:299.586667pt;}
.y96{bottom:301.986667pt;}
.y144{bottom:302.146667pt;}
.y19a{bottom:302.306667pt;}
.y107{bottom:304.706667pt;}
.yca{bottom:305.186667pt;}
.y160{bottom:307.266667pt;}
.y95{bottom:310.626667pt;}
.y1a{bottom:313.346667pt;}
.y199{bottom:314.466667pt;}
.yc9{bottom:317.186667pt;}
.y143{bottom:317.506667pt;}
.y106{bottom:318.786667pt;}
.y15f{bottom:322.466667pt;}
.y94{bottom:324.546667pt;}
.y198{bottom:326.786667pt;}
.yc8{bottom:329.026667pt;}
.y105{bottom:332.706667pt;}
.y15e{bottom:337.826667pt;}
.y7c{bottom:338.626667pt;}
.y11e{bottom:338.786667pt;}
.y197{bottom:339.106667pt;}
.yc7{bottom:340.866667pt;}
.y104{bottom:346.786667pt;}
.y142{bottom:348.546667pt;}
.y37{bottom:350.946667pt;}
.y196{bottom:351.266667pt;}
.y7b{bottom:352.546667pt;}
.yc6{bottom:352.706667pt;}
.y15d{bottom:353.186667pt;}
.y93{bottom:354.946667pt;}
.y11d{bottom:358.626667pt;}
.y103{bottom:360.706667pt;}
.y141{bottom:362.466667pt;}
.y195{bottom:363.586667pt;}
.yc3{bottom:364.546667pt;}
.y7a{bottom:366.626667pt;}
.y15c{bottom:368.546667pt;}
.y92{bottom:368.866667pt;}
.y11c{bottom:372.546667pt;}
.y102{bottom:374.146667pt;}
.y194{bottom:375.906667pt;}
.y140{bottom:376.386667pt;}
.y79{bottom:380.546667pt;}
.y91{bottom:382.946667pt;}
.y101{bottom:383.266667pt;}
.y15b{bottom:383.906667pt;}
.y11b{bottom:386.466667pt;}
.y193{bottom:388.066667pt;}
.yc2{bottom:389.186667pt;}
.y13f{bottom:390.466667pt;}
.y78{bottom:394.466667pt;}
.y100{bottom:395.106667pt;}
.y90{bottom:396.866667pt;}
.yc1{bottom:397.346667pt;}
.y15a{bottom:399.266667pt;}
.y192{bottom:400.386667pt;}
.y11a{bottom:400.546667pt;}
.y13e{bottom:404.386667pt;}
.yff{bottom:406.946667pt;}
.y77{bottom:408.546667pt;}
.y8f{bottom:410.946667pt;}
.y191{bottom:412.706667pt;}
.y119{bottom:414.466667pt;}
.y13d{bottom:418.466667pt;}
.yfe{bottom:418.786667pt;}
.yc0{bottom:420.226667pt;}
.y76{bottom:422.466667pt;}
.y8e{bottom:424.866667pt;}
.y35{bottom:426.466667pt;}
.y118{bottom:428.226667pt;}
.y159{bottom:429.826667pt;}
.yfd{bottom:430.786667pt;}
.y13c{bottom:432.386667pt;}
.ybf{bottom:434.146667pt;}
.y75{bottom:436.546667pt;}
.y190{bottom:437.186667pt;}
.y8d{bottom:438.786667pt;}
.y117{bottom:439.426667pt;}
.yfc{bottom:442.626667pt;}
.y116{bottom:444.866667pt;}
.y2c{bottom:445.026667pt;}
.y158{bottom:445.186667pt;}
.y13b{bottom:446.306667pt;}
.ybe{bottom:448.226667pt;}
.y18f{bottom:449.506667pt;}
.y74{bottom:450.466667pt;}
.y8c{bottom:452.866667pt;}
.yfb{bottom:454.466667pt;}
.y13a{bottom:460.386667pt;}
.y157{bottom:460.546667pt;}
.y18e{bottom:461.666667pt;}
.ybd{bottom:462.146667pt;}
.y73{bottom:464.386667pt;}
.yf7{bottom:466.306667pt;}
.y8b{bottom:466.786667pt;}
.y18d{bottom:473.986667pt;}
.y139{bottom:474.306667pt;}
.y156{bottom:475.906667pt;}
.ybc{bottom:476.226667pt;}
.y72{bottom:478.466667pt;}
.y8a{bottom:480.866667pt;}
.y18c{bottom:486.306667pt;}
.y138{bottom:488.386667pt;}
.ybb{bottom:490.146667pt;}
.y155{bottom:491.106667pt;}
.y71{bottom:492.386667pt;}
.y89{bottom:494.786667pt;}
.y18b{bottom:498.466667pt;}
.y137{bottom:502.306667pt;}
.yba{bottom:504.066667pt;}
.y70{bottom:506.493333pt;}
.y88{bottom:508.733333pt;}
.y18a{bottom:510.813333pt;}
.y136{bottom:516.413333pt;}
.yb9{bottom:518.173333pt;}
.y6f{bottom:520.413333pt;}
.y154{bottom:521.853333pt;}
.y87{bottom:522.813333pt;}
.y189{bottom:523.133333pt;}
.yf6{bottom:529.213333pt;}
.y135{bottom:530.333333pt;}
.yb8{bottom:532.093333pt;}
.y6e{bottom:534.493333pt;}
.y188{bottom:535.293333pt;}
.y86{bottom:536.733333pt;}
.y153{bottom:537.213333pt;}
.yf5{bottom:537.373333pt;}
.y134{bottom:544.253333pt;}
.yb7{bottom:545.853333pt;}
.y187{bottom:547.613333pt;}
.y85{bottom:550.813333pt;}
.y6d{bottom:551.133333pt;}
.y152{bottom:552.573333pt;}
.yb6{bottom:556.093333pt;}
.y133{bottom:558.333333pt;}
.y186{bottom:559.933333pt;}
.yf4{bottom:560.253333pt;}
.y84{bottom:564.733333pt;}
.y6c{bottom:567.773333pt;}
.y151{bottom:567.933333pt;}
.yb5{bottom:569.373333pt;}
.y16{bottom:571.453333pt;}
.y185{bottom:572.093333pt;}
.y132{bottom:572.253333pt;}
.yf3{bottom:574.333333pt;}
.y83{bottom:578.813333pt;}
.yb4{bottom:582.653333pt;}
.y150{bottom:583.133333pt;}
.y184{bottom:584.413333pt;}
.y6b{bottom:584.573333pt;}
.y131{bottom:586.333333pt;}
.yf2{bottom:588.253333pt;}
.y82{bottom:592.733333pt;}
.yb3{bottom:595.933333pt;}
.y183{bottom:596.733333pt;}
.y6a{bottom:598.493333pt;}
.y130{bottom:600.253333pt;}
.yf1{bottom:602.173333pt;}
.y15{bottom:602.653333pt;}
.y81{bottom:606.653333pt;}
.y182{bottom:608.893333pt;}
.yb2{bottom:609.213333pt;}
.y69{bottom:612.573333pt;}
.y12f{bottom:614.173333pt;}
.yf0{bottom:616.253333pt;}
.y14{bottom:620.253333pt;}
.y80{bottom:620.733333pt;}
.y181{bottom:621.213333pt;}
.yb1{bottom:622.493333pt;}
.y12e{bottom:627.613333pt;}
.y68{bottom:629.213333pt;}
.yef{bottom:630.173333pt;}
.y180{bottom:633.533333pt;}
.y7f{bottom:634.653333pt;}
.yb0{bottom:635.773333pt;}
.y12d{bottom:637.693333pt;}
.y12c{bottom:643.133333pt;}
.y67{bottom:643.293333pt;}
.yee{bottom:644.253333pt;}
.y17f{bottom:646.813333pt;}
.y7e{bottom:648.733333pt;}
.yaf{bottom:649.053333pt;}
.y13{bottom:650.973333pt;}
.yed{bottom:658.173333pt;}
.y66{bottom:659.933333pt;}
.y17a{bottom:661.853333pt;}
.yae{bottom:662.333333pt;}
.y7d{bottom:662.653333pt;}
.y12{bottom:666.333333pt;}
.yec{bottom:672.253333pt;}
.yad{bottom:675.613333pt;}
.y65{bottom:676.573333pt;}
.y11{bottom:677.533333pt;}
.yeb{bottom:686.173333pt;}
.yac{bottom:688.893333pt;}
.y64{bottom:690.653333pt;}
.y10{bottom:696.253333pt;}
.yea{bottom:699.613333pt;}
.yab{bottom:702.013333pt;}
.y63{bottom:704.573333pt;}
.ye9{bottom:708.733333pt;}
.yaa{bottom:715.613333pt;}
.y62{bottom:718.653333pt;}
.ye8{bottom:720.573333pt;}
.ya9{bottom:723.613333pt;}
.y179{bottom:723.933333pt;}
.yf{bottom:724.733333pt;}
.ye7{bottom:732.453333pt;}
.y61{bottom:732.613333pt;}
.ya8{bottom:734.853333pt;}
.y178{bottom:740.293333pt;}
.ye6{bottom:744.293333pt;}
.y60{bottom:746.693333pt;}
.ye{bottom:749.093333pt;}
.ye5{bottom:756.133333pt;}
.y177{bottom:757.413333pt;}
.y5f{bottom:760.613333pt;}
.ye4{bottom:768.133333pt;}
.y176{bottom:772.773333pt;}
.y5e{bottom:774.533333pt;}
.yd{bottom:774.853333pt;}
.ye3{bottom:779.973333pt;}
.y175{bottom:788.133333pt;}
.yb{bottom:788.453333pt;}
.y5d{bottom:788.613333pt;}
.ye2{bottom:791.813333pt;}
.y5c{bottom:802.533333pt;}
.y174{bottom:803.493333pt;}
.ye1{bottom:803.653333pt;}
.ye0{bottom:815.493333pt;}
.y53{bottom:816.613333pt;}
.y173{bottom:820.773333pt;}
.ydf{bottom:827.333333pt;}
.y52{bottom:830.533333pt;}
.y172{bottom:836.133333pt;}
.yde{bottom:839.173333pt;}
.y51{bottom:844.453333pt;}
.y171{bottom:851.333333pt;}
.ydd{bottom:852.613333pt;}
.y50{bottom:858.533333pt;}
.y170{bottom:866.693333pt;}
.y4f{bottom:872.453333pt;}
.y16f{bottom:882.053333pt;}
.y4e{bottom:886.533333pt;}
.y16e{bottom:897.413333pt;}
.y4d{bottom:900.453333pt;}
.y16d{bottom:912.773333pt;}
.y4c{bottom:914.533333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h26{height:11.040000pt;}
.h20{height:11.200000pt;}
.h27{height:11.232000pt;}
.h2b{height:12.192000pt;}
.h24{height:12.480000pt;}
.h22{height:12.512000pt;}
.h23{height:12.640000pt;}
.h11{height:15.360000pt;}
.h19{height:17.760000pt;}
.h1f{height:21.530880pt;}
.h25{height:22.400000pt;}
.h4{height:25.152000pt;}
.h1d{height:25.312000pt;}
.he{height:29.733120pt;}
.h2e{height:29.940625pt;}
.h2c{height:30.254687pt;}
.h15{height:33.515625pt;}
.h1c{height:33.867188pt;}
.h21{height:34.346880pt;}
.h7{height:34.965625pt;}
.h14{height:35.531250pt;}
.h17{height:35.554688pt;}
.h5{height:37.090625pt;}
.h12{height:37.479688pt;}
.h6{height:38.448000pt;}
.h29{height:38.672812pt;}
.h2a{height:39.321250pt;}
.h18{height:39.347188pt;}
.h9{height:41.112500pt;}
.h10{height:42.549120pt;}
.h2{height:43.108125pt;}
.h1e{height:43.682560pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.hd{height:51.264000pt;}
.h1{height:51.937500pt;}
.h28{height:60.672000pt;}
.h30{height:61.280000pt;}
.h2d{height:61.440000pt;}
.hf{height:67.031250pt;}
.hb{height:67.734375pt;}
.h1a{height:74.880000pt;}
.hc{height:76.896000pt;}
.h1b{height:105.632000pt;}
.h2f{height:105.792000pt;}
.h16{height:125.792000pt;}
.h8{height:136.800000pt;}
.h13{height:326.306667pt;}
.h0{height:1056.000000pt;}
.w1d{width:17.792000pt;}
.w17{width:24.800000pt;}
.wc{width:25.472000pt;}
.w25{width:27.040000pt;}
.we{width:29.152000pt;}
.w11{width:34.432000pt;}
.w1c{width:35.200000pt;}
.w1a{width:35.360000pt;}
.w20{width:36.320000pt;}
.wf{width:36.480000pt;}
.w19{width:36.640000pt;}
.w22{width:37.280000pt;}
.w13{width:39.360000pt;}
.w21{width:39.520000pt;}
.w2{width:40.032000pt;}
.w10{width:41.920000pt;}
.w23{width:44.320000pt;}
.w1b{width:45.440000pt;}
.w16{width:49.120000pt;}
.w14{width:49.152000pt;}
.w15{width:50.240000pt;}
.w7{width:63.232000pt;}
.w1e{width:70.240000pt;}
.w1f{width:86.752000pt;}
.wa{width:91.200000pt;}
.w29{width:99.040000pt;}
.w26{width:105.920000pt;}
.w9{width:108.032000pt;}
.w12{width:108.480000pt;}
.w28{width:112.672000pt;}
.w2a{width:127.552000pt;}
.wb{width:134.266667pt;}
.w27{width:148.666667pt;}
.w18{width:153.946667pt;}
.wd{width:158.720000pt;}
.w24{width:176.226667pt;}
.w6{width:178.906667pt;}
.w8{width:214.106667pt;}
.w2b{width:282.906667pt;}
.w2c{width:292.706667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w2d{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x59{left:0.960000pt;}
.x5a{left:2.080000pt;}
.x5d{left:3.040000pt;}
.x37{left:4.480000pt;}
.x13{left:5.920000pt;}
.x5{left:7.680000pt;}
.x3b{left:8.800000pt;}
.x3d{left:9.760000pt;}
.x3f{left:10.720000pt;}
.x46{left:12.480000pt;}
.x49{left:14.240000pt;}
.x16{left:16.040000pt;}
.x12{left:17.960000pt;}
.x4b{left:20.000000pt;}
.x14{left:21.960000pt;}
.x15{left:23.560000pt;}
.x31{left:24.960000pt;}
.x2f{left:27.552000pt;}
.x26{left:28.672000pt;}
.x43{left:30.400000pt;}
.x5e{left:32.000000pt;}
.x23{left:33.600000pt;}
.x4c{left:34.880000pt;}
.x29{left:36.000000pt;}
.x4a{left:36.960000pt;}
.x28{left:38.080000pt;}
.x8{left:40.480000pt;}
.x33{left:41.440000pt;}
.x27{left:43.520000pt;}
.x21{left:44.480000pt;}
.x2d{left:45.600000pt;}
.x4{left:47.999988pt;}
.x66{left:49.000000pt;}
.x68{left:50.106667pt;}
.x2a{left:51.200000pt;}
.x53{left:52.320000pt;}
.x3{left:53.919988pt;}
.x1e{left:55.200000pt;}
.x36{left:56.160000pt;}
.x17{left:58.239988pt;}
.x40{left:59.994667pt;}
.x3e{left:61.274667pt;}
.x67{left:62.920000pt;}
.x34{left:70.079988pt;}
.x6c{left:71.226667pt;}
.x6b{left:75.680000pt;}
.x1c{left:77.119988pt;}
.x41{left:79.354667pt;}
.x30{left:82.554667pt;}
.x2e{left:85.594667pt;}
.x2c{left:87.674667pt;}
.x6{left:89.632000pt;}
.x2b{left:90.714667pt;}
.x7{left:96.031988pt;}
.x32{left:107.034667pt;}
.x1f{left:119.232000pt;}
.x61{left:123.712000pt;}
.x1{left:133.786655pt;}
.xf{left:146.586655pt;}
.xe{left:182.266655pt;}
.xb{left:184.826655pt;}
.x1d{left:191.066655pt;}
.x2{left:196.186655pt;}
.x44{left:199.226667pt;}
.x35{left:209.146655pt;}
.x42{left:224.506655pt;}
.x62{left:230.266667pt;}
.x45{left:239.226667pt;}
.x38{left:241.786667pt;}
.x6d{left:262.786667pt;}
.x39{left:271.586667pt;}
.x47{left:289.186667pt;}
.x1b{left:303.746655pt;}
.x3a{left:308.866667pt;}
.xd{left:318.306655pt;}
.x20{left:334.146667pt;}
.x60{left:337.506655pt;}
.x48{left:340.066667pt;}
.x3c{left:351.426667pt;}
.x63{left:379.586667pt;}
.xa{left:408.066655pt;}
.x19{left:410.626655pt;}
.xc{left:412.706655pt;}
.x10{left:413.666655pt;}
.x18{left:425.186655pt;}
.x4d{left:426.813333pt;}
.x22{left:442.813333pt;}
.x56{left:444.573333pt;}
.x6a{left:449.213321pt;}
.x4e{left:452.253333pt;}
.x64{left:492.893333pt;}
.x57{left:515.453333pt;}
.x24{left:534.653333pt;}
.x54{left:569.533321pt;}
.x11{left:587.773333pt;}
.x65{left:592.573333pt;}
.x55{left:596.573321pt;}
.x58{left:602.853333pt;}
.x4f{left:606.853333pt;}
.x1a{left:638.693321pt;}
.x5b{left:639.813333pt;}
.x50{left:644.133333pt;}
.x69{left:657.573321pt;}
.x5f{left:662.693321pt;}
.x25{left:669.733333pt;}
.x51{left:680.133333pt;}
.x5c{left:717.893333pt;}
.x9{left:722.213333pt;}
.x52{left:726.213333pt;}
}




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