
    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_64f40654382f04d7f5b124fa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a53ae27c0bcb789c1eaa8f22.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_826f3619bf5366f8bebf6d6d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_f2bb7168be6621ea3f8d41c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_d36a629cbd76b3aa26408b1c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_cc356c7964769fdeab885662.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f167d1687342beab9560d00a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_293d763b6fb8d671901c743c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dc81cf37214e8bdefd4fa977.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.235440px;}
.ls13{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.264960px;}
.ls8{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.720000px;}
.ls7{letter-spacing:2.160000px;}
.ls6{letter-spacing:3.600000px;}
.ls1a{letter-spacing:7.920000px;}
.ls1c{letter-spacing:13.140000px;}
.lsa{letter-spacing:22.440000px;}
.ls5{letter-spacing:26.064000px;}
.lsd{letter-spacing:29.520000px;}
.ls1d{letter-spacing:50.400000px;}
.lse{letter-spacing:105.960000px;}
.ls2{letter-spacing:129.197280px;}
.lsf{letter-spacing:150.797280px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.wsf{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-7.290000px;}
._2{margin-left:-4.740000px;}
._0{margin-left:-2.484000px;}
._4{margin-left:-1.386000px;}
._1{width:1.674000px;}
._8{width:2.718000px;}
._18{width:3.960000px;}
._19{width:4.968000px;}
._e{width:6.174000px;}
._d{width:7.272000px;}
._1b{width:8.352000px;}
._15{width:9.360000px;}
._16{width:10.710000px;}
._7{width:12.402000px;}
._5{width:13.752000px;}
._6{width:15.048000px;}
._c{width:16.488000px;}
._1c{width:19.008000px;}
._1a{width:20.016000px;}
._13{width:21.024000px;}
._14{width:22.302000px;}
._17{width:24.096000px;}
._11{width:25.272000px;}
._12{width:26.424000px;}
._b{width:27.504000px;}
._3e{width:28.548000px;}
._f{width:29.592000px;}
._10{width:30.672000px;}
._27{width:31.752000px;}
._1f{width:32.832000px;}
._20{width:34.110000px;}
._23{width:36.000000px;}
._24{width:37.512000px;}
._26{width:39.312000px;}
._36{width:40.656000px;}
._29{width:44.208000px;}
._25{width:46.008000px;}
._35{width:47.568000px;}
._2f{width:49.962000px;}
._1d{width:50.976000px;}
._1e{width:52.032000px;}
._9{width:53.568000px;}
._a{width:54.876000px;}
._32{width:62.712000px;}
._33{width:64.104000px;}
._22{width:65.232000px;}
._21{width:66.312000px;}
._28{width:89.784000px;}
._3c{width:109.992000px;}
._38{width:111.024000px;}
._39{width:112.260000px;}
._3d{width:120.672000px;}
._3a{width:135.072000px;}
._3b{width:136.074000px;}
._34{width:143.184000px;}
._37{width:160.680000px;}
._30{width:166.968000px;}
._31{width:168.630000px;}
._2b{width:179.496000px;}
._2c{width:180.576000px;}
._2a{width:267.840000px;}
._40{width:270.720000px;}
._3f{width:271.728000px;}
._2d{width:956.520000px;}
._2e{width:957.624000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(32,32,32);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.240000px;}
.yd0{bottom:3.285000px;}
.y112{bottom:4.680000px;}
.y12b{bottom:4.860000px;}
.yc9{bottom:5.400000px;}
.ya7{bottom:5.580000px;}
.ya3{bottom:5.760000px;}
.ya5{bottom:6.300000px;}
.yc7{bottom:18.180000px;}
.y10b{bottom:20.340000px;}
.ye3{bottom:20.385000px;}
.ya0{bottom:20.520000px;}
.y147{bottom:20.565000px;}
.y143{bottom:21.240000px;}
.y10e{bottom:21.960000px;}
.y119{bottom:22.005000px;}
.y12e{bottom:22.140000px;}
.y132{bottom:22.185000px;}
.ybc{bottom:22.680000px;}
.y8{bottom:26.280000px;}
.y9{bottom:34.920000px;}
.yc3{bottom:37.620000px;}
.ye2{bottom:37.665000px;}
.y128{bottom:37.800000px;}
.yb8{bottom:37.830000px;}
.y10d{bottom:39.240000px;}
.y118{bottom:39.285000px;}
.ybb{bottom:39.960000px;}
.yf1{bottom:39.990000px;}
.y7{bottom:41.970000px;}
.yb{bottom:46.260000px;}
.yc2{bottom:54.900000px;}
.yba{bottom:57.240000px;}
.yf0{bottom:57.270000px;}
.yce{bottom:57.285000px;}
.y6{bottom:57.450000px;}
.yc1{bottom:72.180000px;}
.y5{bottom:72.930000px;}
.y33{bottom:75.816000px;}
.y4{bottom:88.410000px;}
.y3{bottom:104.070000px;}
.y167{bottom:112.896000px;}
.y13f{bottom:117.396000px;}
.y62{bottom:119.376000px;}
.y2{bottom:119.550000px;}
.y89{bottom:120.096000px;}
.yda{bottom:128.556000px;}
.y9d{bottom:131.076000px;}
.y166{bottom:133.596000px;}
.y107{bottom:135.216000px;}
.y13e{bottom:138.096000px;}
.y1b7{bottom:139.896000px;}
.y61{bottom:140.076000px;}
.y88{bottom:140.796000px;}
.yd9{bottom:145.836000px;}
.y30{bottom:148.716000px;}
.y1a2{bottom:148.896000px;}
.y9c{bottom:151.770000px;}
.y165{bottom:154.290000px;}
.y13d{bottom:158.790000px;}
.y1b6{bottom:160.590000px;}
.y60{bottom:160.770000px;}
.y87{bottom:161.490000px;}
.yd8{bottom:163.470000px;}
.y106{bottom:163.650000px;}
.y2f{bottom:169.410000px;}
.y1a1{bottom:169.590000px;}
.y181{bottom:172.290000px;}
.y9b{bottom:172.470000px;}
.y164{bottom:174.990000px;}
.y1b5{bottom:181.290000px;}
.y5f{bottom:181.470000px;}
.y86{bottom:182.190000px;}
.yd7{bottom:182.550000px;}
.y13c{bottom:188.310000px;}
.y2e{bottom:190.110000px;}
.y1a0{bottom:190.290000px;}
.y180{bottom:192.990000px;}
.y9a{bottom:193.170000px;}
.y105{bottom:193.350000px;}
.y163{bottom:195.690000px;}
.y5e{bottom:202.170000px;}
.y85{bottom:202.890000px;}
.y13b{bottom:207.210000px;}
.yd3{bottom:207.570000px;}
.y2d{bottom:210.810000px;}
.y1b4{bottom:210.990000px;}
.y17f{bottom:213.690000px;}
.y19f{bottom:219.990000px;}
.y5d{bottom:222.870000px;}
.y104{bottom:223.050000px;}
.y138{bottom:223.230000px;}
.y84{bottom:223.590000px;}
.y162{bottom:225.390000px;}
.yd6{bottom:225.570000px;}
.y2c{bottom:231.510000px;}
.y1b3{bottom:231.690000px;}
.y17e{bottom:234.390000px;}
.y19e{bottom:240.690000px;}
.y13a{bottom:241.230000px;}
.yd5{bottom:243.570000px;}
.y103{bottom:243.750000px;}
.y83{bottom:244.290000px;}
.y161{bottom:246.090000px;}
.y5c{bottom:252.570000px;}
.y99{bottom:253.110000px;}
.y139{bottom:259.230000px;}
.y19d{bottom:261.390000px;}
.yd4{bottom:261.570000px;}
.y2b{bottom:261.750000px;}
.y17d{bottom:264.090000px;}
.y102{bottom:264.450000px;}
.y82{bottom:264.990000px;}
.y160{bottom:266.790000px;}
.y135{bottom:277.230000px;}
.ycd{bottom:279.570000px;}
.y1b2{bottom:282.090000px;}
.y5b{bottom:282.270000px;}
.y17c{bottom:284.790000px;}
.y101{bottom:285.150000px;}
.y98{bottom:285.690000px;}
.y15f{bottom:287.490000px;}
.y19c{bottom:291.090000px;}
.y2a{bottom:294.330000px;}
.y81{bottom:294.690000px;}
.y137{bottom:295.230000px;}
.yd2{bottom:297.570000px;}
.y1b1{bottom:302.790000px;}
.y100{bottom:305.850000px;}
.y97{bottom:306.390000px;}
.y15e{bottom:308.190000px;}
.y19b{bottom:311.790000px;}
.y5a{bottom:311.970000px;}
.y136{bottom:313.230000px;}
.y17b{bottom:314.490000px;}
.yd1{bottom:315.570000px;}
.y1b0{bottom:323.490000px;}
.y29{bottom:324.030000px;}
.y80{bottom:324.390000px;}
.yff{bottom:326.550000px;}
.y96{bottom:327.090000px;}
.y15d{bottom:328.890000px;}
.y131{bottom:331.230000px;}
.y59{bottom:332.670000px;}
.ycf{bottom:333.570000px;}
.y17a{bottom:335.190000px;}
.y19a{bottom:341.535000px;}
.y28{bottom:344.775000px;}
.y7f{bottom:345.135000px;}
.yfe{bottom:347.295000px;}
.y134{bottom:349.275000px;}
.y15c{bottom:349.635000px;}
.yc8{bottom:351.615000px;}
.y1af{bottom:353.235000px;}
.y58{bottom:353.415000px;}
.y179{bottom:355.935000px;}
.y95{bottom:356.835000px;}
.y199{bottom:362.235000px;}
.y27{bottom:365.475000px;}
.y7e{bottom:365.835000px;}
.y133{bottom:367.275000px;}
.yfd{bottom:367.995000px;}
.ycc{bottom:369.615000px;}
.y15b{bottom:370.335000px;}
.y1ae{bottom:373.935000px;}
.y57{bottom:374.115000px;}
.y178{bottom:376.635000px;}
.y198{bottom:382.935000px;}
.y12d{bottom:385.275000px;}
.y26{bottom:386.175000px;}
.y7d{bottom:386.535000px;}
.ycb{bottom:387.615000px;}
.y15a{bottom:391.035000px;}
.y56{bottom:394.815000px;}
.yfc{bottom:397.695000px;}
.y130{bottom:403.275000px;}
.y197{bottom:403.635000px;}
.yca{bottom:405.615000px;}
.y177{bottom:406.335000px;}
.y25{bottom:406.875000px;}
.y7c{bottom:407.235000px;}
.y159{bottom:411.735000px;}
.y55{bottom:415.515000px;}
.yfb{bottom:418.395000px;}
.y12f{bottom:421.275000px;}
.yc0{bottom:423.615000px;}
.y1ad{bottom:424.335000px;}
.y176{bottom:427.035000px;}
.y24{bottom:427.575000px;}
.y7b{bottom:427.935000px;}
.y158{bottom:432.435000px;}
.y196{bottom:433.335000px;}
.y54{bottom:436.215000px;}
.y129{bottom:439.275000px;}
.y1ac{bottom:445.035000px;}
.y175{bottom:447.735000px;}
.y23{bottom:448.275000px;}
.y7a{bottom:448.635000px;}
.y195{bottom:454.035000px;}
.yfa{bottom:456.375000px;}
.yc6{bottom:456.555000px;}
.y53{bottom:456.915000px;}
.y12c{bottom:457.275000px;}
.y157{bottom:461.955000px;}
.y79{bottom:469.335000px;}
.yf9{bottom:473.655000px;}
.yc5{bottom:474.555000px;}
.y194{bottom:474.735000px;}
.y12a{bottom:475.275000px;}
.y174{bottom:477.435000px;}
.y22{bottom:477.975000px;}
.y156{bottom:482.655000px;}
.y52{bottom:486.615000px;}
.y78{bottom:490.035000px;}
.yc4{bottom:492.555000px;}
.y127{bottom:493.275000px;}
.y1ab{bottom:495.435000px;}
.yf5{bottom:497.415000px;}
.y173{bottom:498.135000px;}
.y21{bottom:498.675000px;}
.y155{bottom:503.355000px;}
.y193{bottom:504.435000px;}
.y51{bottom:507.315000px;}
.yb9{bottom:510.555000px;}
.y77{bottom:510.735000px;}
.yf8{bottom:515.415000px;}
.y1aa{bottom:516.135000px;}
.y20{bottom:519.375000px;}
.y154{bottom:524.055000px;}
.y192{bottom:525.135000px;}
.y172{bottom:527.835000px;}
.y50{bottom:528.015000px;}
.ybf{bottom:528.555000px;}
.y76{bottom:531.435000px;}
.yf7{bottom:533.415000px;}
.y1f{bottom:540.075000px;}
.y153{bottom:544.755000px;}
.y191{bottom:545.835000px;}
.ybe{bottom:546.555000px;}
.y171{bottom:548.535000px;}
.y4f{bottom:548.715000px;}
.yf6{bottom:551.415000px;}
.y75{bottom:552.135000px;}
.y126{bottom:558.255000px;}
.y1e{bottom:560.775000px;}
.y94{bottom:561.135000px;}
.ybd{bottom:564.555000px;}
.y152{bottom:565.455000px;}
.y190{bottom:566.535000px;}
.y170{bottom:569.235000px;}
.y4e{bottom:569.415000px;}
.y125{bottom:577.515000px;}
.y74{bottom:581.835000px;}
.yb7{bottom:582.555000px;}
.y151{bottom:586.155000px;}
.y1a9{bottom:587.235000px;}
.yf4{bottom:587.415000px;}
.y4d{bottom:590.115000px;}
.y1d{bottom:590.475000px;}
.y18f{bottom:596.235000px;}
.y16f{bottom:598.935000px;}
.y73{bottom:602.535000px;}
.yf3{bottom:605.445000px;}
.y124{bottom:605.805000px;}
.y150{bottom:606.885000px;}
.y4c{bottom:610.845000px;}
.y1c{bottom:611.205000px;}
.y18e{bottom:616.965000px;}
.y72{bottom:623.265000px;}
.yf2{bottom:623.445000px;}
.y123{bottom:626.505000px;}
.y14f{bottom:627.585000px;}
.y4b{bottom:631.545000px;}
.y1b{bottom:631.905000px;}
.y18d{bottom:637.665000px;}
.yec{bottom:641.445000px;}
.y71{bottom:643.965000px;}
.y16e{bottom:646.665000px;}
.y122{bottom:647.205000px;}
.yb6{bottom:647.565000px;}
.y14e{bottom:648.285000px;}
.y4a{bottom:652.245000px;}
.y1a{bottom:652.605000px;}
.y93{bottom:652.965000px;}
.yef{bottom:659.445000px;}
.y70{bottom:664.665000px;}
.yb5{bottom:666.825000px;}
.y16d{bottom:667.365000px;}
.y121{bottom:667.905000px;}
.y14d{bottom:668.985000px;}
.y49{bottom:672.945000px;}
.y19{bottom:673.305000px;}
.yee{bottom:677.445000px;}
.y92{bottom:682.665000px;}
.y6f{bottom:685.365000px;}
.y16c{bottom:688.065000px;}
.y120{bottom:688.605000px;}
.y48{bottom:693.645000px;}
.y18{bottom:694.005000px;}
.yb4{bottom:694.905000px;}
.yed{bottom:695.445000px;}
.y14c{bottom:699.405000px;}
.y91{bottom:703.365000px;}
.y16b{bottom:708.765000px;}
.y11f{bottom:709.305000px;}
.ye8{bottom:713.445000px;}
.y17{bottom:714.705000px;}
.y6e{bottom:715.065000px;}
.yb3{bottom:715.605000px;}
.y18c{bottom:717.765000px;}
.y47{bottom:723.345000px;}
.y90{bottom:724.065000px;}
.y1a8{bottom:729.465000px;}
.y11e{bottom:730.005000px;}
.yeb{bottom:731.445000px;}
.y14b{bottom:731.625000px;}
.y16{bottom:735.405000px;}
.y6d{bottom:735.765000px;}
.yb2{bottom:736.305000px;}
.y16a{bottom:738.465000px;}
.y8f{bottom:744.765000px;}
.yea{bottom:749.445000px;}
.y14a{bottom:750.525000px;}
.y46{bottom:753.585000px;}
.y6c{bottom:756.465000px;}
.yb1{bottom:757.005000px;}
.y18b{bottom:759.165000px;}
.y11d{bottom:759.345000px;}
.y8e{bottom:765.465000px;}
.y15{bottom:765.645000px;}
.y149{bottom:766.725000px;}
.ye9{bottom:767.445000px;}
.y6b{bottom:777.165000px;}
.yb0{bottom:777.705000px;}
.y11c{bottom:778.425000px;}
.y18a{bottom:779.865000px;}
.ye4{bottom:785.445000px;}
.y45{bottom:786.165000px;}
.y14{bottom:797.505000px;}
.y6a{bottom:797.865000px;}
.yaf{bottom:798.405000px;}
.y1a7{bottom:800.565000px;}
.y148{bottom:801.825000px;}
.ye7{bottom:803.445000px;}
.y44{bottom:806.865000px;}
.y189{bottom:809.565000px;}
.y69{bottom:818.565000px;}
.yae{bottom:819.105000px;}
.y1a6{bottom:821.265000px;}
.ye6{bottom:821.445000px;}
.y43{bottom:827.565000px;}
.y13{bottom:829.005000px;}
.y188{bottom:830.265000px;}
.y8d{bottom:836.565000px;}
.y68{bottom:839.265000px;}
.ye5{bottom:839.445000px;}
.yad{bottom:839.805000px;}
.y1be{bottom:841.965000px;}
.y42{bottom:848.265000px;}
.y187{bottom:850.965000px;}
.y146{bottom:854.385000px;}
.y12{bottom:855.285000px;}
.y8c{bottom:857.265000px;}
.ye1{bottom:857.445000px;}
.y67{bottom:859.965000px;}
.yac{bottom:860.505000px;}
.y1bd{bottom:862.665000px;}
.y41{bottom:868.965000px;}
.y1a5{bottom:871.710000px;}
.y11b{bottom:875.490000px;}
.y11{bottom:876.570000px;}
.y8b{bottom:878.010000px;}
.y186{bottom:880.710000px;}
.y66{bottom:889.710000px;}
.yab{bottom:890.250000px;}
.y1bc{bottom:892.410000px;}
.y11a{bottom:893.490000px;}
.y10{bottom:895.830000px;}
.y40{bottom:898.710000px;}
.y185{bottom:901.410000px;}
.y169{bottom:910.410000px;}
.y115{bottom:911.490000px;}
.y1bb{bottom:913.110000px;}
.y3f{bottom:919.410000px;}
.yaa{bottom:919.770000px;}
.y184{bottom:922.110000px;}
.ye0{bottom:922.470000px;}
.yf{bottom:926.430000px;}
.y117{bottom:929.490000px;}
.y168{bottom:931.110000px;}
.y1ba{bottom:933.810000px;}
.ya9{bottom:935.790000px;}
.y3e{bottom:940.110000px;}
.ydf{bottom:941.550000px;}
.y145{bottom:942.090000px;}
.y116{bottom:947.490000px;}
.y183{bottom:951.810000px;}
.ya8{bottom:956.130000px;}
.y3d{bottom:960.810000px;}
.y1b9{bottom:963.510000px;}
.y111{bottom:965.490000px;}
.yde{bottom:969.810000px;}
.ye{bottom:969.990000px;}
.y182{bottom:972.510000px;}
.ya6{bottom:976.650000px;}
.y142{bottom:977.370000px;}
.y3c{bottom:981.510000px;}
.y114{bottom:983.490000px;}
.ydd{bottom:990.510000px;}
.y1a4{bottom:993.210000px;}
.y144{bottom:995.370000px;}
.ya4{bottom:996.990000px;}
.y113{bottom:1001.490000px;}
.y3b{bottom:1002.210000px;}
.yd{bottom:1004.550000px;}
.ydc{bottom:1011.210000px;}
.y1a3{bottom:1013.910000px;}
.ya2{bottom:1018.050000px;}
.y10c{bottom:1019.490000px;}
.y3a{bottom:1022.910000px;}
.y141{bottom:1025.970000px;}
.ydb{bottom:1031.910000px;}
.y1b8{bottom:1034.610000px;}
.y110{bottom:1037.490000px;}
.y9f{bottom:1038.570000px;}
.yc{bottom:1038.930000px;}
.y65{bottom:1043.610000px;}
.y140{bottom:1045.050000px;}
.y39{bottom:1052.610000px;}
.y10f{bottom:1055.490000px;}
.y64{bottom:1064.310000px;}
.y38{bottom:1073.310000px;}
.y10a{bottom:1073.490000px;}
.ya{bottom:1079.970000px;}
.y63{bottom:1085.010000px;}
.y9e{bottom:1086.270000px;}
.y37{bottom:1094.010000px;}
.y1{bottom:1096.710000px;}
.y8a{bottom:1105.710000px;}
.y36{bottom:1114.710000px;}
.y35{bottom:1135.410000px;}
.y109{bottom:1138.500000px;}
.y34{bottom:1156.140000px;}
.y108{bottom:1157.580000px;}
.y32{bottom:1176.480000px;}
.y31{bottom:1204.560000px;}
.h4{height:2.581875px;}
.h21{height:17.100000px;}
.h26{height:17.136000px;}
.h19{height:17.280000px;}
.h1d{height:17.316000px;}
.h14{height:19.620000px;}
.h11{height:19.800000px;}
.h13{height:20.340000px;}
.h1b{height:32.220000px;}
.hf{height:34.380000px;}
.h2b{height:34.560000px;}
.h2c{height:34.596000px;}
.h8{height:34.855313px;}
.h2a{height:35.280000px;}
.h16{height:40.501406px;}
.h3{height:48.410156px;}
.h9{height:49.255313px;}
.h23{height:51.660000px;}
.h1f{height:51.696000px;}
.h27{height:51.840000px;}
.h15{height:51.876000px;}
.h22{height:52.925625px;}
.h10{height:53.077852px;}
.h24{height:53.100000px;}
.h25{height:53.136000px;}
.h28{height:53.280000px;}
.h29{height:53.316000px;}
.h12{height:53.573906px;}
.hb{height:54.596250px;}
.h17{height:55.412578px;}
.he{height:59.343750px;}
.hc{height:59.383125px;}
.h7{height:60.850547px;}
.h1e{height:61.779375px;}
.hd{height:63.949219px;}
.h5{height:64.546875px;}
.h20{height:71.100000px;}
.h18{height:71.280000px;}
.h1c{height:71.316000px;}
.ha{height:74.820586px;}
.h1a{height:86.220000px;}
.h6{height:106.795195px;}
.h2{height:132.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2e{width:39.600000px;}
.w2a{width:42.120000px;}
.w23{width:44.820000px;}
.w21{width:44.856000px;}
.w13{width:46.080000px;}
.w19{width:46.656000px;}
.w14{width:48.060000px;}
.w8{width:48.780000px;}
.w6{width:49.140000px;}
.w1e{width:51.300000px;}
.w27{width:51.840000px;}
.wf{width:52.416000px;}
.w16{width:52.596000px;}
.w12{width:52.956000px;}
.w2d{width:53.100000px;}
.w2f{width:53.136000px;}
.w33{width:55.440000px;}
.w7{width:56.736000px;}
.w1a{width:59.940000px;}
.w22{width:61.020000px;}
.w1d{width:61.740000px;}
.w26{width:62.280000px;}
.we{width:63.000000px;}
.w31{width:66.096000px;}
.w18{width:66.780000px;}
.w11{width:67.500000px;}
.wa{width:70.416000px;}
.w17{width:72.900000px;}
.w20{width:74.160000px;}
.w9{width:76.500000px;}
.w32{width:78.120000px;}
.w10{width:79.560000px;}
.w29{width:82.440000px;}
.w34{width:85.536000px;}
.w30{width:86.940000px;}
.w1f{width:92.376000px;}
.w28{width:93.276000px;}
.wb{width:93.780000px;}
.wc{width:94.680000px;}
.w25{width:97.236000px;}
.w1c{width:101.916000px;}
.w1b{width:133.740000px;}
.w24{width:141.480000px;}
.w2c{width:141.696000px;}
.w2b{width:145.116000px;}
.wd{width:158.610000px;}
.w15{width:158.790000px;}
.w3{width:237.450000px;}
.w5{width:271.470000px;}
.w2{width:538.665000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x33{left:9.900000px;}
.x16{left:11.160000px;}
.x4c{left:12.270000px;}
.x1d{left:13.320000px;}
.x18{left:14.760000px;}
.x15{left:16.380000px;}
.x29{left:17.640000px;}
.x13{left:19.260000px;}
.x22{left:20.880000px;}
.x31{left:22.320000px;}
.x20{left:23.400000px;}
.x1e{left:24.480000px;}
.x1f{left:26.280000px;}
.x2b{left:27.360000px;}
.x23{left:28.800000px;}
.x39{left:30.240000px;}
.x28{left:33.300000px;}
.x30{left:35.820000px;}
.x21{left:37.260000px;}
.x2f{left:39.600000px;}
.x1c{left:41.220000px;}
.x47{left:42.330000px;}
.x46{left:46.110000px;}
.x32{left:47.334000px;}
.x1{left:58.500000px;}
.x3{left:73.836000px;}
.x6{left:108.035987px;}
.xc{left:112.175987px;}
.x34{left:117.936000px;}
.x8{left:124.775987px;}
.x7{left:129.275987px;}
.x9{left:130.895987px;}
.x55{left:135.035987px;}
.x10{left:182.549987px;}
.x24{left:203.790000px;}
.x35{left:213.330000px;}
.x5{left:229.365000px;}
.x3e{left:242.850000px;}
.x48{left:250.590000px;}
.xe{left:259.229987px;}
.xf{left:276.509987px;}
.x54{left:317.775000px;}
.x3f{left:345.495000px;}
.x49{left:348.555000px;}
.xd{left:355.934987px;}
.x25{left:363.315000px;}
.x36{left:372.855000px;}
.x12{left:380.595000px;}
.xa{left:387.434987px;}
.x4f{left:396.615000px;}
.x40{left:407.955000px;}
.x4a{left:411.555000px;}
.x26{left:427.035000px;}
.x14{left:430.455000px;}
.x37{left:436.575000px;}
.xb{left:446.474987px;}
.x56{left:448.814987px;}
.x11{left:452.954987px;}
.x41{left:459.975000px;}
.x4b{left:464.115000px;}
.x27{left:480.345000px;}
.x17{left:487.905000px;}
.x38{left:489.885000px;}
.x19{left:537.405000px;}
.x50{left:539.205000px;}
.x42{left:553.065000px;}
.x4d{left:558.105000px;}
.x2a{left:560.805000px;}
.x3a{left:563.505000px;}
.x51{left:593.205000px;}
.x4{left:597.165000px;}
.x1a{left:614.625000px;}
.x43{left:627.945000px;}
.x2c{left:629.025000px;}
.x3b{left:631.005000px;}
.x52{left:633.705000px;}
.x4e{left:641.265000px;}
.x44{left:673.530000px;}
.x3c{left:678.390000px;}
.x2d{left:682.710000px;}
.x1b{left:685.950000px;}
.x53{left:687.750000px;}
.x2e{left:729.510000px;}
.x45{left:735.270000px;}
.x3d{left:739.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.209280pt;}
.ls13{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.235520pt;}
.ls8{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:11.680000pt;}
.lsa{letter-spacing:19.946667pt;}
.ls5{letter-spacing:23.168000pt;}
.lsd{letter-spacing:26.240000pt;}
.ls1d{letter-spacing:44.800000pt;}
.lse{letter-spacing:94.186667pt;}
.ls2{letter-spacing:114.842027pt;}
.lsf{letter-spacing:134.042027pt;}
.ws6{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-6.480000pt;}
._2{margin-left:-4.213333pt;}
._0{margin-left:-2.208000pt;}
._4{margin-left:-1.232000pt;}
._1{width:1.488000pt;}
._8{width:2.416000pt;}
._18{width:3.520000pt;}
._19{width:4.416000pt;}
._e{width:5.488000pt;}
._d{width:6.464000pt;}
._1b{width:7.424000pt;}
._15{width:8.320000pt;}
._16{width:9.520000pt;}
._7{width:11.024000pt;}
._5{width:12.224000pt;}
._6{width:13.376000pt;}
._c{width:14.656000pt;}
._1c{width:16.896000pt;}
._1a{width:17.792000pt;}
._13{width:18.688000pt;}
._14{width:19.824000pt;}
._17{width:21.418667pt;}
._11{width:22.464000pt;}
._12{width:23.488000pt;}
._b{width:24.448000pt;}
._3e{width:25.376000pt;}
._f{width:26.304000pt;}
._10{width:27.264000pt;}
._27{width:28.224000pt;}
._1f{width:29.184000pt;}
._20{width:30.320000pt;}
._23{width:32.000000pt;}
._24{width:33.344000pt;}
._26{width:34.944000pt;}
._36{width:36.138667pt;}
._29{width:39.296000pt;}
._25{width:40.896000pt;}
._35{width:42.282667pt;}
._2f{width:44.410667pt;}
._1d{width:45.312000pt;}
._1e{width:46.250667pt;}
._9{width:47.616000pt;}
._a{width:48.778667pt;}
._32{width:55.744000pt;}
._33{width:56.981333pt;}
._22{width:57.984000pt;}
._21{width:58.944000pt;}
._28{width:79.808000pt;}
._3c{width:97.770667pt;}
._38{width:98.688000pt;}
._39{width:99.786667pt;}
._3d{width:107.264000pt;}
._3a{width:120.064000pt;}
._3b{width:120.954667pt;}
._34{width:127.274667pt;}
._37{width:142.826667pt;}
._30{width:148.416000pt;}
._31{width:149.893333pt;}
._2b{width:159.552000pt;}
._2c{width:160.512000pt;}
._2a{width:238.080000pt;}
._40{width:240.640000pt;}
._3f{width:241.536000pt;}
._2d{width:850.240000pt;}
._2e{width:851.221333pt;}
.fs1{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.880000pt;}
.yd0{bottom:2.920000pt;}
.y112{bottom:4.160000pt;}
.y12b{bottom:4.320000pt;}
.yc9{bottom:4.800000pt;}
.ya7{bottom:4.960000pt;}
.ya3{bottom:5.120000pt;}
.ya5{bottom:5.600000pt;}
.yc7{bottom:16.160000pt;}
.y10b{bottom:18.080000pt;}
.ye3{bottom:18.120000pt;}
.ya0{bottom:18.240000pt;}
.y147{bottom:18.280000pt;}
.y143{bottom:18.880000pt;}
.y10e{bottom:19.520000pt;}
.y119{bottom:19.560000pt;}
.y12e{bottom:19.680000pt;}
.y132{bottom:19.720000pt;}
.ybc{bottom:20.160000pt;}
.y8{bottom:23.360000pt;}
.y9{bottom:31.040000pt;}
.yc3{bottom:33.440000pt;}
.ye2{bottom:33.480000pt;}
.y128{bottom:33.600000pt;}
.yb8{bottom:33.626667pt;}
.y10d{bottom:34.880000pt;}
.y118{bottom:34.920000pt;}
.ybb{bottom:35.520000pt;}
.yf1{bottom:35.546667pt;}
.y7{bottom:37.306667pt;}
.yb{bottom:41.120000pt;}
.yc2{bottom:48.800000pt;}
.yba{bottom:50.880000pt;}
.yf0{bottom:50.906667pt;}
.yce{bottom:50.920000pt;}
.y6{bottom:51.066667pt;}
.yc1{bottom:64.160000pt;}
.y5{bottom:64.826667pt;}
.y33{bottom:67.392000pt;}
.y4{bottom:78.586667pt;}
.y3{bottom:92.506667pt;}
.y167{bottom:100.352000pt;}
.y13f{bottom:104.352000pt;}
.y62{bottom:106.112000pt;}
.y2{bottom:106.266667pt;}
.y89{bottom:106.752000pt;}
.yda{bottom:114.272000pt;}
.y9d{bottom:116.512000pt;}
.y166{bottom:118.752000pt;}
.y107{bottom:120.192000pt;}
.y13e{bottom:122.752000pt;}
.y1b7{bottom:124.352000pt;}
.y61{bottom:124.512000pt;}
.y88{bottom:125.152000pt;}
.yd9{bottom:129.632000pt;}
.y30{bottom:132.192000pt;}
.y1a2{bottom:132.352000pt;}
.y9c{bottom:134.906667pt;}
.y165{bottom:137.146667pt;}
.y13d{bottom:141.146667pt;}
.y1b6{bottom:142.746667pt;}
.y60{bottom:142.906667pt;}
.y87{bottom:143.546667pt;}
.yd8{bottom:145.306667pt;}
.y106{bottom:145.466667pt;}
.y2f{bottom:150.586667pt;}
.y1a1{bottom:150.746667pt;}
.y181{bottom:153.146667pt;}
.y9b{bottom:153.306667pt;}
.y164{bottom:155.546667pt;}
.y1b5{bottom:161.146667pt;}
.y5f{bottom:161.306667pt;}
.y86{bottom:161.946667pt;}
.yd7{bottom:162.266667pt;}
.y13c{bottom:167.386667pt;}
.y2e{bottom:168.986667pt;}
.y1a0{bottom:169.146667pt;}
.y180{bottom:171.546667pt;}
.y9a{bottom:171.706667pt;}
.y105{bottom:171.866667pt;}
.y163{bottom:173.946667pt;}
.y5e{bottom:179.706667pt;}
.y85{bottom:180.346667pt;}
.y13b{bottom:184.186667pt;}
.yd3{bottom:184.506667pt;}
.y2d{bottom:187.386667pt;}
.y1b4{bottom:187.546667pt;}
.y17f{bottom:189.946667pt;}
.y19f{bottom:195.546667pt;}
.y5d{bottom:198.106667pt;}
.y104{bottom:198.266667pt;}
.y138{bottom:198.426667pt;}
.y84{bottom:198.746667pt;}
.y162{bottom:200.346667pt;}
.yd6{bottom:200.506667pt;}
.y2c{bottom:205.786667pt;}
.y1b3{bottom:205.946667pt;}
.y17e{bottom:208.346667pt;}
.y19e{bottom:213.946667pt;}
.y13a{bottom:214.426667pt;}
.yd5{bottom:216.506667pt;}
.y103{bottom:216.666667pt;}
.y83{bottom:217.146667pt;}
.y161{bottom:218.746667pt;}
.y5c{bottom:224.506667pt;}
.y99{bottom:224.986667pt;}
.y139{bottom:230.426667pt;}
.y19d{bottom:232.346667pt;}
.yd4{bottom:232.506667pt;}
.y2b{bottom:232.666667pt;}
.y17d{bottom:234.746667pt;}
.y102{bottom:235.066667pt;}
.y82{bottom:235.546667pt;}
.y160{bottom:237.146667pt;}
.y135{bottom:246.426667pt;}
.ycd{bottom:248.506667pt;}
.y1b2{bottom:250.746667pt;}
.y5b{bottom:250.906667pt;}
.y17c{bottom:253.146667pt;}
.y101{bottom:253.466667pt;}
.y98{bottom:253.946667pt;}
.y15f{bottom:255.546667pt;}
.y19c{bottom:258.746667pt;}
.y2a{bottom:261.626667pt;}
.y81{bottom:261.946667pt;}
.y137{bottom:262.426667pt;}
.yd2{bottom:264.506667pt;}
.y1b1{bottom:269.146667pt;}
.y100{bottom:271.866667pt;}
.y97{bottom:272.346667pt;}
.y15e{bottom:273.946667pt;}
.y19b{bottom:277.146667pt;}
.y5a{bottom:277.306667pt;}
.y136{bottom:278.426667pt;}
.y17b{bottom:279.546667pt;}
.yd1{bottom:280.506667pt;}
.y1b0{bottom:287.546667pt;}
.y29{bottom:288.026667pt;}
.y80{bottom:288.346667pt;}
.yff{bottom:290.266667pt;}
.y96{bottom:290.746667pt;}
.y15d{bottom:292.346667pt;}
.y131{bottom:294.426667pt;}
.y59{bottom:295.706667pt;}
.ycf{bottom:296.506667pt;}
.y17a{bottom:297.946667pt;}
.y19a{bottom:303.586667pt;}
.y28{bottom:306.466667pt;}
.y7f{bottom:306.786667pt;}
.yfe{bottom:308.706667pt;}
.y134{bottom:310.466667pt;}
.y15c{bottom:310.786667pt;}
.yc8{bottom:312.546667pt;}
.y1af{bottom:313.986667pt;}
.y58{bottom:314.146667pt;}
.y179{bottom:316.386667pt;}
.y95{bottom:317.186667pt;}
.y199{bottom:321.986667pt;}
.y27{bottom:324.866667pt;}
.y7e{bottom:325.186667pt;}
.y133{bottom:326.466667pt;}
.yfd{bottom:327.106667pt;}
.ycc{bottom:328.546667pt;}
.y15b{bottom:329.186667pt;}
.y1ae{bottom:332.386667pt;}
.y57{bottom:332.546667pt;}
.y178{bottom:334.786667pt;}
.y198{bottom:340.386667pt;}
.y12d{bottom:342.466667pt;}
.y26{bottom:343.266667pt;}
.y7d{bottom:343.586667pt;}
.ycb{bottom:344.546667pt;}
.y15a{bottom:347.586667pt;}
.y56{bottom:350.946667pt;}
.yfc{bottom:353.506667pt;}
.y130{bottom:358.466667pt;}
.y197{bottom:358.786667pt;}
.yca{bottom:360.546667pt;}
.y177{bottom:361.186667pt;}
.y25{bottom:361.666667pt;}
.y7c{bottom:361.986667pt;}
.y159{bottom:365.986667pt;}
.y55{bottom:369.346667pt;}
.yfb{bottom:371.906667pt;}
.y12f{bottom:374.466667pt;}
.yc0{bottom:376.546667pt;}
.y1ad{bottom:377.186667pt;}
.y176{bottom:379.586667pt;}
.y24{bottom:380.066667pt;}
.y7b{bottom:380.386667pt;}
.y158{bottom:384.386667pt;}
.y196{bottom:385.186667pt;}
.y54{bottom:387.746667pt;}
.y129{bottom:390.466667pt;}
.y1ac{bottom:395.586667pt;}
.y175{bottom:397.986667pt;}
.y23{bottom:398.466667pt;}
.y7a{bottom:398.786667pt;}
.y195{bottom:403.586667pt;}
.yfa{bottom:405.666667pt;}
.yc6{bottom:405.826667pt;}
.y53{bottom:406.146667pt;}
.y12c{bottom:406.466667pt;}
.y157{bottom:410.626667pt;}
.y79{bottom:417.186667pt;}
.yf9{bottom:421.026667pt;}
.yc5{bottom:421.826667pt;}
.y194{bottom:421.986667pt;}
.y12a{bottom:422.466667pt;}
.y174{bottom:424.386667pt;}
.y22{bottom:424.866667pt;}
.y156{bottom:429.026667pt;}
.y52{bottom:432.546667pt;}
.y78{bottom:435.586667pt;}
.yc4{bottom:437.826667pt;}
.y127{bottom:438.466667pt;}
.y1ab{bottom:440.386667pt;}
.yf5{bottom:442.146667pt;}
.y173{bottom:442.786667pt;}
.y21{bottom:443.266667pt;}
.y155{bottom:447.426667pt;}
.y193{bottom:448.386667pt;}
.y51{bottom:450.946667pt;}
.yb9{bottom:453.826667pt;}
.y77{bottom:453.986667pt;}
.yf8{bottom:458.146667pt;}
.y1aa{bottom:458.786667pt;}
.y20{bottom:461.666667pt;}
.y154{bottom:465.826667pt;}
.y192{bottom:466.786667pt;}
.y172{bottom:469.186667pt;}
.y50{bottom:469.346667pt;}
.ybf{bottom:469.826667pt;}
.y76{bottom:472.386667pt;}
.yf7{bottom:474.146667pt;}
.y1f{bottom:480.066667pt;}
.y153{bottom:484.226667pt;}
.y191{bottom:485.186667pt;}
.ybe{bottom:485.826667pt;}
.y171{bottom:487.586667pt;}
.y4f{bottom:487.746667pt;}
.yf6{bottom:490.146667pt;}
.y75{bottom:490.786667pt;}
.y126{bottom:496.226667pt;}
.y1e{bottom:498.466667pt;}
.y94{bottom:498.786667pt;}
.ybd{bottom:501.826667pt;}
.y152{bottom:502.626667pt;}
.y190{bottom:503.586667pt;}
.y170{bottom:505.986667pt;}
.y4e{bottom:506.146667pt;}
.y125{bottom:513.346667pt;}
.y74{bottom:517.186667pt;}
.yb7{bottom:517.826667pt;}
.y151{bottom:521.026667pt;}
.y1a9{bottom:521.986667pt;}
.yf4{bottom:522.146667pt;}
.y4d{bottom:524.546667pt;}
.y1d{bottom:524.866667pt;}
.y18f{bottom:529.986667pt;}
.y16f{bottom:532.386667pt;}
.y73{bottom:535.586667pt;}
.yf3{bottom:538.173333pt;}
.y124{bottom:538.493333pt;}
.y150{bottom:539.453333pt;}
.y4c{bottom:542.973333pt;}
.y1c{bottom:543.293333pt;}
.y18e{bottom:548.413333pt;}
.y72{bottom:554.013333pt;}
.yf2{bottom:554.173333pt;}
.y123{bottom:556.893333pt;}
.y14f{bottom:557.853333pt;}
.y4b{bottom:561.373333pt;}
.y1b{bottom:561.693333pt;}
.y18d{bottom:566.813333pt;}
.yec{bottom:570.173333pt;}
.y71{bottom:572.413333pt;}
.y16e{bottom:574.813333pt;}
.y122{bottom:575.293333pt;}
.yb6{bottom:575.613333pt;}
.y14e{bottom:576.253333pt;}
.y4a{bottom:579.773333pt;}
.y1a{bottom:580.093333pt;}
.y93{bottom:580.413333pt;}
.yef{bottom:586.173333pt;}
.y70{bottom:590.813333pt;}
.yb5{bottom:592.733333pt;}
.y16d{bottom:593.213333pt;}
.y121{bottom:593.693333pt;}
.y14d{bottom:594.653333pt;}
.y49{bottom:598.173333pt;}
.y19{bottom:598.493333pt;}
.yee{bottom:602.173333pt;}
.y92{bottom:606.813333pt;}
.y6f{bottom:609.213333pt;}
.y16c{bottom:611.613333pt;}
.y120{bottom:612.093333pt;}
.y48{bottom:616.573333pt;}
.y18{bottom:616.893333pt;}
.yb4{bottom:617.693333pt;}
.yed{bottom:618.173333pt;}
.y14c{bottom:621.693333pt;}
.y91{bottom:625.213333pt;}
.y16b{bottom:630.013333pt;}
.y11f{bottom:630.493333pt;}
.ye8{bottom:634.173333pt;}
.y17{bottom:635.293333pt;}
.y6e{bottom:635.613333pt;}
.yb3{bottom:636.093333pt;}
.y18c{bottom:638.013333pt;}
.y47{bottom:642.973333pt;}
.y90{bottom:643.613333pt;}
.y1a8{bottom:648.413333pt;}
.y11e{bottom:648.893333pt;}
.yeb{bottom:650.173333pt;}
.y14b{bottom:650.333333pt;}
.y16{bottom:653.693333pt;}
.y6d{bottom:654.013333pt;}
.yb2{bottom:654.493333pt;}
.y16a{bottom:656.413333pt;}
.y8f{bottom:662.013333pt;}
.yea{bottom:666.173333pt;}
.y14a{bottom:667.133333pt;}
.y46{bottom:669.853333pt;}
.y6c{bottom:672.413333pt;}
.yb1{bottom:672.893333pt;}
.y18b{bottom:674.813333pt;}
.y11d{bottom:674.973333pt;}
.y8e{bottom:680.413333pt;}
.y15{bottom:680.573333pt;}
.y149{bottom:681.533333pt;}
.ye9{bottom:682.173333pt;}
.y6b{bottom:690.813333pt;}
.yb0{bottom:691.293333pt;}
.y11c{bottom:691.933333pt;}
.y18a{bottom:693.213333pt;}
.ye4{bottom:698.173333pt;}
.y45{bottom:698.813333pt;}
.y14{bottom:708.893333pt;}
.y6a{bottom:709.213333pt;}
.yaf{bottom:709.693333pt;}
.y1a7{bottom:711.613333pt;}
.y148{bottom:712.733333pt;}
.ye7{bottom:714.173333pt;}
.y44{bottom:717.213333pt;}
.y189{bottom:719.613333pt;}
.y69{bottom:727.613333pt;}
.yae{bottom:728.093333pt;}
.y1a6{bottom:730.013333pt;}
.ye6{bottom:730.173333pt;}
.y43{bottom:735.613333pt;}
.y13{bottom:736.893333pt;}
.y188{bottom:738.013333pt;}
.y8d{bottom:743.613333pt;}
.y68{bottom:746.013333pt;}
.ye5{bottom:746.173333pt;}
.yad{bottom:746.493333pt;}
.y1be{bottom:748.413333pt;}
.y42{bottom:754.013333pt;}
.y187{bottom:756.413333pt;}
.y146{bottom:759.453333pt;}
.y12{bottom:760.253333pt;}
.y8c{bottom:762.013333pt;}
.ye1{bottom:762.173333pt;}
.y67{bottom:764.413333pt;}
.yac{bottom:764.893333pt;}
.y1bd{bottom:766.813333pt;}
.y41{bottom:772.413333pt;}
.y1a5{bottom:774.853333pt;}
.y11b{bottom:778.213333pt;}
.y11{bottom:779.173333pt;}
.y8b{bottom:780.453333pt;}
.y186{bottom:782.853333pt;}
.y66{bottom:790.853333pt;}
.yab{bottom:791.333333pt;}
.y1bc{bottom:793.253333pt;}
.y11a{bottom:794.213333pt;}
.y10{bottom:796.293333pt;}
.y40{bottom:798.853333pt;}
.y185{bottom:801.253333pt;}
.y169{bottom:809.253333pt;}
.y115{bottom:810.213333pt;}
.y1bb{bottom:811.653333pt;}
.y3f{bottom:817.253333pt;}
.yaa{bottom:817.573333pt;}
.y184{bottom:819.653333pt;}
.ye0{bottom:819.973333pt;}
.yf{bottom:823.493333pt;}
.y117{bottom:826.213333pt;}
.y168{bottom:827.653333pt;}
.y1ba{bottom:830.053333pt;}
.ya9{bottom:831.813333pt;}
.y3e{bottom:835.653333pt;}
.ydf{bottom:836.933333pt;}
.y145{bottom:837.413333pt;}
.y116{bottom:842.213333pt;}
.y183{bottom:846.053333pt;}
.ya8{bottom:849.893333pt;}
.y3d{bottom:854.053333pt;}
.y1b9{bottom:856.453333pt;}
.y111{bottom:858.213333pt;}
.yde{bottom:862.053333pt;}
.ye{bottom:862.213333pt;}
.y182{bottom:864.453333pt;}
.ya6{bottom:868.133333pt;}
.y142{bottom:868.773333pt;}
.y3c{bottom:872.453333pt;}
.y114{bottom:874.213333pt;}
.ydd{bottom:880.453333pt;}
.y1a4{bottom:882.853333pt;}
.y144{bottom:884.773333pt;}
.ya4{bottom:886.213333pt;}
.y113{bottom:890.213333pt;}
.y3b{bottom:890.853333pt;}
.yd{bottom:892.933333pt;}
.ydc{bottom:898.853333pt;}
.y1a3{bottom:901.253333pt;}
.ya2{bottom:904.933333pt;}
.y10c{bottom:906.213333pt;}
.y3a{bottom:909.253333pt;}
.y141{bottom:911.973333pt;}
.ydb{bottom:917.253333pt;}
.y1b8{bottom:919.653333pt;}
.y110{bottom:922.213333pt;}
.y9f{bottom:923.173333pt;}
.yc{bottom:923.493333pt;}
.y65{bottom:927.653333pt;}
.y140{bottom:928.933333pt;}
.y39{bottom:935.653333pt;}
.y10f{bottom:938.213333pt;}
.y64{bottom:946.053333pt;}
.y38{bottom:954.053333pt;}
.y10a{bottom:954.213333pt;}
.ya{bottom:959.973333pt;}
.y63{bottom:964.453333pt;}
.y9e{bottom:965.573333pt;}
.y37{bottom:972.453333pt;}
.y1{bottom:974.853333pt;}
.y8a{bottom:982.853333pt;}
.y36{bottom:990.853333pt;}
.y35{bottom:1009.253333pt;}
.y109{bottom:1012.000000pt;}
.y34{bottom:1027.680000pt;}
.y108{bottom:1028.960000pt;}
.y32{bottom:1045.760000pt;}
.y31{bottom:1070.720000pt;}
.h4{height:2.295000pt;}
.h21{height:15.200000pt;}
.h26{height:15.232000pt;}
.h19{height:15.360000pt;}
.h1d{height:15.392000pt;}
.h14{height:17.440000pt;}
.h11{height:17.600000pt;}
.h13{height:18.080000pt;}
.h1b{height:28.640000pt;}
.hf{height:30.560000pt;}
.h2b{height:30.720000pt;}
.h2c{height:30.752000pt;}
.h8{height:30.982500pt;}
.h2a{height:31.360000pt;}
.h16{height:36.001250pt;}
.h3{height:43.031250pt;}
.h9{height:43.782500pt;}
.h23{height:45.920000pt;}
.h1f{height:45.952000pt;}
.h27{height:46.080000pt;}
.h15{height:46.112000pt;}
.h22{height:47.045000pt;}
.h10{height:47.180312pt;}
.h24{height:47.200000pt;}
.h25{height:47.232000pt;}
.h28{height:47.360000pt;}
.h29{height:47.392000pt;}
.h12{height:47.621250pt;}
.hb{height:48.530000pt;}
.h17{height:49.255625pt;}
.he{height:52.750000pt;}
.hc{height:52.785000pt;}
.h7{height:54.089375pt;}
.h1e{height:54.915000pt;}
.hd{height:56.843750pt;}
.h5{height:57.375000pt;}
.h20{height:63.200000pt;}
.h18{height:63.360000pt;}
.h1c{height:63.392000pt;}
.ha{height:66.507188pt;}
.h1a{height:76.640000pt;}
.h6{height:94.929063pt;}
.h2{height:117.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2e{width:35.200000pt;}
.w2a{width:37.440000pt;}
.w23{width:39.840000pt;}
.w21{width:39.872000pt;}
.w13{width:40.960000pt;}
.w19{width:41.472000pt;}
.w14{width:42.720000pt;}
.w8{width:43.360000pt;}
.w6{width:43.680000pt;}
.w1e{width:45.600000pt;}
.w27{width:46.080000pt;}
.wf{width:46.592000pt;}
.w16{width:46.752000pt;}
.w12{width:47.072000pt;}
.w2d{width:47.200000pt;}
.w2f{width:47.232000pt;}
.w33{width:49.280000pt;}
.w7{width:50.432000pt;}
.w1a{width:53.280000pt;}
.w22{width:54.240000pt;}
.w1d{width:54.880000pt;}
.w26{width:55.360000pt;}
.we{width:56.000000pt;}
.w31{width:58.752000pt;}
.w18{width:59.360000pt;}
.w11{width:60.000000pt;}
.wa{width:62.592000pt;}
.w17{width:64.800000pt;}
.w20{width:65.920000pt;}
.w9{width:68.000000pt;}
.w32{width:69.440000pt;}
.w10{width:70.720000pt;}
.w29{width:73.280000pt;}
.w34{width:76.032000pt;}
.w30{width:77.280000pt;}
.w1f{width:82.112000pt;}
.w28{width:82.912000pt;}
.wb{width:83.360000pt;}
.wc{width:84.160000pt;}
.w25{width:86.432000pt;}
.w1c{width:90.592000pt;}
.w1b{width:118.880000pt;}
.w24{width:125.760000pt;}
.w2c{width:125.952000pt;}
.w2b{width:128.992000pt;}
.wd{width:140.986667pt;}
.w15{width:141.146667pt;}
.w3{width:211.066667pt;}
.w5{width:241.306667pt;}
.w2{width:478.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x33{left:8.800000pt;}
.x16{left:9.920000pt;}
.x4c{left:10.906667pt;}
.x1d{left:11.840000pt;}
.x18{left:13.120000pt;}
.x15{left:14.560000pt;}
.x29{left:15.680000pt;}
.x13{left:17.120000pt;}
.x22{left:18.560000pt;}
.x31{left:19.840000pt;}
.x20{left:20.800000pt;}
.x1e{left:21.760000pt;}
.x1f{left:23.360000pt;}
.x2b{left:24.320000pt;}
.x23{left:25.600000pt;}
.x39{left:26.880000pt;}
.x28{left:29.600000pt;}
.x30{left:31.840000pt;}
.x21{left:33.120000pt;}
.x2f{left:35.200000pt;}
.x1c{left:36.640000pt;}
.x47{left:37.626667pt;}
.x46{left:40.986667pt;}
.x32{left:42.074667pt;}
.x1{left:52.000000pt;}
.x3{left:65.632000pt;}
.x6{left:96.031988pt;}
.xc{left:99.711988pt;}
.x34{left:104.832000pt;}
.x8{left:110.911988pt;}
.x7{left:114.911988pt;}
.x9{left:116.351988pt;}
.x55{left:120.031988pt;}
.x10{left:162.266655pt;}
.x24{left:181.146667pt;}
.x35{left:189.626667pt;}
.x5{left:203.880000pt;}
.x3e{left:215.866667pt;}
.x48{left:222.746667pt;}
.xe{left:230.426655pt;}
.xf{left:245.786655pt;}
.x54{left:282.466667pt;}
.x3f{left:307.106667pt;}
.x49{left:309.826667pt;}
.xd{left:316.386655pt;}
.x25{left:322.946667pt;}
.x36{left:331.426667pt;}
.x12{left:338.306667pt;}
.xa{left:344.386655pt;}
.x4f{left:352.546667pt;}
.x40{left:362.626667pt;}
.x4a{left:365.826667pt;}
.x26{left:379.586667pt;}
.x14{left:382.626667pt;}
.x37{left:388.066667pt;}
.xb{left:396.866655pt;}
.x56{left:398.946655pt;}
.x11{left:402.626655pt;}
.x41{left:408.866667pt;}
.x4b{left:412.546667pt;}
.x27{left:426.973333pt;}
.x17{left:433.693333pt;}
.x38{left:435.453333pt;}
.x19{left:477.693333pt;}
.x50{left:479.293333pt;}
.x42{left:491.613333pt;}
.x4d{left:496.093333pt;}
.x2a{left:498.493333pt;}
.x3a{left:500.893333pt;}
.x51{left:527.293333pt;}
.x4{left:530.813333pt;}
.x1a{left:546.333333pt;}
.x43{left:558.173333pt;}
.x2c{left:559.133333pt;}
.x3b{left:560.893333pt;}
.x52{left:563.293333pt;}
.x4e{left:570.013333pt;}
.x44{left:598.693333pt;}
.x3c{left:603.013333pt;}
.x2d{left:606.853333pt;}
.x1b{left:609.733333pt;}
.x53{left:611.333333pt;}
.x2e{left:648.453333pt;}
.x45{left:653.573333pt;}
.x3d{left:656.933333pt;}
}




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