
    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_9221f8ef8c703b9ac191eb84.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1c536b4a6f825ff6289788dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_93c2b6ed479abb31bc0959c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_4f157b5ed9aafa58caa7bee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_afc51203c32cffb1115ea4a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_d14ef4693e85dbe5c9ec0b3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.754395;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_177873f14a8139cb52c393cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_151cf5bcb9fb534b2efb82a9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_18e9a5673e5864d9bc831e07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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:fff;src:url('chunks/assets/font_f149c0f1a685db1dab4845e5.woff2')format("woff");}.fff{font-family:fff;line-height:0.923340;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:ff10;src:url('chunks/assets/font_f68f14d111d9f2bf24dda50d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_199614e3757a5620e4e64473.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0e530dda4b0519463bc3b0ee.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_ffdb8ec85dfd78472d704974.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-4.680000px;}
.lsf{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls9{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.306600px;}
.ls8{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.786240px;}
.ls19{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-16.626360px;}
.ws4{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.488000px;}
.ws9{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.479800px;}
.ws13{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.482000px;}
.ws15{word-spacing:-13.374000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws8{word-spacing:-10.260000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.786880px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-5.617440px;}
._4{margin-left:-3.286800px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.026000px;}
._1{width:1.182000px;}
._5{width:2.368560px;}
._f{width:3.471120px;}
._6{width:5.320080px;}
._c{width:7.017840px;}
._e{width:8.175600px;}
._d{width:9.262800px;}
._7{width:10.776240px;}
._9{width:12.489840px;}
._8{width:13.625280px;}
._14{width:16.092000px;}
._12{width:18.060720px;}
._13{width:19.063440px;}
._10{width:20.451120px;}
._11{width:21.451680px;}
._b{width:23.376240px;}
._a{width:24.621120px;}
._15{width:236.516160px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs4{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:0.720000px;}
.y187{bottom:2.880000px;}
.y17f{bottom:3.060000px;}
.y48{bottom:3.240000px;}
.y99{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.y19{bottom:4.005000px;}
.yf1{bottom:4.320000px;}
.y152{bottom:4.500000px;}
.y14f{bottom:4.680000px;}
.yd1{bottom:5.040000px;}
.y9d{bottom:5.940000px;}
.ya1{bottom:6.120000px;}
.y137{bottom:8.100000px;}
.y140{bottom:8.280000px;}
.y181{bottom:8.460000px;}
.yaf{bottom:8.640000px;}
.y102{bottom:9.180000px;}
.yf{bottom:12.060000px;}
.y107{bottom:12.240000px;}
.ye1{bottom:12.600000px;}
.y1b{bottom:15.120000px;}
.y4{bottom:15.876000px;}
.y18a{bottom:18.360000px;}
.y17e{bottom:18.540000px;}
.y19e{bottom:18.585000px;}
.yd{bottom:18.720000px;}
.y6{bottom:19.620000px;}
.y2{bottom:20.016000px;}
.y47{bottom:20.520000px;}
.y15d{bottom:20.550000px;}
.yb2{bottom:21.240000px;}
.yc7{bottom:21.270000px;}
.yb7{bottom:21.285000px;}
.y13b{bottom:21.960000px;}
.y4b{bottom:22.140000px;}
.y126{bottom:23.220000px;}
.ycf{bottom:23.400000px;}
.y161{bottom:24.120000px;}
.yef{bottom:24.480000px;}
.yce{bottom:26.640000px;}
.y18{bottom:27.405000px;}
.ye0{bottom:29.880000px;}
.y183{bottom:30.420000px;}
.y17d{bottom:34.050000px;}
.y18d{bottom:34.065000px;}
.yc{bottom:35.100000px;}
.y135{bottom:36.000000px;}
.y14d{bottom:36.765000px;}
.y46{bottom:37.845000px;}
.yb1{bottom:38.520000px;}
.y14c{bottom:40.005000px;}
.y5{bottom:40.140000px;}
.y4a{bottom:40.500000px;}
.y17b{bottom:40.530000px;}
.y17{bottom:45.765000px;}
.yb{bottom:51.480000px;}
.yf5{bottom:54.900000px;}
.y45{bottom:54.945000px;}
.y17a{bottom:56.010000px;}
.y1{bottom:62.640000px;}
.y16{bottom:63.405000px;}
.y44{bottom:72.225000px;}
.y15{bottom:72.765000px;}
.y1a5{bottom:74.334000px;}
.ya{bottom:75.960000px;}
.y43{bottom:89.505000px;}
.y14{bottom:90.765000px;}
.y9{bottom:92.370000px;}
.y42{bottom:106.785000px;}
.y178{bottom:106.956000px;}
.y8{bottom:108.570000px;}
.y13{bottom:109.125000px;}
.y1a8{bottom:110.556000px;}
.y13a{bottom:111.996000px;}
.y54{bottom:113.256000px;}
.y106{bottom:114.876000px;}
.y92{bottom:115.596000px;}
.yc3{bottom:116.136000px;}
.y41{bottom:124.065000px;}
.y177{bottom:124.236000px;}
.y53{bottom:130.536000px;}
.y12{bottom:131.085000px;}
.y1a4{bottom:132.516000px;}
.y91{bottom:132.876000px;}
.yc5{bottom:134.136000px;}
.y139{bottom:139.716000px;}
.y176{bottom:141.336000px;}
.y40{bottom:141.345000px;}
.y52{bottom:147.816000px;}
.y90{bottom:149.976000px;}
.y103{bottom:150.870000px;}
.yc4{bottom:152.130000px;}
.y11{bottom:152.505000px;}
.y1a7{bottom:154.470000px;}
.y3f{bottom:158.445000px;}
.y175{bottom:158.610000px;}
.y51{bottom:165.090000px;}
.y8f{bottom:167.250000px;}
.y134{bottom:167.430000px;}
.y105{bottom:168.870000px;}
.yc0{bottom:170.130000px;}
.y3e{bottom:175.725000px;}
.y174{bottom:175.890000px;}
.y1a6{bottom:176.250000px;}
.y50{bottom:182.190000px;}
.y8e{bottom:184.530000px;}
.y104{bottom:186.870000px;}
.yc2{bottom:188.130000px;}
.y3d{bottom:193.005000px;}
.y173{bottom:193.170000px;}
.y138{bottom:195.330000px;}
.y1a3{bottom:198.210000px;}
.y4f{bottom:199.470000px;}
.y8d{bottom:201.810000px;}
.y101{bottom:204.870000px;}
.yc1{bottom:206.130000px;}
.y3c{bottom:210.285000px;}
.y172{bottom:210.450000px;}
.y4e{bottom:216.750000px;}
.y8c{bottom:219.090000px;}
.y1a2{bottom:220.170000px;}
.y136{bottom:223.050000px;}
.ybd{bottom:224.130000px;}
.y3b{bottom:227.565000px;}
.y171{bottom:227.730000px;}
.y4d{bottom:234.030000px;}
.y8b{bottom:236.370000px;}
.y100{bottom:237.990000px;}
.y1a1{bottom:241.950000px;}
.ybf{bottom:242.130000px;}
.y3a{bottom:244.665000px;}
.y170{bottom:244.830000px;}
.y49{bottom:248.070000px;}
.y8a{bottom:253.470000px;}
.y133{bottom:254.010000px;}
.yff{bottom:255.090000px;}
.ybe{bottom:260.130000px;}
.y39{bottom:261.945000px;}
.y16f{bottom:262.110000px;}
.y1a0{bottom:263.910000px;}
.y89{bottom:270.750000px;}
.y132{bottom:271.290000px;}
.yfe{bottom:272.370000px;}
.yba{bottom:278.130000px;}
.y38{bottom:279.225000px;}
.y16e{bottom:279.390000px;}
.y88{bottom:288.030000px;}
.y131{bottom:288.570000px;}
.yfd{bottom:289.650000px;}
.y19f{bottom:295.770000px;}
.y29{bottom:295.785000px;}
.ybc{bottom:296.130000px;}
.y37{bottom:296.505000px;}
.y16d{bottom:296.670000px;}
.y1c{bottom:302.970000px;}
.y87{bottom:305.310000px;}
.y130{bottom:305.670000px;}
.yfc{bottom:306.930000px;}
.y36{bottom:313.815000px;}
.y16c{bottom:313.950000px;}
.ybb{bottom:314.130000px;}
.y28{bottom:314.175000px;}
.y86{bottom:322.590000px;}
.y12f{bottom:322.950000px;}
.yfb{bottom:324.210000px;}
.y19d{bottom:327.450000px;}
.y16b{bottom:331.050000px;}
.y35{bottom:331.095000px;}
.y27{bottom:331.635000px;}
.yb6{bottom:332.130000px;}
.y85{bottom:339.915000px;}
.y12e{bottom:340.275000px;}
.yfa{bottom:341.535000px;}
.y34{bottom:348.195000px;}
.y16a{bottom:348.375000px;}
.y26{bottom:348.915000px;}
.yb9{bottom:350.175000px;}
.yf4{bottom:356.295000px;}
.y84{bottom:357.015000px;}
.y12d{bottom:357.555000px;}
.y19c{bottom:359.355000px;}
.y33{bottom:365.475000px;}
.y169{bottom:365.655000px;}
.y25{bottom:366.195000px;}
.yb8{bottom:368.175000px;}
.y83{bottom:374.295000px;}
.y12c{bottom:374.835000px;}
.yf9{bottom:376.455000px;}
.y32{bottom:382.755000px;}
.y168{bottom:382.935000px;}
.y24{bottom:384.195000px;}
.yb0{bottom:386.175000px;}
.y19b{bottom:391.215000px;}
.y82{bottom:391.575000px;}
.y12b{bottom:392.115000px;}
.yf8{bottom:396.795000px;}
.y31{bottom:400.035000px;}
.y167{bottom:400.215000px;}
.y23{bottom:401.655000px;}
.yb5{bottom:404.175000px;}
.y81{bottom:408.855000px;}
.y12a{bottom:409.215000px;}
.yf7{bottom:416.955000px;}
.y30{bottom:417.315000px;}
.y166{bottom:417.495000px;}
.y22{bottom:419.655000px;}
.yb4{bottom:422.175000px;}
.y19a{bottom:422.895000px;}
.y80{bottom:426.135000px;}
.y129{bottom:426.495000px;}
.y2f{bottom:434.595000px;}
.yf6{bottom:437.295000px;}
.y21{bottom:438.015000px;}
.yae{bottom:440.175000px;}
.y7f{bottom:443.415000px;}
.y128{bottom:443.775000px;}
.y2e{bottom:451.695000px;}
.y165{bottom:451.875000px;}
.y199{bottom:454.755000px;}
.y20{bottom:456.375000px;}
.yf3{bottom:457.455000px;}
.y125{bottom:458.535000px;}
.y7e{bottom:460.515000px;}
.y2d{bottom:468.975000px;}
.y164{bottom:469.155000px;}
.yad{bottom:472.215000px;}
.y1f{bottom:474.555000px;}
.y7d{bottom:477.795000px;}
.y2c{bottom:486.255000px;}
.y163{bottom:486.435000px;}
.y198{bottom:486.615000px;}
.yac{bottom:489.495000px;}
.y7c{bottom:495.075000px;}
.y127{bottom:497.235000px;}
.yf2{bottom:497.955000px;}
.y162{bottom:501.195000px;}
.y1e{bottom:502.095000px;}
.y2b{bottom:503.535000px;}
.yab{bottom:506.775000px;}
.y7b{bottom:512.355000px;}
.y122{bottom:516.495000px;}
.yf0{bottom:518.295000px;}
.y1d{bottom:520.455000px;}
.y2a{bottom:520.815000px;}
.yaa{bottom:524.055000px;}
.y7a{bottom:529.635000px;}
.y124{bottom:534.495000px;}
.y160{bottom:536.475000px;}
.ya9{bottom:541.335000px;}
.yee{bottom:541.695000px;}
.y79{bottom:546.735000px;}
.y197{bottom:550.155000px;}
.y123{bottom:552.495000px;}
.y15f{bottom:555.915000px;}
.ya8{bottom:558.435000px;}
.yed{bottom:558.975000px;}
.y78{bottom:564.015000px;}
.y11f{bottom:570.495000px;}
.ya7{bottom:573.195000px;}
.y15e{bottom:575.355000px;}
.yec{bottom:576.255000px;}
.y77{bottom:581.295000px;}
.y196{bottom:582.015000px;}
.y121{bottom:588.495000px;}
.yeb{bottom:593.535000px;}
.y15c{bottom:594.615000px;}
.ya6{bottom:596.775000px;}
.y76{bottom:598.575000px;}
.y120{bottom:606.525000px;}
.yea{bottom:610.665000px;}
.y195{bottom:613.725000px;}
.y75{bottom:615.885000px;}
.ya5{bottom:620.385000px;}
.y11c{bottom:624.525000px;}
.ye9{bottom:627.945000px;}
.y15b{bottom:629.925000px;}
.y74{bottom:633.165000px;}
.y11e{bottom:642.525000px;}
.ya4{bottom:643.965000px;}
.ye8{bottom:645.225000px;}
.y194{bottom:645.585000px;}
.y15a{bottom:649.365000px;}
.y1ab{bottom:650.265000px;}
.y73{bottom:655.485000px;}
.y11d{bottom:660.525000px;}
.ye7{bottom:662.505000px;}
.y72{bottom:667.545000px;}
.y159{bottom:668.805000px;}
.y193{bottom:677.445000px;}
.y11a{bottom:678.525000px;}
.ye6{bottom:679.785000px;}
.y71{bottom:684.825000px;}
.y158{bottom:688.245000px;}
.ya3{bottom:690.945000px;}
.y11b{bottom:696.525000px;}
.ye5{bottom:697.065000px;}
.y192{bottom:699.225000px;}
.y70{bottom:702.105000px;}
.y157{bottom:707.685000px;}
.ye4{bottom:714.165000px;}
.ya2{bottom:714.525000px;}
.y6f{bottom:719.385000px;}
.y191{bottom:721.185000px;}
.y156{bottom:727.125000px;}
.ydf{bottom:728.925000px;}
.y117{bottom:732.525000px;}
.y1aa{bottom:736.665000px;}
.ya0{bottom:738.105000px;}
.y6e{bottom:741.885000px;}
.y190{bottom:743.145000px;}
.y155{bottom:746.565000px;}
.ye3{bottom:746.925000px;}
.y119{bottom:750.525000px;}
.y6d{bottom:753.765000px;}
.y9f{bottom:761.685000px;}
.ye2{bottom:764.925000px;}
.y154{bottom:766.005000px;}
.y118{bottom:768.525000px;}
.y6c{bottom:771.045000px;}
.ydc{bottom:782.925000px;}
.y9e{bottom:785.265000px;}
.y153{bottom:785.445000px;}
.y114{bottom:786.525000px;}
.y6b{bottom:788.325000px;}
.y18f{bottom:796.785000px;}
.yde{bottom:800.925000px;}
.y116{bottom:804.525000px;}
.y151{bottom:804.885000px;}
.y6a{bottom:805.605000px;}
.y9c{bottom:808.845000px;}
.y18e{bottom:818.745000px;}
.ydd{bottom:818.925000px;}
.y115{bottom:822.525000px;}
.y69{bottom:822.885000px;}
.y150{bottom:824.145000px;}
.y9b{bottom:832.245000px;}
.yd9{bottom:836.925000px;}
.y1a{bottom:837.825000px;}
.y68{bottom:839.985000px;}
.y111{bottom:840.525000px;}
.y14b{bottom:843.585000px;}
.y9a{bottom:850.245000px;}
.y18c{bottom:850.425000px;}
.ydb{bottom:854.925000px;}
.y67{bottom:857.265000px;}
.y113{bottom:858.525000px;}
.y10{bottom:867.345000px;}
.y98{bottom:868.245000px;}
.yda{bottom:872.970000px;}
.y66{bottom:874.590000px;}
.y112{bottom:876.570000px;}
.y14e{bottom:878.910000px;}
.y97{bottom:886.290000px;}
.yd6{bottom:890.970000px;}
.y65{bottom:891.870000px;}
.y10e{bottom:894.570000px;}
.y18b{bottom:897.810000px;}
.y14a{bottom:901.590000px;}
.y96{bottom:904.290000px;}
.yd8{bottom:908.970000px;}
.y1a9{bottom:909.150000px;}
.y110{bottom:912.570000px;}
.y64{bottom:914.370000px;}
.y149{bottom:918.870000px;}
.y189{bottom:919.770000px;}
.y95{bottom:922.290000px;}
.y63{bottom:926.430000px;}
.yd7{bottom:926.970000px;}
.y10f{bottom:930.570000px;}
.y148{bottom:936.150000px;}
.y62{bottom:943.530000px;}
.yd3{bottom:944.970000px;}
.y10c{bottom:948.570000px;}
.y188{bottom:951.450000px;}
.y147{bottom:953.430000px;}
.y61{bottom:960.810000px;}
.yd5{bottom:966.570000px;}
.y146{bottom:970.530000px;}
.y60{bottom:978.090000px;}
.y186{bottom:983.310000px;}
.y10d{bottom:984.570000px;}
.y145{bottom:987.810000px;}
.yd4{bottom:988.170000px;}
.y5f{bottom:995.370000px;}
.y109{bottom:1002.570000px;}
.y144{bottom:1005.090000px;}
.ycd{bottom:1009.770000px;}
.y5e{bottom:1012.650000px;}
.y185{bottom:1015.170000px;}
.y10b{bottom:1020.570000px;}
.y143{bottom:1022.370000px;}
.y5d{bottom:1029.930000px;}
.yd2{bottom:1031.370000px;}
.ye{bottom:1034.970000px;}
.y184{bottom:1036.950000px;}
.y10a{bottom:1038.570000px;}
.y142{bottom:1039.650000px;}
.y94{bottom:1047.030000px;}
.y5c{bottom:1052.250000px;}
.yd0{bottom:1052.970000px;}
.y108{bottom:1056.570000px;}
.y141{bottom:1056.930000px;}
.y7{bottom:1060.350000px;}
.y5b{bottom:1064.310000px;}
.y182{bottom:1068.810000px;}
.y13f{bottom:1071.510000px;}
.yca{bottom:1074.570000px;}
.y5a{bottom:1081.590000px;}
.y180{bottom:1090.770000px;}
.ycc{bottom:1092.570000px;}
.y59{bottom:1098.870000px;}
.y13e{bottom:1099.410000px;}
.ycb{bottom:1110.570000px;}
.y179{bottom:1112.550000px;}
.y58{bottom:1116.150000px;}
.y13d{bottom:1127.130000px;}
.yc6{bottom:1128.570000px;}
.y57{bottom:1133.430000px;}
.yc9{bottom:1146.600000px;}
.y56{bottom:1150.560000px;}
.y13c{bottom:1154.880000px;}
.y17c{bottom:1159.920000px;}
.yc8{bottom:1164.600000px;}
.y93{bottom:1167.840000px;}
.y55{bottom:1173.060000px;}
.h1c{height:17.280000px;}
.h1d{height:17.316000px;}
.h2c{height:18.540000px;}
.h2d{height:18.720000px;}
.h27{height:19.440000px;}
.h25{height:20.880000px;}
.h3a{height:21.060000px;}
.h38{height:21.240000px;}
.h1e{height:22.680000px;}
.h1f{height:22.860000px;}
.h20{height:22.896000px;}
.hb{height:25.020000px;}
.h2f{height:27.000000px;}
.h31{height:27.036000px;}
.h21{height:28.080000px;}
.h1b{height:28.115859px;}
.h29{height:28.980000px;}
.h12{height:29.520000px;}
.h3e{height:30.960000px;}
.h3f{height:30.996000px;}
.h3d{height:31.140000px;}
.h40{height:31.176000px;}
.h11{height:31.286250px;}
.h2{height:32.976000px;}
.h35{height:34.560000px;}
.h33{height:34.596000px;}
.h2a{height:35.280000px;}
.h34{height:37.980000px;}
.h37{height:38.100586px;}
.h10{height:38.671172px;}
.h3b{height:39.049805px;}
.h19{height:42.164648px;}
.h15{height:42.281367px;}
.h3c{height:43.020000px;}
.h17{height:43.215117px;}
.h42{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h39{height:46.656000px;}
.h16{height:48.088125px;}
.h1a{height:48.995859px;}
.he{height:53.015625px;}
.h22{height:53.280000px;}
.h23{height:53.316000px;}
.h4{height:53.709961px;}
.h32{height:54.036000px;}
.h30{height:54.720000px;}
.h18{height:54.900000px;}
.h3{height:55.291992px;}
.h2b{height:57.240000px;}
.h9{height:59.439023px;}
.h26{height:59.940000px;}
.hf{height:60.690234px;}
.h13{height:61.189805px;}
.h24{height:64.080000px;}
.h7{height:65.884219px;}
.h36{height:68.616000px;}
.h6{height:71.613281px;}
.h5{height:73.722656px;}
.h2e{height:82.620000px;}
.h41{height:86.940000px;}
.h28{height:120.600000px;}
.h8{height:121.536000px;}
.hc{height:167.610000px;}
.h14{height:534.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w31{width:30.420000px;}
.w3f{width:45.540000px;}
.w2e{width:57.600000px;}
.w3c{width:58.680000px;}
.w2f{width:63.036000px;}
.w3d{width:68.220000px;}
.w20{width:69.840000px;}
.w15{width:71.100000px;}
.w3a{width:71.640000px;}
.w3b{width:71.856000px;}
.w3{width:73.080000px;}
.w38{width:75.780000px;}
.w2c{width:77.940000px;}
.w2d{width:77.976000px;}
.w2a{width:78.156000px;}
.w36{width:78.696000px;}
.w39{width:78.876000px;}
.w37{width:80.640000px;}
.w29{width:82.980000px;}
.w28{width:83.016000px;}
.w2b{width:86.580000px;}
.w3e{width:92.916000px;}
.w30{width:120.636000px;}
.w27{width:121.356000px;}
.w35{width:127.620000px;}
.w32{width:139.356000px;}
.w10{width:143.820000px;}
.wf{width:143.856000px;}
.w1b{width:144.360000px;}
.w1a{width:144.396000px;}
.w18{width:147.636000px;}
.w24{width:151.770000px;}
.w5{width:151.950000px;}
.w23{width:153.570000px;}
.w22{width:153.750000px;}
.w17{width:155.370000px;}
.w21{width:164.550000px;}
.w16{width:166.530000px;}
.wc{width:179.310000px;}
.w13{width:185.250000px;}
.w1e{width:186.150000px;}
.w11{width:219.135000px;}
.w12{width:219.630000px;}
.w1c{width:220.215000px;}
.w1d{width:220.530000px;}
.w34{width:223.995000px;}
.w33{width:236.550000px;}
.w26{width:244.110000px;}
.w25{width:245.595000px;}
.w8{width:245.775000px;}
.wa{width:273.495000px;}
.wb{width:273.990000px;}
.we{width:439.125000px;}
.w19{width:441.105000px;}
.w14{width:470.265000px;}
.w1f{width:472.605000px;}
.w9{width:485.355000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.wd{width:727.530000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.560000px;}
.x2{left:8.676000px;}
.xc{left:10.296000px;}
.x13{left:12.600000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x3a{left:108.035987px;}
.xe{left:118.830000px;}
.xf{left:135.030000px;}
.xd{left:155.730000px;}
.x10{left:156.990000px;}
.x38{left:175.530000px;}
.x2f{left:203.070000px;}
.x25{left:219.989987px;}
.x31{left:221.790000px;}
.x5{left:232.950000px;}
.x26{left:234.210000px;}
.x30{left:240.689987px;}
.x11{left:249.375000px;}
.x1b{left:267.330000px;}
.x8{left:272.415000px;}
.x1a{left:292.754987px;}
.x19{left:301.215000px;}
.x21{left:302.295000px;}
.x2a{left:317.955000px;}
.x12{left:326.775000px;}
.x1e{left:342.614987px;}
.x14{left:349.274987px;}
.xa{left:352.335000px;}
.x15{left:355.575000px;}
.xb{left:365.475000px;}
.x6{left:371.955000px;}
.x34{left:382.575000px;}
.x7{left:387.975000px;}
.x39{left:396.074987px;}
.x2b{left:401.655000px;}
.x23{left:433.155000px;}
.x1c{left:434.235000px;}
.x9{left:439.680000px;}
.x32{left:459.075000px;}
.x27{left:480.525000px;}
.x17{left:521.205000px;}
.x1f{left:523.185000px;}
.x35{left:538.665000px;}
.x2c{left:568.005000px;}
.x24{left:587.265000px;}
.x1d{left:589.965000px;}
.x36{left:611.205000px;}
.x16{left:629.925000px;}
.x2d{left:646.665000px;}
.x18{left:665.430000px;}
.x20{left:667.950000px;}
.x33{left:683.790000px;}
.x28{left:725.550000px;}
.x3{left:739.050000px;}
.x22{left:741.570000px;}
.x37{left:743.190000px;}
.x2e{left:783.870000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-4.160000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls9{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.272533pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls19{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws3{word-spacing:-14.778987pt;}
.ws4{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.656000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.870933pt;}
.ws13{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws12{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.984000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws8{word-spacing:-9.120000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.810560pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-4.993280pt;}
._4{margin-left:-2.921600pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.050667pt;}
._5{width:2.105387pt;}
._f{width:3.085440pt;}
._6{width:4.728960pt;}
._c{width:6.238080pt;}
._e{width:7.267200pt;}
._d{width:8.233600pt;}
._7{width:9.578880pt;}
._9{width:11.102080pt;}
._8{width:12.111360pt;}
._14{width:14.304000pt;}
._12{width:16.053973pt;}
._13{width:16.945280pt;}
._10{width:18.178773pt;}
._11{width:19.068160pt;}
._b{width:20.778880pt;}
._a{width:21.885440pt;}
._15{width:210.236587pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:0.640000pt;}
.y187{bottom:2.560000pt;}
.y17f{bottom:2.720000pt;}
.y48{bottom:2.880000pt;}
.y99{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.y19{bottom:3.560000pt;}
.yf1{bottom:3.840000pt;}
.y152{bottom:4.000000pt;}
.y14f{bottom:4.160000pt;}
.yd1{bottom:4.480000pt;}
.y9d{bottom:5.280000pt;}
.ya1{bottom:5.440000pt;}
.y137{bottom:7.200000pt;}
.y140{bottom:7.360000pt;}
.y181{bottom:7.520000pt;}
.yaf{bottom:7.680000pt;}
.y102{bottom:8.160000pt;}
.yf{bottom:10.720000pt;}
.y107{bottom:10.880000pt;}
.ye1{bottom:11.200000pt;}
.y1b{bottom:13.440000pt;}
.y4{bottom:14.112000pt;}
.y18a{bottom:16.320000pt;}
.y17e{bottom:16.480000pt;}
.y19e{bottom:16.520000pt;}
.yd{bottom:16.640000pt;}
.y6{bottom:17.440000pt;}
.y2{bottom:17.792000pt;}
.y47{bottom:18.240000pt;}
.y15d{bottom:18.266667pt;}
.yb2{bottom:18.880000pt;}
.yc7{bottom:18.906667pt;}
.yb7{bottom:18.920000pt;}
.y13b{bottom:19.520000pt;}
.y4b{bottom:19.680000pt;}
.y126{bottom:20.640000pt;}
.ycf{bottom:20.800000pt;}
.y161{bottom:21.440000pt;}
.yef{bottom:21.760000pt;}
.yce{bottom:23.680000pt;}
.y18{bottom:24.360000pt;}
.ye0{bottom:26.560000pt;}
.y183{bottom:27.040000pt;}
.y17d{bottom:30.266667pt;}
.y18d{bottom:30.280000pt;}
.yc{bottom:31.200000pt;}
.y135{bottom:32.000000pt;}
.y14d{bottom:32.680000pt;}
.y46{bottom:33.640000pt;}
.yb1{bottom:34.240000pt;}
.y14c{bottom:35.560000pt;}
.y5{bottom:35.680000pt;}
.y4a{bottom:36.000000pt;}
.y17b{bottom:36.026667pt;}
.y17{bottom:40.680000pt;}
.yb{bottom:45.760000pt;}
.yf5{bottom:48.800000pt;}
.y45{bottom:48.840000pt;}
.y17a{bottom:49.786667pt;}
.y1{bottom:55.680000pt;}
.y16{bottom:56.360000pt;}
.y44{bottom:64.200000pt;}
.y15{bottom:64.680000pt;}
.y1a5{bottom:66.074667pt;}
.ya{bottom:67.520000pt;}
.y43{bottom:79.560000pt;}
.y14{bottom:80.680000pt;}
.y9{bottom:82.106667pt;}
.y42{bottom:94.920000pt;}
.y178{bottom:95.072000pt;}
.y8{bottom:96.506667pt;}
.y13{bottom:97.000000pt;}
.y1a8{bottom:98.272000pt;}
.y13a{bottom:99.552000pt;}
.y54{bottom:100.672000pt;}
.y106{bottom:102.112000pt;}
.y92{bottom:102.752000pt;}
.yc3{bottom:103.232000pt;}
.y41{bottom:110.280000pt;}
.y177{bottom:110.432000pt;}
.y53{bottom:116.032000pt;}
.y12{bottom:116.520000pt;}
.y1a4{bottom:117.792000pt;}
.y91{bottom:118.112000pt;}
.yc5{bottom:119.232000pt;}
.y139{bottom:124.192000pt;}
.y176{bottom:125.632000pt;}
.y40{bottom:125.640000pt;}
.y52{bottom:131.392000pt;}
.y90{bottom:133.312000pt;}
.y103{bottom:134.106667pt;}
.yc4{bottom:135.226667pt;}
.y11{bottom:135.560000pt;}
.y1a7{bottom:137.306667pt;}
.y3f{bottom:140.840000pt;}
.y175{bottom:140.986667pt;}
.y51{bottom:146.746667pt;}
.y8f{bottom:148.666667pt;}
.y134{bottom:148.826667pt;}
.y105{bottom:150.106667pt;}
.yc0{bottom:151.226667pt;}
.y3e{bottom:156.200000pt;}
.y174{bottom:156.346667pt;}
.y1a6{bottom:156.666667pt;}
.y50{bottom:161.946667pt;}
.y8e{bottom:164.026667pt;}
.y104{bottom:166.106667pt;}
.yc2{bottom:167.226667pt;}
.y3d{bottom:171.560000pt;}
.y173{bottom:171.706667pt;}
.y138{bottom:173.626667pt;}
.y1a3{bottom:176.186667pt;}
.y4f{bottom:177.306667pt;}
.y8d{bottom:179.386667pt;}
.y101{bottom:182.106667pt;}
.yc1{bottom:183.226667pt;}
.y3c{bottom:186.920000pt;}
.y172{bottom:187.066667pt;}
.y4e{bottom:192.666667pt;}
.y8c{bottom:194.746667pt;}
.y1a2{bottom:195.706667pt;}
.y136{bottom:198.266667pt;}
.ybd{bottom:199.226667pt;}
.y3b{bottom:202.280000pt;}
.y171{bottom:202.426667pt;}
.y4d{bottom:208.026667pt;}
.y8b{bottom:210.106667pt;}
.y100{bottom:211.546667pt;}
.y1a1{bottom:215.066667pt;}
.ybf{bottom:215.226667pt;}
.y3a{bottom:217.480000pt;}
.y170{bottom:217.626667pt;}
.y49{bottom:220.506667pt;}
.y8a{bottom:225.306667pt;}
.y133{bottom:225.786667pt;}
.yff{bottom:226.746667pt;}
.ybe{bottom:231.226667pt;}
.y39{bottom:232.840000pt;}
.y16f{bottom:232.986667pt;}
.y1a0{bottom:234.586667pt;}
.y89{bottom:240.666667pt;}
.y132{bottom:241.146667pt;}
.yfe{bottom:242.106667pt;}
.yba{bottom:247.226667pt;}
.y38{bottom:248.200000pt;}
.y16e{bottom:248.346667pt;}
.y88{bottom:256.026667pt;}
.y131{bottom:256.506667pt;}
.yfd{bottom:257.466667pt;}
.y19f{bottom:262.906667pt;}
.y29{bottom:262.920000pt;}
.ybc{bottom:263.226667pt;}
.y37{bottom:263.560000pt;}
.y16d{bottom:263.706667pt;}
.y1c{bottom:269.306667pt;}
.y87{bottom:271.386667pt;}
.y130{bottom:271.706667pt;}
.yfc{bottom:272.826667pt;}
.y36{bottom:278.946667pt;}
.y16c{bottom:279.066667pt;}
.ybb{bottom:279.226667pt;}
.y28{bottom:279.266667pt;}
.y86{bottom:286.746667pt;}
.y12f{bottom:287.066667pt;}
.yfb{bottom:288.186667pt;}
.y19d{bottom:291.066667pt;}
.y16b{bottom:294.266667pt;}
.y35{bottom:294.306667pt;}
.y27{bottom:294.786667pt;}
.yb6{bottom:295.226667pt;}
.y85{bottom:302.146667pt;}
.y12e{bottom:302.466667pt;}
.yfa{bottom:303.586667pt;}
.y34{bottom:309.506667pt;}
.y16a{bottom:309.666667pt;}
.y26{bottom:310.146667pt;}
.yb9{bottom:311.266667pt;}
.yf4{bottom:316.706667pt;}
.y84{bottom:317.346667pt;}
.y12d{bottom:317.826667pt;}
.y19c{bottom:319.426667pt;}
.y33{bottom:324.866667pt;}
.y169{bottom:325.026667pt;}
.y25{bottom:325.506667pt;}
.yb8{bottom:327.266667pt;}
.y83{bottom:332.706667pt;}
.y12c{bottom:333.186667pt;}
.yf9{bottom:334.626667pt;}
.y32{bottom:340.226667pt;}
.y168{bottom:340.386667pt;}
.y24{bottom:341.506667pt;}
.yb0{bottom:343.266667pt;}
.y19b{bottom:347.746667pt;}
.y82{bottom:348.066667pt;}
.y12b{bottom:348.546667pt;}
.yf8{bottom:352.706667pt;}
.y31{bottom:355.586667pt;}
.y167{bottom:355.746667pt;}
.y23{bottom:357.026667pt;}
.yb5{bottom:359.266667pt;}
.y81{bottom:363.426667pt;}
.y12a{bottom:363.746667pt;}
.yf7{bottom:370.626667pt;}
.y30{bottom:370.946667pt;}
.y166{bottom:371.106667pt;}
.y22{bottom:373.026667pt;}
.yb4{bottom:375.266667pt;}
.y19a{bottom:375.906667pt;}
.y80{bottom:378.786667pt;}
.y129{bottom:379.106667pt;}
.y2f{bottom:386.306667pt;}
.yf6{bottom:388.706667pt;}
.y21{bottom:389.346667pt;}
.yae{bottom:391.266667pt;}
.y7f{bottom:394.146667pt;}
.y128{bottom:394.466667pt;}
.y2e{bottom:401.506667pt;}
.y165{bottom:401.666667pt;}
.y199{bottom:404.226667pt;}
.y20{bottom:405.666667pt;}
.yf3{bottom:406.626667pt;}
.y125{bottom:407.586667pt;}
.y7e{bottom:409.346667pt;}
.y2d{bottom:416.866667pt;}
.y164{bottom:417.026667pt;}
.yad{bottom:419.746667pt;}
.y1f{bottom:421.826667pt;}
.y7d{bottom:424.706667pt;}
.y2c{bottom:432.226667pt;}
.y163{bottom:432.386667pt;}
.y198{bottom:432.546667pt;}
.yac{bottom:435.106667pt;}
.y7c{bottom:440.066667pt;}
.y127{bottom:441.986667pt;}
.yf2{bottom:442.626667pt;}
.y162{bottom:445.506667pt;}
.y1e{bottom:446.306667pt;}
.y2b{bottom:447.586667pt;}
.yab{bottom:450.466667pt;}
.y7b{bottom:455.426667pt;}
.y122{bottom:459.106667pt;}
.yf0{bottom:460.706667pt;}
.y1d{bottom:462.626667pt;}
.y2a{bottom:462.946667pt;}
.yaa{bottom:465.826667pt;}
.y7a{bottom:470.786667pt;}
.y124{bottom:475.106667pt;}
.y160{bottom:476.866667pt;}
.ya9{bottom:481.186667pt;}
.yee{bottom:481.506667pt;}
.y79{bottom:485.986667pt;}
.y197{bottom:489.026667pt;}
.y123{bottom:491.106667pt;}
.y15f{bottom:494.146667pt;}
.ya8{bottom:496.386667pt;}
.yed{bottom:496.866667pt;}
.y78{bottom:501.346667pt;}
.y11f{bottom:507.106667pt;}
.ya7{bottom:509.506667pt;}
.y15e{bottom:511.426667pt;}
.yec{bottom:512.226667pt;}
.y77{bottom:516.706667pt;}
.y196{bottom:517.346667pt;}
.y121{bottom:523.106667pt;}
.yeb{bottom:527.586667pt;}
.y15c{bottom:528.546667pt;}
.ya6{bottom:530.466667pt;}
.y76{bottom:532.066667pt;}
.y120{bottom:539.133333pt;}
.yea{bottom:542.813333pt;}
.y195{bottom:545.533333pt;}
.y75{bottom:547.453333pt;}
.ya5{bottom:551.453333pt;}
.y11c{bottom:555.133333pt;}
.ye9{bottom:558.173333pt;}
.y15b{bottom:559.933333pt;}
.y74{bottom:562.813333pt;}
.y11e{bottom:571.133333pt;}
.ya4{bottom:572.413333pt;}
.ye8{bottom:573.533333pt;}
.y194{bottom:573.853333pt;}
.y15a{bottom:577.213333pt;}
.y1ab{bottom:578.013333pt;}
.y73{bottom:582.653333pt;}
.y11d{bottom:587.133333pt;}
.ye7{bottom:588.893333pt;}
.y72{bottom:593.373333pt;}
.y159{bottom:594.493333pt;}
.y193{bottom:602.173333pt;}
.y11a{bottom:603.133333pt;}
.ye6{bottom:604.253333pt;}
.y71{bottom:608.733333pt;}
.y158{bottom:611.773333pt;}
.ya3{bottom:614.173333pt;}
.y11b{bottom:619.133333pt;}
.ye5{bottom:619.613333pt;}
.y192{bottom:621.533333pt;}
.y70{bottom:624.093333pt;}
.y157{bottom:629.053333pt;}
.ye4{bottom:634.813333pt;}
.ya2{bottom:635.133333pt;}
.y6f{bottom:639.453333pt;}
.y191{bottom:641.053333pt;}
.y156{bottom:646.333333pt;}
.ydf{bottom:647.933333pt;}
.y117{bottom:651.133333pt;}
.y1aa{bottom:654.813333pt;}
.ya0{bottom:656.093333pt;}
.y6e{bottom:659.453333pt;}
.y190{bottom:660.573333pt;}
.y155{bottom:663.613333pt;}
.ye3{bottom:663.933333pt;}
.y119{bottom:667.133333pt;}
.y6d{bottom:670.013333pt;}
.y9f{bottom:677.053333pt;}
.ye2{bottom:679.933333pt;}
.y154{bottom:680.893333pt;}
.y118{bottom:683.133333pt;}
.y6c{bottom:685.373333pt;}
.ydc{bottom:695.933333pt;}
.y9e{bottom:698.013333pt;}
.y153{bottom:698.173333pt;}
.y114{bottom:699.133333pt;}
.y6b{bottom:700.733333pt;}
.y18f{bottom:708.253333pt;}
.yde{bottom:711.933333pt;}
.y116{bottom:715.133333pt;}
.y151{bottom:715.453333pt;}
.y6a{bottom:716.093333pt;}
.y9c{bottom:718.973333pt;}
.y18e{bottom:727.773333pt;}
.ydd{bottom:727.933333pt;}
.y115{bottom:731.133333pt;}
.y69{bottom:731.453333pt;}
.y150{bottom:732.573333pt;}
.y9b{bottom:739.773333pt;}
.yd9{bottom:743.933333pt;}
.y1a{bottom:744.733333pt;}
.y68{bottom:746.653333pt;}
.y111{bottom:747.133333pt;}
.y14b{bottom:749.853333pt;}
.y9a{bottom:755.773333pt;}
.y18c{bottom:755.933333pt;}
.ydb{bottom:759.933333pt;}
.y67{bottom:762.013333pt;}
.y113{bottom:763.133333pt;}
.y10{bottom:770.973333pt;}
.y98{bottom:771.773333pt;}
.yda{bottom:775.973333pt;}
.y66{bottom:777.413333pt;}
.y112{bottom:779.173333pt;}
.y14e{bottom:781.253333pt;}
.y97{bottom:787.813333pt;}
.yd6{bottom:791.973333pt;}
.y65{bottom:792.773333pt;}
.y10e{bottom:795.173333pt;}
.y18b{bottom:798.053333pt;}
.y14a{bottom:801.413333pt;}
.y96{bottom:803.813333pt;}
.yd8{bottom:807.973333pt;}
.y1a9{bottom:808.133333pt;}
.y110{bottom:811.173333pt;}
.y64{bottom:812.773333pt;}
.y149{bottom:816.773333pt;}
.y189{bottom:817.573333pt;}
.y95{bottom:819.813333pt;}
.y63{bottom:823.493333pt;}
.yd7{bottom:823.973333pt;}
.y10f{bottom:827.173333pt;}
.y148{bottom:832.133333pt;}
.y62{bottom:838.693333pt;}
.yd3{bottom:839.973333pt;}
.y10c{bottom:843.173333pt;}
.y188{bottom:845.733333pt;}
.y147{bottom:847.493333pt;}
.y61{bottom:854.053333pt;}
.yd5{bottom:859.173333pt;}
.y146{bottom:862.693333pt;}
.y60{bottom:869.413333pt;}
.y186{bottom:874.053333pt;}
.y10d{bottom:875.173333pt;}
.y145{bottom:878.053333pt;}
.yd4{bottom:878.373333pt;}
.y5f{bottom:884.773333pt;}
.y109{bottom:891.173333pt;}
.y144{bottom:893.413333pt;}
.ycd{bottom:897.573333pt;}
.y5e{bottom:900.133333pt;}
.y185{bottom:902.373333pt;}
.y10b{bottom:907.173333pt;}
.y143{bottom:908.773333pt;}
.y5d{bottom:915.493333pt;}
.yd2{bottom:916.773333pt;}
.ye{bottom:919.973333pt;}
.y184{bottom:921.733333pt;}
.y10a{bottom:923.173333pt;}
.y142{bottom:924.133333pt;}
.y94{bottom:930.693333pt;}
.y5c{bottom:935.333333pt;}
.yd0{bottom:935.973333pt;}
.y108{bottom:939.173333pt;}
.y141{bottom:939.493333pt;}
.y7{bottom:942.533333pt;}
.y5b{bottom:946.053333pt;}
.y182{bottom:950.053333pt;}
.y13f{bottom:952.453333pt;}
.yca{bottom:955.173333pt;}
.y5a{bottom:961.413333pt;}
.y180{bottom:969.573333pt;}
.ycc{bottom:971.173333pt;}
.y59{bottom:976.773333pt;}
.y13e{bottom:977.253333pt;}
.ycb{bottom:987.173333pt;}
.y179{bottom:988.933333pt;}
.y58{bottom:992.133333pt;}
.y13d{bottom:1001.893333pt;}
.yc6{bottom:1003.173333pt;}
.y57{bottom:1007.493333pt;}
.yc9{bottom:1019.200000pt;}
.y56{bottom:1022.720000pt;}
.y13c{bottom:1026.560000pt;}
.y17c{bottom:1031.040000pt;}
.yc8{bottom:1035.200000pt;}
.y93{bottom:1038.080000pt;}
.y55{bottom:1042.720000pt;}
.h1c{height:15.360000pt;}
.h1d{height:15.392000pt;}
.h2c{height:16.480000pt;}
.h2d{height:16.640000pt;}
.h27{height:17.280000pt;}
.h25{height:18.560000pt;}
.h3a{height:18.720000pt;}
.h38{height:18.880000pt;}
.h1e{height:20.160000pt;}
.h1f{height:20.320000pt;}
.h20{height:20.352000pt;}
.hb{height:22.240000pt;}
.h2f{height:24.000000pt;}
.h31{height:24.032000pt;}
.h21{height:24.960000pt;}
.h1b{height:24.991875pt;}
.h29{height:25.760000pt;}
.h12{height:26.240000pt;}
.h3e{height:27.520000pt;}
.h3f{height:27.552000pt;}
.h3d{height:27.680000pt;}
.h40{height:27.712000pt;}
.h11{height:27.810000pt;}
.h2{height:29.312000pt;}
.h35{height:30.720000pt;}
.h33{height:30.752000pt;}
.h2a{height:31.360000pt;}
.h34{height:33.760000pt;}
.h37{height:33.867188pt;}
.h10{height:34.374375pt;}
.h3b{height:34.710938pt;}
.h19{height:37.479688pt;}
.h15{height:37.583438pt;}
.h3c{height:38.240000pt;}
.h17{height:38.413438pt;}
.h42{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h39{height:41.472000pt;}
.h16{height:42.745000pt;}
.h1a{height:43.551875pt;}
.he{height:47.125000pt;}
.h22{height:47.360000pt;}
.h23{height:47.392000pt;}
.h4{height:47.742188pt;}
.h32{height:48.032000pt;}
.h30{height:48.640000pt;}
.h18{height:48.800000pt;}
.h3{height:49.148438pt;}
.h2b{height:50.880000pt;}
.h9{height:52.834688pt;}
.h26{height:53.280000pt;}
.hf{height:53.946875pt;}
.h13{height:54.390938pt;}
.h24{height:56.960000pt;}
.h7{height:58.563750pt;}
.h36{height:60.992000pt;}
.h6{height:63.656250pt;}
.h5{height:65.531250pt;}
.h2e{height:73.440000pt;}
.h41{height:77.280000pt;}
.h28{height:107.200000pt;}
.h8{height:108.032000pt;}
.hc{height:148.986667pt;}
.h14{height:475.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w31{width:27.040000pt;}
.w3f{width:40.480000pt;}
.w2e{width:51.200000pt;}
.w3c{width:52.160000pt;}
.w2f{width:56.032000pt;}
.w3d{width:60.640000pt;}
.w20{width:62.080000pt;}
.w15{width:63.200000pt;}
.w3a{width:63.680000pt;}
.w3b{width:63.872000pt;}
.w3{width:64.960000pt;}
.w38{width:67.360000pt;}
.w2c{width:69.280000pt;}
.w2d{width:69.312000pt;}
.w2a{width:69.472000pt;}
.w36{width:69.952000pt;}
.w39{width:70.112000pt;}
.w37{width:71.680000pt;}
.w29{width:73.760000pt;}
.w28{width:73.792000pt;}
.w2b{width:76.960000pt;}
.w3e{width:82.592000pt;}
.w30{width:107.232000pt;}
.w27{width:107.872000pt;}
.w35{width:113.440000pt;}
.w32{width:123.872000pt;}
.w10{width:127.840000pt;}
.wf{width:127.872000pt;}
.w1b{width:128.320000pt;}
.w1a{width:128.352000pt;}
.w18{width:131.232000pt;}
.w24{width:134.906667pt;}
.w5{width:135.066667pt;}
.w23{width:136.506667pt;}
.w22{width:136.666667pt;}
.w17{width:138.106667pt;}
.w21{width:146.266667pt;}
.w16{width:148.026667pt;}
.wc{width:159.386667pt;}
.w13{width:164.666667pt;}
.w1e{width:165.466667pt;}
.w11{width:194.786667pt;}
.w12{width:195.226667pt;}
.w1c{width:195.746667pt;}
.w1d{width:196.026667pt;}
.w34{width:199.106667pt;}
.w33{width:210.266667pt;}
.w26{width:216.986667pt;}
.w25{width:218.306667pt;}
.w8{width:218.466667pt;}
.wa{width:243.106667pt;}
.wb{width:243.546667pt;}
.we{width:390.333333pt;}
.w19{width:392.093333pt;}
.w14{width:418.013333pt;}
.w1f{width:420.093333pt;}
.w9{width:431.426667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.wd{width:646.693333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.720000pt;}
.x2{left:7.712000pt;}
.xc{left:9.152000pt;}
.x13{left:11.200000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x3a{left:96.031988pt;}
.xe{left:105.626667pt;}
.xf{left:120.026667pt;}
.xd{left:138.426667pt;}
.x10{left:139.546667pt;}
.x38{left:156.026667pt;}
.x2f{left:180.506667pt;}
.x25{left:195.546655pt;}
.x31{left:197.146667pt;}
.x5{left:207.066667pt;}
.x26{left:208.186667pt;}
.x30{left:213.946655pt;}
.x11{left:221.666667pt;}
.x1b{left:237.626667pt;}
.x8{left:242.146667pt;}
.x1a{left:260.226655pt;}
.x19{left:267.746667pt;}
.x21{left:268.706667pt;}
.x2a{left:282.626667pt;}
.x12{left:290.466667pt;}
.x1e{left:304.546655pt;}
.x14{left:310.466655pt;}
.xa{left:313.186667pt;}
.x15{left:316.066667pt;}
.xb{left:324.866667pt;}
.x6{left:330.626667pt;}
.x34{left:340.066667pt;}
.x7{left:344.866667pt;}
.x39{left:352.066655pt;}
.x2b{left:357.026667pt;}
.x23{left:385.026667pt;}
.x1c{left:385.986667pt;}
.x9{left:390.826667pt;}
.x32{left:408.066667pt;}
.x27{left:427.133333pt;}
.x17{left:463.293333pt;}
.x1f{left:465.053333pt;}
.x35{left:478.813333pt;}
.x2c{left:504.893333pt;}
.x24{left:522.013333pt;}
.x1d{left:524.413333pt;}
.x36{left:543.293333pt;}
.x16{left:559.933333pt;}
.x2d{left:574.813333pt;}
.x18{left:591.493333pt;}
.x20{left:593.733333pt;}
.x33{left:607.813333pt;}
.x28{left:644.933333pt;}
.x3{left:656.933333pt;}
.x22{left:659.173333pt;}
.x37{left:660.613333pt;}
.x2e{left:696.773333pt;}
}




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