
    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_0b77c1b168c9302a4612b8c0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2aa8d58c044e92a595ec9695.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c8102eb27f22238513c6bf01.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_132a463206e216a8627d5e9a.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_b65ff7b2ba5c2c2e86496814.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_6637ee7ae4edd5ec59db6f2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_2beb02338ae4d6ca2fe74c11.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0657b5f9f8fb464d8dcabb77.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_b6c72423c8273f10675f3317.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_17c25283872e62388e7c8eb5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_528d4497fcc529a498edfcfe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694336;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_cf1d2a692a3fc1dc5fa93bce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.285434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285434,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-74.160000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-59.760000px;}
.v4{vertical-align:-45.658738px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.ls29{letter-spacing:-1.157479px;}
.ls28{letter-spacing:-1.152000px;}
.ls34{letter-spacing:-0.900000px;}
.ls26{letter-spacing:-0.714000px;}
.ls33{letter-spacing:-0.672000px;}
.lsc{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls2a{letter-spacing:-0.206400px;}
.ls31{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls39{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.017280px;}
.ls1b{letter-spacing:-0.004320px;}
.ls9{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.008640px;}
.ls27{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.017280px;}
.ls38{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106560px;}
.ls17{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.126000px;}
.ls22{letter-spacing:0.135360px;}
.ls2b{letter-spacing:0.135600px;}
.ls2e{letter-spacing:0.144720px;}
.ls10{letter-spacing:0.153360px;}
.ls15{letter-spacing:0.177840px;}
.ls0{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.181200px;}
.lse{letter-spacing:0.182640px;}
.ls18{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.206640px;}
.lsa{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls2d{letter-spacing:0.289440px;}
.ls2f{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.924000px;}
.ls2{letter-spacing:1.620000px;}
.ls1{letter-spacing:3.060000px;}
.ls16{letter-spacing:3.780000px;}
.ls1e{letter-spacing:6.660000px;}
.ls24{letter-spacing:7.380000px;}
.ls8{letter-spacing:10.260000px;}
.ls25{letter-spacing:12.420000px;}
.ls21{letter-spacing:14.580000px;}
.ls23{letter-spacing:16.020000px;}
.ls4{letter-spacing:26.586720px;}
.ls3{letter-spacing:29.700000px;}
.ls7{letter-spacing:45.540000px;}
.ls1f{letter-spacing:93.963046px;}
.ls20{letter-spacing:102.497079px;}
.ls36{letter-spacing:182.484000px;}
.ls37{letter-spacing:623.820000px;}
.ls14{letter-spacing:1183.320000px;}
.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;}
}
.ws1{word-spacing:-59.760000px;}
.ws1a{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.075600px;}
.ws10{word-spacing:-15.066000px;}
.ws9{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.680200px;}
.ws21{word-spacing:-13.518000px;}
.ws20{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws22{word-spacing:-12.186000px;}
.ws1c{word-spacing:-12.105360px;}
.ws3{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.878800px;}
.ws1e{word-spacing:-11.700000px;}
.ws1d{word-spacing:-11.388000px;}
.ws1f{word-spacing:-11.160000px;}
.wsd{word-spacing:-9.737280px;}
.ws12{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.wse{word-spacing:-9.715680px;}
.wsb{word-spacing:-9.702720px;}
.ws11{word-spacing:-9.006000px;}
.ws6{word-spacing:0.000000px;}
.ws15{word-spacing:41.449928px;}
.ws17{word-spacing:46.800202px;}
.ws16{word-spacing:48.168380px;}
.ws14{word-spacing:48.197003px;}
._23{margin-left:-8.736000px;}
._f{margin-left:-2.595600px;}
._1{margin-left:-1.246800px;}
._2{width:1.836000px;}
._0{width:3.784800px;}
._24{width:4.790400px;}
._1e{width:5.813280px;}
._9{width:6.966000px;}
._8{width:8.262000px;}
._10{width:9.322560px;}
._15{width:10.757520px;}
._c{width:12.033600px;}
._13{width:13.291680px;}
._6{width:14.742000px;}
._7{width:15.795600px;}
._5{width:16.834800px;}
._4{width:18.022800px;}
._3{width:19.278000px;}
._b{width:20.540400px;}
._a{width:21.825600px;}
._14{width:23.246640px;}
._1c{width:24.489120px;}
._11{width:25.867920px;}
._12{width:27.023040px;}
._e{width:28.912800px;}
._d{width:29.950800px;}
._27{width:31.076880px;}
._25{width:32.109600px;}
._1f{width:33.251280px;}
._18{width:34.308480px;}
._2e{width:35.437680px;}
._1b{width:36.513360px;}
._2d{width:37.547040px;}
._2c{width:38.683200px;}
._2b{width:39.697200px;}
._32{width:41.043120px;}
._16{width:42.433440px;}
._17{width:43.836480px;}
._26{width:45.588720px;}
._28{width:47.594880px;}
._35{width:51.215040px;}
._22{width:52.349760px;}
._1a{width:54.866880px;}
._19{width:56.106480px;}
._1d{width:59.401440px;}
._21{width:69.278160px;}
._20{width:70.500480px;}
._2a{width:79.071600px;}
._29{width:80.479200px;}
._37{width:98.120160px;}
._36{width:122.240160px;}
._31{width:138.986640px;}
._2f{width:213.300000px;}
._30{width:319.860000px;}
._34{width:820.440000px;}
._33{width:826.200000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:58.794223px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y190{bottom:2.880000px;}
.y198{bottom:3.240000px;}
.y1b7{bottom:3.270000px;}
.y1a9{bottom:3.420000px;}
.y192{bottom:3.600000px;}
.y1ab{bottom:3.780000px;}
.y63{bottom:5.940000px;}
.y5f{bottom:8.100000px;}
.y18e{bottom:11.160000px;}
.y195{bottom:11.520000px;}
.y1a7{bottom:12.420000px;}
.y112{bottom:14.676023px;}
.y191{bottom:19.440000px;}
.y1ad{bottom:20.340000px;}
.y111{bottom:23.867068px;}
.y194{bottom:27.360000px;}
.y61{bottom:27.900000px;}
.y1a6{bottom:28.260000px;}
.y2{bottom:35.856000px;}
.y5e{bottom:50.070000px;}
.y31{bottom:78.336000px;}
.yda{bottom:79.776000px;}
.y10f{bottom:79.956000px;}
.y30{bottom:92.556000px;}
.y131{bottom:93.456000px;}
.yf5{bottom:95.256000px;}
.y133{bottom:97.056000px;}
.y10e{bottom:98.496000px;}
.y1be{bottom:99.756000px;}
.y2f{bottom:106.776000px;}
.ycd{bottom:110.556000px;}
.y5c{bottom:111.096000px;}
.y130{bottom:111.996000px;}
.yf4{bottom:113.796000px;}
.y132{bottom:115.596000px;}
.y10d{bottom:117.036000px;}
.yd9{bottom:118.656000px;}
.y2e{bottom:120.996000px;}
.y1bd{bottom:127.836000px;}
.ycc{bottom:129.096000px;}
.y5b{bottom:129.636000px;}
.y12f{bottom:130.536000px;}
.yf3{bottom:132.336000px;}
.y98{bottom:134.136000px;}
.y2d{bottom:135.216000px;}
.y10c{bottom:135.576000px;}
.y1bc{bottom:145.116000px;}
.ycb{bottom:147.636000px;}
.y5a{bottom:148.176000px;}
.y12e{bottom:149.076000px;}
.y2c{bottom:149.436000px;}
.yf2{bottom:150.870000px;}
.y97{bottom:152.670000px;}
.yd8{bottom:154.110000px;}
.y1bb{bottom:157.710000px;}
.y2b{bottom:163.650000px;}
.yca{bottom:166.170000px;}
.y59{bottom:166.710000px;}
.y12d{bottom:167.610000px;}
.yf1{bottom:169.410000px;}
.y96{bottom:171.210000px;}
.yd7{bottom:172.650000px;}
.y2a{bottom:177.870000px;}
.yc9{bottom:184.710000px;}
.y58{bottom:185.250000px;}
.y12c{bottom:186.150000px;}
.yf0{bottom:187.950000px;}
.y95{bottom:189.750000px;}
.yd6{bottom:191.190000px;}
.yc8{bottom:203.250000px;}
.y57{bottom:203.790000px;}
.y12b{bottom:204.690000px;}
.y29{bottom:207.030000px;}
.y94{bottom:208.290000px;}
.yd5{bottom:209.730000px;}
.yc7{bottom:221.790000px;}
.y56{bottom:222.330000px;}
.y12a{bottom:223.230000px;}
.y93{bottom:226.830000px;}
.yd4{bottom:228.270000px;}
.y28{bottom:234.750000px;}
.yef{bottom:239.430000px;}
.yc6{bottom:240.330000px;}
.y55{bottom:240.870000px;}
.y129{bottom:241.770000px;}
.y92{bottom:245.370000px;}
.yd3{bottom:246.810000px;}
.y27{bottom:253.290000px;}
.y18b{bottom:257.070000px;}
.yee{bottom:257.970000px;}
.yc5{bottom:258.870000px;}
.y54{bottom:259.410000px;}
.y128{bottom:260.310000px;}
.y91{bottom:263.955000px;}
.y10b{bottom:265.395000px;}
.yd2{bottom:268.995000px;}
.y26{bottom:271.875000px;}
.yed{bottom:276.555000px;}
.yc4{bottom:277.455000px;}
.y53{bottom:277.995000px;}
.y127{bottom:278.895000px;}
.y90{bottom:282.495000px;}
.y10a{bottom:283.935000px;}
.y25{bottom:290.415000px;}
.y15f{bottom:292.035000px;}
.yec{bottom:295.095000px;}
.y18a{bottom:295.275000px;}
.yc3{bottom:295.995000px;}
.y52{bottom:296.535000px;}
.y126{bottom:297.435000px;}
.y8f{bottom:301.035000px;}
.y109{bottom:302.475000px;}
.y15e{bottom:306.255000px;}
.y24{bottom:308.955000px;}
.yeb{bottom:313.635000px;}
.yc2{bottom:314.535000px;}
.y51{bottom:315.075000px;}
.y125{bottom:315.975000px;}
.y189{bottom:318.495000px;}
.y8e{bottom:319.575000px;}
.y15d{bottom:320.475000px;}
.y108{bottom:321.015000px;}
.y23{bottom:327.495000px;}
.yc1{bottom:333.075000px;}
.y50{bottom:333.615000px;}
.y124{bottom:334.515000px;}
.yea{bottom:335.775000px;}
.y8d{bottom:338.115000px;}
.y107{bottom:339.555000px;}
.y22{bottom:346.035000px;}
.y15c{bottom:349.815000px;}
.yc0{bottom:351.615000px;}
.y4f{bottom:352.155000px;}
.y123{bottom:353.055000px;}
.y188{bottom:353.415000px;}
.y8c{bottom:356.655000px;}
.y106{bottom:358.095000px;}
.ye9{bottom:363.315000px;}
.y15b{bottom:364.035000px;}
.y21{bottom:364.575000px;}
.y187{bottom:367.635000px;}
.ybf{bottom:370.155000px;}
.y4e{bottom:370.695000px;}
.y122{bottom:371.595000px;}
.y8b{bottom:375.195000px;}
.y105{bottom:376.635000px;}
.y15a{bottom:378.255000px;}
.ye8{bottom:381.855000px;}
.y20{bottom:383.115000px;}
.ybe{bottom:388.695000px;}
.y4d{bottom:389.235000px;}
.y121{bottom:390.135000px;}
.y8a{bottom:393.735000px;}
.y104{bottom:395.175000px;}
.y186{bottom:396.075000px;}
.ye7{bottom:400.395000px;}
.y1f{bottom:401.655000px;}
.ybd{bottom:407.235000px;}
.y159{bottom:407.595000px;}
.y4c{bottom:407.775000px;}
.y120{bottom:408.675000px;}
.y89{bottom:412.275000px;}
.y103{bottom:413.715000px;}
.ye6{bottom:418.935000px;}
.y1e{bottom:420.195000px;}
.y158{bottom:421.815000px;}
.y185{bottom:425.415000px;}
.ybc{bottom:425.775000px;}
.y4b{bottom:426.315000px;}
.y11f{bottom:427.215000px;}
.y88{bottom:430.815000px;}
.y102{bottom:432.255000px;}
.y157{bottom:436.035000px;}
.ye5{bottom:437.475000px;}
.y1d{bottom:438.735000px;}
.y184{bottom:439.635000px;}
.ybb{bottom:444.315000px;}
.y4a{bottom:444.855000px;}
.y11e{bottom:445.755000px;}
.y87{bottom:449.355000px;}
.y156{bottom:450.255000px;}
.y101{bottom:450.795000px;}
.y183{bottom:453.855000px;}
.ye4{bottom:456.015000px;}
.y1c{bottom:457.275000px;}
.yba{bottom:462.855000px;}
.y49{bottom:463.395000px;}
.y11d{bottom:464.295000px;}
.y86{bottom:467.895000px;}
.y182{bottom:468.075000px;}
.y100{bottom:469.335000px;}
.ye3{bottom:474.555000px;}
.y1b{bottom:475.815000px;}
.y1ba{bottom:476.175000px;}
.y155{bottom:479.595000px;}
.yb9{bottom:481.395000px;}
.y48{bottom:481.935000px;}
.y181{bottom:482.295000px;}
.y11c{bottom:482.835000px;}
.y85{bottom:486.435000px;}
.yff{bottom:487.875000px;}
.y1b9{bottom:492.735000px;}
.y154{bottom:493.815000px;}
.y1a{bottom:494.355000px;}
.yb8{bottom:499.935000px;}
.y47{bottom:500.475000px;}
.y11b{bottom:501.375000px;}
.y84{bottom:504.975000px;}
.y153{bottom:508.035000px;}
.y1b8{bottom:509.295000px;}
.yfe{bottom:511.455000px;}
.y180{bottom:511.635000px;}
.ye2{bottom:512.535000px;}
.y19{bottom:512.895000px;}
.yb7{bottom:518.475000px;}
.y46{bottom:519.015000px;}
.y11a{bottom:519.915000px;}
.y83{bottom:523.515000px;}
.y17f{bottom:525.855000px;}
.y18{bottom:531.465000px;}
.yb6{bottom:537.045000px;}
.y152{bottom:537.405000px;}
.y45{bottom:537.585000px;}
.y119{bottom:538.485000px;}
.y17e{bottom:540.105000px;}
.y82{bottom:542.085000px;}
.y1b6{bottom:542.445000px;}
.ye1{bottom:548.025000px;}
.y17{bottom:550.005000px;}
.y151{bottom:551.625000px;}
.y17d{bottom:554.325000px;}
.yb5{bottom:555.585000px;}
.y44{bottom:556.125000px;}
.y118{bottom:557.025000px;}
.y81{bottom:560.625000px;}
.y150{bottom:565.845000px;}
.ye0{bottom:566.565000px;}
.y16{bottom:568.545000px;}
.yb4{bottom:574.125000px;}
.y43{bottom:574.665000px;}
.y117{bottom:575.565000px;}
.y1b5{bottom:578.445000px;}
.y80{bottom:579.165000px;}
.y14f{bottom:580.065000px;}
.y62{bottom:582.585000px;}
.ydf{bottom:585.105000px;}
.y15{bottom:587.085000px;}
.yb3{bottom:592.665000px;}
.y42{bottom:593.205000px;}
.y116{bottom:594.105000px;}
.y14e{bottom:594.285000px;}
.y7f{bottom:597.705000px;}
.y17c{bottom:597.885000px;}
.yd1{bottom:598.245000px;}
.yde{bottom:603.645000px;}
.y14{bottom:605.625000px;}
.y114{bottom:609.060000px;}
.y1b4{bottom:610.305000px;}
.yb2{bottom:611.205000px;}
.y41{bottom:611.745000px;}
.y17b{bottom:612.105000px;}
.y7e{bottom:616.245000px;}
.ydd{bottom:622.185000px;}
.y14d{bottom:623.625000px;}
.y17a{bottom:626.325000px;}
.y115{bottom:627.045000px;}
.y1b3{bottom:627.405000px;}
.y13{bottom:629.205000px;}
.yb1{bottom:629.745000px;}
.y40{bottom:630.285000px;}
.y7d{bottom:634.785000px;}
.y14c{bottom:637.845000px;}
.y179{bottom:640.545000px;}
.ydc{bottom:640.725000px;}
.y1b0{bottom:644.505000px;}
.y110{bottom:647.910000px;}
.yb0{bottom:648.285000px;}
.y3f{bottom:648.825000px;}
.y14b{bottom:652.065000px;}
.y7c{bottom:653.325000px;}
.yfd{bottom:659.265000px;}
.y1b2{bottom:661.605000px;}
.ydb{bottom:662.865000px;}
.y12{bottom:664.485000px;}
.y113{bottom:665.925000px;}
.y14a{bottom:666.285000px;}
.yaf{bottom:666.825000px;}
.y3e{bottom:667.365000px;}
.y178{bottom:669.885000px;}
.y7b{bottom:671.865000px;}
.yfc{bottom:677.805000px;}
.y1b1{bottom:678.705000px;}
.y11{bottom:680.325000px;}
.y177{bottom:684.105000px;}
.yae{bottom:685.365000px;}
.y3d{bottom:685.905000px;}
.y7a{bottom:690.405000px;}
.y149{bottom:695.625000px;}
.y1ac{bottom:695.805000px;}
.yfb{bottom:696.345000px;}
.y10{bottom:697.785000px;}
.y176{bottom:698.325000px;}
.yad{bottom:703.905000px;}
.y3c{bottom:704.445000px;}
.y79{bottom:708.945000px;}
.y148{bottom:709.845000px;}
.y175{bottom:712.545000px;}
.y1af{bottom:712.905000px;}
.yfa{bottom:714.885000px;}
.yf{bottom:715.245000px;}
.yac{bottom:722.445000px;}
.y3b{bottom:722.985000px;}
.y147{bottom:724.065000px;}
.y78{bottom:727.485000px;}
.y1ae{bottom:730.005000px;}
.ye{bottom:731.085000px;}
.yf9{bottom:733.425000px;}
.y146{bottom:738.285000px;}
.yab{bottom:740.985000px;}
.y3a{bottom:741.525000px;}
.y174{bottom:741.885000px;}
.y77{bottom:746.025000px;}
.yd{bottom:746.925000px;}
.y1a5{bottom:747.105000px;}
.yf8{bottom:751.965000px;}
.y173{bottom:756.105000px;}
.yaa{bottom:759.525000px;}
.y39{bottom:760.065000px;}
.yc{bottom:762.765000px;}
.yd0{bottom:763.665000px;}
.y1aa{bottom:764.205000px;}
.y76{bottom:764.565000px;}
.y145{bottom:767.625000px;}
.y172{bottom:770.325000px;}
.yf7{bottom:770.505000px;}
.ya9{bottom:778.065000px;}
.yb{bottom:778.605000px;}
.ycf{bottom:780.945000px;}
.y1a8{bottom:781.305000px;}
.y144{bottom:781.845000px;}
.y75{bottom:783.105000px;}
.y134{bottom:783.645000px;}
.y171{bottom:784.545000px;}
.yf6{bottom:792.690000px;}
.ya{bottom:794.490000px;}
.y143{bottom:796.110000px;}
.ya8{bottom:796.650000px;}
.y38{bottom:797.190000px;}
.y1a3{bottom:798.450000px;}
.yce{bottom:801.150000px;}
.y74{bottom:801.690000px;}
.y9{bottom:810.330000px;}
.y170{bottom:813.930000px;}
.y1a4{bottom:815.010000px;}
.ya7{bottom:815.190000px;}
.y37{bottom:815.730000px;}
.y73{bottom:820.230000px;}
.y142{bottom:825.450000px;}
.y8{bottom:826.170000px;}
.y16f{bottom:828.150000px;}
.ya6{bottom:833.730000px;}
.y36{bottom:834.270000px;}
.y72{bottom:838.770000px;}
.y141{bottom:839.670000px;}
.y7{bottom:842.010000px;}
.y16e{bottom:842.370000px;}
.y1a2{bottom:851.010000px;}
.ya5{bottom:852.270000px;}
.y35{bottom:852.810000px;}
.y140{bottom:853.890000px;}
.y71{bottom:857.310000px;}
.y6{bottom:857.850000px;}
.y19f{bottom:864.330000px;}
.y13f{bottom:868.110000px;}
.ya4{bottom:870.810000px;}
.y34{bottom:871.350000px;}
.y16d{bottom:871.710000px;}
.y5{bottom:873.690000px;}
.y70{bottom:875.850000px;}
.y1a1{bottom:880.890000px;}
.y13e{bottom:882.330000px;}
.y16c{bottom:885.930000px;}
.ya3{bottom:889.350000px;}
.y4{bottom:889.530000px;}
.y33{bottom:889.890000px;}
.y6f{bottom:894.390000px;}
.y1a0{bottom:897.450000px;}
.y16b{bottom:900.150000px;}
.ya2{bottom:907.890000px;}
.y32{bottom:908.430000px;}
.y3{bottom:908.970000px;}
.y13d{bottom:911.670000px;}
.y6e{bottom:912.930000px;}
.y19c{bottom:914.010000px;}
.y16a{bottom:914.370000px;}
.y13c{bottom:925.890000px;}
.ya1{bottom:926.430000px;}
.y169{bottom:928.590000px;}
.y19e{bottom:930.570000px;}
.y6d{bottom:931.470000px;}
.y60{bottom:936.510000px;}
.y13b{bottom:940.110000px;}
.y168{bottom:942.810000px;}
.ya0{bottom:944.970000px;}
.y19d{bottom:947.130000px;}
.y6c{bottom:950.010000px;}
.y13a{bottom:954.330000px;}
.y167{bottom:957.030000px;}
.y9f{bottom:963.510000px;}
.y199{bottom:963.690000px;}
.y6b{bottom:968.550000px;}
.y166{bottom:971.250000px;}
.y19b{bottom:980.250000px;}
.y9e{bottom:982.050000px;}
.y6a{bottom:987.090000px;}
.y19a{bottom:996.810000px;}
.y139{bottom:997.890000px;}
.y9d{bottom:1000.590000px;}
.y69{bottom:1005.630000px;}
.y5d{bottom:1011.210000px;}
.y138{bottom:1012.110000px;}
.y193{bottom:1013.370000px;}
.y165{bottom:1014.810000px;}
.y9c{bottom:1019.130000px;}
.y68{bottom:1024.170000px;}
.y164{bottom:1029.030000px;}
.y197{bottom:1029.930000px;}
.y9b{bottom:1037.670000px;}
.y137{bottom:1041.450000px;}
.y67{bottom:1042.710000px;}
.y196{bottom:1046.490000px;}
.y136{bottom:1055.700000px;}
.y9a{bottom:1056.240000px;}
.y163{bottom:1058.400000px;}
.y66{bottom:1061.280000px;}
.y18d{bottom:1063.080000px;}
.y135{bottom:1069.920000px;}
.y162{bottom:1072.620000px;}
.y99{bottom:1074.780000px;}
.y18f{bottom:1079.640000px;}
.y65{bottom:1079.820000px;}
.y161{bottom:1086.840000px;}
.y64{bottom:1098.360000px;}
.y18c{bottom:1099.440000px;}
.y160{bottom:1101.060000px;}
.y1{bottom:1141.560000px;}
.h19{height:15.825000px;}
.h16{height:15.840000px;}
.h18{height:15.870000px;}
.h1f{height:16.380000px;}
.h1d{height:16.402500px;}
.h1b{height:32.385000px;}
.h15{height:32.400000px;}
.h20{height:36.834961px;}
.h1e{height:36.887695px;}
.hb{height:37.080000px;}
.hf{height:37.950120px;}
.h11{height:40.822942px;}
.h13{height:43.246406px;}
.h9{height:43.365000px;}
.h14{height:47.321367px;}
.h6{height:47.344922px;}
.h1a{height:48.945000px;}
.h17{height:48.990000px;}
.h21{height:50.580000px;}
.h1c{height:50.602500px;}
.h2{height:52.998047px;}
.h4{height:54.421875px;}
.h10{height:57.674607px;}
.h3{height:58.621992px;}
.h1{height:58.651172px;}
.he{height:59.614102px;}
.h5{height:61.423863px;}
.ha{height:65.010937px;}
.h12{height:65.518594px;}
.hd{height:70.664062px;}
.h7{height:83.910000px;}
.h8{height:141.328125px;}
.hc{height:164.647266px;}
.h0{height:1188.000000px;}
.w3{width:23.434500px;}
.w9{width:62.661000px;}
.wd{width:62.985000px;}
.wb{width:73.620000px;}
.w6{width:80.089500px;}
.wc{width:84.276000px;}
.wf{width:134.316000px;}
.wa{width:135.345000px;}
.w4{width:150.159118px;}
.w5{width:151.570526px;}
.we{width:162.000000px;}
.w7{width:180.015000px;}
.w8{width:222.510000px;}
.w2{width:708.570000px;}
.w1{width:730.170000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:2.739270px;}
.x1f{left:7.729500px;}
.x23{left:9.900000px;}
.x2d{left:14.385000px;}
.x24{left:16.380000px;}
.x29{left:19.425000px;}
.x2c{left:21.240000px;}
.x27{left:24.840000px;}
.x28{left:30.270000px;}
.x2e{left:33.690000px;}
.x8{left:46.429500px;}
.x2a{left:55.620000px;}
.x31{left:63.750000px;}
.x1{left:70.200000px;}
.x2b{left:73.440000px;}
.x17{left:74.704669px;}
.x19{left:75.754120px;}
.x10{left:81.000000px;}
.x3{left:85.320000px;}
.x5{left:93.636000px;}
.xa{left:104.806500px;}
.x15{left:107.677419px;}
.x1c{left:118.296000px;}
.x1e{left:123.876000px;}
.xf{left:127.836000px;}
.x32{left:131.616000px;}
.xb{left:191.908500px;}
.x20{left:198.045000px;}
.x4{left:203.790000px;}
.x14{left:220.170000px;}
.xe{left:285.915000px;}
.x2f{left:293.835000px;}
.x9{left:298.828500px;}
.x11{left:373.575000px;}
.x21{left:378.975000px;}
.x25{left:453.315000px;}
.x30{left:456.555000px;}
.x2{left:459.075000px;}
.x6{left:469.905000px;}
.x12{left:480.705000px;}
.x7{left:485.025000px;}
.x1d{left:517.965000px;}
.x26{left:538.320000px;}
.xc{left:551.805000px;}
.x1b{left:601.485000px;}
.x18{left:620.025000px;}
.x1a{left:621.465000px;}
.x22{left:665.430000px;}
.x13{left:740.850000px;}
.xd{left:790.530000px;}
@media print{
.v3{vertical-align:-65.920000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-53.120000pt;}
.v4{vertical-align:-40.585545pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.ls29{letter-spacing:-1.028870pt;}
.ls28{letter-spacing:-1.024000pt;}
.ls34{letter-spacing:-0.800000pt;}
.ls26{letter-spacing:-0.634667pt;}
.ls33{letter-spacing:-0.597333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls2a{letter-spacing:-0.183467pt;}
.ls31{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls39{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls1b{letter-spacing:-0.003840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.007680pt;}
.ls27{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.015360pt;}
.ls38{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094720pt;}
.ls17{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.112000pt;}
.ls22{letter-spacing:0.120320pt;}
.ls2b{letter-spacing:0.120533pt;}
.ls2e{letter-spacing:0.128640pt;}
.ls10{letter-spacing:0.136320pt;}
.ls15{letter-spacing:0.158080pt;}
.ls0{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.161067pt;}
.lse{letter-spacing:0.162347pt;}
.ls18{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.183680pt;}
.lsa{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls2d{letter-spacing:0.257280pt;}
.ls2f{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.821333pt;}
.ls2{letter-spacing:1.440000pt;}
.ls1{letter-spacing:2.720000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:5.920000pt;}
.ls24{letter-spacing:6.560000pt;}
.ls8{letter-spacing:9.120000pt;}
.ls25{letter-spacing:11.040000pt;}
.ls21{letter-spacing:12.960000pt;}
.ls23{letter-spacing:14.240000pt;}
.ls4{letter-spacing:23.632640pt;}
.ls3{letter-spacing:26.400000pt;}
.ls7{letter-spacing:40.480000pt;}
.ls1f{letter-spacing:83.522707pt;}
.ls20{letter-spacing:91.108514pt;}
.ls36{letter-spacing:162.208000pt;}
.ls37{letter-spacing:554.506667pt;}
.ls14{letter-spacing:1051.840000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.400533pt;}
.ws10{word-spacing:-13.392000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.049067pt;}
.ws21{word-spacing:-12.016000pt;}
.ws20{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws22{word-spacing:-10.832000pt;}
.ws1c{word-spacing:-10.760320pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.558933pt;}
.ws1e{word-spacing:-10.400000pt;}
.ws1d{word-spacing:-10.122667pt;}
.ws1f{word-spacing:-9.920000pt;}
.wsd{word-spacing:-8.655360pt;}
.ws12{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.636160pt;}
.wsb{word-spacing:-8.624640pt;}
.ws11{word-spacing:-8.005333pt;}
.ws6{word-spacing:0.000000pt;}
.ws15{word-spacing:36.844380pt;}
.ws17{word-spacing:41.600179pt;}
.ws16{word-spacing:42.816337pt;}
.ws14{word-spacing:42.841781pt;}
._23{margin-left:-7.765333pt;}
._f{margin-left:-2.307200pt;}
._1{margin-left:-1.108267pt;}
._2{width:1.632000pt;}
._0{width:3.364267pt;}
._24{width:4.258133pt;}
._1e{width:5.167360pt;}
._9{width:6.192000pt;}
._8{width:7.344000pt;}
._10{width:8.286720pt;}
._15{width:9.562240pt;}
._c{width:10.696533pt;}
._13{width:11.814827pt;}
._6{width:13.104000pt;}
._7{width:14.040533pt;}
._5{width:14.964267pt;}
._4{width:16.020267pt;}
._3{width:17.136000pt;}
._b{width:18.258133pt;}
._a{width:19.400533pt;}
._14{width:20.663680pt;}
._1c{width:21.768107pt;}
._11{width:22.993707pt;}
._12{width:24.020480pt;}
._e{width:25.700267pt;}
._d{width:26.622933pt;}
._27{width:27.623893pt;}
._25{width:28.541867pt;}
._1f{width:29.556693pt;}
._18{width:30.496427pt;}
._2e{width:31.500160pt;}
._1b{width:32.456320pt;}
._2d{width:33.375147pt;}
._2c{width:34.385067pt;}
._2b{width:35.286400pt;}
._32{width:36.482773pt;}
._16{width:37.718613pt;}
._17{width:38.965760pt;}
._26{width:40.523307pt;}
._28{width:42.306560pt;}
._35{width:45.524480pt;}
._22{width:46.533120pt;}
._1a{width:48.770560pt;}
._19{width:49.872427pt;}
._1d{width:52.801280pt;}
._21{width:61.580587pt;}
._20{width:62.667093pt;}
._2a{width:70.285867pt;}
._29{width:71.537067pt;}
._37{width:87.217920pt;}
._36{width:108.657920pt;}
._31{width:123.543680pt;}
._2f{width:189.600000pt;}
._30{width:284.320000pt;}
._34{width:729.280000pt;}
._33{width:734.400000pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:52.261532pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:2.560000pt;}
.y198{bottom:2.880000pt;}
.y1b7{bottom:2.906667pt;}
.y1a9{bottom:3.040000pt;}
.y192{bottom:3.200000pt;}
.y1ab{bottom:3.360000pt;}
.y63{bottom:5.280000pt;}
.y5f{bottom:7.200000pt;}
.y18e{bottom:9.920000pt;}
.y195{bottom:10.240000pt;}
.y1a7{bottom:11.040000pt;}
.y112{bottom:13.045354pt;}
.y191{bottom:17.280000pt;}
.y1ad{bottom:18.080000pt;}
.y111{bottom:21.215171pt;}
.y194{bottom:24.320000pt;}
.y61{bottom:24.800000pt;}
.y1a6{bottom:25.120000pt;}
.y2{bottom:31.872000pt;}
.y5e{bottom:44.506667pt;}
.y31{bottom:69.632000pt;}
.yda{bottom:70.912000pt;}
.y10f{bottom:71.072000pt;}
.y30{bottom:82.272000pt;}
.y131{bottom:83.072000pt;}
.yf5{bottom:84.672000pt;}
.y133{bottom:86.272000pt;}
.y10e{bottom:87.552000pt;}
.y1be{bottom:88.672000pt;}
.y2f{bottom:94.912000pt;}
.ycd{bottom:98.272000pt;}
.y5c{bottom:98.752000pt;}
.y130{bottom:99.552000pt;}
.yf4{bottom:101.152000pt;}
.y132{bottom:102.752000pt;}
.y10d{bottom:104.032000pt;}
.yd9{bottom:105.472000pt;}
.y2e{bottom:107.552000pt;}
.y1bd{bottom:113.632000pt;}
.ycc{bottom:114.752000pt;}
.y5b{bottom:115.232000pt;}
.y12f{bottom:116.032000pt;}
.yf3{bottom:117.632000pt;}
.y98{bottom:119.232000pt;}
.y2d{bottom:120.192000pt;}
.y10c{bottom:120.512000pt;}
.y1bc{bottom:128.992000pt;}
.ycb{bottom:131.232000pt;}
.y5a{bottom:131.712000pt;}
.y12e{bottom:132.512000pt;}
.y2c{bottom:132.832000pt;}
.yf2{bottom:134.106667pt;}
.y97{bottom:135.706667pt;}
.yd8{bottom:136.986667pt;}
.y1bb{bottom:140.186667pt;}
.y2b{bottom:145.466667pt;}
.yca{bottom:147.706667pt;}
.y59{bottom:148.186667pt;}
.y12d{bottom:148.986667pt;}
.yf1{bottom:150.586667pt;}
.y96{bottom:152.186667pt;}
.yd7{bottom:153.466667pt;}
.y2a{bottom:158.106667pt;}
.yc9{bottom:164.186667pt;}
.y58{bottom:164.666667pt;}
.y12c{bottom:165.466667pt;}
.yf0{bottom:167.066667pt;}
.y95{bottom:168.666667pt;}
.yd6{bottom:169.946667pt;}
.yc8{bottom:180.666667pt;}
.y57{bottom:181.146667pt;}
.y12b{bottom:181.946667pt;}
.y29{bottom:184.026667pt;}
.y94{bottom:185.146667pt;}
.yd5{bottom:186.426667pt;}
.yc7{bottom:197.146667pt;}
.y56{bottom:197.626667pt;}
.y12a{bottom:198.426667pt;}
.y93{bottom:201.626667pt;}
.yd4{bottom:202.906667pt;}
.y28{bottom:208.666667pt;}
.yef{bottom:212.826667pt;}
.yc6{bottom:213.626667pt;}
.y55{bottom:214.106667pt;}
.y129{bottom:214.906667pt;}
.y92{bottom:218.106667pt;}
.yd3{bottom:219.386667pt;}
.y27{bottom:225.146667pt;}
.y18b{bottom:228.506667pt;}
.yee{bottom:229.306667pt;}
.yc5{bottom:230.106667pt;}
.y54{bottom:230.586667pt;}
.y128{bottom:231.386667pt;}
.y91{bottom:234.626667pt;}
.y10b{bottom:235.906667pt;}
.yd2{bottom:239.106667pt;}
.y26{bottom:241.666667pt;}
.yed{bottom:245.826667pt;}
.yc4{bottom:246.626667pt;}
.y53{bottom:247.106667pt;}
.y127{bottom:247.906667pt;}
.y90{bottom:251.106667pt;}
.y10a{bottom:252.386667pt;}
.y25{bottom:258.146667pt;}
.y15f{bottom:259.586667pt;}
.yec{bottom:262.306667pt;}
.y18a{bottom:262.466667pt;}
.yc3{bottom:263.106667pt;}
.y52{bottom:263.586667pt;}
.y126{bottom:264.386667pt;}
.y8f{bottom:267.586667pt;}
.y109{bottom:268.866667pt;}
.y15e{bottom:272.226667pt;}
.y24{bottom:274.626667pt;}
.yeb{bottom:278.786667pt;}
.yc2{bottom:279.586667pt;}
.y51{bottom:280.066667pt;}
.y125{bottom:280.866667pt;}
.y189{bottom:283.106667pt;}
.y8e{bottom:284.066667pt;}
.y15d{bottom:284.866667pt;}
.y108{bottom:285.346667pt;}
.y23{bottom:291.106667pt;}
.yc1{bottom:296.066667pt;}
.y50{bottom:296.546667pt;}
.y124{bottom:297.346667pt;}
.yea{bottom:298.466667pt;}
.y8d{bottom:300.546667pt;}
.y107{bottom:301.826667pt;}
.y22{bottom:307.586667pt;}
.y15c{bottom:310.946667pt;}
.yc0{bottom:312.546667pt;}
.y4f{bottom:313.026667pt;}
.y123{bottom:313.826667pt;}
.y188{bottom:314.146667pt;}
.y8c{bottom:317.026667pt;}
.y106{bottom:318.306667pt;}
.ye9{bottom:322.946667pt;}
.y15b{bottom:323.586667pt;}
.y21{bottom:324.066667pt;}
.y187{bottom:326.786667pt;}
.ybf{bottom:329.026667pt;}
.y4e{bottom:329.506667pt;}
.y122{bottom:330.306667pt;}
.y8b{bottom:333.506667pt;}
.y105{bottom:334.786667pt;}
.y15a{bottom:336.226667pt;}
.ye8{bottom:339.426667pt;}
.y20{bottom:340.546667pt;}
.ybe{bottom:345.506667pt;}
.y4d{bottom:345.986667pt;}
.y121{bottom:346.786667pt;}
.y8a{bottom:349.986667pt;}
.y104{bottom:351.266667pt;}
.y186{bottom:352.066667pt;}
.ye7{bottom:355.906667pt;}
.y1f{bottom:357.026667pt;}
.ybd{bottom:361.986667pt;}
.y159{bottom:362.306667pt;}
.y4c{bottom:362.466667pt;}
.y120{bottom:363.266667pt;}
.y89{bottom:366.466667pt;}
.y103{bottom:367.746667pt;}
.ye6{bottom:372.386667pt;}
.y1e{bottom:373.506667pt;}
.y158{bottom:374.946667pt;}
.y185{bottom:378.146667pt;}
.ybc{bottom:378.466667pt;}
.y4b{bottom:378.946667pt;}
.y11f{bottom:379.746667pt;}
.y88{bottom:382.946667pt;}
.y102{bottom:384.226667pt;}
.y157{bottom:387.586667pt;}
.ye5{bottom:388.866667pt;}
.y1d{bottom:389.986667pt;}
.y184{bottom:390.786667pt;}
.ybb{bottom:394.946667pt;}
.y4a{bottom:395.426667pt;}
.y11e{bottom:396.226667pt;}
.y87{bottom:399.426667pt;}
.y156{bottom:400.226667pt;}
.y101{bottom:400.706667pt;}
.y183{bottom:403.426667pt;}
.ye4{bottom:405.346667pt;}
.y1c{bottom:406.466667pt;}
.yba{bottom:411.426667pt;}
.y49{bottom:411.906667pt;}
.y11d{bottom:412.706667pt;}
.y86{bottom:415.906667pt;}
.y182{bottom:416.066667pt;}
.y100{bottom:417.186667pt;}
.ye3{bottom:421.826667pt;}
.y1b{bottom:422.946667pt;}
.y1ba{bottom:423.266667pt;}
.y155{bottom:426.306667pt;}
.yb9{bottom:427.906667pt;}
.y48{bottom:428.386667pt;}
.y181{bottom:428.706667pt;}
.y11c{bottom:429.186667pt;}
.y85{bottom:432.386667pt;}
.yff{bottom:433.666667pt;}
.y1b9{bottom:437.986667pt;}
.y154{bottom:438.946667pt;}
.y1a{bottom:439.426667pt;}
.yb8{bottom:444.386667pt;}
.y47{bottom:444.866667pt;}
.y11b{bottom:445.666667pt;}
.y84{bottom:448.866667pt;}
.y153{bottom:451.586667pt;}
.y1b8{bottom:452.706667pt;}
.yfe{bottom:454.626667pt;}
.y180{bottom:454.786667pt;}
.ye2{bottom:455.586667pt;}
.y19{bottom:455.906667pt;}
.yb7{bottom:460.866667pt;}
.y46{bottom:461.346667pt;}
.y11a{bottom:462.146667pt;}
.y83{bottom:465.346667pt;}
.y17f{bottom:467.426667pt;}
.y18{bottom:472.413333pt;}
.yb6{bottom:477.373333pt;}
.y152{bottom:477.693333pt;}
.y45{bottom:477.853333pt;}
.y119{bottom:478.653333pt;}
.y17e{bottom:480.093333pt;}
.y82{bottom:481.853333pt;}
.y1b6{bottom:482.173333pt;}
.ye1{bottom:487.133333pt;}
.y17{bottom:488.893333pt;}
.y151{bottom:490.333333pt;}
.y17d{bottom:492.733333pt;}
.yb5{bottom:493.853333pt;}
.y44{bottom:494.333333pt;}
.y118{bottom:495.133333pt;}
.y81{bottom:498.333333pt;}
.y150{bottom:502.973333pt;}
.ye0{bottom:503.613333pt;}
.y16{bottom:505.373333pt;}
.yb4{bottom:510.333333pt;}
.y43{bottom:510.813333pt;}
.y117{bottom:511.613333pt;}
.y1b5{bottom:514.173333pt;}
.y80{bottom:514.813333pt;}
.y14f{bottom:515.613333pt;}
.y62{bottom:517.853333pt;}
.ydf{bottom:520.093333pt;}
.y15{bottom:521.853333pt;}
.yb3{bottom:526.813333pt;}
.y42{bottom:527.293333pt;}
.y116{bottom:528.093333pt;}
.y14e{bottom:528.253333pt;}
.y7f{bottom:531.293333pt;}
.y17c{bottom:531.453333pt;}
.yd1{bottom:531.773333pt;}
.yde{bottom:536.573333pt;}
.y14{bottom:538.333333pt;}
.y114{bottom:541.386667pt;}
.y1b4{bottom:542.493333pt;}
.yb2{bottom:543.293333pt;}
.y41{bottom:543.773333pt;}
.y17b{bottom:544.093333pt;}
.y7e{bottom:547.773333pt;}
.ydd{bottom:553.053333pt;}
.y14d{bottom:554.333333pt;}
.y17a{bottom:556.733333pt;}
.y115{bottom:557.373333pt;}
.y1b3{bottom:557.693333pt;}
.y13{bottom:559.293333pt;}
.yb1{bottom:559.773333pt;}
.y40{bottom:560.253333pt;}
.y7d{bottom:564.253333pt;}
.y14c{bottom:566.973333pt;}
.y179{bottom:569.373333pt;}
.ydc{bottom:569.533333pt;}
.y1b0{bottom:572.893333pt;}
.y110{bottom:575.920000pt;}
.yb0{bottom:576.253333pt;}
.y3f{bottom:576.733333pt;}
.y14b{bottom:579.613333pt;}
.y7c{bottom:580.733333pt;}
.yfd{bottom:586.013333pt;}
.y1b2{bottom:588.093333pt;}
.ydb{bottom:589.213333pt;}
.y12{bottom:590.653333pt;}
.y113{bottom:591.933333pt;}
.y14a{bottom:592.253333pt;}
.yaf{bottom:592.733333pt;}
.y3e{bottom:593.213333pt;}
.y178{bottom:595.453333pt;}
.y7b{bottom:597.213333pt;}
.yfc{bottom:602.493333pt;}
.y1b1{bottom:603.293333pt;}
.y11{bottom:604.733333pt;}
.y177{bottom:608.093333pt;}
.yae{bottom:609.213333pt;}
.y3d{bottom:609.693333pt;}
.y7a{bottom:613.693333pt;}
.y149{bottom:618.333333pt;}
.y1ac{bottom:618.493333pt;}
.yfb{bottom:618.973333pt;}
.y10{bottom:620.253333pt;}
.y176{bottom:620.733333pt;}
.yad{bottom:625.693333pt;}
.y3c{bottom:626.173333pt;}
.y79{bottom:630.173333pt;}
.y148{bottom:630.973333pt;}
.y175{bottom:633.373333pt;}
.y1af{bottom:633.693333pt;}
.yfa{bottom:635.453333pt;}
.yf{bottom:635.773333pt;}
.yac{bottom:642.173333pt;}
.y3b{bottom:642.653333pt;}
.y147{bottom:643.613333pt;}
.y78{bottom:646.653333pt;}
.y1ae{bottom:648.893333pt;}
.ye{bottom:649.853333pt;}
.yf9{bottom:651.933333pt;}
.y146{bottom:656.253333pt;}
.yab{bottom:658.653333pt;}
.y3a{bottom:659.133333pt;}
.y174{bottom:659.453333pt;}
.y77{bottom:663.133333pt;}
.yd{bottom:663.933333pt;}
.y1a5{bottom:664.093333pt;}
.yf8{bottom:668.413333pt;}
.y173{bottom:672.093333pt;}
.yaa{bottom:675.133333pt;}
.y39{bottom:675.613333pt;}
.yc{bottom:678.013333pt;}
.yd0{bottom:678.813333pt;}
.y1aa{bottom:679.293333pt;}
.y76{bottom:679.613333pt;}
.y145{bottom:682.333333pt;}
.y172{bottom:684.733333pt;}
.yf7{bottom:684.893333pt;}
.ya9{bottom:691.613333pt;}
.yb{bottom:692.093333pt;}
.ycf{bottom:694.173333pt;}
.y1a8{bottom:694.493333pt;}
.y144{bottom:694.973333pt;}
.y75{bottom:696.093333pt;}
.y134{bottom:696.573333pt;}
.y171{bottom:697.373333pt;}
.yf6{bottom:704.613333pt;}
.ya{bottom:706.213333pt;}
.y143{bottom:707.653333pt;}
.ya8{bottom:708.133333pt;}
.y38{bottom:708.613333pt;}
.y1a3{bottom:709.733333pt;}
.yce{bottom:712.133333pt;}
.y74{bottom:712.613333pt;}
.y9{bottom:720.293333pt;}
.y170{bottom:723.493333pt;}
.y1a4{bottom:724.453333pt;}
.ya7{bottom:724.613333pt;}
.y37{bottom:725.093333pt;}
.y73{bottom:729.093333pt;}
.y142{bottom:733.733333pt;}
.y8{bottom:734.373333pt;}
.y16f{bottom:736.133333pt;}
.ya6{bottom:741.093333pt;}
.y36{bottom:741.573333pt;}
.y72{bottom:745.573333pt;}
.y141{bottom:746.373333pt;}
.y7{bottom:748.453333pt;}
.y16e{bottom:748.773333pt;}
.y1a2{bottom:756.453333pt;}
.ya5{bottom:757.573333pt;}
.y35{bottom:758.053333pt;}
.y140{bottom:759.013333pt;}
.y71{bottom:762.053333pt;}
.y6{bottom:762.533333pt;}
.y19f{bottom:768.293333pt;}
.y13f{bottom:771.653333pt;}
.ya4{bottom:774.053333pt;}
.y34{bottom:774.533333pt;}
.y16d{bottom:774.853333pt;}
.y5{bottom:776.613333pt;}
.y70{bottom:778.533333pt;}
.y1a1{bottom:783.013333pt;}
.y13e{bottom:784.293333pt;}
.y16c{bottom:787.493333pt;}
.ya3{bottom:790.533333pt;}
.y4{bottom:790.693333pt;}
.y33{bottom:791.013333pt;}
.y6f{bottom:795.013333pt;}
.y1a0{bottom:797.733333pt;}
.y16b{bottom:800.133333pt;}
.ya2{bottom:807.013333pt;}
.y32{bottom:807.493333pt;}
.y3{bottom:807.973333pt;}
.y13d{bottom:810.373333pt;}
.y6e{bottom:811.493333pt;}
.y19c{bottom:812.453333pt;}
.y16a{bottom:812.773333pt;}
.y13c{bottom:823.013333pt;}
.ya1{bottom:823.493333pt;}
.y169{bottom:825.413333pt;}
.y19e{bottom:827.173333pt;}
.y6d{bottom:827.973333pt;}
.y60{bottom:832.453333pt;}
.y13b{bottom:835.653333pt;}
.y168{bottom:838.053333pt;}
.ya0{bottom:839.973333pt;}
.y19d{bottom:841.893333pt;}
.y6c{bottom:844.453333pt;}
.y13a{bottom:848.293333pt;}
.y167{bottom:850.693333pt;}
.y9f{bottom:856.453333pt;}
.y199{bottom:856.613333pt;}
.y6b{bottom:860.933333pt;}
.y166{bottom:863.333333pt;}
.y19b{bottom:871.333333pt;}
.y9e{bottom:872.933333pt;}
.y6a{bottom:877.413333pt;}
.y19a{bottom:886.053333pt;}
.y139{bottom:887.013333pt;}
.y9d{bottom:889.413333pt;}
.y69{bottom:893.893333pt;}
.y5d{bottom:898.853333pt;}
.y138{bottom:899.653333pt;}
.y193{bottom:900.773333pt;}
.y165{bottom:902.053333pt;}
.y9c{bottom:905.893333pt;}
.y68{bottom:910.373333pt;}
.y164{bottom:914.693333pt;}
.y197{bottom:915.493333pt;}
.y9b{bottom:922.373333pt;}
.y137{bottom:925.733333pt;}
.y67{bottom:926.853333pt;}
.y196{bottom:930.213333pt;}
.y136{bottom:938.400000pt;}
.y9a{bottom:938.880000pt;}
.y163{bottom:940.800000pt;}
.y66{bottom:943.360000pt;}
.y18d{bottom:944.960000pt;}
.y135{bottom:951.040000pt;}
.y162{bottom:953.440000pt;}
.y99{bottom:955.360000pt;}
.y18f{bottom:959.680000pt;}
.y65{bottom:959.840000pt;}
.y161{bottom:966.080000pt;}
.y64{bottom:976.320000pt;}
.y18c{bottom:977.280000pt;}
.y160{bottom:978.720000pt;}
.y1{bottom:1014.720000pt;}
.h19{height:14.066667pt;}
.h16{height:14.080000pt;}
.h18{height:14.106667pt;}
.h1f{height:14.560000pt;}
.h1d{height:14.580000pt;}
.h1b{height:28.786667pt;}
.h15{height:28.800000pt;}
.h20{height:32.742188pt;}
.h1e{height:32.789062pt;}
.hb{height:32.960000pt;}
.hf{height:33.733440pt;}
.h11{height:36.287060pt;}
.h13{height:38.441250pt;}
.h9{height:38.546667pt;}
.h14{height:42.063437pt;}
.h6{height:42.084375pt;}
.h1a{height:43.506667pt;}
.h17{height:43.546667pt;}
.h21{height:44.960000pt;}
.h1c{height:44.980000pt;}
.h2{height:47.109375pt;}
.h4{height:48.375000pt;}
.h10{height:51.266317pt;}
.h3{height:52.108438pt;}
.h1{height:52.134375pt;}
.he{height:52.990313pt;}
.h5{height:54.598989pt;}
.ha{height:57.787500pt;}
.h12{height:58.238750pt;}
.hd{height:62.812500pt;}
.h7{height:74.586667pt;}
.h8{height:125.625000pt;}
.hc{height:146.353125pt;}
.h0{height:1056.000000pt;}
.w3{width:20.830667pt;}
.w9{width:55.698667pt;}
.wd{width:55.986667pt;}
.wb{width:65.440000pt;}
.w6{width:71.190667pt;}
.wc{width:74.912000pt;}
.wf{width:119.392000pt;}
.wa{width:120.306667pt;}
.w4{width:133.474772pt;}
.w5{width:134.729356pt;}
.we{width:144.000000pt;}
.w7{width:160.013333pt;}
.w8{width:197.786667pt;}
.w2{width:629.840000pt;}
.w1{width:649.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:2.434907pt;}
.x1f{left:6.870667pt;}
.x23{left:8.800000pt;}
.x2d{left:12.786667pt;}
.x24{left:14.560000pt;}
.x29{left:17.266667pt;}
.x2c{left:18.880000pt;}
.x27{left:22.080000pt;}
.x28{left:26.906667pt;}
.x2e{left:29.946667pt;}
.x8{left:41.270667pt;}
.x2a{left:49.440000pt;}
.x31{left:56.666667pt;}
.x1{left:62.400000pt;}
.x2b{left:65.280000pt;}
.x17{left:66.404150pt;}
.x19{left:67.336996pt;}
.x10{left:72.000000pt;}
.x3{left:75.840000pt;}
.x5{left:83.232000pt;}
.xa{left:93.161333pt;}
.x15{left:95.713261pt;}
.x1c{left:105.152000pt;}
.x1e{left:110.112000pt;}
.xf{left:113.632000pt;}
.x32{left:116.992000pt;}
.xb{left:170.585333pt;}
.x20{left:176.040000pt;}
.x4{left:181.146667pt;}
.x14{left:195.706667pt;}
.xe{left:254.146667pt;}
.x2f{left:261.186667pt;}
.x9{left:265.625333pt;}
.x11{left:332.066667pt;}
.x21{left:336.866667pt;}
.x25{left:402.946667pt;}
.x30{left:405.826667pt;}
.x2{left:408.066667pt;}
.x6{left:417.693333pt;}
.x12{left:427.293333pt;}
.x7{left:431.133333pt;}
.x1d{left:460.413333pt;}
.x26{left:478.506667pt;}
.xc{left:490.493333pt;}
.x1b{left:534.653333pt;}
.x18{left:551.133333pt;}
.x1a{left:552.413333pt;}
.x22{left:591.493333pt;}
.x13{left:658.533333pt;}
.xd{left:702.693333pt;}
}




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