
    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_be6b60664b1b271a37e5160a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a1fa6c8f9f599e5939dd4d2b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0d5dd7ab0f51b4fb858d1547.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_1429e2ff0001c81b699a87b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_91cbef2578dbb448c46bb294.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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_dbd2b9265cd9e1f86234a638.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_81db7b9a1169280fa7962947.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_ca4ecab5917e4955576fd890.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_b4ce35c0396444b82eba74c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_70c5844daeb7c25295c63e21.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_33e9d6c24de08f2e8391a6e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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);}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls12{letter-spacing:-5.148000px;}
.ls19{letter-spacing:-3.960000px;}
.ls18{letter-spacing:-1.236000px;}
.ls1f{letter-spacing:-0.942000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.193800px;}
.lsb{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.284400px;}
.lsa{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.498960px;}
.lsc{letter-spacing:0.504000px;}
.ls1a{letter-spacing:20.907360px;}
.ls9{letter-spacing:35.009280px;}
.ls16{letter-spacing:49.707360px;}
.lse{letter-spacing:197.561280px;}
.ls10{letter-spacing:1385.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-39.060000px;}
.ws3{word-spacing:-36.000000px;}
.ws4{word-spacing:-35.712000px;}
.ws6{word-spacing:-21.060000px;}
.wse{word-spacing:-20.232000px;}
.wsd{word-spacing:-20.016000px;}
.wsb{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.305520px;}
.wsf{word-spacing:-16.873080px;}
.ws9{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.506480px;}
.ws12{word-spacing:-16.353480px;}
.ws15{word-spacing:-15.377280px;}
.ws7{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.504400px;}
.ws18{word-spacing:-14.220000px;}
.ws1b{word-spacing:-14.192640px;}
.ws1c{word-spacing:-14.026200px;}
.ws0{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.410720px;}
.ws1e{word-spacing:-13.278000px;}
.ws11{word-spacing:-13.266720px;}
.ws5{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws19{word-spacing:-10.260000px;}
.ws1a{word-spacing:-0.056880px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-10.944000px;}
._7{margin-left:-8.496000px;}
._2{margin-left:-7.154640px;}
._6{margin-left:-5.616000px;}
._20{margin-left:-4.561680px;}
._0{margin-left:-3.473280px;}
._4{margin-left:-2.026080px;}
._1{margin-left:-1.013040px;}
._3{width:1.017120px;}
._5{width:2.203200px;}
._d{width:3.383520px;}
._c{width:5.215680px;}
._11{width:6.577440px;}
._b{width:7.948800px;}
._9{width:8.982960px;}
._a{width:10.066800px;}
._23{width:11.070240px;}
._1f{width:12.439680px;}
._10{width:13.869120px;}
._f{width:15.207840px;}
._26{width:16.333920px;}
._29{width:17.376000px;}
._e{width:18.613440px;}
._1e{width:19.943520px;}
._14{width:21.138000px;}
._15{width:22.565760px;}
._18{width:24.106080px;}
._19{width:25.220640px;}
._1b{width:26.562240px;}
._1a{width:28.389600px;}
._25{width:29.451840px;}
._1d{width:30.934080px;}
._1c{width:32.827680px;}
._17{width:34.253760px;}
._16{width:35.321280px;}
._24{width:36.475200px;}
._37{width:37.795680px;}
._2e{width:38.838240px;}
._2c{width:39.977280px;}
._2d{width:41.886720px;}
._38{width:43.549200px;}
._2f{width:45.031920px;}
._27{width:46.301760px;}
._28{width:48.195360px;}
._2a{width:49.608000px;}
._22{width:51.336000px;}
._21{width:52.832160px;}
._12{width:54.739200px;}
._13{width:56.362560px;}
._2b{width:66.456000px;}
._32{width:69.305280px;}
._33{width:75.775680px;}
._34{width:76.995600px;}
._36{width:85.516560px;}
._30{width:110.376720px;}
._31{width:124.121520px;}
._35{width:245.016000px;}
.fc6{color:rgb(79,98,40);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(118,146,60);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(148,54,52);}
.fc0{color:rgb(5,99,193);}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs7{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y110{bottom:3.240000px;}
.yf5{bottom:3.405000px;}
.y103{bottom:3.412500px;}
.yed{bottom:3.420000px;}
.yfd{bottom:3.585000px;}
.y102{bottom:3.592500px;}
.ybe{bottom:3.600000px;}
.yce{bottom:3.765000px;}
.yd8{bottom:3.780000px;}
.yc1{bottom:3.825000px;}
.y127{bottom:3.945000px;}
.y11e{bottom:5.040000px;}
.y11b{bottom:5.220000px;}
.ycd{bottom:6.825000px;}
.yc6{bottom:10.620000px;}
.yf3{bottom:12.045000px;}
.y106{bottom:12.060000px;}
.yd7{bottom:12.240000px;}
.yd9{bottom:13.140000px;}
.y125{bottom:13.305000px;}
.ye3{bottom:13.320000px;}
.y123{bottom:14.025000px;}
.yc0{bottom:19.125000px;}
.yf8{bottom:20.505000px;}
.yf0{bottom:20.685000px;}
.y100{bottom:20.686500px;}
.yeb{bottom:20.700000px;}
.yd4{bottom:20.880000px;}
.y11d{bottom:22.320000px;}
.ybd{bottom:22.500000px;}
.yc4{bottom:22.680000px;}
.ye4{bottom:22.710000px;}
.y126{bottom:22.890000px;}
.y124{bottom:24.330000px;}
.yc5{bottom:25.920000px;}
.yfa{bottom:29.145000px;}
.yf2{bottom:29.325000px;}
.yd6{bottom:29.520000px;}
.yf7{bottom:37.785000px;}
.yfc{bottom:37.965000px;}
.yff{bottom:37.966500px;}
.yea{bottom:37.980000px;}
.yef{bottom:38.010000px;}
.yd5{bottom:38.160000px;}
.yf9{bottom:46.425000px;}
.yf1{bottom:46.470000px;}
.yf4{bottom:55.110000px;}
.yfb{bottom:55.245000px;}
.y101{bottom:55.246500px;}
.yec{bottom:55.260000px;}
.y7{bottom:55.836000px;}
.y104{bottom:115.236000px;}
.yd2{bottom:116.136000px;}
.ybb{bottom:118.116000px;}
.y5c{bottom:120.276000px;}
.yac{bottom:121.896000px;}
.y8b{bottom:125.856000px;}
.y166{bottom:126.756000px;}
.y130{bottom:127.296000px;}
.y2f{bottom:128.736000px;}
.y63{bottom:130.896000px;}
.yfe{bottom:131.083500px;}
.yd1{bottom:135.036000px;}
.yba{bottom:137.196000px;}
.y5b{bottom:139.176000px;}
.y139{bottom:139.356000px;}
.yab{bottom:140.796000px;}
.y165{bottom:143.136000px;}
.y12f{bottom:146.376000px;}
.y8a{bottom:146.556000px;}
.y2e{bottom:148.176000px;}
.y62{bottom:151.590000px;}
.yd0{bottom:154.110000px;}
.yb9{bottom:156.090000px;}
.y5a{bottom:158.070000px;}
.y138{bottom:158.250000px;}
.y164{bottom:159.510000px;}
.yaa{bottom:159.870000px;}
.yc3{bottom:162.180000px;}
.y12e{bottom:165.270000px;}
.y2d{bottom:167.070000px;}
.y89{bottom:167.250000px;}
.y61{bottom:172.290000px;}
.yb8{bottom:175.170000px;}
.y163{bottom:175.890000px;}
.y59{bottom:176.970000px;}
.y137{bottom:177.150000px;}
.ya9{bottom:178.770000px;}
.y12d{bottom:184.350000px;}
.y196{bottom:185.070000px;}
.y2c{bottom:185.610000px;}
.y88{bottom:187.950000px;}
.ycf{bottom:192.090000px;}
.y162{bottom:192.270000px;}
.y60{bottom:192.990000px;}
.yb7{bottom:194.070000px;}
.y58{bottom:196.050000px;}
.y136{bottom:196.230000px;}
.ya8{bottom:197.670000px;}
.yf6{bottom:200.205000px;}
.y12c{bottom:203.250000px;}
.y195{bottom:203.610000px;}
.y2b{bottom:205.050000px;}
.ycc{bottom:207.945000px;}
.y87{bottom:208.650000px;}
.yb6{bottom:212.970000px;}
.y5f{bottom:213.690000px;}
.y57{bottom:214.950000px;}
.ya7{bottom:216.750000px;}
.y194{bottom:219.990000px;}
.y12b{bottom:222.150000px;}
.y2a{bottom:223.950000px;}
.y161{bottom:225.030000px;}
.y86{bottom:229.350000px;}
.yb5{bottom:232.050000px;}
.y56{bottom:234.030000px;}
.ya6{bottom:235.650000px;}
.y193{bottom:236.370000px;}
.y12a{bottom:241.230000px;}
.y160{bottom:241.410000px;}
.y29{bottom:243.030000px;}
.y85{bottom:249.870000px;}
.yb4{bottom:250.950000px;}
.y192{bottom:252.750000px;}
.y55{bottom:252.930000px;}
.ya5{bottom:254.730000px;}
.y15f{bottom:257.790000px;}
.y129{bottom:259.050000px;}
.y28{bottom:261.930000px;}
.y191{bottom:269.130000px;}
.yee{bottom:269.145000px;}
.yb3{bottom:270.030000px;}
.y84{bottom:270.570000px;}
.y54{bottom:271.830000px;}
.y128{bottom:272.910000px;}
.ya4{bottom:273.630000px;}
.y15e{bottom:274.170000px;}
.y27{bottom:280.830000px;}
.y122{bottom:284.625000px;}
.y190{bottom:285.510000px;}
.yb2{bottom:288.930000px;}
.y15d{bottom:290.730000px;}
.y53{bottom:290.910000px;}
.y83{bottom:291.270000px;}
.ya3{bottom:292.530000px;}
.y26{bottom:299.910000px;}
.y18f{bottom:301.890000px;}
.y15c{bottom:307.155000px;}
.yb1{bottom:308.055000px;}
.y52{bottom:309.855000px;}
.ya2{bottom:311.655000px;}
.y82{bottom:312.015000px;}
.y18e{bottom:318.315000px;}
.y25{bottom:318.855000px;}
.y121{bottom:322.635000px;}
.y15b{bottom:323.535000px;}
.yb0{bottom:323.895000px;}
.y51{bottom:328.935000px;}
.ya1{bottom:330.555000px;}
.y81{bottom:332.715000px;}
.y18d{bottom:334.695000px;}
.y24{bottom:337.935000px;}
.ye9{bottom:338.115000px;}
.y15a{bottom:339.915000px;}
.y50{bottom:347.835000px;}
.ya0{bottom:349.635000px;}
.y18c{bottom:351.075000px;}
.y80{bottom:353.415000px;}
.ycb{bottom:353.955000px;}
.y23{bottom:356.835000px;}
.y120{bottom:360.615000px;}
.y159{bottom:361.335000px;}
.y4f{bottom:366.915000px;}
.y18b{bottom:367.455000px;}
.y9f{bottom:368.535000px;}
.yca{bottom:373.035000px;}
.y7f{bottom:374.115000px;}
.y22{bottom:375.735000px;}
.y18a{bottom:383.835000px;}
.y4e{bottom:385.815000px;}
.y9e{bottom:387.615000px;}
.yc9{bottom:391.935000px;}
.y21{bottom:394.815000px;}
.y11f{bottom:398.595000px;}
.y189{bottom:400.215000px;}
.y158{bottom:401.475000px;}
.y4d{bottom:404.715000px;}
.y135{bottom:404.895000px;}
.y9d{bottom:406.515000px;}
.ye8{bottom:407.955000px;}
.yc8{bottom:411.015000px;}
.y20{bottom:413.715000px;}
.y7e{bottom:415.515000px;}
.y188{bottom:416.595000px;}
.y157{bottom:420.015000px;}
.y4c{bottom:423.795000px;}
.y134{bottom:423.975000px;}
.y9c{bottom:425.415000px;}
.ye7{bottom:429.735000px;}
.y1f{bottom:432.795000px;}
.y187{bottom:432.975000px;}
.y7d{bottom:436.215000px;}
.y11c{bottom:436.575000px;}
.y156{bottom:437.295000px;}
.y4b{bottom:442.695000px;}
.y9b{bottom:444.495000px;}
.yc7{bottom:448.815000px;}
.y186{bottom:449.355000px;}
.y1e{bottom:451.695000px;}
.y155{bottom:454.575000px;}
.y7c{bottom:456.915000px;}
.y4a{bottom:461.775000px;}
.y9a{bottom:463.395000px;}
.ye6{bottom:464.655000px;}
.ybc{bottom:464.835000px;}
.y185{bottom:465.735000px;}
.y1d{bottom:470.595000px;}
.y154{bottom:471.675000px;}
.y11a{bottom:474.375000px;}
.y7b{bottom:477.615000px;}
.y49{bottom:480.675000px;}
.y184{bottom:482.115000px;}
.y99{bottom:482.475000px;}
.y153{bottom:488.955000px;}
.y1c{bottom:489.675000px;}
.y7a{bottom:498.315000px;}
.y183{bottom:498.495000px;}
.y48{bottom:499.575000px;}
.y98{bottom:501.375000px;}
.ye5{bottom:502.635000px;}
.y152{bottom:506.235000px;}
.y1b{bottom:508.575000px;}
.y119{bottom:513.075000px;}
.y182{bottom:514.875000px;}
.y47{bottom:518.655000px;}
.y79{bottom:519.015000px;}
.y97{bottom:520.275000px;}
.y151{bottom:523.515000px;}
.y1a{bottom:527.655000px;}
.y181{bottom:531.255000px;}
.y46{bottom:537.555000px;}
.y96{bottom:539.355000px;}
.y78{bottom:539.715000px;}
.ye2{bottom:540.435000px;}
.y150{bottom:540.795000px;}
.y19{bottom:546.555000px;}
.y180{bottom:547.635000px;}
.y118{bottom:552.135000px;}
.y45{bottom:556.635000px;}
.y14f{bottom:558.075000px;}
.y95{bottom:558.255000px;}
.y77{bottom:560.445000px;}
.y17f{bottom:564.045000px;}
.y18{bottom:565.665000px;}
.y117{bottom:571.245000px;}
.y14e{bottom:575.205000px;}
.y44{bottom:575.565000px;}
.y94{bottom:577.365000px;}
.ye1{bottom:578.445000px;}
.y17e{bottom:580.425000px;}
.y76{bottom:581.145000px;}
.y17{bottom:586.005000px;}
.y116{bottom:590.145000px;}
.y14d{bottom:592.485000px;}
.y43{bottom:594.465000px;}
.yaf{bottom:594.645000px;}
.y93{bottom:596.265000px;}
.y17d{bottom:596.805000px;}
.y75{bottom:601.845000px;}
.y16{bottom:604.545000px;}
.y115{bottom:608.325000px;}
.y14c{bottom:609.765000px;}
.y17c{bottom:613.185000px;}
.y42{bottom:613.545000px;}
.y92{bottom:615.165000px;}
.ye0{bottom:616.425000px;}
.y114{bottom:619.845000px;}
.y15{bottom:622.185000px;}
.y74{bottom:622.545000px;}
.y14b{bottom:627.045000px;}
.y17b{bottom:629.565000px;}
.yc2{bottom:631.005000px;}
.y41{bottom:632.445000px;}
.y133{bottom:632.625000px;}
.y91{bottom:634.245000px;}
.y113{bottom:637.125000px;}
.y14{bottom:639.465000px;}
.y73{bottom:643.245000px;}
.y14a{bottom:644.325000px;}
.y17a{bottom:646.125000px;}
.y40{bottom:651.525000px;}
.y132{bottom:651.705000px;}
.y90{bottom:653.145000px;}
.y112{bottom:654.405000px;}
.ydf{bottom:655.125000px;}
.y13{bottom:656.745000px;}
.y149{bottom:661.605000px;}
.y179{bottom:662.505000px;}
.y72{bottom:663.945000px;}
.y3f{bottom:670.425000px;}
.y111{bottom:671.685000px;}
.y8f{bottom:672.225000px;}
.y12{bottom:674.025000px;}
.y148{bottom:678.705000px;}
.y178{bottom:678.885000px;}
.y71{bottom:684.645000px;}
.y10f{bottom:688.965000px;}
.y3e{bottom:689.325000px;}
.y11{bottom:691.125000px;}
.y177{bottom:695.265000px;}
.y147{bottom:695.985000px;}
.y70{bottom:705.345000px;}
.y10e{bottom:706.965000px;}
.y10{bottom:708.045000px;}
.y3d{bottom:708.405000px;}
.y131{bottom:708.585000px;}
.y8e{bottom:710.025000px;}
.yde{bottom:711.285000px;}
.y176{bottom:711.645000px;}
.y146{bottom:713.265000px;}
.y6f{bottom:726.045000px;}
.yf{bottom:726.585000px;}
.y3c{bottom:727.305000px;}
.y5e{bottom:727.485000px;}
.y175{bottom:728.025000px;}
.y10d{bottom:728.745000px;}
.y8d{bottom:729.285000px;}
.ydd{bottom:730.545000px;}
.y174{bottom:744.405000px;}
.y3b{bottom:746.385000px;}
.y5d{bottom:746.565000px;}
.y6e{bottom:746.745000px;}
.y10c{bottom:747.645000px;}
.y145{bottom:747.825000px;}
.y8c{bottom:748.005000px;}
.ydc{bottom:749.445000px;}
.ye{bottom:750.885000px;}
.y173{bottom:760.785000px;}
.y10b{bottom:763.665000px;}
.y144{bottom:765.105000px;}
.y3a{bottom:765.285000px;}
.yae{bottom:765.465000px;}
.y6d{bottom:767.445000px;}
.ydb{bottom:768.345000px;}
.yd{bottom:773.565000px;}
.y172{bottom:777.165000px;}
.y143{bottom:782.205000px;}
.y10a{bottom:782.565000px;}
.y39{bottom:784.185000px;}
.yda{bottom:784.365000px;}
.y6c{bottom:788.145000px;}
.yc{bottom:790.845000px;}
.y171{bottom:793.545000px;}
.y142{bottom:799.485000px;}
.y109{bottom:801.465000px;}
.y38{bottom:803.265000px;}
.y6b{bottom:808.845000px;}
.ybf{bottom:809.205000px;}
.y170{bottom:809.925000px;}
.yb{bottom:812.670000px;}
.y141{bottom:816.810000px;}
.y108{bottom:820.590000px;}
.y37{bottom:822.210000px;}
.y16f{bottom:826.350000px;}
.y6a{bottom:829.590000px;}
.y140{bottom:834.090000px;}
.y36{bottom:841.290000px;}
.y16e{bottom:842.730000px;}
.y69{bottom:850.290000px;}
.y13f{bottom:851.370000px;}
.ya{bottom:854.070000px;}
.y107{bottom:858.570000px;}
.y16d{bottom:859.110000px;}
.y35{bottom:860.190000px;}
.y13e{bottom:868.470000px;}
.y68{bottom:870.990000px;}
.y16c{bottom:875.490000px;}
.y34{bottom:879.270000px;}
.y13d{bottom:885.750000px;}
.y67{bottom:891.690000px;}
.y16b{bottom:891.870000px;}
.y9{bottom:895.470000px;}
.y105{bottom:897.270000px;}
.y33{bottom:898.170000px;}
.yd3{bottom:898.890000px;}
.y13c{bottom:903.030000px;}
.y16a{bottom:908.250000px;}
.y66{bottom:912.390000px;}
.y32{bottom:917.070000px;}
.y13b{bottom:920.310000px;}
.y169{bottom:924.630000px;}
.y65{bottom:933.090000px;}
.y31{bottom:936.150000px;}
.y8{bottom:936.870000px;}
.y13a{bottom:937.590000px;}
.y168{bottom:941.010000px;}
.y64{bottom:953.790000px;}
.yad{bottom:955.050000px;}
.y30{bottom:955.230000px;}
.y167{bottom:957.390000px;}
.y6{bottom:990.330000px;}
.y5{bottom:1008.510000px;}
.y4{bottom:1026.510000px;}
.y3{bottom:1043.970000px;}
.y2{bottom:1060.170000px;}
.y1{bottom:1076.940000px;}
.h2d{height:17.100000px;}
.h25{height:17.265000px;}
.h2e{height:17.280000px;}
.h1d{height:18.885000px;}
.h20{height:18.900000px;}
.h1f{height:18.922500px;}
.h1e{height:19.065000px;}
.h2c{height:19.102500px;}
.h2b{height:34.365000px;}
.h30{height:34.545000px;}
.h32{height:35.143594px;}
.h24{height:37.785000px;}
.h1c{height:37.965000px;}
.h22{height:37.980000px;}
.h31{height:38.001000px;}
.h23{height:38.010000px;}
.h37{height:39.521602px;}
.h1b{height:43.506914px;}
.h27{height:43.536094px;}
.hd{height:46.025156px;}
.h1{height:47.344922px;}
.h17{height:48.224531px;}
.h10{height:48.256875px;}
.h2{height:48.616875px;}
.h2f{height:50.312812px;}
.h19{height:51.825000px;}
.h21{height:51.840000px;}
.h11{height:52.453125px;}
.h3{height:54.421875px;}
.h35{height:55.824609px;}
.h36{height:56.741133px;}
.h9{height:58.651172px;}
.h34{height:59.324063px;}
.h7{height:60.226875px;}
.h1a{height:62.327813px;}
.hc{height:65.010937px;}
.hf{height:66.078281px;}
.he{height:66.757500px;}
.h29{height:68.925000px;}
.h28{height:68.961000px;}
.ha{height:69.086250px;}
.h26{height:69.105000px;}
.h2a{height:69.112500px;}
.h4{height:70.664062px;}
.hb{height:75.093750px;}
.h8{height:84.898125px;}
.h5{height:97.593750px;}
.h18{height:141.501000px;}
.h14{height:141.502500px;}
.h6{height:145.125000px;}
.h33{height:157.460625px;}
.h16{height:165.450000px;}
.h15{height:177.480000px;}
.h12{height:266.250000px;}
.h13{height:485.880000px;}
.h0{height:1188.000000px;}
.w10{width:56.865000px;}
.w25{width:60.465000px;}
.w1f{width:63.936000px;}
.w24{width:74.505000px;}
.w1d{width:74.520000px;}
.w1e{width:84.960000px;}
.w22{width:85.140000px;}
.wa{width:87.465000px;}
.w11{width:87.861000px;}
.wb{width:88.221000px;}
.w9{width:89.676000px;}
.w19{width:94.305000px;}
.w1a{width:94.701000px;}
.w23{width:95.616000px;}
.w18{width:95.796000px;}
.w17{width:96.120000px;}
.wf{width:101.736000px;}
.w8{width:102.960000px;}
.wc{width:106.185000px;}
.w1b{width:107.805000px;}
.we{width:118.260000px;}
.w12{width:118.425000px;}
.w26{width:134.661000px;}
.w16{width:184.519500px;}
.wd{width:189.919500px;}
.w1c{width:190.999500px;}
.w7{width:198.739500px;}
.w13{width:212.239500px;}
.w4{width:222.499500px;}
.w6{width:222.855000px;}
.w21{width:222.859500px;}
.w15{width:224.475000px;}
.w5{width:229.170000px;}
.w14{width:236.550000px;}
.w20{width:258.855000px;}
.w3{width:268.755000px;}
.w2{width:402.904500px;}
.w1{width:672.570000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:7.729500px;}
.x3c{left:9.529500px;}
.x40{left:10.620000px;}
.x2e{left:12.240000px;}
.x56{left:13.500000px;}
.x2b{left:15.300000px;}
.x51{left:16.380000px;}
.x31{left:17.445000px;}
.x49{left:18.540000px;}
.x5f{left:21.450000px;}
.x28{left:22.489500px;}
.x61{left:23.749500px;}
.x39{left:25.020000px;}
.x66{left:26.625000px;}
.x42{left:28.425000px;}
.x37{left:29.700000px;}
.x2a{left:31.500000px;}
.x44{left:33.283500px;}
.x36{left:34.545000px;}
.x35{left:35.640000px;}
.x2f{left:37.260000px;}
.x57{left:38.880000px;}
.x38{left:40.140000px;}
.x33{left:41.400000px;}
.x48{left:42.643500px;}
.x2c{left:43.920000px;}
.x4a{left:45.343500px;}
.x63{left:46.425000px;}
.x58{left:47.683500px;}
.x46{left:50.040000px;}
.x47{left:51.823500px;}
.x45{left:53.983500px;}
.x60{left:56.505000px;}
.x34{left:58.483500px;}
.x3d{left:59.923500px;}
.x69{left:62.623500px;}
.x5b{left:63.703500px;}
.x68{left:66.403500px;}
.x59{left:73.063500px;}
.x4c{left:77.040000px;}
.x15{left:81.000000px;}
.x4e{left:86.385000px;}
.x62{left:89.265000px;}
.x1e{left:93.405000px;}
.x7{left:107.856000px;}
.xa{left:113.436000px;}
.xb{left:117.036000px;}
.x24{left:121.006500px;}
.x17{left:122.806500px;}
.xe{left:125.496000px;}
.x22{left:132.876000px;}
.x14{left:135.036000px;}
.x21{left:136.656000px;}
.xd{left:139.896000px;}
.x19{left:143.676000px;}
.x9{left:149.076000px;}
.x23{left:151.050000px;}
.x4f{left:158.070000px;}
.x3a{left:159.150000px;}
.x13{left:162.030000px;}
.x1f{left:188.130000px;}
.x2{left:189.930000px;}
.x20{left:199.830000px;}
.x5a{left:209.730000px;}
.x10{left:211.710000px;}
.x1d{left:214.050000px;}
.x8{left:219.990000px;}
.x26{left:221.430000px;}
.x64{left:229.710000px;}
.xf{left:232.590000px;}
.x3{left:256.350000px;}
.x50{left:306.975000px;}
.x3e{left:312.375000px;}
.x5c{left:313.455000px;}
.x29{left:321.195000px;}
.x12{left:325.515000px;}
.x16{left:329.835000px;}
.x4b{left:334.695000px;}
.x25{left:344.235000px;}
.x65{left:345.315000px;}
.x1b{left:379.318500px;}
.x11{left:381.135000px;}
.x5d{left:387.975000px;}
.x52{left:403.095000px;}
.x2d{left:424.155000px;}
.x3f{left:430.815000px;}
.x1{left:432.255000px;}
.xc{left:459.075000px;}
.x5e{left:472.935000px;}
.x53{left:498.900000px;}
.x30{left:513.840000px;}
.x1c{left:526.620000px;}
.x41{left:532.560000px;}
.x18{left:535.918500px;}
.x4d{left:571.260000px;}
.x27{left:574.320000px;}
.x6{left:590.145000px;}
.x54{left:593.220000px;}
.x32{left:601.320000px;}
.x67{left:661.080000px;}
.x43{left:677.310000px;}
.x55{left:687.930000px;}
.x5{left:689.010000px;}
.x4{left:713.670000px;}
.x3b{left:761.010000px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls12{letter-spacing:-4.576000pt;}
.ls19{letter-spacing:-3.520000pt;}
.ls18{letter-spacing:-1.098667pt;}
.ls1f{letter-spacing:-0.837333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.172267pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.252800pt;}
.lsa{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.443520pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:18.584320pt;}
.ls9{letter-spacing:31.119360pt;}
.ls16{letter-spacing:44.184320pt;}
.lse{letter-spacing:175.610027pt;}
.ls10{letter-spacing:1231.770027pt;}
.ws16{word-spacing:-34.720000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws4{word-spacing:-31.744000pt;}
.ws6{word-spacing:-18.720000pt;}
.wse{word-spacing:-17.984000pt;}
.wsd{word-spacing:-17.792000pt;}
.wsb{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.271573pt;}
.wsf{word-spacing:-14.998293pt;}
.ws9{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.672427pt;}
.ws12{word-spacing:-14.536427pt;}
.ws15{word-spacing:-13.668693pt;}
.ws7{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.892800pt;}
.ws18{word-spacing:-12.640000pt;}
.ws1b{word-spacing:-12.615680pt;}
.ws1c{word-spacing:-12.467733pt;}
.ws0{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.920640pt;}
.ws1e{word-spacing:-11.802667pt;}
.ws11{word-spacing:-11.792640pt;}
.ws5{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws19{word-spacing:-9.120000pt;}
.ws1a{word-spacing:-0.050560pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-9.728000pt;}
._7{margin-left:-7.552000pt;}
._2{margin-left:-6.359680pt;}
._6{margin-left:-4.992000pt;}
._20{margin-left:-4.054827pt;}
._0{margin-left:-3.087360pt;}
._4{margin-left:-1.800960pt;}
._1{margin-left:-0.900480pt;}
._3{width:0.904107pt;}
._5{width:1.958400pt;}
._d{width:3.007573pt;}
._c{width:4.636160pt;}
._11{width:5.846613pt;}
._b{width:7.065600pt;}
._9{width:7.984853pt;}
._a{width:8.948267pt;}
._23{width:9.840213pt;}
._1f{width:11.057493pt;}
._10{width:12.328107pt;}
._f{width:13.518080pt;}
._26{width:14.519040pt;}
._29{width:15.445333pt;}
._e{width:16.545280pt;}
._1e{width:17.727573pt;}
._14{width:18.789333pt;}
._15{width:20.058453pt;}
._18{width:21.427627pt;}
._19{width:22.418347pt;}
._1b{width:23.610880pt;}
._1a{width:25.235200pt;}
._25{width:26.179413pt;}
._1d{width:27.496960pt;}
._1c{width:29.180160pt;}
._17{width:30.447787pt;}
._16{width:31.396693pt;}
._24{width:32.422400pt;}
._37{width:33.596160pt;}
._2e{width:34.522880pt;}
._2c{width:35.535360pt;}
._2d{width:37.232640pt;}
._38{width:38.710400pt;}
._2f{width:40.028373pt;}
._27{width:41.157120pt;}
._28{width:42.840320pt;}
._2a{width:44.096000pt;}
._22{width:45.632000pt;}
._21{width:46.961920pt;}
._12{width:48.657067pt;}
._13{width:50.100053pt;}
._2b{width:59.072000pt;}
._32{width:61.604693pt;}
._33{width:67.356160pt;}
._34{width:68.440533pt;}
._36{width:76.014720pt;}
._30{width:98.112640pt;}
._31{width:110.330240pt;}
._35{width:217.792000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs7{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:2.880000pt;}
.yf5{bottom:3.026667pt;}
.y103{bottom:3.033333pt;}
.yed{bottom:3.040000pt;}
.yfd{bottom:3.186667pt;}
.y102{bottom:3.193333pt;}
.ybe{bottom:3.200000pt;}
.yce{bottom:3.346667pt;}
.yd8{bottom:3.360000pt;}
.yc1{bottom:3.400000pt;}
.y127{bottom:3.506667pt;}
.y11e{bottom:4.480000pt;}
.y11b{bottom:4.640000pt;}
.ycd{bottom:6.066667pt;}
.yc6{bottom:9.440000pt;}
.yf3{bottom:10.706667pt;}
.y106{bottom:10.720000pt;}
.yd7{bottom:10.880000pt;}
.yd9{bottom:11.680000pt;}
.y125{bottom:11.826667pt;}
.ye3{bottom:11.840000pt;}
.y123{bottom:12.466667pt;}
.yc0{bottom:17.000000pt;}
.yf8{bottom:18.226667pt;}
.yf0{bottom:18.386667pt;}
.y100{bottom:18.388000pt;}
.yeb{bottom:18.400000pt;}
.yd4{bottom:18.560000pt;}
.y11d{bottom:19.840000pt;}
.ybd{bottom:20.000000pt;}
.yc4{bottom:20.160000pt;}
.ye4{bottom:20.186667pt;}
.y126{bottom:20.346667pt;}
.y124{bottom:21.626667pt;}
.yc5{bottom:23.040000pt;}
.yfa{bottom:25.906667pt;}
.yf2{bottom:26.066667pt;}
.yd6{bottom:26.240000pt;}
.yf7{bottom:33.586667pt;}
.yfc{bottom:33.746667pt;}
.yff{bottom:33.748000pt;}
.yea{bottom:33.760000pt;}
.yef{bottom:33.786667pt;}
.yd5{bottom:33.920000pt;}
.yf9{bottom:41.266667pt;}
.yf1{bottom:41.306667pt;}
.yf4{bottom:48.986667pt;}
.yfb{bottom:49.106667pt;}
.y101{bottom:49.108000pt;}
.yec{bottom:49.120000pt;}
.y7{bottom:49.632000pt;}
.y104{bottom:102.432000pt;}
.yd2{bottom:103.232000pt;}
.ybb{bottom:104.992000pt;}
.y5c{bottom:106.912000pt;}
.yac{bottom:108.352000pt;}
.y8b{bottom:111.872000pt;}
.y166{bottom:112.672000pt;}
.y130{bottom:113.152000pt;}
.y2f{bottom:114.432000pt;}
.y63{bottom:116.352000pt;}
.yfe{bottom:116.518667pt;}
.yd1{bottom:120.032000pt;}
.yba{bottom:121.952000pt;}
.y5b{bottom:123.712000pt;}
.y139{bottom:123.872000pt;}
.yab{bottom:125.152000pt;}
.y165{bottom:127.232000pt;}
.y12f{bottom:130.112000pt;}
.y8a{bottom:130.272000pt;}
.y2e{bottom:131.712000pt;}
.y62{bottom:134.746667pt;}
.yd0{bottom:136.986667pt;}
.yb9{bottom:138.746667pt;}
.y5a{bottom:140.506667pt;}
.y138{bottom:140.666667pt;}
.y164{bottom:141.786667pt;}
.yaa{bottom:142.106667pt;}
.yc3{bottom:144.160000pt;}
.y12e{bottom:146.906667pt;}
.y2d{bottom:148.506667pt;}
.y89{bottom:148.666667pt;}
.y61{bottom:153.146667pt;}
.yb8{bottom:155.706667pt;}
.y163{bottom:156.346667pt;}
.y59{bottom:157.306667pt;}
.y137{bottom:157.466667pt;}
.ya9{bottom:158.906667pt;}
.y12d{bottom:163.866667pt;}
.y196{bottom:164.506667pt;}
.y2c{bottom:164.986667pt;}
.y88{bottom:167.066667pt;}
.ycf{bottom:170.746667pt;}
.y162{bottom:170.906667pt;}
.y60{bottom:171.546667pt;}
.yb7{bottom:172.506667pt;}
.y58{bottom:174.266667pt;}
.y136{bottom:174.426667pt;}
.ya8{bottom:175.706667pt;}
.yf6{bottom:177.960000pt;}
.y12c{bottom:180.666667pt;}
.y195{bottom:180.986667pt;}
.y2b{bottom:182.266667pt;}
.ycc{bottom:184.840000pt;}
.y87{bottom:185.466667pt;}
.yb6{bottom:189.306667pt;}
.y5f{bottom:189.946667pt;}
.y57{bottom:191.066667pt;}
.ya7{bottom:192.666667pt;}
.y194{bottom:195.546667pt;}
.y12b{bottom:197.466667pt;}
.y2a{bottom:199.066667pt;}
.y161{bottom:200.026667pt;}
.y86{bottom:203.866667pt;}
.yb5{bottom:206.266667pt;}
.y56{bottom:208.026667pt;}
.ya6{bottom:209.466667pt;}
.y193{bottom:210.106667pt;}
.y12a{bottom:214.426667pt;}
.y160{bottom:214.586667pt;}
.y29{bottom:216.026667pt;}
.y85{bottom:222.106667pt;}
.yb4{bottom:223.066667pt;}
.y192{bottom:224.666667pt;}
.y55{bottom:224.826667pt;}
.ya5{bottom:226.426667pt;}
.y15f{bottom:229.146667pt;}
.y129{bottom:230.266667pt;}
.y28{bottom:232.826667pt;}
.y191{bottom:239.226667pt;}
.yee{bottom:239.240000pt;}
.yb3{bottom:240.026667pt;}
.y84{bottom:240.506667pt;}
.y54{bottom:241.626667pt;}
.y128{bottom:242.586667pt;}
.ya4{bottom:243.226667pt;}
.y15e{bottom:243.706667pt;}
.y27{bottom:249.626667pt;}
.y122{bottom:253.000000pt;}
.y190{bottom:253.786667pt;}
.yb2{bottom:256.826667pt;}
.y15d{bottom:258.426667pt;}
.y53{bottom:258.586667pt;}
.y83{bottom:258.906667pt;}
.ya3{bottom:260.026667pt;}
.y26{bottom:266.586667pt;}
.y18f{bottom:268.346667pt;}
.y15c{bottom:273.026667pt;}
.yb1{bottom:273.826667pt;}
.y52{bottom:275.426667pt;}
.ya2{bottom:277.026667pt;}
.y82{bottom:277.346667pt;}
.y18e{bottom:282.946667pt;}
.y25{bottom:283.426667pt;}
.y121{bottom:286.786667pt;}
.y15b{bottom:287.586667pt;}
.yb0{bottom:287.906667pt;}
.y51{bottom:292.386667pt;}
.ya1{bottom:293.826667pt;}
.y81{bottom:295.746667pt;}
.y18d{bottom:297.506667pt;}
.y24{bottom:300.386667pt;}
.ye9{bottom:300.546667pt;}
.y15a{bottom:302.146667pt;}
.y50{bottom:309.186667pt;}
.ya0{bottom:310.786667pt;}
.y18c{bottom:312.066667pt;}
.y80{bottom:314.146667pt;}
.ycb{bottom:314.626667pt;}
.y23{bottom:317.186667pt;}
.y120{bottom:320.546667pt;}
.y159{bottom:321.186667pt;}
.y4f{bottom:326.146667pt;}
.y18b{bottom:326.626667pt;}
.y9f{bottom:327.586667pt;}
.yca{bottom:331.586667pt;}
.y7f{bottom:332.546667pt;}
.y22{bottom:333.986667pt;}
.y18a{bottom:341.186667pt;}
.y4e{bottom:342.946667pt;}
.y9e{bottom:344.546667pt;}
.yc9{bottom:348.386667pt;}
.y21{bottom:350.946667pt;}
.y11f{bottom:354.306667pt;}
.y189{bottom:355.746667pt;}
.y158{bottom:356.866667pt;}
.y4d{bottom:359.746667pt;}
.y135{bottom:359.906667pt;}
.y9d{bottom:361.346667pt;}
.ye8{bottom:362.626667pt;}
.yc8{bottom:365.346667pt;}
.y20{bottom:367.746667pt;}
.y7e{bottom:369.346667pt;}
.y188{bottom:370.306667pt;}
.y157{bottom:373.346667pt;}
.y4c{bottom:376.706667pt;}
.y134{bottom:376.866667pt;}
.y9c{bottom:378.146667pt;}
.ye7{bottom:381.986667pt;}
.y1f{bottom:384.706667pt;}
.y187{bottom:384.866667pt;}
.y7d{bottom:387.746667pt;}
.y11c{bottom:388.066667pt;}
.y156{bottom:388.706667pt;}
.y4b{bottom:393.506667pt;}
.y9b{bottom:395.106667pt;}
.yc7{bottom:398.946667pt;}
.y186{bottom:399.426667pt;}
.y1e{bottom:401.506667pt;}
.y155{bottom:404.066667pt;}
.y7c{bottom:406.146667pt;}
.y4a{bottom:410.466667pt;}
.y9a{bottom:411.906667pt;}
.ye6{bottom:413.026667pt;}
.ybc{bottom:413.186667pt;}
.y185{bottom:413.986667pt;}
.y1d{bottom:418.306667pt;}
.y154{bottom:419.266667pt;}
.y11a{bottom:421.666667pt;}
.y7b{bottom:424.546667pt;}
.y49{bottom:427.266667pt;}
.y184{bottom:428.546667pt;}
.y99{bottom:428.866667pt;}
.y153{bottom:434.626667pt;}
.y1c{bottom:435.266667pt;}
.y7a{bottom:442.946667pt;}
.y183{bottom:443.106667pt;}
.y48{bottom:444.066667pt;}
.y98{bottom:445.666667pt;}
.ye5{bottom:446.786667pt;}
.y152{bottom:449.986667pt;}
.y1b{bottom:452.066667pt;}
.y119{bottom:456.066667pt;}
.y182{bottom:457.666667pt;}
.y47{bottom:461.026667pt;}
.y79{bottom:461.346667pt;}
.y97{bottom:462.466667pt;}
.y151{bottom:465.346667pt;}
.y1a{bottom:469.026667pt;}
.y181{bottom:472.226667pt;}
.y46{bottom:477.826667pt;}
.y96{bottom:479.426667pt;}
.y78{bottom:479.746667pt;}
.ye2{bottom:480.386667pt;}
.y150{bottom:480.706667pt;}
.y19{bottom:485.826667pt;}
.y180{bottom:486.786667pt;}
.y118{bottom:490.786667pt;}
.y45{bottom:494.786667pt;}
.y14f{bottom:496.066667pt;}
.y95{bottom:496.226667pt;}
.y77{bottom:498.173333pt;}
.y17f{bottom:501.373333pt;}
.y18{bottom:502.813333pt;}
.y117{bottom:507.773333pt;}
.y14e{bottom:511.293333pt;}
.y44{bottom:511.613333pt;}
.y94{bottom:513.213333pt;}
.ye1{bottom:514.173333pt;}
.y17e{bottom:515.933333pt;}
.y76{bottom:516.573333pt;}
.y17{bottom:520.893333pt;}
.y116{bottom:524.573333pt;}
.y14d{bottom:526.653333pt;}
.y43{bottom:528.413333pt;}
.yaf{bottom:528.573333pt;}
.y93{bottom:530.013333pt;}
.y17d{bottom:530.493333pt;}
.y75{bottom:534.973333pt;}
.y16{bottom:537.373333pt;}
.y115{bottom:540.733333pt;}
.y14c{bottom:542.013333pt;}
.y17c{bottom:545.053333pt;}
.y42{bottom:545.373333pt;}
.y92{bottom:546.813333pt;}
.ye0{bottom:547.933333pt;}
.y114{bottom:550.973333pt;}
.y15{bottom:553.053333pt;}
.y74{bottom:553.373333pt;}
.y14b{bottom:557.373333pt;}
.y17b{bottom:559.613333pt;}
.yc2{bottom:560.893333pt;}
.y41{bottom:562.173333pt;}
.y133{bottom:562.333333pt;}
.y91{bottom:563.773333pt;}
.y113{bottom:566.333333pt;}
.y14{bottom:568.413333pt;}
.y73{bottom:571.773333pt;}
.y14a{bottom:572.733333pt;}
.y17a{bottom:574.333333pt;}
.y40{bottom:579.133333pt;}
.y132{bottom:579.293333pt;}
.y90{bottom:580.573333pt;}
.y112{bottom:581.693333pt;}
.ydf{bottom:582.333333pt;}
.y13{bottom:583.773333pt;}
.y149{bottom:588.093333pt;}
.y179{bottom:588.893333pt;}
.y72{bottom:590.173333pt;}
.y3f{bottom:595.933333pt;}
.y111{bottom:597.053333pt;}
.y8f{bottom:597.533333pt;}
.y12{bottom:599.133333pt;}
.y148{bottom:603.293333pt;}
.y178{bottom:603.453333pt;}
.y71{bottom:608.573333pt;}
.y10f{bottom:612.413333pt;}
.y3e{bottom:612.733333pt;}
.y11{bottom:614.333333pt;}
.y177{bottom:618.013333pt;}
.y147{bottom:618.653333pt;}
.y70{bottom:626.973333pt;}
.y10e{bottom:628.413333pt;}
.y10{bottom:629.373333pt;}
.y3d{bottom:629.693333pt;}
.y131{bottom:629.853333pt;}
.y8e{bottom:631.133333pt;}
.yde{bottom:632.253333pt;}
.y176{bottom:632.573333pt;}
.y146{bottom:634.013333pt;}
.y6f{bottom:645.373333pt;}
.yf{bottom:645.853333pt;}
.y3c{bottom:646.493333pt;}
.y5e{bottom:646.653333pt;}
.y175{bottom:647.133333pt;}
.y10d{bottom:647.773333pt;}
.y8d{bottom:648.253333pt;}
.ydd{bottom:649.373333pt;}
.y174{bottom:661.693333pt;}
.y3b{bottom:663.453333pt;}
.y5d{bottom:663.613333pt;}
.y6e{bottom:663.773333pt;}
.y10c{bottom:664.573333pt;}
.y145{bottom:664.733333pt;}
.y8c{bottom:664.893333pt;}
.ydc{bottom:666.173333pt;}
.ye{bottom:667.453333pt;}
.y173{bottom:676.253333pt;}
.y10b{bottom:678.813333pt;}
.y144{bottom:680.093333pt;}
.y3a{bottom:680.253333pt;}
.yae{bottom:680.413333pt;}
.y6d{bottom:682.173333pt;}
.ydb{bottom:682.973333pt;}
.yd{bottom:687.613333pt;}
.y172{bottom:690.813333pt;}
.y143{bottom:695.293333pt;}
.y10a{bottom:695.613333pt;}
.y39{bottom:697.053333pt;}
.yda{bottom:697.213333pt;}
.y6c{bottom:700.573333pt;}
.yc{bottom:702.973333pt;}
.y171{bottom:705.373333pt;}
.y142{bottom:710.653333pt;}
.y109{bottom:712.413333pt;}
.y38{bottom:714.013333pt;}
.y6b{bottom:718.973333pt;}
.ybf{bottom:719.293333pt;}
.y170{bottom:719.933333pt;}
.yb{bottom:722.373333pt;}
.y141{bottom:726.053333pt;}
.y108{bottom:729.413333pt;}
.y37{bottom:730.853333pt;}
.y16f{bottom:734.533333pt;}
.y6a{bottom:737.413333pt;}
.y140{bottom:741.413333pt;}
.y36{bottom:747.813333pt;}
.y16e{bottom:749.093333pt;}
.y69{bottom:755.813333pt;}
.y13f{bottom:756.773333pt;}
.ya{bottom:759.173333pt;}
.y107{bottom:763.173333pt;}
.y16d{bottom:763.653333pt;}
.y35{bottom:764.613333pt;}
.y13e{bottom:771.973333pt;}
.y68{bottom:774.213333pt;}
.y16c{bottom:778.213333pt;}
.y34{bottom:781.573333pt;}
.y13d{bottom:787.333333pt;}
.y67{bottom:792.613333pt;}
.y16b{bottom:792.773333pt;}
.y9{bottom:795.973333pt;}
.y105{bottom:797.573333pt;}
.y33{bottom:798.373333pt;}
.yd3{bottom:799.013333pt;}
.y13c{bottom:802.693333pt;}
.y16a{bottom:807.333333pt;}
.y66{bottom:811.013333pt;}
.y32{bottom:815.173333pt;}
.y13b{bottom:818.053333pt;}
.y169{bottom:821.893333pt;}
.y65{bottom:829.413333pt;}
.y31{bottom:832.133333pt;}
.y8{bottom:832.773333pt;}
.y13a{bottom:833.413333pt;}
.y168{bottom:836.453333pt;}
.y64{bottom:847.813333pt;}
.yad{bottom:848.933333pt;}
.y30{bottom:849.093333pt;}
.y167{bottom:851.013333pt;}
.y6{bottom:880.293333pt;}
.y5{bottom:896.453333pt;}
.y4{bottom:912.453333pt;}
.y3{bottom:927.973333pt;}
.y2{bottom:942.373333pt;}
.y1{bottom:957.280000pt;}
.h2d{height:15.200000pt;}
.h25{height:15.346667pt;}
.h2e{height:15.360000pt;}
.h1d{height:16.786667pt;}
.h20{height:16.800000pt;}
.h1f{height:16.820000pt;}
.h1e{height:16.946667pt;}
.h2c{height:16.980000pt;}
.h2b{height:30.546667pt;}
.h30{height:30.706667pt;}
.h32{height:31.238750pt;}
.h24{height:33.586667pt;}
.h1c{height:33.746667pt;}
.h22{height:33.760000pt;}
.h31{height:33.778667pt;}
.h23{height:33.786667pt;}
.h37{height:35.130313pt;}
.h1b{height:38.672812pt;}
.h27{height:38.698750pt;}
.hd{height:40.911250pt;}
.h1{height:42.084375pt;}
.h17{height:42.866250pt;}
.h10{height:42.895000pt;}
.h2{height:43.215000pt;}
.h2f{height:44.722500pt;}
.h19{height:46.066667pt;}
.h21{height:46.080000pt;}
.h11{height:46.625000pt;}
.h3{height:48.375000pt;}
.h35{height:49.621875pt;}
.h36{height:50.436563pt;}
.h9{height:52.134375pt;}
.h34{height:52.732500pt;}
.h7{height:53.535000pt;}
.h1a{height:55.402500pt;}
.hc{height:57.787500pt;}
.hf{height:58.736250pt;}
.he{height:59.340000pt;}
.h29{height:61.266667pt;}
.h28{height:61.298667pt;}
.ha{height:61.410000pt;}
.h26{height:61.426667pt;}
.h2a{height:61.433333pt;}
.h4{height:62.812500pt;}
.hb{height:66.750000pt;}
.h8{height:75.465000pt;}
.h5{height:86.750000pt;}
.h18{height:125.778667pt;}
.h14{height:125.780000pt;}
.h6{height:129.000000pt;}
.h33{height:139.965000pt;}
.h16{height:147.066667pt;}
.h15{height:157.760000pt;}
.h12{height:236.666667pt;}
.h13{height:431.893333pt;}
.h0{height:1056.000000pt;}
.w10{width:50.546667pt;}
.w25{width:53.746667pt;}
.w1f{width:56.832000pt;}
.w24{width:66.226667pt;}
.w1d{width:66.240000pt;}
.w1e{width:75.520000pt;}
.w22{width:75.680000pt;}
.wa{width:77.746667pt;}
.w11{width:78.098667pt;}
.wb{width:78.418667pt;}
.w9{width:79.712000pt;}
.w19{width:83.826667pt;}
.w1a{width:84.178667pt;}
.w23{width:84.992000pt;}
.w18{width:85.152000pt;}
.w17{width:85.440000pt;}
.wf{width:90.432000pt;}
.w8{width:91.520000pt;}
.wc{width:94.386667pt;}
.w1b{width:95.826667pt;}
.we{width:105.120000pt;}
.w12{width:105.266667pt;}
.w26{width:119.698667pt;}
.w16{width:164.017333pt;}
.wd{width:168.817333pt;}
.w1c{width:169.777333pt;}
.w7{width:176.657333pt;}
.w13{width:188.657333pt;}
.w4{width:197.777333pt;}
.w6{width:198.093333pt;}
.w21{width:198.097333pt;}
.w15{width:199.533333pt;}
.w5{width:203.706667pt;}
.w14{width:210.266667pt;}
.w20{width:230.093333pt;}
.w3{width:238.893333pt;}
.w2{width:358.137333pt;}
.w1{width:597.840000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.870667pt;}
.x3c{left:8.470667pt;}
.x40{left:9.440000pt;}
.x2e{left:10.880000pt;}
.x56{left:12.000000pt;}
.x2b{left:13.600000pt;}
.x51{left:14.560000pt;}
.x31{left:15.506667pt;}
.x49{left:16.480000pt;}
.x5f{left:19.066667pt;}
.x28{left:19.990667pt;}
.x61{left:21.110667pt;}
.x39{left:22.240000pt;}
.x66{left:23.666667pt;}
.x42{left:25.266667pt;}
.x37{left:26.400000pt;}
.x2a{left:28.000000pt;}
.x44{left:29.585333pt;}
.x36{left:30.706667pt;}
.x35{left:31.680000pt;}
.x2f{left:33.120000pt;}
.x57{left:34.560000pt;}
.x38{left:35.680000pt;}
.x33{left:36.800000pt;}
.x48{left:37.905333pt;}
.x2c{left:39.040000pt;}
.x4a{left:40.305333pt;}
.x63{left:41.266667pt;}
.x58{left:42.385333pt;}
.x46{left:44.480000pt;}
.x47{left:46.065333pt;}
.x45{left:47.985333pt;}
.x60{left:50.226667pt;}
.x34{left:51.985333pt;}
.x3d{left:53.265333pt;}
.x69{left:55.665333pt;}
.x5b{left:56.625333pt;}
.x68{left:59.025333pt;}
.x59{left:64.945333pt;}
.x4c{left:68.480000pt;}
.x15{left:72.000000pt;}
.x4e{left:76.786667pt;}
.x62{left:79.346667pt;}
.x1e{left:83.026667pt;}
.x7{left:95.872000pt;}
.xa{left:100.832000pt;}
.xb{left:104.032000pt;}
.x24{left:107.561333pt;}
.x17{left:109.161333pt;}
.xe{left:111.552000pt;}
.x22{left:118.112000pt;}
.x14{left:120.032000pt;}
.x21{left:121.472000pt;}
.xd{left:124.352000pt;}
.x19{left:127.712000pt;}
.x9{left:132.512000pt;}
.x23{left:134.266667pt;}
.x4f{left:140.506667pt;}
.x3a{left:141.466667pt;}
.x13{left:144.026667pt;}
.x1f{left:167.226667pt;}
.x2{left:168.826667pt;}
.x20{left:177.626667pt;}
.x5a{left:186.426667pt;}
.x10{left:188.186667pt;}
.x1d{left:190.266667pt;}
.x8{left:195.546667pt;}
.x26{left:196.826667pt;}
.x64{left:204.186667pt;}
.xf{left:206.746667pt;}
.x3{left:227.866667pt;}
.x50{left:272.866667pt;}
.x3e{left:277.666667pt;}
.x5c{left:278.626667pt;}
.x29{left:285.506667pt;}
.x12{left:289.346667pt;}
.x16{left:293.186667pt;}
.x4b{left:297.506667pt;}
.x25{left:305.986667pt;}
.x65{left:306.946667pt;}
.x1b{left:337.172000pt;}
.x11{left:338.786667pt;}
.x5d{left:344.866667pt;}
.x52{left:358.306667pt;}
.x2d{left:377.026667pt;}
.x3f{left:382.946667pt;}
.x1{left:384.226667pt;}
.xc{left:408.066667pt;}
.x5e{left:420.386667pt;}
.x53{left:443.466667pt;}
.x30{left:456.746667pt;}
.x1c{left:468.106667pt;}
.x41{left:473.386667pt;}
.x18{left:476.372000pt;}
.x4d{left:507.786667pt;}
.x27{left:510.506667pt;}
.x6{left:524.573333pt;}
.x54{left:527.306667pt;}
.x32{left:534.506667pt;}
.x67{left:587.626667pt;}
.x43{left:602.053333pt;}
.x55{left:611.493333pt;}
.x5{left:612.453333pt;}
.x4{left:634.373333pt;}
.x3b{left:676.453333pt;}
}




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