
    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_f648f3b591475df54f613766.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4ca57267438bb06f3299f2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_309c975d555b9558a7aac6c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_4b2e3d6b38c8b7bb858a74ec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_17313cad27ed4d1c995fba91.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0a4a3f885da8f6aea23fe2f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_82183377bdbbbea4636da93d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119629;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_7d5fe201dd629ecd8f1def4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148926;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_544a79eb15e83dd7a13ae7c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ff77b3c01229e64b06225475.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_070122ae5bb6f42e40ddd24c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104492;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;}
.ls9{letter-spacing:-1.224000px;}
.ls1b{letter-spacing:-1.152000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060600px;}
.ls15{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.163920px;}
.ls4{letter-spacing:0.181200px;}
.ls8{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.269280px;}
.ls7{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.894240px;}
.ls1d{letter-spacing:0.979920px;}
.lsc{letter-spacing:1.614240px;}
.ls19{letter-spacing:14.544000px;}
.ls18{letter-spacing:21.744000px;}
.ls11{letter-spacing:66.528000px;}
.lsa{letter-spacing:77.304000px;}
.lsb{letter-spacing:99.648000px;}
.lsd{letter-spacing:121.248000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws1{word-spacing:-39.888000px;}
.ws0{word-spacing:-36.810480px;}
.ws2{word-spacing:-29.736000px;}
.wsc{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws10{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.584000px;}
.wsb{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.506480px;}
.ws12{word-spacing:-16.306680px;}
.ws9{word-spacing:-13.566360px;}
.wsa{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.389960px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-12.334320px;}
._1c{margin-left:-10.400640px;}
._1e{margin-left:-8.899200px;}
._1d{margin-left:-6.754560px;}
._1b{margin-left:-4.884480px;}
._7{margin-left:-3.795840px;}
._6{margin-left:-2.710080px;}
._1{margin-left:-1.249920px;}
._0{width:1.449360px;}
._3{width:2.977920px;}
._2{width:4.536000px;}
._4{width:5.817840px;}
._5{width:6.863760px;}
._18{width:8.208000px;}
._1a{width:9.232560px;}
._d{width:10.251840px;}
._a{width:11.712000px;}
._b{width:12.888000px;}
._14{width:13.896000px;}
._e{width:15.120000px;}
._f{width:16.204560px;}
._13{width:17.424000px;}
._27{width:18.927840px;}
._36{width:20.245680px;}
._10{width:21.312000px;}
._9{width:22.464000px;}
._17{width:23.981280px;}
._19{width:25.056000px;}
._2c{width:26.259840px;}
._21{width:27.336000px;}
._2a{width:28.537680px;}
._29{width:29.592000px;}
._28{width:30.672000px;}
._c{width:32.544000px;}
._2f{width:34.104000px;}
._2d{width:36.142800px;}
._12{width:37.321920px;}
._11{width:38.448000px;}
._2e{width:40.032000px;}
._30{width:41.904000px;}
._16{width:45.360000px;}
._15{width:46.440000px;}
._26{width:49.417920px;}
._25{width:50.472000px;}
._32{width:52.110720px;}
._3a{width:53.364960px;}
._24{width:54.864000px;}
._23{width:64.008000px;}
._37{width:67.109760px;}
._38{width:69.302160px;}
._22{width:75.864000px;}
._31{width:84.936000px;}
._2b{width:123.816000px;}
._34{width:192.183120px;}
._33{width:193.323600px;}
._3b{width:403.439760px;}
._39{width:483.338160px;}
._35{width:810.282960px;}
._8{width:1114.860000px;}
._20{width:1472.676000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(155,187,89);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(154,0,64);}
.fs7{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:23.040000px;}
.y161{bottom:23.220000px;}
.y9{bottom:76.356000px;}
.y8{bottom:116.496000px;}
.y15a{bottom:148.176000px;}
.y16b{bottom:149.256000px;}
.y15{bottom:154.110000px;}
.y9e{bottom:158.250000px;}
.yf8{bottom:158.970000px;}
.y10d{bottom:159.510000px;}
.y14f{bottom:161.310000px;}
.y131{bottom:162.210000px;}
.y31{bottom:166.170000px;}
.y194{bottom:167.610000px;}
.y8d{bottom:167.970000px;}
.y48{bottom:168.150000px;}
.y12b{bottom:171.210000px;}
.y1b4{bottom:172.650000px;}
.yc2{bottom:173.190000px;}
.y13a{bottom:175.170000px;}
.y105{bottom:176.250000px;}
.ye0{bottom:177.330000px;}
.y1cc{bottom:177.870000px;}
.y1c6{bottom:178.410000px;}
.y201{bottom:179.130000px;}
.y65{bottom:180.570000px;}
.y1f2{bottom:181.290000px;}
.y116{bottom:184.170000px;}
.y217{bottom:184.710000px;}
.y218{bottom:184.890000px;}
.y1ee{bottom:186.150000px;}
.y21a{bottom:186.510000px;}
.y21b{bottom:187.590000px;}
.y159{bottom:188.310000px;}
.yca{bottom:189.210000px;}
.yf7{bottom:190.110000px;}
.y10c{bottom:190.470000px;}
.y176{bottom:194.250000px;}
.ya9{bottom:195.150000px;}
.y124{bottom:197.310000px;}
.y9d{bottom:198.210000px;}
.y14e{bottom:201.270000px;}
.y130{bottom:202.170000px;}
.y193{bottom:202.350000px;}
.yc1{bottom:204.150000px;}
.y30{bottom:206.310000px;}
.y104{bottom:207.210000px;}
.y1b3{bottom:207.570000px;}
.y8c{bottom:207.930000px;}
.y12a{bottom:211.170000px;}
.y16a{bottom:213.150000px;}
.y1cb{bottom:214.050000px;}
.y14{bottom:214.230000px;}
.y139{bottom:215.310000px;}
.y1ed{bottom:217.290000px;}
.y20f{bottom:218.370000px;}
.ydf{bottom:218.550000px;}
.y47{bottom:220.170000px;}
.y64{bottom:220.710000px;}
.yf6{bottom:221.070000px;}
.y1f1{bottom:221.250000px;}
.y200{bottom:222.150000px;}
.y115{bottom:224.310000px;}
.y216{bottom:224.670000px;}
.y175{bottom:225.210000px;}
.ya8{bottom:226.290000px;}
.y123{bottom:228.270000px;}
.y9c{bottom:229.170000px;}
.y10b{bottom:230.610000px;}
.y12f{bottom:233.310000px;}
.yc0{bottom:235.290000px;}
.yd0{bottom:238.170000px;}
.y14d{bottom:241.410000px;}
.y129{bottom:242.310000px;}
.y1b2{bottom:242.490000px;}
.y2f{bottom:246.270000px;}
.y103{bottom:247.170000px;}
.y1ec{bottom:248.250000px;}
.y8b{bottom:249.150000px;}
.yc9{bottom:251.310000px;}
.yf5{bottom:252.210000px;}
.y169{bottom:253.290000px;}
.y192{bottom:254.190000px;}
.y206{bottom:255.270000px;}
.y174{bottom:256.170000px;}
.y1ca{bottom:258.510000px;}
.y1c5{bottom:258.690000px;}
.yde{bottom:259.950000px;}
.y46{bottom:260.310000px;}
.y63{bottom:260.670000px;}
.y1f0{bottom:261.390000px;}
.y10a{bottom:261.570000px;}
.y114{bottom:264.270000px;}
.y215{bottom:264.810000px;}
.ya7{bottom:266.250000px;}
.y122{bottom:268.410000px;}
.ycf{bottom:269.310000px;}
.y128{bottom:273.270000px;}
.y138{bottom:277.410000px;}
.y102{bottom:278.310000px;}
.y13{bottom:278.850000px;}
.y1eb{bottom:279.390000px;}
.y191{bottom:280.110000px;}
.y14c{bottom:281.370000px;}
.yc8{bottom:282.270000px;}
.yf4{bottom:283.170000px;}
.y1ff{bottom:284.250000px;}
.y2e{bottom:286.410000px;}
.y173{bottom:287.310000px;}
.y8a{bottom:290.370000px;}
.y45{bottom:291.270000px;}
.y109{bottom:292.710000px;}
.y168{bottom:293.250000px;}
.y1b1{bottom:294.150000px;}
.y1d3{bottom:295.410000px;}
.y20e{bottom:298.470000px;}
.y1c4{bottom:298.650000px;}
.yce{bottom:300.270000px;}
.y62{bottom:300.810000px;}
.ydd{bottom:301.170000px;}
.y1ef{bottom:301.350000px;}
.y113{bottom:304.410000px;}
.y214{bottom:304.770000px;}
.y190{bottom:305.850000px;}
.ybf{bottom:306.390000px;}
.y121{bottom:308.370000px;}
.ya6{bottom:309.270000px;}
.y1ea{bottom:310.350000px;}
.y127{bottom:313.410000px;}
.y1fe{bottom:315.390000px;}
.y2d{bottom:317.370000px;}
.y172{bottom:318.270000px;}
.y14b{bottom:321.510000px;}
.y9b{bottom:322.410000px;}
.yf3{bottom:323.130000px;}
.y167{bottom:324.390000px;}
.y205{bottom:326.370000px;}
.y1b0{bottom:329.070000px;}
.y44{bottom:331.410000px;}
.y89{bottom:331.590000px;}
.y112{bottom:335.370000px;}
.ybe{bottom:337.395000px;}
.y108{bottom:337.575000px;}
.y1c9{bottom:338.655000px;}
.y1c3{bottom:338.835000px;}
.y158{bottom:339.555000px;}
.ya5{bottom:340.455000px;}
.y61{bottom:340.815000px;}
.y1e9{bottom:341.535000px;}
.ydc{bottom:342.435000px;}
.y12e{bottom:344.415000px;}
.y213{bottom:344.955000px;}
.y1fd{bottom:346.395000px;}
.y2c{bottom:348.555000px;}
.y12{bottom:349.095000px;}
.y171{bottom:349.455000px;}
.y9a{bottom:353.415000px;}
.yf2{bottom:354.315000px;}
.y1af{bottom:355.035000px;}
.y166{bottom:355.395000px;}
.y14a{bottom:361.515000px;}
.yc7{bottom:362.415000px;}
.y111{bottom:366.555000px;}
.y18f{bottom:366.735000px;}
.ybd{bottom:368.535000px;}
.y43{bottom:371.415000px;}
.y88{bottom:373.035000px;}
.y12d{bottom:375.555000px;}
.y1fc{bottom:377.535000px;}
.y20d{bottom:378.615000px;}
.y1c2{bottom:378.795000px;}
.y137{bottom:379.515000px;}
.y60{bottom:380.775000px;}
.y1ae{bottom:380.955000px;}
.y212{bottom:381.135000px;}
.y1e8{bottom:381.495000px;}
.ydb{bottom:382.575000px;}
.y99{bottom:384.555000px;}
.yf1{bottom:385.275000px;}
.y107{bottom:387.975000px;}
.y2b{bottom:388.515000px;}
.y170{bottom:389.415000px;}
.y18e{bottom:392.655000px;}
.ycd{bottom:393.555000px;}
.y165{bottom:395.535000px;}
.y204{bottom:397.515000px;}
.y149{bottom:401.655000px;}
.y42{bottom:402.555000px;}
.y110{bottom:406.515000px;}
.ybc{bottom:408.495000px;}
.y136{bottom:410.655000px;}
.y101{bottom:411.555000px;}
.y1e7{bottom:412.635000px;}
.y87{bottom:414.255000px;}
.y12c{bottom:415.515000px;}
.y1ad{bottom:415.695000px;}
.y18d{bottom:418.395000px;}
.y1c8{bottom:418.755000px;}
.y1c1{bottom:418.935000px;}
.y11{bottom:419.295000px;}
.y5f{bottom:420.915000px;}
.yda{bottom:422.535000px;}
.y98{bottom:424.515000px;}
.yf0{bottom:425.415000px;}
.y2a{bottom:428.655000px;}
.y16f{bottom:429.555000px;}
.y4b{bottom:433.515000px;}
.y164{bottom:435.495000px;}
.y203{bottom:437.655000px;}
.y1fb{bottom:439.635000px;}
.y148{bottom:441.615000px;}
.y41{bottom:442.515000px;}
.y10f{bottom:446.655000px;}
.ybb{bottom:448.635000px;}
.y135{bottom:450.615000px;}
.y1e6{bottom:452.595000px;}
.y18c{bottom:453.315000px;}
.yd9{bottom:453.495000px;}
.y1c7{bottom:454.755000px;}
.y86{bottom:455.475000px;}
.y97{bottom:455.655000px;}
.y20c{bottom:458.715000px;}
.y1c0{bottom:458.895000px;}
.y29{bottom:459.615000px;}
.y16e{bottom:460.515000px;}
.y5e{bottom:461.055000px;}
.y163{bottom:462.135000px;}
.yc6{bottom:464.655000px;}
.yef{bottom:465.375000px;}
.y1ac{bottom:467.535000px;}
.y120{bottom:468.615000px;}
.y1fa{bottom:470.595000px;}
.y157{bottom:472.755000px;}
.y40{bottom:473.655000px;}
.y1d2{bottom:477.615000px;}
.y18b{bottom:479.235000px;}
.yba{bottom:479.595000px;}
.y134{bottom:481.755000px;}
.y1e5{bottom:483.735000px;}
.y96{bottom:486.615000px;}
.y10{bottom:489.495000px;}
.y16d{bottom:491.655000px;}
.y1ab{bottom:493.455000px;}
.yd8{bottom:494.895000px;}
.ycc{bottom:495.615000px;}
.y85{bottom:496.695000px;}
.y74{bottom:498.855000px;}
.y1bf{bottom:499.035000px;}
.y28{bottom:499.755000px;}
.y5d{bottom:499.935000px;}
.y1f9{bottom:501.735000px;}
.y3f{bottom:504.615000px;}
.y18a{bottom:505.155000px;}
.yee{bottom:505.515000px;}
.y11f{bottom:508.755000px;}
.yb9{bottom:510.735000px;}
.y162{bottom:511.995000px;}
.y147{bottom:512.715000px;}
.ya4{bottom:513.615000px;}
.y1e4{bottom:514.695000px;}
.y95{bottom:517.755000px;}
.y133{bottom:521.715000px;}
.y16c{bottom:522.615000px;}
.y10e{bottom:526.755000px;}
.y1aa{bottom:528.195000px;}
.y27{bottom:530.715000px;}
.y1f8{bottom:532.695000px;}
.y3e{bottom:535.755000px;}
.yd7{bottom:536.115000px;}
.y5c{bottom:536.475000px;}
.y84{bottom:538.095000px;}
.y20b{bottom:538.815000px;}
.y73{bottom:538.995000px;}
.y11e{bottom:539.715000px;}
.y189{bottom:539.895000px;}
.yb8{bottom:541.695000px;}
.y146{bottom:543.855000px;}
.y100{bottom:544.755000px;}
.y1e3{bottom:545.835000px;}
.y1d1{bottom:548.715000px;}
.ya3{bottom:553.755000px;}
.y1a9{bottom:554.115000px;}
.y94{bottom:557.715000px;}
.yf{bottom:559.695000px;}
.y132{bottom:561.855000px;}
.y1f7{bottom:563.835000px;}
.y188{bottom:565.815000px;}
.y3d{bottom:566.715000px;}
.y26{bottom:570.855000px;}
.y5b{bottom:572.835000px;}
.y145{bottom:574.815000px;}
.yc5{bottom:575.715000px;}
.y1e2{bottom:576.795000px;}
.yd6{bottom:577.335000px;}
.yed{bottom:577.875000px;}
.y72{bottom:578.955000px;}
.y1be{bottom:579.135000px;}
.y83{bottom:579.315000px;}
.y1d0{bottom:579.855000px;}
.y1a8{bottom:580.035000px;}
.ya2{bottom:584.715000px;}
.y93{bottom:588.855000px;}
.y187{bottom:591.735000px;}
.y1f6{bottom:594.795000px;}
.y3c{bottom:597.855000px;}
.y11d{bottom:601.815000px;}
.yb7{bottom:603.825000px;}
.y144{bottom:605.985000px;}
.yc4{bottom:606.885000px;}
.y1e1{bottom:607.965000px;}
.yec{bottom:608.865000px;}
.y5a{bottom:609.405000px;}
.y25{bottom:610.845000px;}
.y160{bottom:611.565000px;}
.ya1{bottom:615.885000px;}
.yd5{bottom:618.585000px;}
.y20a{bottom:618.945000px;}
.y71{bottom:619.125000px;}
.y202{bottom:619.845000px;}
.y82{bottom:620.565000px;}
.yff{bottom:624.885000px;}
.y1f5{bottom:625.965000px;}
.y186{bottom:626.685000px;}
.y92{bottom:628.845000px;}
.y210{bottom:630.465000px;}
.y1a7{bottom:631.725000px;}
.ye{bottom:632.445000px;}
.y11c{bottom:632.985000px;}
.yb6{bottom:634.965000px;}
.y143{bottom:636.945000px;}
.y3b{bottom:637.845000px;}
.y1e0{bottom:638.925000px;}
.y24{bottom:641.985000px;}
.y59{bottom:645.765000px;}
.y156{bottom:645.945000px;}
.ya0{bottom:646.845000px;}
.yeb{bottom:650.085000px;}
.y1cf{bottom:650.985000px;}
.y185{bottom:652.425000px;}
.yfe{bottom:655.845000px;}
.y1f4{bottom:656.925000px;}
.y70{bottom:659.085000px;}
.y1bd{bottom:659.265000px;}
.y91{bottom:659.985000px;}
.y81{bottom:660.705000px;}
.y15f{bottom:661.425000px;}
.y11b{bottom:663.945000px;}
.yb5{bottom:665.925000px;}
.y1a6{bottom:666.645000px;}
.y142{bottom:668.085000px;}
.yc3{bottom:668.985000px;}
.y1df{bottom:670.065000px;}
.y219{bottom:676.365000px;}
.y3a{bottom:677.985000px;}
.y184{bottom:678.345000px;}
.y23{bottom:681.945000px;}
.y58{bottom:682.305000px;}
.y155{bottom:686.085000px;}
.yfd{bottom:686.985000px;}
.yd4{bottom:690.945000px;}
.yea{bottom:691.305000px;}
.y1a5{bottom:692.565000px;}
.yb4{bottom:697.065000px;}
.yd{bottom:698.685000px;}
.y209{bottom:699.045000px;}
.y6f{bottom:699.225000px;}
.y90{bottom:699.945000px;}
.y80{bottom:700.665000px;}
.y1de{bottom:701.025000px;}
.y11a{bottom:704.085000px;}
.y183{bottom:704.265000px;}
.y141{bottom:708.045000px;}
.y39{bottom:708.945000px;}
.y15d{bottom:711.285000px;}
.y1ce{bottom:713.085000px;}
.yfc{bottom:717.945000px;}
.y1a4{bottom:718.485000px;}
.y57{bottom:718.845000px;}
.y22{bottom:722.085000px;}
.y154{bottom:726.045000px;}
.yb3{bottom:728.025000px;}
.y106{bottom:731.085000px;}
.ye9{bottom:732.705000px;}
.y21f{bottom:734.145000px;}
.y1f3{bottom:737.025000px;}
.y6e{bottom:739.185000px;}
.y1bc{bottom:739.365000px;}
.y38{bottom:740.085000px;}
.y1dd{bottom:741.165000px;}
.y7f{bottom:741.885000px;}
.y119{bottom:744.045000px;}
.y211{bottom:744.765000px;}
.y140{bottom:748.185000px;}
.yfb{bottom:749.085000px;}
.y21{bottom:753.045000px;}
.y1a3{bottom:753.225000px;}
.y56{bottom:755.205000px;}
.yb2{bottom:759.165000px;}
.yd3{bottom:762.045000px;}
.ye8{bottom:763.665000px;}
.y182{bottom:764.925000px;}
.yc{bottom:765.105000px;}
.y153{bottom:766.185000px;}
.y37{bottom:771.045000px;}
.y1dc{bottom:772.125000px;}
.y21e{bottom:774.285000px;}
.y1a2{bottom:779.145000px;}
.y6d{bottom:779.325000px;}
.yfa{bottom:780.045000px;}
.y55{bottom:782.745000px;}
.y7e{bottom:783.285000px;}
.y20{bottom:784.185000px;}
.y13f{bottom:788.145000px;}
.y181{bottom:790.845000px;}
.yd2{bottom:793.185000px;}
.yb1{bottom:799.125000px;}
.y8f{bottom:802.185000px;}
.y1db{bottom:803.265000px;}
.ye7{bottom:804.885000px;}
.y1a1{bottom:805.065000px;}
.y152{bottom:806.145000px;}
.y36{bottom:811.185000px;}
.y21d{bottom:814.425000px;}
.y15c{bottom:815.145000px;}
.y54{bottom:819.105000px;}
.y6c{bottom:819.285000px;}
.y1bb{bottom:819.465000px;}
.y7d{bottom:823.245000px;}
.y1f{bottom:824.145000px;}
.y180{bottom:825.765000px;}
.y13e{bottom:828.285000px;}
.yb0{bottom:830.265000px;}
.y1a0{bottom:830.805000px;}
.y8e{bottom:833.145000px;}
.y1da{bottom:834.225000px;}
.yb{bottom:840.345000px;}
.y35{bottom:842.145000px;}
.ye6{bottom:845.025000px;}
.y151{bottom:846.285000px;}
.y21c{bottom:850.605000px;}
.y17f{bottom:851.505000px;}
.y15b{bottom:855.285000px;}
.y53{bottom:855.645000px;}
.y19f{bottom:856.725000px;}
.y6b{bottom:859.245000px;}
.y1ba{bottom:859.425000px;}
.yaf{bottom:861.225000px;}
.y7c{bottom:863.385000px;}
.y1e{bottom:864.285000px;}
.y13d{bottom:868.245000px;}
.y34{bottom:873.330000px;}
.y1d9{bottom:874.410000px;}
.y17e{bottom:877.470000px;}
.ye5{bottom:885.030000px;}
.y150{bottom:886.290000px;}
.y19e{bottom:891.690000px;}
.y52{bottom:892.230000px;}
.ya{bottom:892.410000px;}
.y1d{bottom:895.290000px;}
.y6a{bottom:899.250000px;}
.y208{bottom:899.430000px;}
.y1b9{bottom:899.610000px;}
.y7b{bottom:903.390000px;}
.y33{bottom:904.290000px;}
.y1d8{bottom:905.370000px;}
.y13c{bottom:908.430000px;}
.yf9{bottom:913.290000px;}
.ye4{bottom:916.170000px;}
.y1cd{bottom:917.430000px;}
.y19d{bottom:917.610000px;}
.yae{bottom:923.370000px;}
.yd1{bottom:926.430000px;}
.y51{bottom:928.590000px;}
.y1c{bottom:935.430000px;}
.y17d{bottom:938.310000px;}
.y7{bottom:938.670000px;}
.y69{bottom:939.390000px;}
.y1b8{bottom:939.570000px;}
.y19c{bottom:943.350000px;}
.y7a{bottom:943.530000px;}
.y4a{bottom:944.430000px;}
.y1d7{bottom:945.330000px;}
.ye3{bottom:947.130000px;}
.y13b{bottom:948.390000px;}
.y126{bottom:957.390000px;}
.yad{bottom:963.330000px;}
.y17c{bottom:964.050000px;}
.y50{bottom:965.130000px;}
.y1b{bottom:966.390000px;}
.y32{bottom:975.390000px;}
.y19b{bottom:978.270000px;}
.y68{bottom:979.350000px;}
.y207{bottom:979.530000px;}
.y1b7{bottom:979.710000px;}
.y79{bottom:983.490000px;}
.y118{bottom:984.390000px;}
.y1d6{bottom:985.470000px;}
.y6{bottom:985.650000px;}
.ye2{bottom:988.530000px;}
.y17b{bottom:989.970000px;}
.ycb{bottom:997.530000px;}
.y4f{bottom:1001.490000px;}
.yac{bottom:1003.470000px;}
.y19a{bottom:1004.190000px;}
.y1a{bottom:1006.530000px;}
.y117{bottom:1015.530000px;}
.y67{bottom:1019.490000px;}
.y1b6{bottom:1019.670000px;}
.y78{bottom:1023.450000px;}
.y17a{bottom:1024.890000px;}
.y1d5{bottom:1025.430000px;}
.ye1{bottom:1028.490000px;}
.y199{bottom:1030.110000px;}
.y5{bottom:1032.630000px;}
.y19{bottom:1037.490000px;}
.y4e{bottom:1038.030000px;}
.yab{bottom:1046.490000px;}
.y179{bottom:1050.810000px;}
.y198{bottom:1055.850000px;}
.y66{bottom:1059.450000px;}
.y125{bottom:1059.630000px;}
.y1b5{bottom:1059.810000px;}
.y1d4{bottom:1065.570000px;}
.y18{bottom:1068.630000px;}
.y4{bottom:1070.610000px;}
.y4d{bottom:1075.470000px;}
.y77{bottom:1075.650000px;}
.y178{bottom:1076.550000px;}
.yaa{bottom:1077.630000px;}
.y197{bottom:1090.770000px;}
.y17{bottom:1099.590000px;}
.y177{bottom:1102.470000px;}
.y3{bottom:1107.330000px;}
.y9f{bottom:1108.590000px;}
.y196{bottom:1116.690000px;}
.y4c{bottom:1127.490000px;}
.y76{bottom:1127.670000px;}
.y49{bottom:1139.580000px;}
.y16{bottom:1139.760000px;}
.y2{bottom:1140.120000px;}
.y195{bottom:1142.640000px;}
.y1{bottom:1180.980000px;}
.y75{bottom:1195.020000px;}
.he{height:48.960000px;}
.h10{height:48.996000px;}
.hf{height:49.140000px;}
.h11{height:62.327813px;}
.hb{height:64.546875px;}
.h5{height:70.664062px;}
.hc{height:71.613281px;}
.h12{height:74.953125px;}
.ha{height:75.093750px;}
.hd{height:99.874688px;}
.h9{height:111.198516px;}
.h4{height:112.640625px;}
.h6{height:121.852266px;}
.h8{height:133.171875px;}
.h2{height:137.421562px;}
.h7{height:144.491484px;}
.h3{height:150.187500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:137.160000px;}
.w3{width:158.430000px;}
.w6{width:158.610000px;}
.w4{width:180.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x7{left:127.655987px;}
.x8{left:133.955987px;}
.x10{left:145.655987px;}
.x13{left:154.649987px;}
.x14{left:159.509987px;}
.x9{left:182.009987px;}
.x15{left:186.509987px;}
.x3{left:191.189987px;}
.x1{left:226.109987px;}
.xa{left:239.069987px;}
.x2{left:248.969987px;}
.xe{left:255.269987px;}
.x5{left:258.509987px;}
.xd{left:287.534987px;}
.x4{left:289.694987px;}
.x16{left:437.474987px;}
.x11{left:440.534987px;}
.x12{left:441.974987px;}
.xf{left:443.594987px;}
.x6{left:446.474987px;}
.xc{left:450.434987px;}
.x18{left:468.285000px;}
.x1b{left:541.904987px;}
.x1a{left:590.684987px;}
.x19{left:606.165000px;}
.xb{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.088000pt;}
.ls1b{letter-spacing:-1.024000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053867pt;}
.ls15{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.145707pt;}
.ls4{letter-spacing:0.161067pt;}
.ls8{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.239360pt;}
.ls7{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.794880pt;}
.ls1d{letter-spacing:0.871040pt;}
.lsc{letter-spacing:1.434880pt;}
.ls19{letter-spacing:12.928000pt;}
.ls18{letter-spacing:19.328000pt;}
.ls11{letter-spacing:59.136000pt;}
.lsa{letter-spacing:68.714667pt;}
.lsb{letter-spacing:88.576000pt;}
.lsd{letter-spacing:107.776000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws0{word-spacing:-32.720427pt;}
.ws2{word-spacing:-26.432000pt;}
.wsc{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.408000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.672427pt;}
.ws12{word-spacing:-14.494827pt;}
.ws9{word-spacing:-12.058987pt;}
.wsa{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.902187pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-10.963840pt;}
._1c{margin-left:-9.245013pt;}
._1e{margin-left:-7.910400pt;}
._1d{margin-left:-6.004053pt;}
._1b{margin-left:-4.341760pt;}
._7{margin-left:-3.374080pt;}
._6{margin-left:-2.408960pt;}
._1{margin-left:-1.111040pt;}
._0{width:1.288320pt;}
._3{width:2.647040pt;}
._2{width:4.032000pt;}
._4{width:5.171413pt;}
._5{width:6.101120pt;}
._18{width:7.296000pt;}
._1a{width:8.206720pt;}
._d{width:9.112747pt;}
._a{width:10.410667pt;}
._b{width:11.456000pt;}
._14{width:12.352000pt;}
._e{width:13.440000pt;}
._f{width:14.404053pt;}
._13{width:15.488000pt;}
._27{width:16.824747pt;}
._36{width:17.996160pt;}
._10{width:18.944000pt;}
._9{width:19.968000pt;}
._17{width:21.316693pt;}
._19{width:22.272000pt;}
._2c{width:23.342080pt;}
._21{width:24.298667pt;}
._2a{width:25.366827pt;}
._29{width:26.304000pt;}
._28{width:27.264000pt;}
._c{width:28.928000pt;}
._2f{width:30.314667pt;}
._2d{width:32.126933pt;}
._12{width:33.175040pt;}
._11{width:34.176000pt;}
._2e{width:35.584000pt;}
._30{width:37.248000pt;}
._16{width:40.320000pt;}
._15{width:41.280000pt;}
._26{width:43.927040pt;}
._25{width:44.864000pt;}
._32{width:46.320640pt;}
._3a{width:47.435520pt;}
._24{width:48.768000pt;}
._23{width:56.896000pt;}
._37{width:59.653120pt;}
._38{width:61.601920pt;}
._22{width:67.434667pt;}
._31{width:75.498667pt;}
._2b{width:110.058667pt;}
._34{width:170.829440pt;}
._33{width:171.843200pt;}
._3b{width:358.613120pt;}
._39{width:429.633920pt;}
._35{width:720.251520pt;}
._8{width:990.986667pt;}
._20{width:1309.045333pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:20.480000pt;}
.y161{bottom:20.640000pt;}
.y9{bottom:67.872000pt;}
.y8{bottom:103.552000pt;}
.y15a{bottom:131.712000pt;}
.y16b{bottom:132.672000pt;}
.y15{bottom:136.986667pt;}
.y9e{bottom:140.666667pt;}
.yf8{bottom:141.306667pt;}
.y10d{bottom:141.786667pt;}
.y14f{bottom:143.386667pt;}
.y131{bottom:144.186667pt;}
.y31{bottom:147.706667pt;}
.y194{bottom:148.986667pt;}
.y8d{bottom:149.306667pt;}
.y48{bottom:149.466667pt;}
.y12b{bottom:152.186667pt;}
.y1b4{bottom:153.466667pt;}
.yc2{bottom:153.946667pt;}
.y13a{bottom:155.706667pt;}
.y105{bottom:156.666667pt;}
.ye0{bottom:157.626667pt;}
.y1cc{bottom:158.106667pt;}
.y1c6{bottom:158.586667pt;}
.y201{bottom:159.226667pt;}
.y65{bottom:160.506667pt;}
.y1f2{bottom:161.146667pt;}
.y116{bottom:163.706667pt;}
.y217{bottom:164.186667pt;}
.y218{bottom:164.346667pt;}
.y1ee{bottom:165.466667pt;}
.y21a{bottom:165.786667pt;}
.y21b{bottom:166.746667pt;}
.y159{bottom:167.386667pt;}
.yca{bottom:168.186667pt;}
.yf7{bottom:168.986667pt;}
.y10c{bottom:169.306667pt;}
.y176{bottom:172.666667pt;}
.ya9{bottom:173.466667pt;}
.y124{bottom:175.386667pt;}
.y9d{bottom:176.186667pt;}
.y14e{bottom:178.906667pt;}
.y130{bottom:179.706667pt;}
.y193{bottom:179.866667pt;}
.yc1{bottom:181.466667pt;}
.y30{bottom:183.386667pt;}
.y104{bottom:184.186667pt;}
.y1b3{bottom:184.506667pt;}
.y8c{bottom:184.826667pt;}
.y12a{bottom:187.706667pt;}
.y16a{bottom:189.466667pt;}
.y1cb{bottom:190.266667pt;}
.y14{bottom:190.426667pt;}
.y139{bottom:191.386667pt;}
.y1ed{bottom:193.146667pt;}
.y20f{bottom:194.106667pt;}
.ydf{bottom:194.266667pt;}
.y47{bottom:195.706667pt;}
.y64{bottom:196.186667pt;}
.yf6{bottom:196.506667pt;}
.y1f1{bottom:196.666667pt;}
.y200{bottom:197.466667pt;}
.y115{bottom:199.386667pt;}
.y216{bottom:199.706667pt;}
.y175{bottom:200.186667pt;}
.ya8{bottom:201.146667pt;}
.y123{bottom:202.906667pt;}
.y9c{bottom:203.706667pt;}
.y10b{bottom:204.986667pt;}
.y12f{bottom:207.386667pt;}
.yc0{bottom:209.146667pt;}
.yd0{bottom:211.706667pt;}
.y14d{bottom:214.586667pt;}
.y129{bottom:215.386667pt;}
.y1b2{bottom:215.546667pt;}
.y2f{bottom:218.906667pt;}
.y103{bottom:219.706667pt;}
.y1ec{bottom:220.666667pt;}
.y8b{bottom:221.466667pt;}
.yc9{bottom:223.386667pt;}
.yf5{bottom:224.186667pt;}
.y169{bottom:225.146667pt;}
.y192{bottom:225.946667pt;}
.y206{bottom:226.906667pt;}
.y174{bottom:227.706667pt;}
.y1ca{bottom:229.786667pt;}
.y1c5{bottom:229.946667pt;}
.yde{bottom:231.066667pt;}
.y46{bottom:231.386667pt;}
.y63{bottom:231.706667pt;}
.y1f0{bottom:232.346667pt;}
.y10a{bottom:232.506667pt;}
.y114{bottom:234.906667pt;}
.y215{bottom:235.386667pt;}
.ya7{bottom:236.666667pt;}
.y122{bottom:238.586667pt;}
.ycf{bottom:239.386667pt;}
.y128{bottom:242.906667pt;}
.y138{bottom:246.586667pt;}
.y102{bottom:247.386667pt;}
.y13{bottom:247.866667pt;}
.y1eb{bottom:248.346667pt;}
.y191{bottom:248.986667pt;}
.y14c{bottom:250.106667pt;}
.yc8{bottom:250.906667pt;}
.yf4{bottom:251.706667pt;}
.y1ff{bottom:252.666667pt;}
.y2e{bottom:254.586667pt;}
.y173{bottom:255.386667pt;}
.y8a{bottom:258.106667pt;}
.y45{bottom:258.906667pt;}
.y109{bottom:260.186667pt;}
.y168{bottom:260.666667pt;}
.y1b1{bottom:261.466667pt;}
.y1d3{bottom:262.586667pt;}
.y20e{bottom:265.306667pt;}
.y1c4{bottom:265.466667pt;}
.yce{bottom:266.906667pt;}
.y62{bottom:267.386667pt;}
.ydd{bottom:267.706667pt;}
.y1ef{bottom:267.866667pt;}
.y113{bottom:270.586667pt;}
.y214{bottom:270.906667pt;}
.y190{bottom:271.866667pt;}
.ybf{bottom:272.346667pt;}
.y121{bottom:274.106667pt;}
.ya6{bottom:274.906667pt;}
.y1ea{bottom:275.866667pt;}
.y127{bottom:278.586667pt;}
.y1fe{bottom:280.346667pt;}
.y2d{bottom:282.106667pt;}
.y172{bottom:282.906667pt;}
.y14b{bottom:285.786667pt;}
.y9b{bottom:286.586667pt;}
.yf3{bottom:287.226667pt;}
.y167{bottom:288.346667pt;}
.y205{bottom:290.106667pt;}
.y1b0{bottom:292.506667pt;}
.y44{bottom:294.586667pt;}
.y89{bottom:294.746667pt;}
.y112{bottom:298.106667pt;}
.ybe{bottom:299.906667pt;}
.y108{bottom:300.066667pt;}
.y1c9{bottom:301.026667pt;}
.y1c3{bottom:301.186667pt;}
.y158{bottom:301.826667pt;}
.ya5{bottom:302.626667pt;}
.y61{bottom:302.946667pt;}
.y1e9{bottom:303.586667pt;}
.ydc{bottom:304.386667pt;}
.y12e{bottom:306.146667pt;}
.y213{bottom:306.626667pt;}
.y1fd{bottom:307.906667pt;}
.y2c{bottom:309.826667pt;}
.y12{bottom:310.306667pt;}
.y171{bottom:310.626667pt;}
.y9a{bottom:314.146667pt;}
.yf2{bottom:314.946667pt;}
.y1af{bottom:315.586667pt;}
.y166{bottom:315.906667pt;}
.y14a{bottom:321.346667pt;}
.yc7{bottom:322.146667pt;}
.y111{bottom:325.826667pt;}
.y18f{bottom:325.986667pt;}
.ybd{bottom:327.586667pt;}
.y43{bottom:330.146667pt;}
.y88{bottom:331.586667pt;}
.y12d{bottom:333.826667pt;}
.y1fc{bottom:335.586667pt;}
.y20d{bottom:336.546667pt;}
.y1c2{bottom:336.706667pt;}
.y137{bottom:337.346667pt;}
.y60{bottom:338.466667pt;}
.y1ae{bottom:338.626667pt;}
.y212{bottom:338.786667pt;}
.y1e8{bottom:339.106667pt;}
.ydb{bottom:340.066667pt;}
.y99{bottom:341.826667pt;}
.yf1{bottom:342.466667pt;}
.y107{bottom:344.866667pt;}
.y2b{bottom:345.346667pt;}
.y170{bottom:346.146667pt;}
.y18e{bottom:349.026667pt;}
.ycd{bottom:349.826667pt;}
.y165{bottom:351.586667pt;}
.y204{bottom:353.346667pt;}
.y149{bottom:357.026667pt;}
.y42{bottom:357.826667pt;}
.y110{bottom:361.346667pt;}
.ybc{bottom:363.106667pt;}
.y136{bottom:365.026667pt;}
.y101{bottom:365.826667pt;}
.y1e7{bottom:366.786667pt;}
.y87{bottom:368.226667pt;}
.y12c{bottom:369.346667pt;}
.y1ad{bottom:369.506667pt;}
.y18d{bottom:371.906667pt;}
.y1c8{bottom:372.226667pt;}
.y1c1{bottom:372.386667pt;}
.y11{bottom:372.706667pt;}
.y5f{bottom:374.146667pt;}
.yda{bottom:375.586667pt;}
.y98{bottom:377.346667pt;}
.yf0{bottom:378.146667pt;}
.y2a{bottom:381.026667pt;}
.y16f{bottom:381.826667pt;}
.y4b{bottom:385.346667pt;}
.y164{bottom:387.106667pt;}
.y203{bottom:389.026667pt;}
.y1fb{bottom:390.786667pt;}
.y148{bottom:392.546667pt;}
.y41{bottom:393.346667pt;}
.y10f{bottom:397.026667pt;}
.ybb{bottom:398.786667pt;}
.y135{bottom:400.546667pt;}
.y1e6{bottom:402.306667pt;}
.y18c{bottom:402.946667pt;}
.yd9{bottom:403.106667pt;}
.y1c7{bottom:404.226667pt;}
.y86{bottom:404.866667pt;}
.y97{bottom:405.026667pt;}
.y20c{bottom:407.746667pt;}
.y1c0{bottom:407.906667pt;}
.y29{bottom:408.546667pt;}
.y16e{bottom:409.346667pt;}
.y5e{bottom:409.826667pt;}
.y163{bottom:410.786667pt;}
.yc6{bottom:413.026667pt;}
.yef{bottom:413.666667pt;}
.y1ac{bottom:415.586667pt;}
.y120{bottom:416.546667pt;}
.y1fa{bottom:418.306667pt;}
.y157{bottom:420.226667pt;}
.y40{bottom:421.026667pt;}
.y1d2{bottom:424.546667pt;}
.y18b{bottom:425.986667pt;}
.yba{bottom:426.306667pt;}
.y134{bottom:428.226667pt;}
.y1e5{bottom:429.986667pt;}
.y96{bottom:432.546667pt;}
.y10{bottom:435.106667pt;}
.y16d{bottom:437.026667pt;}
.y1ab{bottom:438.626667pt;}
.yd8{bottom:439.906667pt;}
.ycc{bottom:440.546667pt;}
.y85{bottom:441.506667pt;}
.y74{bottom:443.426667pt;}
.y1bf{bottom:443.586667pt;}
.y28{bottom:444.226667pt;}
.y5d{bottom:444.386667pt;}
.y1f9{bottom:445.986667pt;}
.y3f{bottom:448.546667pt;}
.y18a{bottom:449.026667pt;}
.yee{bottom:449.346667pt;}
.y11f{bottom:452.226667pt;}
.yb9{bottom:453.986667pt;}
.y162{bottom:455.106667pt;}
.y147{bottom:455.746667pt;}
.ya4{bottom:456.546667pt;}
.y1e4{bottom:457.506667pt;}
.y95{bottom:460.226667pt;}
.y133{bottom:463.746667pt;}
.y16c{bottom:464.546667pt;}
.y10e{bottom:468.226667pt;}
.y1aa{bottom:469.506667pt;}
.y27{bottom:471.746667pt;}
.y1f8{bottom:473.506667pt;}
.y3e{bottom:476.226667pt;}
.yd7{bottom:476.546667pt;}
.y5c{bottom:476.866667pt;}
.y84{bottom:478.306667pt;}
.y20b{bottom:478.946667pt;}
.y73{bottom:479.106667pt;}
.y11e{bottom:479.746667pt;}
.y189{bottom:479.906667pt;}
.yb8{bottom:481.506667pt;}
.y146{bottom:483.426667pt;}
.y100{bottom:484.226667pt;}
.y1e3{bottom:485.186667pt;}
.y1d1{bottom:487.746667pt;}
.ya3{bottom:492.226667pt;}
.y1a9{bottom:492.546667pt;}
.y94{bottom:495.746667pt;}
.yf{bottom:497.506667pt;}
.y132{bottom:499.426667pt;}
.y1f7{bottom:501.186667pt;}
.y188{bottom:502.946667pt;}
.y3d{bottom:503.746667pt;}
.y26{bottom:507.426667pt;}
.y5b{bottom:509.186667pt;}
.y145{bottom:510.946667pt;}
.yc5{bottom:511.746667pt;}
.y1e2{bottom:512.706667pt;}
.yd6{bottom:513.186667pt;}
.yed{bottom:513.666667pt;}
.y72{bottom:514.626667pt;}
.y1be{bottom:514.786667pt;}
.y83{bottom:514.946667pt;}
.y1d0{bottom:515.426667pt;}
.y1a8{bottom:515.586667pt;}
.ya2{bottom:519.746667pt;}
.y93{bottom:523.426667pt;}
.y187{bottom:525.986667pt;}
.y1f6{bottom:528.706667pt;}
.y3c{bottom:531.426667pt;}
.y11d{bottom:534.946667pt;}
.yb7{bottom:536.733333pt;}
.y144{bottom:538.653333pt;}
.yc4{bottom:539.453333pt;}
.y1e1{bottom:540.413333pt;}
.yec{bottom:541.213333pt;}
.y5a{bottom:541.693333pt;}
.y25{bottom:542.973333pt;}
.y160{bottom:543.613333pt;}
.ya1{bottom:547.453333pt;}
.yd5{bottom:549.853333pt;}
.y20a{bottom:550.173333pt;}
.y71{bottom:550.333333pt;}
.y202{bottom:550.973333pt;}
.y82{bottom:551.613333pt;}
.yff{bottom:555.453333pt;}
.y1f5{bottom:556.413333pt;}
.y186{bottom:557.053333pt;}
.y92{bottom:558.973333pt;}
.y210{bottom:560.413333pt;}
.y1a7{bottom:561.533333pt;}
.ye{bottom:562.173333pt;}
.y11c{bottom:562.653333pt;}
.yb6{bottom:564.413333pt;}
.y143{bottom:566.173333pt;}
.y3b{bottom:566.973333pt;}
.y1e0{bottom:567.933333pt;}
.y24{bottom:570.653333pt;}
.y59{bottom:574.013333pt;}
.y156{bottom:574.173333pt;}
.ya0{bottom:574.973333pt;}
.yeb{bottom:577.853333pt;}
.y1cf{bottom:578.653333pt;}
.y185{bottom:579.933333pt;}
.yfe{bottom:582.973333pt;}
.y1f4{bottom:583.933333pt;}
.y70{bottom:585.853333pt;}
.y1bd{bottom:586.013333pt;}
.y91{bottom:586.653333pt;}
.y81{bottom:587.293333pt;}
.y15f{bottom:587.933333pt;}
.y11b{bottom:590.173333pt;}
.yb5{bottom:591.933333pt;}
.y1a6{bottom:592.573333pt;}
.y142{bottom:593.853333pt;}
.yc3{bottom:594.653333pt;}
.y1df{bottom:595.613333pt;}
.y219{bottom:601.213333pt;}
.y3a{bottom:602.653333pt;}
.y184{bottom:602.973333pt;}
.y23{bottom:606.173333pt;}
.y58{bottom:606.493333pt;}
.y155{bottom:609.853333pt;}
.yfd{bottom:610.653333pt;}
.yd4{bottom:614.173333pt;}
.yea{bottom:614.493333pt;}
.y1a5{bottom:615.613333pt;}
.yb4{bottom:619.613333pt;}
.yd{bottom:621.053333pt;}
.y209{bottom:621.373333pt;}
.y6f{bottom:621.533333pt;}
.y90{bottom:622.173333pt;}
.y80{bottom:622.813333pt;}
.y1de{bottom:623.133333pt;}
.y11a{bottom:625.853333pt;}
.y183{bottom:626.013333pt;}
.y141{bottom:629.373333pt;}
.y39{bottom:630.173333pt;}
.y15d{bottom:632.253333pt;}
.y1ce{bottom:633.853333pt;}
.yfc{bottom:638.173333pt;}
.y1a4{bottom:638.653333pt;}
.y57{bottom:638.973333pt;}
.y22{bottom:641.853333pt;}
.y154{bottom:645.373333pt;}
.yb3{bottom:647.133333pt;}
.y106{bottom:649.853333pt;}
.ye9{bottom:651.293333pt;}
.y21f{bottom:652.573333pt;}
.y1f3{bottom:655.133333pt;}
.y6e{bottom:657.053333pt;}
.y1bc{bottom:657.213333pt;}
.y38{bottom:657.853333pt;}
.y1dd{bottom:658.813333pt;}
.y7f{bottom:659.453333pt;}
.y119{bottom:661.373333pt;}
.y211{bottom:662.013333pt;}
.y140{bottom:665.053333pt;}
.yfb{bottom:665.853333pt;}
.y21{bottom:669.373333pt;}
.y1a3{bottom:669.533333pt;}
.y56{bottom:671.293333pt;}
.yb2{bottom:674.813333pt;}
.yd3{bottom:677.373333pt;}
.ye8{bottom:678.813333pt;}
.y182{bottom:679.933333pt;}
.yc{bottom:680.093333pt;}
.y153{bottom:681.053333pt;}
.y37{bottom:685.373333pt;}
.y1dc{bottom:686.333333pt;}
.y21e{bottom:688.253333pt;}
.y1a2{bottom:692.573333pt;}
.y6d{bottom:692.733333pt;}
.yfa{bottom:693.373333pt;}
.y55{bottom:695.773333pt;}
.y7e{bottom:696.253333pt;}
.y20{bottom:697.053333pt;}
.y13f{bottom:700.573333pt;}
.y181{bottom:702.973333pt;}
.yd2{bottom:705.053333pt;}
.yb1{bottom:710.333333pt;}
.y8f{bottom:713.053333pt;}
.y1db{bottom:714.013333pt;}
.ye7{bottom:715.453333pt;}
.y1a1{bottom:715.613333pt;}
.y152{bottom:716.573333pt;}
.y36{bottom:721.053333pt;}
.y21d{bottom:723.933333pt;}
.y15c{bottom:724.573333pt;}
.y54{bottom:728.093333pt;}
.y6c{bottom:728.253333pt;}
.y1bb{bottom:728.413333pt;}
.y7d{bottom:731.773333pt;}
.y1f{bottom:732.573333pt;}
.y180{bottom:734.013333pt;}
.y13e{bottom:736.253333pt;}
.yb0{bottom:738.013333pt;}
.y1a0{bottom:738.493333pt;}
.y8e{bottom:740.573333pt;}
.y1da{bottom:741.533333pt;}
.yb{bottom:746.973333pt;}
.y35{bottom:748.573333pt;}
.ye6{bottom:751.133333pt;}
.y151{bottom:752.253333pt;}
.y21c{bottom:756.093333pt;}
.y17f{bottom:756.893333pt;}
.y15b{bottom:760.253333pt;}
.y53{bottom:760.573333pt;}
.y19f{bottom:761.533333pt;}
.y6b{bottom:763.773333pt;}
.y1ba{bottom:763.933333pt;}
.yaf{bottom:765.533333pt;}
.y7c{bottom:767.453333pt;}
.y1e{bottom:768.253333pt;}
.y13d{bottom:771.773333pt;}
.y34{bottom:776.293333pt;}
.y1d9{bottom:777.253333pt;}
.y17e{bottom:779.973333pt;}
.ye5{bottom:786.693333pt;}
.y150{bottom:787.813333pt;}
.y19e{bottom:792.613333pt;}
.y52{bottom:793.093333pt;}
.ya{bottom:793.253333pt;}
.y1d{bottom:795.813333pt;}
.y6a{bottom:799.333333pt;}
.y208{bottom:799.493333pt;}
.y1b9{bottom:799.653333pt;}
.y7b{bottom:803.013333pt;}
.y33{bottom:803.813333pt;}
.y1d8{bottom:804.773333pt;}
.y13c{bottom:807.493333pt;}
.yf9{bottom:811.813333pt;}
.ye4{bottom:814.373333pt;}
.y1cd{bottom:815.493333pt;}
.y19d{bottom:815.653333pt;}
.yae{bottom:820.773333pt;}
.yd1{bottom:823.493333pt;}
.y51{bottom:825.413333pt;}
.y1c{bottom:831.493333pt;}
.y17d{bottom:834.053333pt;}
.y7{bottom:834.373333pt;}
.y69{bottom:835.013333pt;}
.y1b8{bottom:835.173333pt;}
.y19c{bottom:838.533333pt;}
.y7a{bottom:838.693333pt;}
.y4a{bottom:839.493333pt;}
.y1d7{bottom:840.293333pt;}
.ye3{bottom:841.893333pt;}
.y13b{bottom:843.013333pt;}
.y126{bottom:851.013333pt;}
.yad{bottom:856.293333pt;}
.y17c{bottom:856.933333pt;}
.y50{bottom:857.893333pt;}
.y1b{bottom:859.013333pt;}
.y32{bottom:867.013333pt;}
.y19b{bottom:869.573333pt;}
.y68{bottom:870.533333pt;}
.y207{bottom:870.693333pt;}
.y1b7{bottom:870.853333pt;}
.y79{bottom:874.213333pt;}
.y118{bottom:875.013333pt;}
.y1d6{bottom:875.973333pt;}
.y6{bottom:876.133333pt;}
.ye2{bottom:878.693333pt;}
.y17b{bottom:879.973333pt;}
.ycb{bottom:886.693333pt;}
.y4f{bottom:890.213333pt;}
.yac{bottom:891.973333pt;}
.y19a{bottom:892.613333pt;}
.y1a{bottom:894.693333pt;}
.y117{bottom:902.693333pt;}
.y67{bottom:906.213333pt;}
.y1b6{bottom:906.373333pt;}
.y78{bottom:909.733333pt;}
.y17a{bottom:911.013333pt;}
.y1d5{bottom:911.493333pt;}
.ye1{bottom:914.213333pt;}
.y199{bottom:915.653333pt;}
.y5{bottom:917.893333pt;}
.y19{bottom:922.213333pt;}
.y4e{bottom:922.693333pt;}
.yab{bottom:930.213333pt;}
.y179{bottom:934.053333pt;}
.y198{bottom:938.533333pt;}
.y66{bottom:941.733333pt;}
.y125{bottom:941.893333pt;}
.y1b5{bottom:942.053333pt;}
.y1d4{bottom:947.173333pt;}
.y18{bottom:949.893333pt;}
.y4{bottom:951.653333pt;}
.y4d{bottom:955.973333pt;}
.y77{bottom:956.133333pt;}
.y178{bottom:956.933333pt;}
.yaa{bottom:957.893333pt;}
.y197{bottom:969.573333pt;}
.y17{bottom:977.413333pt;}
.y177{bottom:979.973333pt;}
.y3{bottom:984.293333pt;}
.y9f{bottom:985.413333pt;}
.y196{bottom:992.613333pt;}
.y4c{bottom:1002.213333pt;}
.y76{bottom:1002.373333pt;}
.y49{bottom:1012.960000pt;}
.y16{bottom:1013.120000pt;}
.y2{bottom:1013.440000pt;}
.y195{bottom:1015.680000pt;}
.y1{bottom:1049.760000pt;}
.y75{bottom:1062.240000pt;}
.he{height:43.520000pt;}
.h10{height:43.552000pt;}
.hf{height:43.680000pt;}
.h11{height:55.402500pt;}
.hb{height:57.375000pt;}
.h5{height:62.812500pt;}
.hc{height:63.656250pt;}
.h12{height:66.625000pt;}
.ha{height:66.750000pt;}
.hd{height:88.777500pt;}
.h9{height:98.843125pt;}
.h4{height:100.125000pt;}
.h6{height:108.313125pt;}
.h8{height:118.375000pt;}
.h2{height:122.152500pt;}
.h7{height:128.436875pt;}
.h3{height:133.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:121.920000pt;}
.w3{width:140.826667pt;}
.w6{width:140.986667pt;}
.w4{width:160.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x7{left:113.471988pt;}
.x8{left:119.071988pt;}
.x10{left:129.471988pt;}
.x13{left:137.466655pt;}
.x14{left:141.786655pt;}
.x9{left:161.786655pt;}
.x15{left:165.786655pt;}
.x3{left:169.946655pt;}
.x1{left:200.986655pt;}
.xa{left:212.506655pt;}
.x2{left:221.306655pt;}
.xe{left:226.906655pt;}
.x5{left:229.786655pt;}
.xd{left:255.586655pt;}
.x4{left:257.506655pt;}
.x16{left:388.866655pt;}
.x11{left:391.586655pt;}
.x12{left:392.866655pt;}
.xf{left:394.306655pt;}
.x6{left:396.866655pt;}
.xc{left:400.386655pt;}
.x18{left:416.253333pt;}
.x1b{left:481.693322pt;}
.x1a{left:525.053322pt;}
.x19{left:538.813333pt;}
.xb{left:680.453322pt;}
}




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