
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_831baa168d745b7dc4a27221.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cfd1c7d824b71149e3fcd298.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2f72a838ce11c365ab449bfe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_bda5112ab0b921dbfdaacf7f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea9ccbbf9f359a6560026a2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e3a697679ae7ea35e5f4e5f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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_9cdb4ba88c72f89aab98860a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927734;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_83d5b441733e7635d22f7896.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.066406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.400000px;}
.v4{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v6{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:36.000000px;}
.ls7{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.265800px;}
.lsc{letter-spacing:-0.205800px;}
.ls4{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.137400px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.038880px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.097920px;}
.ls14{letter-spacing:0.107280px;}
.ls13{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.239040px;}
.lsd{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.303576px;}
.ls5{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.397440px;}
.ls16{letter-spacing:0.474480px;}
.ls29{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.720000px;}
.ls18{letter-spacing:2.801520px;}
.ls24{letter-spacing:2.921520px;}
.ls22{letter-spacing:3.360240px;}
.ls27{letter-spacing:3.427200px;}
.ls19{letter-spacing:3.521520px;}
.ls21{letter-spacing:4.147200px;}
.ls1a{letter-spacing:4.612320px;}
.ls23{letter-spacing:4.867200px;}
.ls1c{letter-spacing:5.021280px;}
.ls26{letter-spacing:5.047200px;}
.ls10{letter-spacing:10.800000px;}
.ls17{letter-spacing:18.641520px;}
.ls20{letter-spacing:19.987200px;}
.ls25{letter-spacing:20.707200px;}
.ls0{letter-spacing:21.060000px;}
.ls1d{letter-spacing:22.241520px;}
.ls1b{letter-spacing:22.961520px;}
.ls1e{letter-spacing:23.081520px;}
.ls1f{letter-spacing:24.307200px;}
.lse{letter-spacing:159.240000px;}
.ls11{letter-spacing:172.002720px;}
.ls9{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.wsb{word-spacing:-59.760000px;}
.ws13{word-spacing:-57.168000px;}
.wse{word-spacing:-56.664000px;}
.ws10{word-spacing:-56.448000px;}
.wsd{word-spacing:-55.944000px;}
.ws14{word-spacing:-55.764000px;}
.wsf{word-spacing:-52.488000px;}
.ws11{word-spacing:-52.344000px;}
.ws15{word-spacing:-51.768000px;}
.wsc{word-spacing:-51.624000px;}
.ws12{word-spacing:-51.588000px;}
.ws16{word-spacing:-51.120000px;}
.ws0{word-spacing:-23.761200px;}
.ws2{word-spacing:-21.060000px;}
.ws19{word-spacing:-19.277052px;}
.ws18{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.527000px;}
.ws9{word-spacing:-14.802600px;}
.ws17{word-spacing:-11.881080px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-8.040000px;}
._2d{margin-left:-6.783840px;}
._26{margin-left:-4.758000px;}
._b{margin-left:-3.744000px;}
._a{margin-left:-2.736000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._f{width:4.746000px;}
._d{width:5.850000px;}
._c{width:6.912000px;}
._18{width:8.466000px;}
._12{width:9.552000px;}
._e{width:10.584000px;}
._11{width:11.652000px;}
._15{width:12.684000px;}
._25{width:14.634000px;}
._10{width:15.768000px;}
._27{width:16.776000px;}
._1e{width:18.465840px;}
._13{width:20.376000px;}
._14{width:21.576000px;}
._19{width:22.716000px;}
._24{width:23.976000px;}
._1a{width:25.128000px;}
._32{width:26.460000px;}
._31{width:27.576000px;}
._7{width:28.800000px;}
._9{width:30.114000px;}
._8{width:31.176000px;}
._16{width:32.586000px;}
._28{width:34.560000px;}
._30{width:35.568000px;}
._33{width:38.664000px;}
._29{width:40.871760px;}
._2a{width:42.015360px;}
._37{width:51.192000px;}
._22{width:61.612560px;}
._21{width:62.688240px;}
._1f{width:68.484960px;}
._6{width:71.472000px;}
._2b{width:74.272320px;}
._38{width:75.661440px;}
._35{width:76.716000px;}
._2e{width:77.820000px;}
._20{width:81.691920px;}
._23{width:89.819280px;}
._1c{width:97.584000px;}
._39{width:99.216000px;}
._3a{width:100.884000px;}
._34{width:105.192000px;}
._1b{width:116.472240px;}
._1d{width:119.759040px;}
._2c{width:194.400000px;}
._36{width:249.552000px;}
._5{width:470.916000px;}
._17{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs8{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:1.800000px;}
.ydd{bottom:3.420000px;}
.y63{bottom:3.960000px;}
.yd7{bottom:4.005000px;}
.yde{bottom:4.680000px;}
.y37{bottom:8.100000px;}
.yd9{bottom:19.620000px;}
.yd5{bottom:19.665000px;}
.y66{bottom:20.700000px;}
.y62{bottom:20.880000px;}
.yd6{bottom:20.925000px;}
.y65{bottom:37.665000px;}
.y6a{bottom:37.800000px;}
.y33{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y36{bottom:67.680000px;}
.y34{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y32{bottom:122.580000px;}
.y3{bottom:137.520000px;}
.y11d{bottom:138.960000px;}
.y17d{bottom:140.400000px;}
.y160{bottom:141.660000px;}
.yf7{bottom:143.100000px;}
.y143{bottom:147.240000px;}
.y92{bottom:148.140000px;}
.yb7{bottom:151.950000px;}
.yd1{bottom:152.670000px;}
.y2f{bottom:155.910000px;}
.y59{bottom:157.530000px;}
.y11c{bottom:159.330000px;}
.y17c{bottom:160.590000px;}
.yf6{bottom:163.290000px;}
.y7f{bottom:165.270000px;}
.y91{bottom:168.510000px;}
.y15f{bottom:171.030000px;}
.yb6{bottom:172.110000px;}
.y2e{bottom:176.250000px;}
.y196{bottom:176.610000px;}
.yd0{bottom:177.510000px;}
.y58{bottom:177.870000px;}
.y11b{bottom:179.490000px;}
.y17b{bottom:180.930000px;}
.y142{bottom:181.110000px;}
.yf5{bottom:183.630000px;}
.y7e{bottom:185.610000px;}
.y15e{bottom:191.370000px;}
.yb5{bottom:192.450000px;}
.y90{bottom:192.990000px;}
.y2d{bottom:196.410000px;}
.y195{bottom:196.950000px;}
.y12b{bottom:197.850000px;}
.y57{bottom:198.030000px;}
.y11a{bottom:199.830000px;}
.y17a{bottom:201.090000px;}
.yf4{bottom:203.790000px;}
.y1b3{bottom:205.410000px;}
.y141{bottom:210.270000px;}
.y15d{bottom:211.530000px;}
.yb4{bottom:212.610000px;}
.y2c{bottom:216.750000px;}
.y7d{bottom:217.470000px;}
.y56{bottom:218.370000px;}
.y179{bottom:221.430000px;}
.y12a{bottom:222.510000px;}
.y1b2{bottom:225.750000px;}
.y194{bottom:226.110000px;}
.y119{bottom:228.990000px;}
.y140{bottom:230.610000px;}
.yf3{bottom:232.950000px;}
.y2b{bottom:236.910000px;}
.y7c{bottom:237.810000px;}
.y55{bottom:238.530000px;}
.y15c{bottom:240.690000px;}
.y178{bottom:241.590000px;}
.yb3{bottom:241.770000px;}
.y193{bottom:246.450000px;}
.y118{bottom:249.330000px;}
.yf2{bottom:253.290000px;}
.y1b1{bottom:254.910000px;}
.y13f{bottom:255.270000px;}
.y54{bottom:258.870000px;}
.y15b{bottom:261.030000px;}
.y177{bottom:261.930000px;}
.yb2{bottom:262.110000px;}
.y2a{bottom:266.070000px;}
.y7b{bottom:269.490000px;}
.yf1{bottom:275.250000px;}
.y192{bottom:275.610000px;}
.y15a{bottom:281.370000px;}
.y53{bottom:288.030000px;}
.y7a{bottom:289.830000px;}
.yb1{bottom:291.270000px;}
.y176{bottom:291.990000px;}
.y191{bottom:295.950000px;}
.y29{bottom:296.310000px;}
.yf0{bottom:297.030000px;}
.y117{bottom:298.650000px;}
.y159{bottom:301.530000px;}
.y1b0{bottom:304.410000px;}
.y52{bottom:308.370000px;}
.yb0{bottom:311.610000px;}
.y116{bottom:318.990000px;}
.y79{bottom:321.510000px;}
.y158{bottom:321.870000px;}
.y175{bottom:323.670000px;}
.y1af{bottom:324.750000px;}
.y190{bottom:325.110000px;}
.yef{bottom:327.810000px;}
.y28{bottom:327.990000px;}
.y51{bottom:328.530000px;}
.y115{bottom:339.330000px;}
.yaf{bottom:340.770000px;}
.y18f{bottom:345.450000px;}
.y50{bottom:348.870000px;}
.y78{bottom:350.850000px;}
.y157{bottom:351.030000px;}
.y174{bottom:353.010000px;}
.y1ae{bottom:355.530000px;}
.yee{bottom:357.150000px;}
.y27{bottom:357.330000px;}
.y114{bottom:359.490000px;}
.yae{bottom:361.110000px;}
.y4f{bottom:369.030000px;}
.y77{bottom:371.190000px;}
.y156{bottom:371.370000px;}
.y173{bottom:373.350000px;}
.y18e{bottom:374.610000px;}
.y1ad{bottom:375.870000px;}
.y26{bottom:377.670000px;}
.y113{bottom:388.650000px;}
.y4e{bottom:389.370000px;}
.yad{bottom:390.270000px;}
.y155{bottom:391.530000px;}
.yed{bottom:392.250000px;}
.y172{bottom:393.510000px;}
.y18d{bottom:394.950000px;}
.y1ac{bottom:396.030000px;}
.y25{bottom:397.830000px;}
.y76{bottom:402.915000px;}
.y112{bottom:409.035000px;}
.y4d{bottom:409.575000px;}
.yac{bottom:410.655000px;}
.y154{bottom:411.915000px;}
.y171{bottom:413.895000px;}
.y18c{bottom:415.155000px;}
.yec{bottom:421.635000px;}
.y75{bottom:423.255000px;}
.ycf{bottom:425.235000px;}
.y24{bottom:427.035000px;}
.y111{bottom:429.375000px;}
.yab{bottom:430.995000px;}
.y18b{bottom:435.495000px;}
.y4c{bottom:438.735000px;}
.y153{bottom:441.075000px;}
.y170{bottom:443.055000px;}
.y1ab{bottom:445.575000px;}
.yeb{bottom:450.795000px;}
.yce{bottom:454.575000px;}
.y74{bottom:454.935000px;}
.y23{bottom:456.375000px;}
.y110{bottom:458.535000px;}
.yaa{bottom:460.155000px;}
.y152{bottom:461.415000px;}
.y16f{bottom:463.395000px;}
.y18a{bottom:464.655000px;}
.y4b{bottom:468.075000px;}
.yea{bottom:471.135000px;}
.y1aa{bottom:474.735000px;}
.ycd{bottom:474.915000px;}
.y73{bottom:475.275000px;}
.y22{bottom:476.715000px;}
.y10f{bottom:478.875000px;}
.y151{bottom:481.575000px;}
.y16e{bottom:483.555000px;}
.y189{bottom:484.995000px;}
.ya9{bottom:489.315000px;}
.y8f{bottom:490.215000px;}
.ye9{bottom:491.475000px;}
.ycc{bottom:495.075000px;}
.y129{bottom:497.055000px;}
.y4a{bottom:497.235000px;}
.y10e{bottom:499.035000px;}
.y150{bottom:501.915000px;}
.y188{bottom:505.155000px;}
.y21{bottom:505.875000px;}
.y72{bottom:507.135000px;}
.ya8{bottom:509.655000px;}
.y16d{bottom:512.715000px;}
.ye8{bottom:513.435000px;}
.ycb{bottom:515.415000px;}
.y8e{bottom:519.375000px;}
.y49{bottom:521.895000px;}
.y1a9{bottom:524.235000px;}
.y128{bottom:526.395000px;}
.y71{bottom:527.475000px;}
.y14f{bottom:531.075000px;}
.y16c{bottom:533.055000px;}
.ya7{bottom:534.315000px;}
.y20{bottom:535.035000px;}
.ye7{bottom:535.215000px;}
.yca{bottom:535.575000px;}
.y8d{bottom:539.715000px;}
.y1a8{bottom:544.575000px;}
.y127{bottom:546.735000px;}
.y10d{bottom:548.535000px;}
.y16b{bottom:553.395000px;}
.y1f{bottom:555.375000px;}
.yc9{bottom:555.915000px;}
.y70{bottom:559.155000px;}
.y8c{bottom:560.055000px;}
.y14e{bottom:560.235000px;}
.y1a7{bottom:564.915000px;}
.ye6{bottom:565.815000px;}
.y126{bottom:566.895000px;}
.y187{bottom:567.075000px;}
.y10c{bottom:568.875000px;}
.y1e{bottom:575.715000px;}
.yc8{bottom:576.075000px;}
.y6f{bottom:579.495000px;}
.y8b{bottom:580.215000px;}
.y14d{bottom:580.575000px;}
.y16a{bottom:582.555000px;}
.y125{bottom:587.235000px;}
.y13e{bottom:588.315000px;}
.y10b{bottom:589.035000px;}
.y1a6{bottom:594.075000px;}
.ye5{bottom:595.335000px;}
.y1d{bottom:595.875000px;}
.y186{bottom:596.235000px;}
.yc7{bottom:596.415000px;}
.y8a{bottom:600.555000px;}
.y169{bottom:602.895000px;}
.y14c{bottom:605.055000px;}
.y124{bottom:607.395000px;}
.y10a{bottom:609.375000px;}
.y6e{bottom:611.355000px;}
.y1a5{bottom:614.415000px;}
.y1c{bottom:616.215000px;}
.y13d{bottom:617.655000px;}
.y168{bottom:623.055000px;}
.yc6{bottom:625.575000px;}
.y185{bottom:626.295000px;}
.y123{bottom:627.735000px;}
.y109{bottom:629.535000px;}
.ye4{bottom:630.435000px;}
.y6d{bottom:631.695000px;}
.y89{bottom:634.215000px;}
.y1b{bottom:636.375000px;}
.y13c{bottom:637.995000px;}
.y1a4{bottom:643.575000px;}
.y167{bottom:652.245000px;}
.yc5{bottom:654.765000px;}
.y1a{bottom:656.745000px;}
.y13b{bottom:658.185000px;}
.y108{bottom:658.725000px;}
.ye3{bottom:659.805000px;}
.y6c{bottom:660.885000px;}
.y122{bottom:661.425000px;}
.y88{bottom:663.405000px;}
.y1a3{bottom:663.945000px;}
.y166{bottom:672.585000px;}
.yc4{bottom:675.105000px;}
.y19{bottom:676.905000px;}
.y13a{bottom:678.525000px;}
.y107{bottom:679.245000px;}
.y87{bottom:683.745000px;}
.ya6{bottom:687.345000px;}
.ye2{bottom:688.965000px;}
.y6b{bottom:690.045000px;}
.y121{bottom:690.585000px;}
.y165{bottom:692.925000px;}
.y1a2{bottom:693.105000px;}
.yc3{bottom:695.445000px;}
.y18{bottom:697.245000px;}
.y139{bottom:698.685000px;}
.y106{bottom:701.025000px;}
.y69{bottom:706.425000px;}
.y184{bottom:707.685000px;}
.y86{bottom:708.405000px;}
.ye1{bottom:709.305000px;}
.y120{bottom:710.925000px;}
.y1a1{bottom:713.445000px;}
.ya5{bottom:716.685000px;}
.y17{bottom:717.405000px;}
.y138{bottom:719.025000px;}
.y164{bottom:722.085000px;}
.y105{bottom:722.805000px;}
.yc2{bottom:724.605000px;}
.y183{bottom:728.025000px;}
.y11f{bottom:735.585000px;}
.ya4{bottom:737.025000px;}
.y16{bottom:737.745000px;}
.ye0{bottom:738.465000px;}
.y1a0{bottom:742.605000px;}
.y104{bottom:744.585000px;}
.yc1{bottom:744.945000px;}
.y137{bottom:748.185000px;}
.y163{bottom:751.245000px;}
.ydf{bottom:754.845000px;}
.ya3{bottom:757.185000px;}
.y15{bottom:757.905000px;}
.y19f{bottom:762.945000px;}
.y136{bottom:768.525000px;}
.y162{bottom:771.585000px;}
.ydc{bottom:773.205000px;}
.y103{bottom:773.745000px;}
.yc0{bottom:774.105000px;}
.ya2{bottom:777.525000px;}
.y14{bottom:778.245000px;}
.y19e{bottom:783.105000px;}
.y135{bottom:788.685000px;}
.ydb{bottom:791.565000px;}
.y68{bottom:792.285000px;}
.y161{bottom:796.065000px;}
.ya1{bottom:797.685000px;}
.y13{bottom:798.405000px;}
.y48{bottom:798.765000px;}
.ybf{bottom:803.265000px;}
.y134{bottom:809.025000px;}
.y19d{bottom:812.265000px;}
.ya0{bottom:818.025000px;}
.y102{bottom:818.385000px;}
.y47{bottom:819.105000px;}
.ybe{bottom:823.605000px;}
.yda{bottom:826.125000px;}
.y67{bottom:826.845000px;}
.y12{bottom:828.465000px;}
.y133{bottom:829.185000px;}
.y19c{bottom:832.605000px;}
.y9f{bottom:838.185000px;}
.y46{bottom:839.445000px;}
.y182{bottom:847.185000px;}
.y101{bottom:847.365000px;}
.ybd{bottom:852.765000px;}
.y19b{bottom:852.945000px;}
.y132{bottom:858.345000px;}
.y9e{bottom:858.525000px;}
.y45{bottom:859.605000px;}
.y11{bottom:860.145000px;}
.yd8{bottom:860.505000px;}
.y64{bottom:861.405000px;}
.y181{bottom:867.525000px;}
.y100{bottom:876.705000px;}
.y9d{bottom:878.685000px;}
.y44{bottom:879.945000px;}
.ybc{bottom:882.105000px;}
.y131{bottom:887.685000px;}
.y10{bottom:889.485000px;}
.yd4{bottom:895.065000px;}
.y43{bottom:900.150000px;}
.y19a{bottom:902.490000px;}
.yff{bottom:905.910000px;}
.y9c{bottom:907.890000px;}
.y130{bottom:908.070000px;}
.yf{bottom:909.870000px;}
.ybb{bottom:911.310000px;}
.y61{bottom:912.750000px;}
.y180{bottom:917.790000px;}
.y42{bottom:920.490000px;}
.y14b{bottom:922.650000px;}
.yfe{bottom:926.250000px;}
.y9b{bottom:928.230000px;}
.yd3{bottom:929.670000px;}
.ye{bottom:930.210000px;}
.y41{bottom:940.650000px;}
.yfd{bottom:946.590000px;}
.y9a{bottom:948.570000px;}
.y17f{bottom:949.650000px;}
.y14a{bottom:951.810000px;}
.y60{bottom:960.810000px;}
.y40{bottom:960.990000px;}
.yd{bottom:961.710000px;}
.yfc{bottom:968.370000px;}
.y99{bottom:968.730000px;}
.yba{bottom:969.810000px;}
.y149{bottom:972.150000px;}
.y12f{bottom:977.730000px;}
.y17e{bottom:978.810000px;}
.y5f{bottom:981.150000px;}
.yc{bottom:982.230000px;}
.y98{bottom:989.070000px;}
.y3f{bottom:990.150000px;}
.y148{bottom:992.490000px;}
.yfb{bottom:997.530000px;}
.yb9{bottom:999.150000px;}
.y199{bottom:1001.310000px;}
.y12e{bottom:1006.890000px;}
.y85{bottom:1009.950000px;}
.y5e{bottom:1010.310000px;}
.y3e{bottom:1010.490000px;}
.y147{bottom:1012.650000px;}
.y97{bottom:1018.230000px;}
.yd2{bottom:1019.310000px;}
.yb8{bottom:1019.490000px;}
.y198{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.yfa{bottom:1026.870000px;}
.y12d{bottom:1027.230000px;}
.y3d{bottom:1030.650000px;}
.y1b5{bottom:1037.310000px;}
.y84{bottom:1039.290000px;}
.y5d{bottom:1039.650000px;}
.y146{bottom:1041.810000px;}
.y197{bottom:1041.990000px;}
.y96{bottom:1047.390000px;}
.y12c{bottom:1047.570000px;}
.y11e{bottom:1050.810000px;}
.y3c{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y83{bottom:1059.630000px;}
.y5c{bottom:1059.990000px;}
.yf9{bottom:1062.150000px;}
.y95{bottom:1067.730000px;}
.y3b{bottom:1071.150000px;}
.y5b{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y94{bottom:1088.070000px;}
.y82{bottom:1088.790000px;}
.yf8{bottom:1091.310000px;}
.y3a{bottom:1091.490000px;}
.y1b4{bottom:1100.310000px;}
.y5a{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y93{bottom:1108.230000px;}
.y145{bottom:1111.650000px;}
.y81{bottom:1117.950000px;}
.y39{bottom:1120.650000px;}
.y80{bottom:1138.290000px;}
.y144{bottom:1140.810000px;}
.y38{bottom:1140.990000px;}
.y31{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y30{bottom:1196.280000px;}
.h16{height:16.920000px;}
.h19{height:17.640000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h12{height:33.660000px;}
.h10{height:33.840000px;}
.h17{height:33.876000px;}
.h3{height:37.599609px;}
.hb{height:41.610234px;}
.h1b{height:43.082578px;}
.h1d{height:43.506914px;}
.hc{height:47.796328px;}
.h9{height:48.761719px;}
.h4{height:50.132812px;}
.h18{height:50.364141px;}
.h13{height:50.580000px;}
.h11{height:50.616000px;}
.h15{height:51.398851px;}
.h14{height:52.417969px;}
.h7{height:56.437031px;}
.h8{height:57.051211px;}
.ha{height:59.439023px;}
.h1a{height:60.679688px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h1c{height:96.679688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w9{width:52.020000px;}
.wb{width:83.520000px;}
.w5{width:113.220000px;}
.wa{width:146.196000px;}
.w8{width:181.650000px;}
.w6{width:185.430000px;}
.w7{width:196.410000px;}
.wc{width:394.995000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.xf{left:10.800000px;}
.x27{left:21.060000px;}
.x3{left:106.415987px;}
.x4{left:121.175987px;}
.x46{left:128.915987px;}
.x40{left:132.515987px;}
.x3b{left:133.955987px;}
.x42{left:136.295987px;}
.x44{left:138.095987px;}
.x3e{left:140.075987px;}
.x4e{left:148.895987px;}
.x1f{left:159.509987px;}
.x24{left:162.929987px;}
.xd{left:180.209987px;}
.x11{left:182.549987px;}
.x2f{left:191.909987px;}
.x2c{left:192.989987px;}
.x2a{left:194.789987px;}
.x1a{left:211.529987px;}
.x34{left:218.549987px;}
.x15{left:221.070000px;}
.x9{left:228.809987px;}
.x32{left:230.429987px;}
.x7{left:233.669987px;}
.x5{left:235.469987px;}
.x19{left:236.909987px;}
.x12{left:248.789987px;}
.x37{left:251.669987px;}
.x3a{left:262.829987px;}
.x25{left:265.754987px;}
.x1c{left:268.814987px;}
.x1b{left:271.694987px;}
.x39{left:274.934987px;}
.x13{left:280.154987px;}
.x28{left:289.874987px;}
.x29{left:294.014987px;}
.x26{left:306.795000px;}
.x30{left:325.154987px;}
.x2e{left:336.854987px;}
.x35{left:342.614987px;}
.x47{left:348.734987px;}
.x33{left:354.854987px;}
.xa{left:357.374987px;}
.x4c{left:362.774987px;}
.x2d{left:373.394987px;}
.x6{left:382.394987px;}
.x20{left:384.554987px;}
.x1d{left:387.254987px;}
.xc{left:390.134987px;}
.x8{left:394.994987px;}
.x48{left:396.074987px;}
.x4d{left:397.694987px;}
.x41{left:400.934987px;}
.x2b{left:405.074987px;}
.x16{left:407.235000px;}
.xb{left:409.394987px;}
.x49{left:418.754987px;}
.x22{left:425.774987px;}
.x45{left:429.194987px;}
.x1{left:446.504987px;}
.x43{left:455.504987px;}
.x4a{left:456.764987px;}
.x3f{left:457.844987px;}
.x3c{left:463.244987px;}
.x4b{left:471.164987px;}
.x21{left:475.844987px;}
.x17{left:604.365000px;}
.x18{left:654.989987px;}
.x23{left:656.249987px;}
.x10{left:658.049987px;}
.x31{left:659.489987px;}
.x38{left:679.469987px;}
.x1e{left:703.049987px;}
.x36{left:741.749987px;}
.x3d{left:783.689987px;}
.x2{left:786.749987px;}
.xe{left:789.090000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v4{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v6{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:32.000000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.236267pt;}
.lsc{letter-spacing:-0.182933pt;}
.ls4{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.122133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.034560pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.087040pt;}
.ls14{letter-spacing:0.095360pt;}
.ls13{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.212480pt;}
.lsd{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.269845pt;}
.ls5{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.353280pt;}
.ls16{letter-spacing:0.421760pt;}
.ls29{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls18{letter-spacing:2.490240pt;}
.ls24{letter-spacing:2.596907pt;}
.ls22{letter-spacing:2.986880pt;}
.ls27{letter-spacing:3.046400pt;}
.ls19{letter-spacing:3.130240pt;}
.ls21{letter-spacing:3.686400pt;}
.ls1a{letter-spacing:4.099840pt;}
.ls23{letter-spacing:4.326400pt;}
.ls1c{letter-spacing:4.463360pt;}
.ls26{letter-spacing:4.486400pt;}
.ls10{letter-spacing:9.600000pt;}
.ls17{letter-spacing:16.570240pt;}
.ls20{letter-spacing:17.766400pt;}
.ls25{letter-spacing:18.406400pt;}
.ls0{letter-spacing:18.720000pt;}
.ls1d{letter-spacing:19.770240pt;}
.ls1b{letter-spacing:20.410240pt;}
.ls1e{letter-spacing:20.516907pt;}
.ls1f{letter-spacing:21.606400pt;}
.lse{letter-spacing:141.546667pt;}
.ls11{letter-spacing:152.891307pt;}
.ls9{letter-spacing:1272.085333pt;}
.ws1{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws13{word-spacing:-50.816000pt;}
.wse{word-spacing:-50.368000pt;}
.ws10{word-spacing:-50.176000pt;}
.wsd{word-spacing:-49.728000pt;}
.ws14{word-spacing:-49.568000pt;}
.wsf{word-spacing:-46.656000pt;}
.ws11{word-spacing:-46.528000pt;}
.ws15{word-spacing:-46.016000pt;}
.wsc{word-spacing:-45.888000pt;}
.ws12{word-spacing:-45.856000pt;}
.ws16{word-spacing:-45.440000pt;}
.ws0{word-spacing:-21.121067pt;}
.ws2{word-spacing:-18.720000pt;}
.ws19{word-spacing:-17.135157pt;}
.ws18{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.690667pt;}
.ws9{word-spacing:-13.157867pt;}
.ws17{word-spacing:-10.560960pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-7.146667pt;}
._2d{margin-left:-6.030080pt;}
._26{margin-left:-4.229333pt;}
._b{margin-left:-3.328000pt;}
._a{margin-left:-2.432000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._f{width:4.218667pt;}
._d{width:5.200000pt;}
._c{width:6.144000pt;}
._18{width:7.525333pt;}
._12{width:8.490667pt;}
._e{width:9.408000pt;}
._11{width:10.357333pt;}
._15{width:11.274667pt;}
._25{width:13.008000pt;}
._10{width:14.016000pt;}
._27{width:14.912000pt;}
._1e{width:16.414080pt;}
._13{width:18.112000pt;}
._14{width:19.178667pt;}
._19{width:20.192000pt;}
._24{width:21.312000pt;}
._1a{width:22.336000pt;}
._32{width:23.520000pt;}
._31{width:24.512000pt;}
._7{width:25.600000pt;}
._9{width:26.768000pt;}
._8{width:27.712000pt;}
._16{width:28.965333pt;}
._28{width:30.720000pt;}
._30{width:31.616000pt;}
._33{width:34.368000pt;}
._29{width:36.330453pt;}
._2a{width:37.346987pt;}
._37{width:45.504000pt;}
._22{width:54.766720pt;}
._21{width:55.722880pt;}
._1f{width:60.875520pt;}
._6{width:63.530667pt;}
._2b{width:66.019840pt;}
._38{width:67.254613pt;}
._35{width:68.192000pt;}
._2e{width:69.173333pt;}
._20{width:72.615040pt;}
._23{width:79.839360pt;}
._1c{width:86.741333pt;}
._39{width:88.192000pt;}
._3a{width:89.674667pt;}
._34{width:93.504000pt;}
._1b{width:103.530880pt;}
._1d{width:106.452480pt;}
._2c{width:172.800000pt;}
._36{width:221.824000pt;}
._5{width:418.592000pt;}
._17{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:1.600000pt;}
.ydd{bottom:3.040000pt;}
.y63{bottom:3.520000pt;}
.yd7{bottom:3.560000pt;}
.yde{bottom:4.160000pt;}
.y37{bottom:7.200000pt;}
.yd9{bottom:17.440000pt;}
.yd5{bottom:17.480000pt;}
.y66{bottom:18.400000pt;}
.y62{bottom:18.560000pt;}
.yd6{bottom:18.600000pt;}
.y65{bottom:33.480000pt;}
.y6a{bottom:33.600000pt;}
.y33{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y36{bottom:60.160000pt;}
.y34{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y32{bottom:108.960000pt;}
.y3{bottom:122.240000pt;}
.y11d{bottom:123.520000pt;}
.y17d{bottom:124.800000pt;}
.y160{bottom:125.920000pt;}
.yf7{bottom:127.200000pt;}
.y143{bottom:130.880000pt;}
.y92{bottom:131.680000pt;}
.yb7{bottom:135.066667pt;}
.yd1{bottom:135.706667pt;}
.y2f{bottom:138.586667pt;}
.y59{bottom:140.026667pt;}
.y11c{bottom:141.626667pt;}
.y17c{bottom:142.746667pt;}
.yf6{bottom:145.146667pt;}
.y7f{bottom:146.906667pt;}
.y91{bottom:149.786667pt;}
.y15f{bottom:152.026667pt;}
.yb6{bottom:152.986667pt;}
.y2e{bottom:156.666667pt;}
.y196{bottom:156.986667pt;}
.yd0{bottom:157.786667pt;}
.y58{bottom:158.106667pt;}
.y11b{bottom:159.546667pt;}
.y17b{bottom:160.826667pt;}
.y142{bottom:160.986667pt;}
.yf5{bottom:163.226667pt;}
.y7e{bottom:164.986667pt;}
.y15e{bottom:170.106667pt;}
.yb5{bottom:171.066667pt;}
.y90{bottom:171.546667pt;}
.y2d{bottom:174.586667pt;}
.y195{bottom:175.066667pt;}
.y12b{bottom:175.866667pt;}
.y57{bottom:176.026667pt;}
.y11a{bottom:177.626667pt;}
.y17a{bottom:178.746667pt;}
.yf4{bottom:181.146667pt;}
.y1b3{bottom:182.586667pt;}
.y141{bottom:186.906667pt;}
.y15d{bottom:188.026667pt;}
.yb4{bottom:188.986667pt;}
.y2c{bottom:192.666667pt;}
.y7d{bottom:193.306667pt;}
.y56{bottom:194.106667pt;}
.y179{bottom:196.826667pt;}
.y12a{bottom:197.786667pt;}
.y1b2{bottom:200.666667pt;}
.y194{bottom:200.986667pt;}
.y119{bottom:203.546667pt;}
.y140{bottom:204.986667pt;}
.yf3{bottom:207.066667pt;}
.y2b{bottom:210.586667pt;}
.y7c{bottom:211.386667pt;}
.y55{bottom:212.026667pt;}
.y15c{bottom:213.946667pt;}
.y178{bottom:214.746667pt;}
.yb3{bottom:214.906667pt;}
.y193{bottom:219.066667pt;}
.y118{bottom:221.626667pt;}
.yf2{bottom:225.146667pt;}
.y1b1{bottom:226.586667pt;}
.y13f{bottom:226.906667pt;}
.y54{bottom:230.106667pt;}
.y15b{bottom:232.026667pt;}
.y177{bottom:232.826667pt;}
.yb2{bottom:232.986667pt;}
.y2a{bottom:236.506667pt;}
.y7b{bottom:239.546667pt;}
.yf1{bottom:244.666667pt;}
.y192{bottom:244.986667pt;}
.y15a{bottom:250.106667pt;}
.y53{bottom:256.026667pt;}
.y7a{bottom:257.626667pt;}
.yb1{bottom:258.906667pt;}
.y176{bottom:259.546667pt;}
.y191{bottom:263.066667pt;}
.y29{bottom:263.386667pt;}
.yf0{bottom:264.026667pt;}
.y117{bottom:265.466667pt;}
.y159{bottom:268.026667pt;}
.y1b0{bottom:270.586667pt;}
.y52{bottom:274.106667pt;}
.yb0{bottom:276.986667pt;}
.y116{bottom:283.546667pt;}
.y79{bottom:285.786667pt;}
.y158{bottom:286.106667pt;}
.y175{bottom:287.706667pt;}
.y1af{bottom:288.666667pt;}
.y190{bottom:288.986667pt;}
.yef{bottom:291.386667pt;}
.y28{bottom:291.546667pt;}
.y51{bottom:292.026667pt;}
.y115{bottom:301.626667pt;}
.yaf{bottom:302.906667pt;}
.y18f{bottom:307.066667pt;}
.y50{bottom:310.106667pt;}
.y78{bottom:311.866667pt;}
.y157{bottom:312.026667pt;}
.y174{bottom:313.786667pt;}
.y1ae{bottom:316.026667pt;}
.yee{bottom:317.466667pt;}
.y27{bottom:317.626667pt;}
.y114{bottom:319.546667pt;}
.yae{bottom:320.986667pt;}
.y4f{bottom:328.026667pt;}
.y77{bottom:329.946667pt;}
.y156{bottom:330.106667pt;}
.y173{bottom:331.866667pt;}
.y18e{bottom:332.986667pt;}
.y1ad{bottom:334.106667pt;}
.y26{bottom:335.706667pt;}
.y113{bottom:345.466667pt;}
.y4e{bottom:346.106667pt;}
.yad{bottom:346.906667pt;}
.y155{bottom:348.026667pt;}
.yed{bottom:348.666667pt;}
.y172{bottom:349.786667pt;}
.y18d{bottom:351.066667pt;}
.y1ac{bottom:352.026667pt;}
.y25{bottom:353.626667pt;}
.y76{bottom:358.146667pt;}
.y112{bottom:363.586667pt;}
.y4d{bottom:364.066667pt;}
.yac{bottom:365.026667pt;}
.y154{bottom:366.146667pt;}
.y171{bottom:367.906667pt;}
.y18c{bottom:369.026667pt;}
.yec{bottom:374.786667pt;}
.y75{bottom:376.226667pt;}
.ycf{bottom:377.986667pt;}
.y24{bottom:379.586667pt;}
.y111{bottom:381.666667pt;}
.yab{bottom:383.106667pt;}
.y18b{bottom:387.106667pt;}
.y4c{bottom:389.986667pt;}
.y153{bottom:392.066667pt;}
.y170{bottom:393.826667pt;}
.y1ab{bottom:396.066667pt;}
.yeb{bottom:400.706667pt;}
.yce{bottom:404.066667pt;}
.y74{bottom:404.386667pt;}
.y23{bottom:405.666667pt;}
.y110{bottom:407.586667pt;}
.yaa{bottom:409.026667pt;}
.y152{bottom:410.146667pt;}
.y16f{bottom:411.906667pt;}
.y18a{bottom:413.026667pt;}
.y4b{bottom:416.066667pt;}
.yea{bottom:418.786667pt;}
.y1aa{bottom:421.986667pt;}
.ycd{bottom:422.146667pt;}
.y73{bottom:422.466667pt;}
.y22{bottom:423.746667pt;}
.y10f{bottom:425.666667pt;}
.y151{bottom:428.066667pt;}
.y16e{bottom:429.826667pt;}
.y189{bottom:431.106667pt;}
.ya9{bottom:434.946667pt;}
.y8f{bottom:435.746667pt;}
.ye9{bottom:436.866667pt;}
.ycc{bottom:440.066667pt;}
.y129{bottom:441.826667pt;}
.y4a{bottom:441.986667pt;}
.y10e{bottom:443.586667pt;}
.y150{bottom:446.146667pt;}
.y188{bottom:449.026667pt;}
.y21{bottom:449.666667pt;}
.y72{bottom:450.786667pt;}
.ya8{bottom:453.026667pt;}
.y16d{bottom:455.746667pt;}
.ye8{bottom:456.386667pt;}
.ycb{bottom:458.146667pt;}
.y8e{bottom:461.666667pt;}
.y49{bottom:463.906667pt;}
.y1a9{bottom:465.986667pt;}
.y128{bottom:467.906667pt;}
.y71{bottom:468.866667pt;}
.y14f{bottom:472.066667pt;}
.y16c{bottom:473.826667pt;}
.ya7{bottom:474.946667pt;}
.y20{bottom:475.586667pt;}
.ye7{bottom:475.746667pt;}
.yca{bottom:476.066667pt;}
.y8d{bottom:479.746667pt;}
.y1a8{bottom:484.066667pt;}
.y127{bottom:485.986667pt;}
.y10d{bottom:487.586667pt;}
.y16b{bottom:491.906667pt;}
.y1f{bottom:493.666667pt;}
.yc9{bottom:494.146667pt;}
.y70{bottom:497.026667pt;}
.y8c{bottom:497.826667pt;}
.y14e{bottom:497.986667pt;}
.y1a7{bottom:502.146667pt;}
.ye6{bottom:502.946667pt;}
.y126{bottom:503.906667pt;}
.y187{bottom:504.066667pt;}
.y10c{bottom:505.666667pt;}
.y1e{bottom:511.746667pt;}
.yc8{bottom:512.066667pt;}
.y6f{bottom:515.106667pt;}
.y8b{bottom:515.746667pt;}
.y14d{bottom:516.066667pt;}
.y16a{bottom:517.826667pt;}
.y125{bottom:521.986667pt;}
.y13e{bottom:522.946667pt;}
.y10b{bottom:523.586667pt;}
.y1a6{bottom:528.066667pt;}
.ye5{bottom:529.186667pt;}
.y1d{bottom:529.666667pt;}
.y186{bottom:529.986667pt;}
.yc7{bottom:530.146667pt;}
.y8a{bottom:533.826667pt;}
.y169{bottom:535.906667pt;}
.y14c{bottom:537.826667pt;}
.y124{bottom:539.906667pt;}
.y10a{bottom:541.666667pt;}
.y6e{bottom:543.426667pt;}
.y1a5{bottom:546.146667pt;}
.y1c{bottom:547.746667pt;}
.y13d{bottom:549.026667pt;}
.y168{bottom:553.826667pt;}
.yc6{bottom:556.066667pt;}
.y185{bottom:556.706667pt;}
.y123{bottom:557.986667pt;}
.y109{bottom:559.586667pt;}
.ye4{bottom:560.386667pt;}
.y6d{bottom:561.506667pt;}
.y89{bottom:563.746667pt;}
.y1b{bottom:565.666667pt;}
.y13c{bottom:567.106667pt;}
.y1a4{bottom:572.066667pt;}
.y167{bottom:579.773333pt;}
.yc5{bottom:582.013333pt;}
.y1a{bottom:583.773333pt;}
.y13b{bottom:585.053333pt;}
.y108{bottom:585.533333pt;}
.ye3{bottom:586.493333pt;}
.y6c{bottom:587.453333pt;}
.y122{bottom:587.933333pt;}
.y88{bottom:589.693333pt;}
.y1a3{bottom:590.173333pt;}
.y166{bottom:597.853333pt;}
.yc4{bottom:600.093333pt;}
.y19{bottom:601.693333pt;}
.y13a{bottom:603.133333pt;}
.y107{bottom:603.773333pt;}
.y87{bottom:607.773333pt;}
.ya6{bottom:610.973333pt;}
.ye2{bottom:612.413333pt;}
.y6b{bottom:613.373333pt;}
.y121{bottom:613.853333pt;}
.y165{bottom:615.933333pt;}
.y1a2{bottom:616.093333pt;}
.yc3{bottom:618.173333pt;}
.y18{bottom:619.773333pt;}
.y139{bottom:621.053333pt;}
.y106{bottom:623.133333pt;}
.y69{bottom:627.933333pt;}
.y184{bottom:629.053333pt;}
.y86{bottom:629.693333pt;}
.ye1{bottom:630.493333pt;}
.y120{bottom:631.933333pt;}
.y1a1{bottom:634.173333pt;}
.ya5{bottom:637.053333pt;}
.y17{bottom:637.693333pt;}
.y138{bottom:639.133333pt;}
.y164{bottom:641.853333pt;}
.y105{bottom:642.493333pt;}
.yc2{bottom:644.093333pt;}
.y183{bottom:647.133333pt;}
.y11f{bottom:653.853333pt;}
.ya4{bottom:655.133333pt;}
.y16{bottom:655.773333pt;}
.ye0{bottom:656.413333pt;}
.y1a0{bottom:660.093333pt;}
.y104{bottom:661.853333pt;}
.yc1{bottom:662.173333pt;}
.y137{bottom:665.053333pt;}
.y163{bottom:667.773333pt;}
.ydf{bottom:670.973333pt;}
.ya3{bottom:673.053333pt;}
.y15{bottom:673.693333pt;}
.y19f{bottom:678.173333pt;}
.y136{bottom:683.133333pt;}
.y162{bottom:685.853333pt;}
.ydc{bottom:687.293333pt;}
.y103{bottom:687.773333pt;}
.yc0{bottom:688.093333pt;}
.ya2{bottom:691.133333pt;}
.y14{bottom:691.773333pt;}
.y19e{bottom:696.093333pt;}
.y135{bottom:701.053333pt;}
.ydb{bottom:703.613333pt;}
.y68{bottom:704.253333pt;}
.y161{bottom:707.613333pt;}
.ya1{bottom:709.053333pt;}
.y13{bottom:709.693333pt;}
.y48{bottom:710.013333pt;}
.ybf{bottom:714.013333pt;}
.y134{bottom:719.133333pt;}
.y19d{bottom:722.013333pt;}
.ya0{bottom:727.133333pt;}
.y102{bottom:727.453333pt;}
.y47{bottom:728.093333pt;}
.ybe{bottom:732.093333pt;}
.yda{bottom:734.333333pt;}
.y67{bottom:734.973333pt;}
.y12{bottom:736.413333pt;}
.y133{bottom:737.053333pt;}
.y19c{bottom:740.093333pt;}
.y9f{bottom:745.053333pt;}
.y46{bottom:746.173333pt;}
.y182{bottom:753.053333pt;}
.y101{bottom:753.213333pt;}
.ybd{bottom:758.013333pt;}
.y19b{bottom:758.173333pt;}
.y132{bottom:762.973333pt;}
.y9e{bottom:763.133333pt;}
.y45{bottom:764.093333pt;}
.y11{bottom:764.573333pt;}
.yd8{bottom:764.893333pt;}
.y64{bottom:765.693333pt;}
.y181{bottom:771.133333pt;}
.y100{bottom:779.293333pt;}
.y9d{bottom:781.053333pt;}
.y44{bottom:782.173333pt;}
.ybc{bottom:784.093333pt;}
.y131{bottom:789.053333pt;}
.y10{bottom:790.653333pt;}
.yd4{bottom:795.613333pt;}
.y43{bottom:800.133333pt;}
.y19a{bottom:802.213333pt;}
.yff{bottom:805.253333pt;}
.y9c{bottom:807.013333pt;}
.y130{bottom:807.173333pt;}
.yf{bottom:808.773333pt;}
.ybb{bottom:810.053333pt;}
.y61{bottom:811.333333pt;}
.y180{bottom:815.813333pt;}
.y42{bottom:818.213333pt;}
.y14b{bottom:820.133333pt;}
.yfe{bottom:823.333333pt;}
.y9b{bottom:825.093333pt;}
.yd3{bottom:826.373333pt;}
.ye{bottom:826.853333pt;}
.y41{bottom:836.133333pt;}
.yfd{bottom:841.413333pt;}
.y9a{bottom:843.173333pt;}
.y17f{bottom:844.133333pt;}
.y14a{bottom:846.053333pt;}
.y60{bottom:854.053333pt;}
.y40{bottom:854.213333pt;}
.yd{bottom:854.853333pt;}
.yfc{bottom:860.773333pt;}
.y99{bottom:861.093333pt;}
.yba{bottom:862.053333pt;}
.y149{bottom:864.133333pt;}
.y12f{bottom:869.093333pt;}
.y17e{bottom:870.053333pt;}
.y5f{bottom:872.133333pt;}
.yc{bottom:873.093333pt;}
.y98{bottom:879.173333pt;}
.y3f{bottom:880.133333pt;}
.y148{bottom:882.213333pt;}
.yfb{bottom:886.693333pt;}
.yb9{bottom:888.133333pt;}
.y199{bottom:890.053333pt;}
.y12e{bottom:895.013333pt;}
.y85{bottom:897.733333pt;}
.y5e{bottom:898.053333pt;}
.y3e{bottom:898.213333pt;}
.y147{bottom:900.133333pt;}
.y97{bottom:905.093333pt;}
.yd2{bottom:906.053333pt;}
.yb8{bottom:906.213333pt;}
.y198{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.yfa{bottom:912.773333pt;}
.y12d{bottom:913.093333pt;}
.y3d{bottom:916.133333pt;}
.y1b5{bottom:922.053333pt;}
.y84{bottom:923.813333pt;}
.y5d{bottom:924.133333pt;}
.y146{bottom:926.053333pt;}
.y197{bottom:926.213333pt;}
.y96{bottom:931.013333pt;}
.y12c{bottom:931.173333pt;}
.y11e{bottom:934.053333pt;}
.y3c{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y83{bottom:941.893333pt;}
.y5c{bottom:942.213333pt;}
.yf9{bottom:944.133333pt;}
.y95{bottom:949.093333pt;}
.y3b{bottom:952.133333pt;}
.y5b{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y94{bottom:967.173333pt;}
.y82{bottom:967.813333pt;}
.yf8{bottom:970.053333pt;}
.y3a{bottom:970.213333pt;}
.y1b4{bottom:978.053333pt;}
.y5a{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y93{bottom:985.093333pt;}
.y145{bottom:988.133333pt;}
.y81{bottom:993.733333pt;}
.y39{bottom:996.133333pt;}
.y80{bottom:1011.813333pt;}
.y144{bottom:1014.053333pt;}
.y38{bottom:1014.213333pt;}
.y31{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y30{bottom:1063.360000pt;}
.h16{height:15.040000pt;}
.h19{height:15.680000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h12{height:29.920000pt;}
.h10{height:30.080000pt;}
.h17{height:30.112000pt;}
.h3{height:33.421875pt;}
.hb{height:36.986875pt;}
.h1b{height:38.295625pt;}
.h1d{height:38.672812pt;}
.hc{height:42.485625pt;}
.h9{height:43.343750pt;}
.h4{height:44.562500pt;}
.h18{height:44.768125pt;}
.h13{height:44.960000pt;}
.h11{height:44.992000pt;}
.h15{height:45.687867pt;}
.h14{height:46.593750pt;}
.h7{height:50.166250pt;}
.h8{height:50.712187pt;}
.ha{height:52.834688pt;}
.h1a{height:53.937500pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h1c{height:85.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w9{width:46.240000pt;}
.wb{width:74.240000pt;}
.w5{width:100.640000pt;}
.wa{width:129.952000pt;}
.w8{width:161.466667pt;}
.w6{width:164.826667pt;}
.w7{width:174.586667pt;}
.wc{width:351.106667pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.xf{left:9.600000pt;}
.x27{left:18.720000pt;}
.x3{left:94.591988pt;}
.x4{left:107.711988pt;}
.x46{left:114.591988pt;}
.x40{left:117.791988pt;}
.x3b{left:119.071988pt;}
.x42{left:121.151988pt;}
.x44{left:122.751988pt;}
.x3e{left:124.511988pt;}
.x4e{left:132.351988pt;}
.x1f{left:141.786655pt;}
.x24{left:144.826655pt;}
.xd{left:160.186655pt;}
.x11{left:162.266655pt;}
.x2f{left:170.586655pt;}
.x2c{left:171.546655pt;}
.x2a{left:173.146655pt;}
.x1a{left:188.026655pt;}
.x34{left:194.266655pt;}
.x15{left:196.506667pt;}
.x9{left:203.386655pt;}
.x32{left:204.826655pt;}
.x7{left:207.706655pt;}
.x5{left:209.306655pt;}
.x19{left:210.586655pt;}
.x12{left:221.146655pt;}
.x37{left:223.706655pt;}
.x3a{left:233.626655pt;}
.x25{left:236.226655pt;}
.x1c{left:238.946655pt;}
.x1b{left:241.506655pt;}
.x39{left:244.386655pt;}
.x13{left:249.026655pt;}
.x28{left:257.666655pt;}
.x29{left:261.346655pt;}
.x26{left:272.706667pt;}
.x30{left:289.026655pt;}
.x2e{left:299.426655pt;}
.x35{left:304.546655pt;}
.x47{left:309.986655pt;}
.x33{left:315.426655pt;}
.xa{left:317.666655pt;}
.x4c{left:322.466655pt;}
.x2d{left:331.906655pt;}
.x6{left:339.906655pt;}
.x20{left:341.826655pt;}
.x1d{left:344.226655pt;}
.xc{left:346.786655pt;}
.x8{left:351.106655pt;}
.x48{left:352.066655pt;}
.x4d{left:353.506655pt;}
.x41{left:356.386655pt;}
.x2b{left:360.066655pt;}
.x16{left:361.986667pt;}
.xb{left:363.906655pt;}
.x49{left:372.226655pt;}
.x22{left:378.466655pt;}
.x45{left:381.506655pt;}
.x1{left:396.893322pt;}
.x43{left:404.893322pt;}
.x4a{left:406.013322pt;}
.x3f{left:406.973322pt;}
.x3c{left:411.773322pt;}
.x4b{left:418.813322pt;}
.x21{left:422.973322pt;}
.x17{left:537.213333pt;}
.x18{left:582.213322pt;}
.x23{left:583.333322pt;}
.x10{left:584.933322pt;}
.x31{left:586.213322pt;}
.x38{left:603.973322pt;}
.x1e{left:624.933322pt;}
.x36{left:659.333322pt;}
.x3d{left:696.613322pt;}
.x2{left:699.333322pt;}
.xe{left:701.413333pt;}
}




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