
    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_4e4ee3a678018d348c9d92b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_5b3f2271c4563d0fa23b99c4.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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_c21e8880149e9ad20f7f7a7c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e5cac94415680bc4862a013d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_773df5fc4573cc437788af31.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_44d7eccfd631345f0eeeca47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_1541aa395e569b5b46062a72.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ae629558ca00666f34f64d5b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29ae50a7353917fd885cdf84.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_045ccc31910051fb06650dee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9e3501f65cf058bf6abd8d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.060059;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_ac7b5c9bcce32f00e541853a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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_16fe40284b786a093a9fe1df.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_3b9233433c4ecd591d3706c1.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c789d2e7d5147a03bd7a5d20.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.977539;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_962b221dd73e9fd710469dee.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.478200px;}
.ls14{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.081600px;}
.lsa{letter-spacing:0.144000px;}
.lse{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.311040px;}
.ls9{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.869760px;}
.ls7{letter-spacing:1.080000px;}
.ls10{letter-spacing:3.600000px;}
.ls12{letter-spacing:7.920000px;}
.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;}
}
.wse{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wsd{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.450800px;}
.ws2{word-spacing:-16.020000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.935680px;}
.ws3{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.134600px;}
.wsb{word-spacing:-10.019040px;}
.ws4{word-spacing:-8.576640px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-4.350720px;}
._12{margin-left:-2.274000px;}
._0{margin-left:-1.026000px;}
._1{width:1.356000px;}
._2{width:2.400720px;}
._4{width:4.026720px;}
._8{width:5.843760px;}
._5{width:7.452960px;}
._7{width:8.814240px;}
._6{width:10.109520px;}
._9{width:12.011760px;}
._18{width:13.103040px;}
._f{width:14.832000px;}
._11{width:16.200000px;}
._b{width:19.296000px;}
._d{width:20.448000px;}
._e{width:21.468000px;}
._15{width:23.256000px;}
._13{width:24.954000px;}
._10{width:26.208000px;}
._25{width:27.270000px;}
._1b{width:28.314000px;}
._1a{width:29.448000px;}
._1f{width:30.672000px;}
._19{width:32.076000px;}
._c{width:33.138000px;}
._22{width:34.236000px;}
._29{width:39.096000px;}
._24{width:40.896000px;}
._21{width:42.264000px;}
._20{width:43.344000px;}
._23{width:44.496000px;}
._16{width:48.096000px;}
._17{width:49.794000px;}
._27{width:77.202000px;}
._3{width:81.534240px;}
._1d{width:84.528000px;}
._1e{width:85.680000px;}
._28{width:104.976000px;}
._2a{width:203.688000px;}
._2b{width:204.696000px;}
._1c{width:312.024000px;}
._a{width:652.610400px;}
._26{width:898.140000px;}
._2c{width:1065.036000px;}
.fc7{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc1{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y3a{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:2.310000px;}
.y3e{bottom:3.030000px;}
.y3{bottom:4.500000px;}
.y40{bottom:5.040000px;}
.ydc{bottom:5.940000px;}
.y91{bottom:6.120000px;}
.y104{bottom:7.005000px;}
.yed{bottom:7.200000px;}
.yfe{bottom:7.365000px;}
.yf6{bottom:7.380000px;}
.yf0{bottom:7.560000px;}
.y1ae{bottom:15.480000px;}
.yae{bottom:16.005000px;}
.y90{bottom:16.020000px;}
.yb2{bottom:16.050000px;}
.y96{bottom:16.200000px;}
.ya8{bottom:16.365000px;}
.y99{bottom:16.380000px;}
.yb3{bottom:16.410000px;}
.yab{bottom:16.545000px;}
.y97{bottom:16.560000px;}
.y160{bottom:17.100000px;}
.y196{bottom:17.460000px;}
.y12c{bottom:18.000000px;}
.yeb{bottom:19.080000px;}
.yee{bottom:19.440000px;}
.yca{bottom:21.420000px;}
.ydb{bottom:21.780000px;}
.yd5{bottom:21.945000px;}
.ycd{bottom:21.960000px;}
.y131{bottom:22.140000px;}
.y114{bottom:22.320000px;}
.y110{bottom:22.500000px;}
.y11e{bottom:22.530000px;}
.y45{bottom:22.680000px;}
.y2{bottom:23.220000px;}
.y121{bottom:27.705000px;}
.y122{bottom:28.065000px;}
.yec{bottom:30.960000px;}
.yfd{bottom:31.125000px;}
.yf5{bottom:31.140000px;}
.yef{bottom:31.320000px;}
.yc8{bottom:32.400000px;}
.yd7{bottom:32.925000px;}
.yce{bottom:32.940000px;}
.y120{bottom:33.645000px;}
.y10c{bottom:33.840000px;}
.y12f{bottom:34.020000px;}
.y115{bottom:34.200000px;}
.y111{bottom:34.380000px;}
.y41{bottom:37.800000px;}
.y1{bottom:39.060000px;}
.y37{bottom:40.680000px;}
.y13e{bottom:41.760000px;}
.y102{bottom:43.005000px;}
.yc9{bottom:43.200000px;}
.yd4{bottom:43.725000px;}
.ycc{bottom:43.740000px;}
.y10d{bottom:45.720000px;}
.y130{bottom:45.900000px;}
.y113{bottom:46.080000px;}
.y10f{bottom:46.260000px;}
.y11d{bottom:46.290000px;}
.y13d{bottom:53.640000px;}
.yd6{bottom:54.705000px;}
.yd1{bottom:54.720000px;}
.yfc{bottom:54.885000px;}
.yf4{bottom:54.900000px;}
.y101{bottom:55.065000px;}
.yf8{bottom:55.080000px;}
.yf2{bottom:55.110000px;}
.y135{bottom:57.960000px;}
.y119{bottom:58.140000px;}
.y13c{bottom:61.200000px;}
.yd3{bottom:65.505000px;}
.yd0{bottom:65.520000px;}
.y11b{bottom:70.020000px;}
.y118{bottom:70.050000px;}
.y100{bottom:78.825000px;}
.yfb{bottom:78.870000px;}
.y13b{bottom:84.960000px;}
.y133{bottom:93.780000px;}
.y139{bottom:93.810000px;}
.y137{bottom:93.960000px;}
.y117{bottom:93.990000px;}
.y35{bottom:100.230000px;}
.yfa{bottom:102.630000px;}
.y33{bottom:111.780000px;}
.y14b{bottom:111.960000px;}
.y6d{bottom:114.120000px;}
.y32{bottom:119.340000px;}
.y8f{bottom:124.200000px;}
.yb5{bottom:124.560000px;}
.y31{bottom:130.680000px;}
.y195{bottom:131.040000px;}
.y109{bottom:131.400000px;}
.y16f{bottom:132.120000px;}
.y12b{bottom:134.100000px;}
.y6c{bottom:138.060000px;}
.y178{bottom:149.220000px;}
.yda{bottom:153.360000px;}
.y14a{bottom:153.900000px;}
.y194{bottom:154.800000px;}
.y108{bottom:155.340000px;}
.y30{bottom:155.880000px;}
.y168{bottom:156.060000px;}
.yb4{bottom:157.320000px;}
.y12a{bottom:158.040000px;}
.y6b{bottom:161.820000px;}
.y8e{bottom:163.080000px;}
.y2f{bottom:174.060000px;}
.y193{bottom:178.740000px;}
.y107{bottom:179.100000px;}
.y167{bottom:179.820000px;}
.y129{bottom:181.800000px;}
.y6a{bottom:185.580000px;}
.yb1{bottom:190.080000px;}
.y177{bottom:191.340000px;}
.y2e{bottom:192.240000px;}
.y149{bottom:196.020000px;}
.y8d{bottom:201.960000px;}
.y106{bottom:202.860000px;}
.y166{bottom:203.580000px;}
.y128{bottom:205.560000px;}
.y1ad{bottom:207.750000px;}
.y2d{bottom:208.470000px;}
.y69{bottom:209.370000px;}
.yd9{bottom:211.905000px;}
.y148{bottom:219.990000px;}
.y192{bottom:220.530000px;}
.yb0{bottom:222.885000px;}
.y2c{bottom:226.470000px;}
.y105{bottom:226.650000px;}
.y165{bottom:227.370000px;}
.y127{bottom:229.350000px;}
.y68{bottom:233.310000px;}
.y8c{bottom:241.050000px;}
.y147{bottom:243.750000px;}
.y1ac{bottom:243.930000px;}
.y191{bottom:244.290000px;}
.y164{bottom:251.310000px;}
.y126{bottom:253.290000px;}
.y2b{bottom:255.810000px;}
.yaf{bottom:255.825000px;}
.y15f{bottom:257.070000px;}
.y103{bottom:262.665000px;}
.y146{bottom:267.510000px;}
.y190{bottom:268.230000px;}
.y67{bottom:275.070000px;}
.y125{bottom:277.050000px;}
.y2a{bottom:280.830000px;}
.y176{bottom:281.010000px;}
.y8b{bottom:282.450000px;}
.y1ab{bottom:286.050000px;}
.yff{bottom:286.425000px;}
.yad{bottom:288.585000px;}
.y145{bottom:291.270000px;}
.yd8{bottom:292.365000px;}
.y66{bottom:298.830000px;}
.y124{bottom:300.810000px;}
.y29{bottom:301.170000px;}
.y15e{bottom:304.770000px;}
.y18f{bottom:309.810000px;}
.y144{bottom:315.030000px;}
.y28{bottom:321.150000px;}
.yac{bottom:321.345000px;}
.y175{bottom:322.230000px;}
.y65{bottom:322.590000px;}
.y123{bottom:324.570000px;}
.y8a{bottom:324.750000px;}
.y1aa{bottom:327.810000px;}
.y18e{bottom:333.750000px;}
.y143{bottom:338.970000px;}
.y27{bottom:340.950000px;}
.y64{bottom:346.530000px;}
.y89{bottom:348.510000px;}
.yaa{bottom:354.105000px;}
.y18d{bottom:357.510000px;}
.y26{bottom:360.750000px;}
.y142{bottom:362.730000px;}
.y174{bottom:364.530000px;}
.y1a9{bottom:369.750000px;}
.y63{bottom:370.290000px;}
.y88{bottom:372.270000px;}
.yd2{bottom:372.825000px;}
.y25{bottom:380.550000px;}
.yf9{bottom:381.645000px;}
.y11f{bottom:384.345000px;}
.y141{bottom:386.490000px;}
.ya9{bottom:387.045000px;}
.y173{bottom:388.290000px;}
.y1a8{bottom:393.510000px;}
.y62{bottom:394.050000px;}
.y87{bottom:396.030000px;}
.y18c{bottom:399.270000px;}
.y24{bottom:400.350000px;}
.y140{bottom:410.250000px;}
.y172{bottom:412.050000px;}
.y1a7{bottom:417.270000px;}
.y61{bottom:417.810000px;}
.y16e{bottom:417.990000px;}
.ya7{bottom:419.805000px;}
.y86{bottom:419.970000px;}
.y23{bottom:420.330000px;}
.y18b{bottom:423.030000px;}
.y11c{bottom:434.385000px;}
.y171{bottom:435.810000px;}
.y22{bottom:440.130000px;}
.y1a6{bottom:441.255000px;}
.y60{bottom:441.795000px;}
.y85{bottom:443.775000px;}
.y13f{bottom:446.295000px;}
.y18a{bottom:447.015000px;}
.ya6{bottom:452.595000px;}
.ycf{bottom:453.315000px;}
.y16d{bottom:459.795000px;}
.y21{bottom:459.975000px;}
.y5f{bottom:465.555000px;}
.y20{bottom:479.775000px;}
.y1a5{bottom:483.015000px;}
.y16c{bottom:483.555000px;}
.y84{bottom:485.175000px;}
.ya5{bottom:485.355000px;}
.y189{bottom:488.775000px;}
.y5e{bottom:489.315000px;}
.y163{bottom:489.495000px;}
.y1f{bottom:499.575000px;}
.yf7{bottom:500.655000px;}
.y1a4{bottom:506.775000px;}
.y16b{bottom:507.315000px;}
.y13a{bottom:508.935000px;}
.y188{bottom:512.535000px;}
.y15d{bottom:513.075000px;}
.y5d{bottom:513.255000px;}
.ya4{bottom:518.295000px;}
.y1e{bottom:519.555000px;}
.y11a{bottom:520.815000px;}
.y83{bottom:527.295000px;}
.y1a3{bottom:530.715000px;}
.y162{bottom:531.075000px;}
.ycb{bottom:533.775000px;}
.y187{bottom:536.475000px;}
.y15c{bottom:537.015000px;}
.y1d{bottom:539.355000px;}
.ya3{bottom:551.055000px;}
.y82{bottom:551.235000px;}
.y5c{bottom:555.015000px;}
.y1c{bottom:559.155000px;}
.y15b{bottom:560.775000px;}
.yf3{bottom:572.115000px;}
.y1a2{bottom:572.295000px;}
.y186{bottom:578.055000px;}
.y5b{bottom:578.775000px;}
.y1b{bottom:578.955000px;}
.ya2{bottom:583.815000px;}
.y15a{bottom:584.535000px;}
.y81{bottom:592.455000px;}
.yc7{bottom:594.075000px;}
.y1a1{bottom:596.055000px;}
.y185{bottom:601.995000px;}
.y5a{bottom:602.535000px;}
.y116{bottom:607.215000px;}
.y159{bottom:608.475000px;}
.y1a{bottom:608.655000px;}
.y138{bottom:610.275000px;}
.ya1{bottom:616.575000px;}
.y1a0{bottom:619.995000px;}
.y59{bottom:626.295000px;}
.y19{bottom:630.075000px;}
.y80{bottom:634.755000px;}
.yf1{bottom:643.395000px;}
.y184{bottom:643.755000px;}
.y19f{bottom:643.935000px;}
.ya0{bottom:649.515000px;}
.y58{bottom:650.055000px;}
.y18{bottom:656.895000px;}
.y7f{bottom:658.515000px;}
.y183{bottom:667.515000px;}
.y57{bottom:673.995000px;}
.yc6{bottom:675.825000px;}
.y17{bottom:677.985000px;}
.y9f{bottom:682.305000px;}
.y7e{bottom:682.485000px;}
.y19e{bottom:685.545000px;}
.y182{bottom:691.305000px;}
.y56{bottom:697.785000px;}
.y16{bottom:699.045000px;}
.yc5{bottom:699.765000px;}
.y19d{bottom:709.485000px;}
.y9e{bottom:715.065000px;}
.y181{bottom:715.245000px;}
.yea{bottom:716.325000px;}
.y112{bottom:717.585000px;}
.y15{bottom:720.105000px;}
.y136{bottom:720.465000px;}
.y55{bottom:721.545000px;}
.y7d{bottom:723.705000px;}
.y14{bottom:741.165000px;}
.yc4{bottom:741.345000px;}
.y54{bottom:745.305000px;}
.y170{bottom:745.485000px;}
.y9d{bottom:747.825000px;}
.y19c{bottom:751.245000px;}
.y180{bottom:757.005000px;}
.y13{bottom:762.225000px;}
.yc3{bottom:765.285000px;}
.y7c{bottom:766.005000px;}
.y53{bottom:769.245000px;}
.y19b{bottom:775.005000px;}
.y10e{bottom:780.045000px;}
.y9c{bottom:780.585000px;}
.y17f{bottom:780.765000px;}
.ye9{bottom:787.245000px;}
.yc2{bottom:789.045000px;}
.y11{bottom:789.765000px;}
.y158{bottom:793.005000px;}
.y12{bottom:797.325000px;}
.y19a{bottom:798.765000px;}
.y17e{bottom:804.705000px;}
.y10{bottom:807.045000px;}
.y52{bottom:811.005000px;}
.ye8{bottom:811.185000px;}
.yc1{bottom:812.805000px;}
.y9b{bottom:813.525000px;}
.y157{bottom:816.765000px;}
.y16a{bottom:816.945000px;}
.y199{bottom:822.705000px;}
.y7b{bottom:828.105000px;}
.y134{bottom:830.805000px;}
.yf{bottom:834.765000px;}
.yc0{bottom:836.565000px;}
.y156{bottom:840.525000px;}
.y10b{bottom:844.305000px;}
.y9a{bottom:846.285000px;}
.y17d{bottom:846.465000px;}
.ye7{bottom:852.765000px;}
.ye{bottom:853.665000px;}
.y169{bottom:858.165000px;}
.y51{bottom:858.525000px;}
.ybf{bottom:860.505000px;}
.y155{bottom:864.465000px;}
.yd{bottom:869.325000px;}
.y7a{bottom:870.045000px;}
.y17c{bottom:870.225000px;}
.ye6{bottom:876.525000px;}
.y98{bottom:879.045000px;}
.y50{bottom:882.465000px;}
.yc{bottom:883.185000px;}
.ybe{bottom:884.265000px;}
.y154{bottom:888.225000px;}
.y17b{bottom:893.985000px;}
.ye5{bottom:900.465000px;}
.y161{bottom:905.865000px;}
.y4f{bottom:906.225000px;}
.ybd{bottom:908.025000px;}
.y79{bottom:909.285000px;}
.y95{bottom:911.850000px;}
.y153{bottom:912.030000px;}
.y198{bottom:912.210000px;}
.yb{bottom:915.630000px;}
.y132{bottom:917.250000px;}
.y17a{bottom:917.970000px;}
.ye4{bottom:924.270000px;}
.y4e{bottom:930.030000px;}
.ybc{bottom:931.830000px;}
.y78{bottom:933.090000px;}
.y152{bottom:935.790000px;}
.y94{bottom:945.510000px;}
.ya{bottom:947.850000px;}
.ye3{bottom:948.030000px;}
.y4d{bottom:953.790000px;}
.y10a{bottom:953.970000px;}
.ybb{bottom:955.770000px;}
.y77{bottom:956.850000px;}
.y151{bottom:959.730000px;}
.ye2{bottom:971.790000px;}
.y9{bottom:974.130000px;}
.y4c{bottom:977.730000px;}
.y76{bottom:980.610000px;}
.y150{bottom:983.490000px;}
.y93{bottom:986.010000px;}
.y3f{bottom:988.200000px;}
.y3b{bottom:988.920000px;}
.y3d{bottom:990.000000px;}
.yba{bottom:990.870000px;}
.y8{bottom:993.390000px;}
.ye1{bottom:995.730000px;}
.y4b{bottom:1001.490000px;}
.y75{bottom:1004.370000px;}
.y14f{bottom:1007.250000px;}
.y179{bottom:1007.430000px;}
.y92{bottom:1010.310000px;}
.y34{bottom:1011.780000px;}
.ye0{bottom:1019.490000px;}
.yb9{bottom:1023.630000px;}
.y4a{bottom:1025.250000px;}
.y197{bottom:1025.430000px;}
.y7{bottom:1027.590000px;}
.y74{bottom:1028.310000px;}
.y12e{bottom:1028.850000px;}
.y14e{bottom:1031.010000px;}
.ydf{bottom:1043.250000px;}
.y49{bottom:1049.010000px;}
.y73{bottom:1052.070000px;}
.y14d{bottom:1054.950000px;}
.yb8{bottom:1056.390000px;}
.y6{bottom:1062.870000px;}
.yde{bottom:1067.010000px;}
.y48{bottom:1072.950000px;}
.y72{bottom:1075.830000px;}
.yb7{bottom:1089.330000px;}
.ydd{bottom:1090.950000px;}
.y14c{bottom:1096.170000px;}
.y47{bottom:1096.710000px;}
.y5{bottom:1101.030000px;}
.y71{bottom:1114.710000px;}
.yb6{bottom:1122.090000px;}
.y46{bottom:1138.110000px;}
.y70{bottom:1138.470000px;}
.y12d{bottom:1138.650000px;}
.y4{bottom:1139.190000px;}
.y44{bottom:1169.460000px;}
.y6f{bottom:1180.440000px;}
.y43{bottom:1183.500000px;}
.y6e{bottom:1196.280000px;}
.y42{bottom:1197.540000px;}
.y36{bottom:1207.800000px;}
.y39{bottom:1222.200000px;}
.y38{bottom:1235.340000px;}
.h1b{height:13.680000px;}
.h1c{height:14.400000px;}
.h8{height:17.666016px;}
.h33{height:18.000000px;}
.h21{height:18.180000px;}
.h3a{height:23.745000px;}
.h23{height:32.745000px;}
.h2b{height:32.758500px;}
.h26{height:32.760000px;}
.h29{height:32.781000px;}
.h25{height:32.782500px;}
.h28{height:32.790000px;}
.h2a{height:32.796000px;}
.h18{height:32.918906px;}
.h24{height:32.925000px;}
.h27{height:32.940000px;}
.h19{height:35.357344px;}
.h6{height:36.281250px;}
.h22{height:38.464805px;}
.h5{height:38.469727px;}
.h14{height:38.671172px;}
.h17{height:39.183750px;}
.he{height:39.810234px;}
.h1d{height:40.843828px;}
.h2{height:45.720703px;}
.h31{height:46.251562px;}
.h34{height:47.700000px;}
.h1e{height:49.500000px;}
.h16{height:49.680000px;}
.h40{height:50.025000px;}
.h20{height:50.273438px;}
.h13{height:50.597578px;}
.h42{height:50.800781px;}
.h4{height:53.709961px;}
.h2c{height:58.485000px;}
.h32{height:58.536000px;}
.h11{height:58.651172px;}
.h2d{height:58.665000px;}
.hf{height:59.439023px;}
.h9{height:60.226875px;}
.hc{height:61.189805px;}
.h12{height:62.184375px;}
.h3b{height:62.460000px;}
.h41{height:62.625000px;}
.h3c{height:62.640000px;}
.h2e{height:65.010937px;}
.h10{height:65.837812px;}
.h3{height:65.884219px;}
.h1a{height:66.757500px;}
.hb{height:67.824844px;}
.ha{height:70.664062px;}
.h36{height:71.265000px;}
.h37{height:71.445000px;}
.h35{height:71.490000px;}
.h1f{height:72.562500px;}
.h2f{height:80.445000px;}
.h30{height:80.481000px;}
.h7{height:81.078047px;}
.h3e{height:86.385000px;}
.h3f{height:86.421000px;}
.h44{height:86.422500px;}
.h39{height:95.205000px;}
.h47{height:101.325000px;}
.h43{height:110.145000px;}
.h46{height:110.190000px;}
.h45{height:110.340000px;}
.h3d{height:110.370000px;}
.h15{height:116.100000px;}
.h38{height:119.001000px;}
.hd{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:34.596000px;}
.w22{width:35.625000px;}
.w23{width:40.665000px;}
.w1a{width:43.185000px;}
.w1b{width:43.365000px;}
.w18{width:43.380000px;}
.w16{width:44.269500px;}
.w20{width:44.640000px;}
.w21{width:44.676000px;}
.w2b{width:45.165000px;}
.w29{width:45.180000px;}
.w2a{width:45.396000px;}
.w12{width:47.145000px;}
.w10{width:47.196000px;}
.w11{width:47.325000px;}
.wd{width:47.329500px;}
.w1d{width:47.721000px;}
.w25{width:49.161000px;}
.wf{width:54.000000px;}
.w1c{width:57.225000px;}
.w13{width:60.825000px;}
.w24{width:61.725000px;}
.w2c{width:62.625000px;}
.w28{width:63.900000px;}
.w14{width:67.521000px;}
.w9{width:77.400000px;}
.w2d{width:79.761000px;}
.w2e{width:83.865000px;}
.w15{width:87.645000px;}
.w8{width:104.940000px;}
.w4{width:107.100000px;}
.w26{width:112.305000px;}
.w1e{width:113.925000px;}
.w7{width:153.180000px;}
.wb{width:161.490000px;}
.w5{width:176.400000px;}
.w27{width:202.875000px;}
.wc{width:234.375000px;}
.we{width:243.015000px;}
.wa{width:252.199500px;}
.w17{width:254.355000px;}
.w6{width:262.260000px;}
.w1f{width:265.155000px;}
.w3{width:671.220000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.089500px;}
.x15{left:10.836000px;}
.x17{left:13.500000px;}
.x2d{left:15.090000px;}
.x1b{left:16.170000px;}
.x21{left:17.970000px;}
.x16{left:53.460000px;}
.x3{left:108.036000px;}
.x1{left:110.196000px;}
.x1c{left:111.816000px;}
.x14{left:112.896000px;}
.xf{left:114.696000px;}
.x5{left:116.136000px;}
.x11{left:119.016000px;}
.xb{left:122.436000px;}
.x4{left:128.376000px;}
.x12{left:135.396000px;}
.x2e{left:152.325000px;}
.x25{left:155.385000px;}
.x45{left:162.030000px;}
.x6{left:169.950000px;}
.x1f{left:201.090000px;}
.x2{left:207.210000px;}
.x1e{left:210.810000px;}
.x7{left:266.610000px;}
.x10{left:272.190000px;}
.xe{left:274.170000px;}
.x13{left:324.075000px;}
.x18{left:328.680000px;}
.x3e{left:355.215000px;}
.x23{left:360.255000px;}
.x26{left:398.415000px;}
.x9{left:402.555000px;}
.x2f{left:406.695000px;}
.x36{left:417.495000px;}
.x3f{left:419.115000px;}
.x1d{left:445.395000px;}
.x8{left:446.475000px;}
.x30{left:450.075000px;}
.x27{left:452.415000px;}
.x37{left:462.135000px;}
.x40{left:464.295000px;}
.xc{left:467.173125px;}
.xd{left:472.065000px;}
.x31{left:484.680000px;}
.x28{left:499.620000px;}
.x38{left:506.820000px;}
.x41{left:509.700000px;}
.x24{left:521.760000px;}
.x32{left:527.880000px;}
.x39{left:542.460000px;}
.x29{left:546.960000px;}
.x42{left:554.880000px;}
.x33{left:571.080000px;}
.x3a{left:583.140000px;}
.x2a{left:594.120000px;}
.x43{left:617.520000px;}
.x34{left:628.320000px;}
.x19{left:638.820000px;}
.x3b{left:644.880000px;}
.x2b{left:654.960000px;}
.x35{left:676.050000px;}
.x3c{left:694.050000px;}
.x44{left:697.290000px;}
.x20{left:711.540000px;}
.x3d{left:719.460000px;}
.x2c{left:722.490000px;}
.xa{left:785.130000px;}
.x1a{left:788.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.425067pt;}
.ls14{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.072533pt;}
.lsa{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.276480pt;}
.ls9{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.773120pt;}
.ls7{letter-spacing:0.960000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls12{letter-spacing:7.040000pt;}
.wse{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wsd{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.622933pt;}
.ws2{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.276160pt;}
.ws3{word-spacing:-10.560000pt;}
.ws5{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.008533pt;}
.wsb{word-spacing:-8.905813pt;}
.ws4{word-spacing:-7.623680pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-3.867307pt;}
._12{margin-left:-2.021333pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.205333pt;}
._2{width:2.133973pt;}
._4{width:3.579307pt;}
._8{width:5.194453pt;}
._5{width:6.624853pt;}
._7{width:7.834880pt;}
._6{width:8.986240pt;}
._9{width:10.677120pt;}
._18{width:11.647147pt;}
._f{width:13.184000pt;}
._11{width:14.400000pt;}
._b{width:17.152000pt;}
._d{width:18.176000pt;}
._e{width:19.082667pt;}
._15{width:20.672000pt;}
._13{width:22.181333pt;}
._10{width:23.296000pt;}
._25{width:24.240000pt;}
._1b{width:25.168000pt;}
._1a{width:26.176000pt;}
._1f{width:27.264000pt;}
._19{width:28.512000pt;}
._c{width:29.456000pt;}
._22{width:30.432000pt;}
._29{width:34.752000pt;}
._24{width:36.352000pt;}
._21{width:37.568000pt;}
._20{width:38.528000pt;}
._23{width:39.552000pt;}
._16{width:42.752000pt;}
._17{width:44.261333pt;}
._27{width:68.624000pt;}
._3{width:72.474880pt;}
._1d{width:75.136000pt;}
._1e{width:76.160000pt;}
._28{width:93.312000pt;}
._2a{width:181.056000pt;}
._2b{width:181.952000pt;}
._1c{width:277.354667pt;}
._a{width:580.098133pt;}
._26{width:798.346667pt;}
._2c{width:946.698667pt;}
.fs4{font-size:16.000000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y3a{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.053333pt;}
.y3e{bottom:2.693333pt;}
.y3{bottom:4.000000pt;}
.y40{bottom:4.480000pt;}
.ydc{bottom:5.280000pt;}
.y91{bottom:5.440000pt;}
.y104{bottom:6.226667pt;}
.yed{bottom:6.400000pt;}
.yfe{bottom:6.546667pt;}
.yf6{bottom:6.560000pt;}
.yf0{bottom:6.720000pt;}
.y1ae{bottom:13.760000pt;}
.yae{bottom:14.226667pt;}
.y90{bottom:14.240000pt;}
.yb2{bottom:14.266667pt;}
.y96{bottom:14.400000pt;}
.ya8{bottom:14.546667pt;}
.y99{bottom:14.560000pt;}
.yb3{bottom:14.586667pt;}
.yab{bottom:14.706667pt;}
.y97{bottom:14.720000pt;}
.y160{bottom:15.200000pt;}
.y196{bottom:15.520000pt;}
.y12c{bottom:16.000000pt;}
.yeb{bottom:16.960000pt;}
.yee{bottom:17.280000pt;}
.yca{bottom:19.040000pt;}
.ydb{bottom:19.360000pt;}
.yd5{bottom:19.506667pt;}
.ycd{bottom:19.520000pt;}
.y131{bottom:19.680000pt;}
.y114{bottom:19.840000pt;}
.y110{bottom:20.000000pt;}
.y11e{bottom:20.026667pt;}
.y45{bottom:20.160000pt;}
.y2{bottom:20.640000pt;}
.y121{bottom:24.626667pt;}
.y122{bottom:24.946667pt;}
.yec{bottom:27.520000pt;}
.yfd{bottom:27.666667pt;}
.yf5{bottom:27.680000pt;}
.yef{bottom:27.840000pt;}
.yc8{bottom:28.800000pt;}
.yd7{bottom:29.266667pt;}
.yce{bottom:29.280000pt;}
.y120{bottom:29.906667pt;}
.y10c{bottom:30.080000pt;}
.y12f{bottom:30.240000pt;}
.y115{bottom:30.400000pt;}
.y111{bottom:30.560000pt;}
.y41{bottom:33.600000pt;}
.y1{bottom:34.720000pt;}
.y37{bottom:36.160000pt;}
.y13e{bottom:37.120000pt;}
.y102{bottom:38.226667pt;}
.yc9{bottom:38.400000pt;}
.yd4{bottom:38.866667pt;}
.ycc{bottom:38.880000pt;}
.y10d{bottom:40.640000pt;}
.y130{bottom:40.800000pt;}
.y113{bottom:40.960000pt;}
.y10f{bottom:41.120000pt;}
.y11d{bottom:41.146667pt;}
.y13d{bottom:47.680000pt;}
.yd6{bottom:48.626667pt;}
.yd1{bottom:48.640000pt;}
.yfc{bottom:48.786667pt;}
.yf4{bottom:48.800000pt;}
.y101{bottom:48.946667pt;}
.yf8{bottom:48.960000pt;}
.yf2{bottom:48.986667pt;}
.y135{bottom:51.520000pt;}
.y119{bottom:51.680000pt;}
.y13c{bottom:54.400000pt;}
.yd3{bottom:58.226667pt;}
.yd0{bottom:58.240000pt;}
.y11b{bottom:62.240000pt;}
.y118{bottom:62.266667pt;}
.y100{bottom:70.066667pt;}
.yfb{bottom:70.106667pt;}
.y13b{bottom:75.520000pt;}
.y133{bottom:83.360000pt;}
.y139{bottom:83.386667pt;}
.y137{bottom:83.520000pt;}
.y117{bottom:83.546667pt;}
.y35{bottom:89.093333pt;}
.yfa{bottom:91.226667pt;}
.y33{bottom:99.360000pt;}
.y14b{bottom:99.520000pt;}
.y6d{bottom:101.440000pt;}
.y32{bottom:106.080000pt;}
.y8f{bottom:110.400000pt;}
.yb5{bottom:110.720000pt;}
.y31{bottom:116.160000pt;}
.y195{bottom:116.480000pt;}
.y109{bottom:116.800000pt;}
.y16f{bottom:117.440000pt;}
.y12b{bottom:119.200000pt;}
.y6c{bottom:122.720000pt;}
.y178{bottom:132.640000pt;}
.yda{bottom:136.320000pt;}
.y14a{bottom:136.800000pt;}
.y194{bottom:137.600000pt;}
.y108{bottom:138.080000pt;}
.y30{bottom:138.560000pt;}
.y168{bottom:138.720000pt;}
.yb4{bottom:139.840000pt;}
.y12a{bottom:140.480000pt;}
.y6b{bottom:143.840000pt;}
.y8e{bottom:144.960000pt;}
.y2f{bottom:154.720000pt;}
.y193{bottom:158.880000pt;}
.y107{bottom:159.200000pt;}
.y167{bottom:159.840000pt;}
.y129{bottom:161.600000pt;}
.y6a{bottom:164.960000pt;}
.yb1{bottom:168.960000pt;}
.y177{bottom:170.080000pt;}
.y2e{bottom:170.880000pt;}
.y149{bottom:174.240000pt;}
.y8d{bottom:179.520000pt;}
.y106{bottom:180.320000pt;}
.y166{bottom:180.960000pt;}
.y128{bottom:182.720000pt;}
.y1ad{bottom:184.666667pt;}
.y2d{bottom:185.306667pt;}
.y69{bottom:186.106667pt;}
.yd9{bottom:188.360000pt;}
.y148{bottom:195.546667pt;}
.y192{bottom:196.026667pt;}
.yb0{bottom:198.120000pt;}
.y2c{bottom:201.306667pt;}
.y105{bottom:201.466667pt;}
.y165{bottom:202.106667pt;}
.y127{bottom:203.866667pt;}
.y68{bottom:207.386667pt;}
.y8c{bottom:214.266667pt;}
.y147{bottom:216.666667pt;}
.y1ac{bottom:216.826667pt;}
.y191{bottom:217.146667pt;}
.y164{bottom:223.386667pt;}
.y126{bottom:225.146667pt;}
.y2b{bottom:227.386667pt;}
.yaf{bottom:227.400000pt;}
.y15f{bottom:228.506667pt;}
.y103{bottom:233.480000pt;}
.y146{bottom:237.786667pt;}
.y190{bottom:238.426667pt;}
.y67{bottom:244.506667pt;}
.y125{bottom:246.266667pt;}
.y2a{bottom:249.626667pt;}
.y176{bottom:249.786667pt;}
.y8b{bottom:251.066667pt;}
.y1ab{bottom:254.266667pt;}
.yff{bottom:254.600000pt;}
.yad{bottom:256.520000pt;}
.y145{bottom:258.906667pt;}
.yd8{bottom:259.880000pt;}
.y66{bottom:265.626667pt;}
.y124{bottom:267.386667pt;}
.y29{bottom:267.706667pt;}
.y15e{bottom:270.906667pt;}
.y18f{bottom:275.386667pt;}
.y144{bottom:280.026667pt;}
.y28{bottom:285.466667pt;}
.yac{bottom:285.640000pt;}
.y175{bottom:286.426667pt;}
.y65{bottom:286.746667pt;}
.y123{bottom:288.506667pt;}
.y8a{bottom:288.666667pt;}
.y1aa{bottom:291.386667pt;}
.y18e{bottom:296.666667pt;}
.y143{bottom:301.306667pt;}
.y27{bottom:303.066667pt;}
.y64{bottom:308.026667pt;}
.y89{bottom:309.786667pt;}
.yaa{bottom:314.760000pt;}
.y18d{bottom:317.786667pt;}
.y26{bottom:320.666667pt;}
.y142{bottom:322.426667pt;}
.y174{bottom:324.026667pt;}
.y1a9{bottom:328.666667pt;}
.y63{bottom:329.146667pt;}
.y88{bottom:330.906667pt;}
.yd2{bottom:331.400000pt;}
.y25{bottom:338.266667pt;}
.yf9{bottom:339.240000pt;}
.y11f{bottom:341.640000pt;}
.y141{bottom:343.546667pt;}
.ya9{bottom:344.040000pt;}
.y173{bottom:345.146667pt;}
.y1a8{bottom:349.786667pt;}
.y62{bottom:350.266667pt;}
.y87{bottom:352.026667pt;}
.y18c{bottom:354.906667pt;}
.y24{bottom:355.866667pt;}
.y140{bottom:364.666667pt;}
.y172{bottom:366.266667pt;}
.y1a7{bottom:370.906667pt;}
.y61{bottom:371.386667pt;}
.y16e{bottom:371.546667pt;}
.ya7{bottom:373.160000pt;}
.y86{bottom:373.306667pt;}
.y23{bottom:373.626667pt;}
.y18b{bottom:376.026667pt;}
.y11c{bottom:386.120000pt;}
.y171{bottom:387.386667pt;}
.y22{bottom:391.226667pt;}
.y1a6{bottom:392.226667pt;}
.y60{bottom:392.706667pt;}
.y85{bottom:394.466667pt;}
.y13f{bottom:396.706667pt;}
.y18a{bottom:397.346667pt;}
.ya6{bottom:402.306667pt;}
.ycf{bottom:402.946667pt;}
.y16d{bottom:408.706667pt;}
.y21{bottom:408.866667pt;}
.y5f{bottom:413.826667pt;}
.y20{bottom:426.466667pt;}
.y1a5{bottom:429.346667pt;}
.y16c{bottom:429.826667pt;}
.y84{bottom:431.266667pt;}
.ya5{bottom:431.426667pt;}
.y189{bottom:434.466667pt;}
.y5e{bottom:434.946667pt;}
.y163{bottom:435.106667pt;}
.y1f{bottom:444.066667pt;}
.yf7{bottom:445.026667pt;}
.y1a4{bottom:450.466667pt;}
.y16b{bottom:450.946667pt;}
.y13a{bottom:452.386667pt;}
.y188{bottom:455.586667pt;}
.y15d{bottom:456.066667pt;}
.y5d{bottom:456.226667pt;}
.ya4{bottom:460.706667pt;}
.y1e{bottom:461.826667pt;}
.y11a{bottom:462.946667pt;}
.y83{bottom:468.706667pt;}
.y1a3{bottom:471.746667pt;}
.y162{bottom:472.066667pt;}
.ycb{bottom:474.466667pt;}
.y187{bottom:476.866667pt;}
.y15c{bottom:477.346667pt;}
.y1d{bottom:479.426667pt;}
.ya3{bottom:489.826667pt;}
.y82{bottom:489.986667pt;}
.y5c{bottom:493.346667pt;}
.y1c{bottom:497.026667pt;}
.y15b{bottom:498.466667pt;}
.yf3{bottom:508.546667pt;}
.y1a2{bottom:508.706667pt;}
.y186{bottom:513.826667pt;}
.y5b{bottom:514.466667pt;}
.y1b{bottom:514.626667pt;}
.ya2{bottom:518.946667pt;}
.y15a{bottom:519.586667pt;}
.y81{bottom:526.626667pt;}
.yc7{bottom:528.066667pt;}
.y1a1{bottom:529.826667pt;}
.y185{bottom:535.106667pt;}
.y5a{bottom:535.586667pt;}
.y116{bottom:539.746667pt;}
.y159{bottom:540.866667pt;}
.y1a{bottom:541.026667pt;}
.y138{bottom:542.466667pt;}
.ya1{bottom:548.066667pt;}
.y1a0{bottom:551.106667pt;}
.y59{bottom:556.706667pt;}
.y19{bottom:560.066667pt;}
.y80{bottom:564.226667pt;}
.yf1{bottom:571.906667pt;}
.y184{bottom:572.226667pt;}
.y19f{bottom:572.386667pt;}
.ya0{bottom:577.346667pt;}
.y58{bottom:577.826667pt;}
.y18{bottom:583.906667pt;}
.y7f{bottom:585.346667pt;}
.y183{bottom:593.346667pt;}
.y57{bottom:599.106667pt;}
.yc6{bottom:600.733333pt;}
.y17{bottom:602.653333pt;}
.y9f{bottom:606.493333pt;}
.y7e{bottom:606.653333pt;}
.y19e{bottom:609.373333pt;}
.y182{bottom:614.493333pt;}
.y56{bottom:620.253333pt;}
.y16{bottom:621.373333pt;}
.yc5{bottom:622.013333pt;}
.y19d{bottom:630.653333pt;}
.y9e{bottom:635.613333pt;}
.y181{bottom:635.773333pt;}
.yea{bottom:636.733333pt;}
.y112{bottom:637.853333pt;}
.y15{bottom:640.093333pt;}
.y136{bottom:640.413333pt;}
.y55{bottom:641.373333pt;}
.y7d{bottom:643.293333pt;}
.y14{bottom:658.813333pt;}
.yc4{bottom:658.973333pt;}
.y54{bottom:662.493333pt;}
.y170{bottom:662.653333pt;}
.y9d{bottom:664.733333pt;}
.y19c{bottom:667.773333pt;}
.y180{bottom:672.893333pt;}
.y13{bottom:677.533333pt;}
.yc3{bottom:680.253333pt;}
.y7c{bottom:680.893333pt;}
.y53{bottom:683.773333pt;}
.y19b{bottom:688.893333pt;}
.y10e{bottom:693.373333pt;}
.y9c{bottom:693.853333pt;}
.y17f{bottom:694.013333pt;}
.ye9{bottom:699.773333pt;}
.yc2{bottom:701.373333pt;}
.y11{bottom:702.013333pt;}
.y158{bottom:704.893333pt;}
.y12{bottom:708.733333pt;}
.y19a{bottom:710.013333pt;}
.y17e{bottom:715.293333pt;}
.y10{bottom:717.373333pt;}
.y52{bottom:720.893333pt;}
.ye8{bottom:721.053333pt;}
.yc1{bottom:722.493333pt;}
.y9b{bottom:723.133333pt;}
.y157{bottom:726.013333pt;}
.y16a{bottom:726.173333pt;}
.y199{bottom:731.293333pt;}
.y7b{bottom:736.093333pt;}
.y134{bottom:738.493333pt;}
.yf{bottom:742.013333pt;}
.yc0{bottom:743.613333pt;}
.y156{bottom:747.133333pt;}
.y10b{bottom:750.493333pt;}
.y9a{bottom:752.253333pt;}
.y17d{bottom:752.413333pt;}
.ye7{bottom:758.013333pt;}
.ye{bottom:758.813333pt;}
.y169{bottom:762.813333pt;}
.y51{bottom:763.133333pt;}
.ybf{bottom:764.893333pt;}
.y155{bottom:768.413333pt;}
.yd{bottom:772.733333pt;}
.y7a{bottom:773.373333pt;}
.y17c{bottom:773.533333pt;}
.ye6{bottom:779.133333pt;}
.y98{bottom:781.373333pt;}
.y50{bottom:784.413333pt;}
.yc{bottom:785.053333pt;}
.ybe{bottom:786.013333pt;}
.y154{bottom:789.533333pt;}
.y17b{bottom:794.653333pt;}
.ye5{bottom:800.413333pt;}
.y161{bottom:805.213333pt;}
.y4f{bottom:805.533333pt;}
.ybd{bottom:807.133333pt;}
.y79{bottom:808.253333pt;}
.y95{bottom:810.533333pt;}
.y153{bottom:810.693333pt;}
.y198{bottom:810.853333pt;}
.yb{bottom:813.893333pt;}
.y132{bottom:815.333333pt;}
.y17a{bottom:815.973333pt;}
.ye4{bottom:821.573333pt;}
.y4e{bottom:826.693333pt;}
.ybc{bottom:828.293333pt;}
.y78{bottom:829.413333pt;}
.y152{bottom:831.813333pt;}
.y94{bottom:840.453333pt;}
.ya{bottom:842.533333pt;}
.ye3{bottom:842.693333pt;}
.y4d{bottom:847.813333pt;}
.y10a{bottom:847.973333pt;}
.ybb{bottom:849.573333pt;}
.y77{bottom:850.533333pt;}
.y151{bottom:853.093333pt;}
.ye2{bottom:863.813333pt;}
.y9{bottom:865.893333pt;}
.y4c{bottom:869.093333pt;}
.y76{bottom:871.653333pt;}
.y150{bottom:874.213333pt;}
.y93{bottom:876.453333pt;}
.y3f{bottom:878.400000pt;}
.y3b{bottom:879.040000pt;}
.y3d{bottom:880.000000pt;}
.yba{bottom:880.773333pt;}
.y8{bottom:883.013333pt;}
.ye1{bottom:885.093333pt;}
.y4b{bottom:890.213333pt;}
.y75{bottom:892.773333pt;}
.y14f{bottom:895.333333pt;}
.y179{bottom:895.493333pt;}
.y92{bottom:898.053333pt;}
.y34{bottom:899.360000pt;}
.ye0{bottom:906.213333pt;}
.yb9{bottom:909.893333pt;}
.y4a{bottom:911.333333pt;}
.y197{bottom:911.493333pt;}
.y7{bottom:913.413333pt;}
.y74{bottom:914.053333pt;}
.y12e{bottom:914.533333pt;}
.y14e{bottom:916.453333pt;}
.ydf{bottom:927.333333pt;}
.y49{bottom:932.453333pt;}
.y73{bottom:935.173333pt;}
.y14d{bottom:937.733333pt;}
.yb8{bottom:939.013333pt;}
.y6{bottom:944.773333pt;}
.yde{bottom:948.453333pt;}
.y48{bottom:953.733333pt;}
.y72{bottom:956.293333pt;}
.yb7{bottom:968.293333pt;}
.ydd{bottom:969.733333pt;}
.y14c{bottom:974.373333pt;}
.y47{bottom:974.853333pt;}
.y5{bottom:978.693333pt;}
.y71{bottom:990.853333pt;}
.yb6{bottom:997.413333pt;}
.y46{bottom:1011.653333pt;}
.y70{bottom:1011.973333pt;}
.y12d{bottom:1012.133333pt;}
.y4{bottom:1012.613333pt;}
.y44{bottom:1039.520000pt;}
.y6f{bottom:1049.280000pt;}
.y43{bottom:1052.000000pt;}
.y6e{bottom:1063.360000pt;}
.y42{bottom:1064.480000pt;}
.y36{bottom:1073.600000pt;}
.y39{bottom:1086.400000pt;}
.y38{bottom:1098.080000pt;}
.h1b{height:12.160000pt;}
.h1c{height:12.800000pt;}
.h8{height:15.703125pt;}
.h33{height:16.000000pt;}
.h21{height:16.160000pt;}
.h3a{height:21.106667pt;}
.h23{height:29.106667pt;}
.h2b{height:29.118667pt;}
.h26{height:29.120000pt;}
.h29{height:29.138667pt;}
.h25{height:29.140000pt;}
.h28{height:29.146667pt;}
.h2a{height:29.152000pt;}
.h18{height:29.261250pt;}
.h24{height:29.266667pt;}
.h27{height:29.280000pt;}
.h19{height:31.428750pt;}
.h6{height:32.250000pt;}
.h22{height:34.190937pt;}
.h5{height:34.195312pt;}
.h14{height:34.374375pt;}
.h17{height:34.830000pt;}
.he{height:35.386875pt;}
.h1d{height:36.305625pt;}
.h2{height:40.640625pt;}
.h31{height:41.112500pt;}
.h34{height:42.400000pt;}
.h1e{height:44.000000pt;}
.h16{height:44.160000pt;}
.h40{height:44.466667pt;}
.h20{height:44.687500pt;}
.h13{height:44.975625pt;}
.h42{height:45.156250pt;}
.h4{height:47.742188pt;}
.h2c{height:51.986667pt;}
.h32{height:52.032000pt;}
.h11{height:52.134375pt;}
.h2d{height:52.146667pt;}
.hf{height:52.834688pt;}
.h9{height:53.535000pt;}
.hc{height:54.390938pt;}
.h12{height:55.275000pt;}
.h3b{height:55.520000pt;}
.h41{height:55.666667pt;}
.h3c{height:55.680000pt;}
.h2e{height:57.787500pt;}
.h10{height:58.522500pt;}
.h3{height:58.563750pt;}
.h1a{height:59.340000pt;}
.hb{height:60.288750pt;}
.ha{height:62.812500pt;}
.h36{height:63.346667pt;}
.h37{height:63.506667pt;}
.h35{height:63.546667pt;}
.h1f{height:64.500000pt;}
.h2f{height:71.506667pt;}
.h30{height:71.538667pt;}
.h7{height:72.069375pt;}
.h3e{height:76.786667pt;}
.h3f{height:76.818667pt;}
.h44{height:76.820000pt;}
.h39{height:84.626667pt;}
.h47{height:90.066667pt;}
.h43{height:97.906667pt;}
.h46{height:97.946667pt;}
.h45{height:98.080000pt;}
.h3d{height:98.106667pt;}
.h15{height:103.200000pt;}
.h38{height:105.778667pt;}
.hd{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:30.752000pt;}
.w22{width:31.666667pt;}
.w23{width:36.146667pt;}
.w1a{width:38.386667pt;}
.w1b{width:38.546667pt;}
.w18{width:38.560000pt;}
.w16{width:39.350667pt;}
.w20{width:39.680000pt;}
.w21{width:39.712000pt;}
.w2b{width:40.146667pt;}
.w29{width:40.160000pt;}
.w2a{width:40.352000pt;}
.w12{width:41.906667pt;}
.w10{width:41.952000pt;}
.w11{width:42.066667pt;}
.wd{width:42.070667pt;}
.w1d{width:42.418667pt;}
.w25{width:43.698667pt;}
.wf{width:48.000000pt;}
.w1c{width:50.866667pt;}
.w13{width:54.066667pt;}
.w24{width:54.866667pt;}
.w2c{width:55.666667pt;}
.w28{width:56.800000pt;}
.w14{width:60.018667pt;}
.w9{width:68.800000pt;}
.w2d{width:70.898667pt;}
.w2e{width:74.546667pt;}
.w15{width:77.906667pt;}
.w8{width:93.280000pt;}
.w4{width:95.200000pt;}
.w26{width:99.826667pt;}
.w1e{width:101.266667pt;}
.w7{width:136.160000pt;}
.wb{width:143.546667pt;}
.w5{width:156.800000pt;}
.w27{width:180.333333pt;}
.wc{width:208.333333pt;}
.we{width:216.013333pt;}
.wa{width:224.177333pt;}
.w17{width:226.093333pt;}
.w6{width:233.120000pt;}
.w1f{width:235.693333pt;}
.w3{width:596.640000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.190667pt;}
.x15{left:9.632000pt;}
.x17{left:12.000000pt;}
.x2d{left:13.413333pt;}
.x1b{left:14.373333pt;}
.x21{left:15.973333pt;}
.x16{left:47.520000pt;}
.x3{left:96.032000pt;}
.x1{left:97.952000pt;}
.x1c{left:99.392000pt;}
.x14{left:100.352000pt;}
.xf{left:101.952000pt;}
.x5{left:103.232000pt;}
.x11{left:105.792000pt;}
.xb{left:108.832000pt;}
.x4{left:114.112000pt;}
.x12{left:120.352000pt;}
.x2e{left:135.400000pt;}
.x25{left:138.120000pt;}
.x45{left:144.026667pt;}
.x6{left:151.066667pt;}
.x1f{left:178.746667pt;}
.x2{left:184.186667pt;}
.x1e{left:187.386667pt;}
.x7{left:236.986667pt;}
.x10{left:241.946667pt;}
.xe{left:243.706667pt;}
.x13{left:288.066667pt;}
.x18{left:292.160000pt;}
.x3e{left:315.746667pt;}
.x23{left:320.226667pt;}
.x26{left:354.146667pt;}
.x9{left:357.826667pt;}
.x2f{left:361.506667pt;}
.x36{left:371.106667pt;}
.x3f{left:372.546667pt;}
.x1d{left:395.906667pt;}
.x8{left:396.866667pt;}
.x30{left:400.066667pt;}
.x27{left:402.146667pt;}
.x37{left:410.786667pt;}
.x40{left:412.706667pt;}
.xc{left:415.265000pt;}
.xd{left:419.613333pt;}
.x31{left:430.826667pt;}
.x28{left:444.106667pt;}
.x38{left:450.506667pt;}
.x41{left:453.066667pt;}
.x24{left:463.786667pt;}
.x32{left:469.226667pt;}
.x39{left:482.186667pt;}
.x29{left:486.186667pt;}
.x42{left:493.226667pt;}
.x33{left:507.626667pt;}
.x3a{left:518.346667pt;}
.x2a{left:528.106667pt;}
.x43{left:548.906667pt;}
.x34{left:558.506667pt;}
.x19{left:567.840000pt;}
.x3b{left:573.226667pt;}
.x2b{left:582.186667pt;}
.x35{left:600.933333pt;}
.x3c{left:616.933333pt;}
.x44{left:619.813333pt;}
.x20{left:632.480000pt;}
.x3d{left:639.520000pt;}
.x2c{left:642.213333pt;}
.xa{left:697.893333pt;}
.x1a{left:700.480000pt;}
}




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