
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d08c11e8b9071fcc33230bcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_71982ae60fb6c45084bf3a4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6dadd6e5c01880808e55a721.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9e583b479683b6b1a59ed071.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_b7122b6aad9fa00a016bbda3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2482a1006e52bfa013bc8ceb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_17d438a9ffa381df8f88cf85.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1f{letter-spacing:-0.562200px;}
.ls11{letter-spacing:-0.157200px;}
.lsc{letter-spacing:-0.052560px;}
.ls1c{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls17{letter-spacing:0.126600px;}
.ls1{letter-spacing:0.168480px;}
.ls15{letter-spacing:0.209400px;}
.ls7{letter-spacing:0.211680px;}
.lse{letter-spacing:0.303000px;}
.lsd{letter-spacing:0.319680px;}
.ls9{letter-spacing:0.357000px;}
.lsb{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.385800px;}
.ls16{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.532800px;}
.lsa{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.918000px;}
.ls10{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.972800px;}
.ls19{letter-spacing:5.572800px;}
.ls18{letter-spacing:47.466720px;}
.lsf{letter-spacing:50.212800px;}
.ls1b{letter-spacing:69.652800px;}
.ls13{letter-spacing:81.306720px;}
.ls1e{letter-spacing:191.332800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.958600px;}
.ws3{word-spacing:-14.572800px;}
.ws6{word-spacing:-13.504200px;}
.ws9{word-spacing:-13.450200px;}
.wsd{word-spacing:-13.356600px;}
.wse{word-spacing:-13.273800px;}
.ws0{word-spacing:-13.160400px;}
.ws5{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.111200px;}
.wsf{word-spacing:-13.108320px;}
.ws8{word-spacing:-13.094640px;}
.wsa{word-spacing:-12.990000px;}
.wsb{word-spacing:-10.612800px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:2.552040px;}
._10{margin-left:-3.346560px;}
._7{margin-left:-2.307000px;}
._0{margin-left:-1.159200px;}
._3{width:1.015800px;}
._1{width:2.779836px;}
._2{width:4.107600px;}
._6{width:5.872798px;}
._9{width:7.121755px;}
._8{width:8.485800px;}
._4{width:10.398001px;}
._5{width:11.596189px;}
._a{width:14.223597px;}
._11{width:15.597480px;}
._b{width:16.732800px;}
._13{width:17.748840px;}
._12{width:18.884160px;}
._c{width:20.437800px;}
._15{width:21.513959px;}
._d{width:23.724720px;}
._e{width:24.860399px;}
._f{width:26.188080px;}
._16{width:27.429840px;}
._2b{width:29.282520px;}
._2e{width:32.449680px;}
._2f{width:33.670799px;}
._20{width:36.931680px;}
._21{width:38.127119px;}
._32{width:43.451400px;}
._33{width:45.747603px;}
._18{width:50.258160px;}
._23{width:55.222801px;}
._22{width:56.369400px;}
._17{width:59.145960px;}
._29{width:62.987040px;}
._2a{width:68.843520px;}
._27{width:69.859560px;}
._28{width:72.662520px;}
._30{width:75.058560px;}
._31{width:76.541759px;}
._1e{width:82.139640px;}
._1d{width:83.424960px;}
._1f{width:84.731880px;}
._26{width:91.910880px;}
._24{width:112.050000px;}
._25{width:113.569199px;}
._1c{width:127.408320px;}
._1a{width:129.380400px;}
._1b{width:130.514880px;}
._19{width:136.910160px;}
._14{width:143.912962px;}
._2d{width:191.530800px;}
._2c{width:227.984400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:7.740000px;}
.y13d{bottom:7.920000px;}
.y175{bottom:25.425000px;}
.y173{bottom:25.560000px;}
.y171{bottom:35.280000px;}
.y170{bottom:52.920000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.ya7{bottom:112.176000px;}
.y16d{bottom:116.496000px;}
.yb6{bottom:117.756000px;}
.y149{bottom:120.816000px;}
.y11c{bottom:121.536000px;}
.y1c2{bottom:122.976000px;}
.y199{bottom:125.676000px;}
.ya6{bottom:129.636000px;}
.yf6{bottom:130.536000px;}
.y21c{bottom:134.136000px;}
.y5e{bottom:135.216000px;}
.yb5{bottom:135.396000px;}
.y77{bottom:137.196000px;}
.y148{bottom:138.456000px;}
.y1c1{bottom:140.616000px;}
.y28{bottom:142.416000px;}
.y198{bottom:143.316000px;}
.ya5{bottom:147.276000px;}
.yf5{bottom:148.176000px;}
.y1e6{bottom:149.976000px;}
.y16c{bottom:152.130000px;}
.y5d{bottom:152.850000px;}
.y76{bottom:154.830000px;}
.y11b{bottom:157.170000px;}
.y1c0{bottom:158.070000px;}
.y27{bottom:160.050000px;}
.y21b{bottom:160.590000px;}
.y197{bottom:160.950000px;}
.ya4{bottom:164.910000px;}
.yf4{bottom:165.630000px;}
.y1e5{bottom:167.610000px;}
.y16b{bottom:169.770000px;}
.y5c{bottom:170.490000px;}
.y75{bottom:172.470000px;}
.y147{bottom:173.910000px;}
.y11a{bottom:174.810000px;}
.y1bf{bottom:175.710000px;}
.y26{bottom:177.510000px;}
.y21a{bottom:178.230000px;}
.y196{bottom:178.410000px;}
.yf3{bottom:183.270000px;}
.y1e4{bottom:185.250000px;}
.y204{bottom:187.230000px;}
.y16a{bottom:187.410000px;}
.y5b{bottom:188.130000px;}
.ydb{bottom:188.490000px;}
.y74{bottom:189.930000px;}
.y146{bottom:191.550000px;}
.y119{bottom:192.450000px;}
.y25{bottom:195.150000px;}
.y219{bottom:195.870000px;}
.y195{bottom:196.050000px;}
.ya3{bottom:200.370000px;}
.y1be{bottom:202.530000px;}
.y169{bottom:205.050000px;}
.y5a{bottom:205.770000px;}
.yda{bottom:206.130000px;}
.y73{bottom:207.570000px;}
.y145{bottom:209.190000px;}
.yf2{bottom:209.730000px;}
.y118{bottom:210.090000px;}
.y1e3{bottom:211.710000px;}
.y24{bottom:212.790000px;}
.y194{bottom:213.690000px;}
.y203{bottom:213.870000px;}
.yb4{bottom:214.590000px;}
.ya2{bottom:218.010000px;}
.y218{bottom:222.330000px;}
.y168{bottom:222.510000px;}
.yd9{bottom:223.770000px;}
.y144{bottom:226.650000px;}
.y117{bottom:227.550000px;}
.y1e2{bottom:229.350000px;}
.y193{bottom:231.150000px;}
.y202{bottom:231.510000px;}
.y59{bottom:232.230000px;}
.y72{bottom:234.030000px;}
.ya1{bottom:235.650000px;}
.y1bd{bottom:239.610000px;}
.y217{bottom:239.970000px;}
.y167{bottom:240.150000px;}
.yd8{bottom:241.230000px;}
.y143{bottom:244.290000px;}
.y116{bottom:245.190000px;}
.yf1{bottom:245.370000px;}
.y23{bottom:248.250000px;}
.y192{bottom:248.790000px;}
.yb3{bottom:250.230000px;}
.ya0{bottom:253.110000px;}
.y1e1{bottom:255.990000px;}
.y1bc{bottom:257.250000px;}
.y216{bottom:257.610000px;}
.y166{bottom:257.790000px;}
.y201{bottom:257.970000px;}
.yd7{bottom:258.870000px;}
.y142{bottom:261.930000px;}
.y115{bottom:262.830000px;}
.yf0{bottom:263.010000px;}
.y22{bottom:265.890000px;}
.y58{bottom:267.870000px;}
.y71{bottom:269.670000px;}
.y9f{bottom:270.750000px;}
.y1e0{bottom:273.630000px;}
.y1bb{bottom:274.890000px;}
.y165{bottom:275.250000px;}
.y200{bottom:275.610000px;}
.yd6{bottom:276.510000px;}
.y141{bottom:279.390000px;}
.y114{bottom:280.290000px;}
.yef{bottom:280.650000px;}
.y21{bottom:283.530000px;}
.y215{bottom:284.070000px;}
.y191{bottom:284.250000px;}
.y57{bottom:285.510000px;}
.y70{bottom:287.310000px;}
.y9e{bottom:288.390000px;}
.y1df{bottom:291.270000px;}
.y1ba{bottom:292.350000px;}
.y164{bottom:292.890000px;}
.y1ff{bottom:293.250000px;}
.yd5{bottom:293.970000px;}
.y140{bottom:297.030000px;}
.yee{bottom:298.110000px;}
.y20{bottom:301.170000px;}
.y214{bottom:301.710000px;}
.y190{bottom:301.890000px;}
.y56{bottom:302.970000px;}
.y6f{bottom:304.950000px;}
.y9d{bottom:306.030000px;}
.y1b9{bottom:310.035000px;}
.yd4{bottom:311.655000px;}
.y13f{bottom:314.715000px;}
.yed{bottom:315.795000px;}
.y113{bottom:315.975000px;}
.y1de{bottom:317.775000px;}
.y1f{bottom:318.675000px;}
.y227{bottom:319.395000px;}
.y18f{bottom:319.575000px;}
.y1fe{bottom:319.755000px;}
.y55{bottom:320.655000px;}
.y6e{bottom:322.635000px;}
.y9c{bottom:323.535000px;}
.y1b8{bottom:327.675000px;}
.y163{bottom:328.395000px;}
.yd3{bottom:329.295000px;}
.yec{bottom:333.435000px;}
.y112{bottom:333.615000px;}
.y1dd{bottom:335.415000px;}
.y1e{bottom:336.315000px;}
.y18e{bottom:337.215000px;}
.y1fd{bottom:337.395000px;}
.y54{bottom:338.295000px;}
.y6d{bottom:340.095000px;}
.y162{bottom:346.035000px;}
.yd2{bottom:346.755000px;}
.y13e{bottom:349.635000px;}
.y9b{bottom:350.175000px;}
.yeb{bottom:351.075000px;}
.y1dc{bottom:353.055000px;}
.y1d{bottom:353.955000px;}
.y18d{bottom:354.855000px;}
.y1fc{bottom:355.035000px;}
.y53{bottom:355.755000px;}
.y13c{bottom:361.695000px;}
.y1b7{bottom:363.135000px;}
.y161{bottom:363.675000px;}
.yd1{bottom:364.395000px;}
.yea{bottom:368.535000px;}
.y111{bottom:368.715000px;}
.y1c{bottom:371.415000px;}
.y18c{bottom:372.315000px;}
.y52{bottom:373.395000px;}
.y6c{bottom:375.735000px;}
.y1db{bottom:379.515000px;}
.y1b6{bottom:380.775000px;}
.y226{bottom:381.135000px;}
.y160{bottom:381.315000px;}
.y1fb{bottom:381.495000px;}
.yd0{bottom:382.035000px;}
.y9a{bottom:385.635000px;}
.ye9{bottom:386.175000px;}
.y110{bottom:386.355000px;}
.y1b{bottom:389.055000px;}
.y18b{bottom:389.955000px;}
.y213{bottom:390.135000px;}
.y51{bottom:391.035000px;}
.y6b{bottom:393.375000px;}
.y1da{bottom:397.155000px;}
.y1b5{bottom:398.415000px;}
.y15f{bottom:398.775000px;}
.y1fa{bottom:399.135000px;}
.y99{bottom:403.275000px;}
.ye8{bottom:403.815000px;}
.y10f{bottom:403.995000px;}
.y1a{bottom:406.695000px;}
.y212{bottom:407.775000px;}
.yb2{bottom:408.675000px;}
.y6a{bottom:410.835000px;}
.y1d9{bottom:414.795000px;}
.y1b4{bottom:416.055000px;}
.y13a{bottom:416.415000px;}
.y1f9{bottom:416.775000px;}
.ycf{bottom:417.495000px;}
.y98{bottom:420.915000px;}
.ye7{bottom:421.275000px;}
.y10e{bottom:421.455000px;}
.y19{bottom:424.335000px;}
.y225{bottom:425.235000px;}
.y18a{bottom:425.415000px;}
.yb1{bottom:426.135000px;}
.y50{bottom:426.495000px;}
.y69{bottom:428.475000px;}
.y1b3{bottom:433.515000px;}
.y15e{bottom:434.055000px;}
.y230{bottom:434.235000px;}
.y1f8{bottom:434.415000px;}
.yce{bottom:435.135000px;}
.y97{bottom:438.555000px;}
.y10d{bottom:439.095000px;}
.y1d8{bottom:441.255000px;}
.y224{bottom:442.875000px;}
.y189{bottom:443.055000px;}
.yb0{bottom:443.775000px;}
.y4f{bottom:444.135000px;}
.y68{bottom:446.115000px;}
.ye6{bottom:447.915000px;}
.y18{bottom:450.975000px;}
.y1b2{bottom:451.155000px;}
.y15d{bottom:451.695000px;}
.y211{bottom:451.875000px;}
.ycd{bottom:452.775000px;}
.y96{bottom:456.015000px;}
.y10c{bottom:456.735000px;}
.y1d7{bottom:458.895000px;}
.y223{bottom:460.515000px;}
.y188{bottom:460.695000px;}
.y1f7{bottom:460.875000px;}
.yaf{bottom:461.415000px;}
.y4e{bottom:461.775000px;}
.y139{bottom:465.015000px;}
.y1b1{bottom:468.795000px;}
.y15c{bottom:469.155000px;}
.y210{bottom:469.515000px;}
.ycc{bottom:470.415000px;}
.y95{bottom:473.655000px;}
.y1d6{bottom:476.535000px;}
.y187{bottom:478.335000px;}
.y1f6{bottom:478.515000px;}
.y4d{bottom:479.415000px;}
.y67{bottom:481.575000px;}
.ye5{bottom:483.375000px;}
.y1b0{bottom:486.255000px;}
.y222{bottom:486.975000px;}
.y20f{bottom:487.155000px;}
.ycb{bottom:487.875000px;}
.y10b{bottom:492.195000px;}
.y186{bottom:495.795000px;}
.y1f5{bottom:496.155000px;}
.y4c{bottom:496.875000px;}
.y66{bottom:499.215000px;}
.y17{bottom:499.755000px;}
.y138{bottom:500.655000px;}
.ye4{bottom:501.015000px;}
.y1d5{bottom:503.175000px;}
.y1af{bottom:503.895000px;}
.y15b{bottom:504.795000px;}
.yca{bottom:505.515000px;}
.y94{bottom:509.295000px;}
.y185{bottom:513.435000px;}
.y1f4{bottom:513.615000px;}
.y4b{bottom:514.515000px;}
.y65{bottom:516.855000px;}
.y137{bottom:518.295000px;}
.ye3{bottom:518.655000px;}
.y1ae{bottom:521.535000px;}
.y15a{bottom:522.435000px;}
.y22f{bottom:522.615000px;}
.yc9{bottom:523.155000px;}
.y10a{bottom:524.415000px;}
.y93{bottom:526.935000px;}
.y184{bottom:531.075000px;}
.y1f3{bottom:531.255000px;}
.y4a{bottom:532.155000px;}
.y64{bottom:534.495000px;}
.y136{bottom:535.935000px;}
.ye2{bottom:536.295000px;}
.y16{bottom:536.655000px;}
.y1ad{bottom:538.995000px;}
.y159{bottom:539.895000px;}
.y109{bottom:540.255000px;}
.yc8{bottom:540.615000px;}
.y92{bottom:544.395000px;}
.y183{bottom:548.535000px;}
.y20e{bottom:548.895000px;}
.y49{bottom:549.615000px;}
.y1d4{bottom:551.595000px;}
.y63{bottom:551.955000px;}
.y135{bottom:553.395000px;}
.ye1{bottom:553.935000px;}
.y15{bottom:554.295000px;}
.y158{bottom:557.535000px;}
.y1f2{bottom:557.715000px;}
.y108{bottom:557.895000px;}
.yc7{bottom:558.255000px;}
.y91{bottom:562.035000px;}
.y1ac{bottom:565.815000px;}
.y182{bottom:566.175000px;}
.y22e{bottom:566.715000px;}
.y48{bottom:567.255000px;}
.y1d3{bottom:569.235000px;}
.y62{bottom:569.595000px;}
.ye0{bottom:571.395000px;}
.y14{bottom:571.935000px;}
.y157{bottom:575.175000px;}
.y107{bottom:575.355000px;}
.yc6{bottom:575.895000px;}
.y90{bottom:579.675000px;}
.y134{bottom:580.035000px;}
.y181{bottom:583.845000px;}
.y22d{bottom:584.385000px;}
.y47{bottom:584.925000px;}
.y1d2{bottom:586.905000px;}
.ydf{bottom:589.065000px;}
.y13{bottom:589.605000px;}
.y156{bottom:592.665000px;}
.y106{bottom:593.025000px;}
.yc5{bottom:593.385000px;}
.y8f{bottom:597.165000px;}
.y180{bottom:601.485000px;}
.y221{bottom:602.025000px;}
.y46{bottom:602.385000px;}
.y1d1{bottom:604.545000px;}
.y61{bottom:605.085000px;}
.yde{bottom:606.705000px;}
.y12{bottom:607.065000px;}
.y155{bottom:610.305000px;}
.y105{bottom:610.665000px;}
.yc4{bottom:611.025000px;}
.y1ab{bottom:614.265000px;}
.y8e{bottom:614.805000px;}
.y133{bottom:615.525000px;}
.y17f{bottom:618.945000px;}
.y1f1{bottom:619.665000px;}
.y45{bottom:620.025000px;}
.y1d0{bottom:622.005000px;}
.y60{bottom:622.725000px;}
.y11{bottom:624.705000px;}
.y154{bottom:627.945000px;}
.y104{bottom:628.305000px;}
.y22c{bottom:628.665000px;}
.y1aa{bottom:631.905000px;}
.y8d{bottom:632.445000px;}
.ydd{bottom:633.165000px;}
.y17e{bottom:636.585000px;}
.y20d{bottom:637.125000px;}
.y1f0{bottom:637.305000px;}
.yae{bottom:637.665000px;}
.y1cf{bottom:639.645000px;}
.y10{bottom:642.345000px;}
.y153{bottom:645.585000px;}
.y220{bottom:646.125000px;}
.y22b{bottom:646.305000px;}
.y44{bottom:646.665000px;}
.y1a9{bottom:649.545000px;}
.y8c{bottom:649.905000px;}
.y132{bottom:650.805000px;}
.y17d{bottom:654.225000px;}
.y103{bottom:654.765000px;}
.y5f{bottom:654.945000px;}
.yf{bottom:659.985000px;}
.y21f{bottom:663.765000px;}
.yad{bottom:664.125000px;}
.yc3{bottom:664.305000px;}
.y1a8{bottom:667.005000px;}
.y8b{bottom:667.545000px;}
.y131{bottom:668.445000px;}
.ydc{bottom:668.985000px;}
.y17c{bottom:671.685000px;}
.y20c{bottom:672.405000px;}
.y1ce{bottom:675.105000px;}
.ye{bottom:677.445000px;}
.y152{bottom:680.325000px;}
.y1ef{bottom:681.405000px;}
.yc2{bottom:681.765000px;}
.y43{bottom:682.125000px;}
.y1a7{bottom:684.645000px;}
.y8a{bottom:685.185000px;}
.y130{bottom:685.905000px;}
.y17b{bottom:689.325000px;}
.y102{bottom:690.405000px;}
.y151{bottom:692.565000px;}
.y1cd{bottom:692.745000px;}
.yd{bottom:695.085000px;}
.y20b{bottom:698.865000px;}
.y1ee{bottom:699.045000px;}
.yc1{bottom:699.405000px;}
.y42{bottom:699.765000px;}
.y1a6{bottom:702.285000px;}
.y17a{bottom:706.965000px;}
.y21e{bottom:707.865000px;}
.y101{bottom:708.045000px;}
.y1cc{bottom:710.385000px;}
.yc{bottom:712.725000px;}
.y1ed{bottom:716.505000px;}
.yc0{bottom:717.045000px;}
.y41{bottom:717.405000px;}
.y150{bottom:719.745000px;}
.y89{bottom:720.645000px;}
.y179{bottom:724.425000px;}
.y100{bottom:725.505000px;}
.y1cb{bottom:728.025000px;}
.yb{bottom:730.185000px;}
.y20a{bottom:734.145000px;}
.ybf{bottom:734.505000px;}
.y40{bottom:735.045000px;}
.y1a5{bottom:737.385000px;}
.y88{bottom:738.285000px;}
.y178{bottom:742.065000px;}
.yff{bottom:743.145000px;}
.y1ca{bottom:745.485000px;}
.y14f{bottom:747.105000px;}
.y209{bottom:751.785000px;}
.y22a{bottom:752.145000px;}
.y3f{bottom:752.505000px;}
.y1a4{bottom:755.025000px;}
.y87{bottom:755.925000px;}
.ya{bottom:757.005000px;}
.yfe{bottom:760.785000px;}
.y12f{bottom:761.145000px;}
.y1c9{bottom:763.125000px;}
.y21d{bottom:769.605000px;}
.y229{bottom:769.785000px;}
.y3e{bottom:770.145000px;}
.y1a3{bottom:772.485000px;}
.y86{bottom:773.565000px;}
.y177{bottom:776.985000px;}
.yfd{bottom:778.245000px;}
.y12e{bottom:778.785000px;}
.y1c8{bottom:780.765000px;}
.y1ec{bottom:787.245000px;}
.yac{bottom:787.785000px;}
.y176{bottom:789.045000px;}
.y1a2{bottom:790.125000px;}
.y85{bottom:791.025000px;}
.yfc{bottom:795.885000px;}
.y12d{bottom:796.245000px;}
.y1c7{bottom:798.405000px;}
.y1eb{bottom:804.885000px;}
.ybe{bottom:805.245000px;}
.y9{bottom:805.425000px;}
.y3d{bottom:805.605000px;}
.y1a1{bottom:807.765000px;}
.y84{bottom:808.665000px;}
.y12c{bottom:813.885000px;}
.y1c6{bottom:815.865000px;}
.yfb{bottom:822.525000px;}
.ybd{bottom:822.885000px;}
.y3c{bottom:823.245000px;}
.y14e{bottom:831.525000px;}
.y174{bottom:834.045000px;}
.y1a0{bottom:834.585000px;}
.y83{bottom:835.125000px;}
.y208{bottom:840.165000px;}
.ybc{bottom:840.525000px;}
.y3b{bottom:840.885000px;}
.y8{bottom:841.245000px;}
.y14d{bottom:849.165000px;}
.y12b{bottom:849.525000px;}
.y1c5{bottom:851.505000px;}
.y207{bottom:857.625000px;}
.yfa{bottom:857.985000px;}
.ybb{bottom:858.165000px;}
.y3a{bottom:858.570000px;}
.y14c{bottom:866.670000px;}
.y12a{bottom:867.210000px;}
.y82{bottom:870.810000px;}
.y19f{bottom:871.710000px;}
.yba{bottom:875.670000px;}
.y39{bottom:876.210000px;}
.y7{bottom:877.290000px;}
.y1c4{bottom:878.370000px;}
.y16f{bottom:878.910000px;}
.y14b{bottom:884.310000px;}
.y129{bottom:884.670000px;}
.y81{bottom:888.450000px;}
.y19e{bottom:889.350000px;}
.yb9{bottom:893.310000px;}
.y38{bottom:893.670000px;}
.y206{bottom:901.950000px;}
.y128{bottom:902.310000px;}
.y80{bottom:906.090000px;}
.y172{bottom:906.270000px;}
.y19d{bottom:906.810000px;}
.y14a{bottom:910.770000px;}
.yb8{bottom:910.950000px;}
.y37{bottom:911.310000px;}
.y6{bottom:913.290000px;}
.y1c3{bottom:915.630000px;}
.y228{bottom:919.770000px;}
.y7f{bottom:923.550000px;}
.y19c{bottom:924.450000px;}
.yf9{bottom:928.410000px;}
.y36{bottom:928.950000px;}
.y1ea{bottom:937.410000px;}
.y127{bottom:937.770000px;}
.yf8{bottom:946.050000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y7e{bottom:950.370000px;}
.y19b{bottom:951.270000px;}
.y1e9{bottom:955.050000px;}
.y126{bottom:955.410000px;}
.y34{bottom:964.050000px;}
.y16e{bottom:972.510000px;}
.y1e8{bottom:972.690000px;}
.y125{bottom:973.050000px;}
.yf7{bottom:981.510000px;}
.y33{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.y205{bottom:990.150000px;}
.y124{bottom:990.690000px;}
.y7d{bottom:998.790000px;}
.yab{bottom:999.150000px;}
.y19a{bottom:999.510000px;}
.y123{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y7c{bottom:1016.430000px;}
.yaa{bottom:1016.790000px;}
.y32{bottom:1017.150000px;}
.y122{bottom:1025.790000px;}
.y7b{bottom:1034.070000px;}
.ya9{bottom:1034.430000px;}
.y31{bottom:1034.790000px;}
.y121{bottom:1043.430000px;}
.yb7{bottom:1052.070000px;}
.y30{bottom:1052.430000px;}
.y1e7{bottom:1060.890000px;}
.y120{bottom:1061.070000px;}
.y7a{bottom:1069.530000px;}
.ya8{bottom:1069.890000px;}
.y2f{bottom:1070.070000px;}
.y11f{bottom:1078.530000px;}
.y79{bottom:1087.170000px;}
.y2e{bottom:1087.530000px;}
.y11e{bottom:1096.170000px;}
.y2d{bottom:1105.170000px;}
.y11d{bottom:1113.810000px;}
.y78{bottom:1122.630000px;}
.y2c{bottom:1122.810000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.460000px;}
.hd{height:26.640000px;}
.h2{height:29.717578px;}
.h3{height:39.468516px;}
.he{height:41.974453px;}
.h11{height:44.136000px;}
.h10{height:44.280000px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h9{height:60.960938px;}
.h12{height:61.423863px;}
.ha{height:62.211094px;}
.hb{height:68.956875px;}
.hf{height:71.640000px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:32.040000px;}
.w4{width:32.076000px;}
.w7{width:51.840000px;}
.wd{width:51.876000px;}
.w5{width:53.280000px;}
.we{width:58.680000px;}
.w9{width:60.156000px;}
.w10{width:81.576000px;}
.wc{width:108.720000px;}
.wf{width:115.236000px;}
.w6{width:128.556000px;}
.wa{width:133.956000px;}
.w3{width:195.330000px;}
.w11{width:201.270000px;}
.wb{width:283.575000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.560000px;}
.x1{left:68.040000px;}
.x5{left:83.159987px;}
.x1b{left:111.275987px;}
.x2{left:202.709987px;}
.x10{left:211.350000px;}
.x9{left:214.770000px;}
.x1a{left:218.729987px;}
.x19{left:285.735000px;}
.xf{left:306.974987px;}
.x8{left:352.874987px;}
.x11{left:407.415000px;}
.xb{left:410.835000px;}
.x6{left:432.254987px;}
.x12{left:440.175000px;}
.xc{left:443.625000px;}
.x15{left:487.725000px;}
.xd{left:497.625000px;}
.x13{left:501.045000px;}
.x16{left:597.165000px;}
.xe{left:626.910000px;}
.x14{left:630.330000px;}
.x17{left:649.770000px;}
.x7{left:683.969987px;}
.x18{left:709.350000px;}
.x4{left:779.729987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.499733pt;}
.ls11{letter-spacing:-0.139733pt;}
.lsc{letter-spacing:-0.046720pt;}
.ls1c{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls17{letter-spacing:0.112533pt;}
.ls1{letter-spacing:0.149760pt;}
.ls15{letter-spacing:0.186133pt;}
.ls7{letter-spacing:0.188160pt;}
.lse{letter-spacing:0.269333pt;}
.lsd{letter-spacing:0.284160pt;}
.ls9{letter-spacing:0.317333pt;}
.lsb{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.342933pt;}
.ls16{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.473600pt;}
.lsa{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.816000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.753600pt;}
.ls19{letter-spacing:4.953600pt;}
.ls18{letter-spacing:42.192640pt;}
.lsf{letter-spacing:44.633600pt;}
.ls1b{letter-spacing:61.913600pt;}
.ls13{letter-spacing:72.272640pt;}
.ls1e{letter-spacing:170.073600pt;}
.ws7{word-spacing:-13.296533pt;}
.ws3{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.003733pt;}
.ws9{word-spacing:-11.955733pt;}
.wsd{word-spacing:-11.872533pt;}
.wse{word-spacing:-11.798933pt;}
.ws0{word-spacing:-11.698133pt;}
.ws5{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.651840pt;}
.ws8{word-spacing:-11.639680pt;}
.wsa{word-spacing:-11.546667pt;}
.wsb{word-spacing:-9.433600pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:2.268480pt;}
._10{margin-left:-2.974720pt;}
._7{margin-left:-2.050666pt;}
._0{margin-left:-1.030400pt;}
._3{width:0.902934pt;}
._1{width:2.470965pt;}
._2{width:3.651200pt;}
._6{width:5.220265pt;}
._9{width:6.330449pt;}
._8{width:7.542934pt;}
._4{width:9.242668pt;}
._5{width:10.307724pt;}
._a{width:12.643197pt;}
._11{width:13.864426pt;}
._b{width:14.873600pt;}
._13{width:15.776746pt;}
._12{width:16.785920pt;}
._c{width:18.166934pt;}
._15{width:19.123519pt;}
._d{width:21.088640pt;}
._e{width:22.098132pt;}
._f{width:23.278293pt;}
._16{width:24.382080pt;}
._2b{width:26.028906pt;}
._2e{width:28.844160pt;}
._2f{width:29.929599pt;}
._20{width:32.828160pt;}
._21{width:33.890772pt;}
._32{width:38.623466pt;}
._33{width:40.664536pt;}
._18{width:44.673920pt;}
._23{width:49.086934pt;}
._22{width:50.106133pt;}
._17{width:52.574186pt;}
._29{width:55.988480pt;}
._2a{width:61.194240pt;}
._27{width:62.097386pt;}
._28{width:64.588907pt;}
._30{width:66.718720pt;}
._31{width:68.037119pt;}
._1e{width:73.013013pt;}
._1d{width:74.155520pt;}
._1f{width:75.317226pt;}
._26{width:81.698560pt;}
._24{width:99.600000pt;}
._25{width:100.950399pt;}
._1c{width:113.251840pt;}
._1a{width:115.004800pt;}
._1b{width:116.013227pt;}
._19{width:121.697920pt;}
._14{width:127.922633pt;}
._2d{width:170.249600pt;}
._2c{width:202.652800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:6.880000pt;}
.y13d{bottom:7.040000pt;}
.y175{bottom:22.600000pt;}
.y173{bottom:22.720000pt;}
.y171{bottom:31.360000pt;}
.y170{bottom:47.040000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.ya7{bottom:99.712000pt;}
.y16d{bottom:103.552000pt;}
.yb6{bottom:104.672000pt;}
.y149{bottom:107.392000pt;}
.y11c{bottom:108.032000pt;}
.y1c2{bottom:109.312000pt;}
.y199{bottom:111.712000pt;}
.ya6{bottom:115.232000pt;}
.yf6{bottom:116.032000pt;}
.y21c{bottom:119.232000pt;}
.y5e{bottom:120.192000pt;}
.yb5{bottom:120.352000pt;}
.y77{bottom:121.952000pt;}
.y148{bottom:123.072000pt;}
.y1c1{bottom:124.992000pt;}
.y28{bottom:126.592000pt;}
.y198{bottom:127.392000pt;}
.ya5{bottom:130.912000pt;}
.yf5{bottom:131.712000pt;}
.y1e6{bottom:133.312000pt;}
.y16c{bottom:135.226667pt;}
.y5d{bottom:135.866667pt;}
.y76{bottom:137.626667pt;}
.y11b{bottom:139.706667pt;}
.y1c0{bottom:140.506667pt;}
.y27{bottom:142.266667pt;}
.y21b{bottom:142.746667pt;}
.y197{bottom:143.066667pt;}
.ya4{bottom:146.586667pt;}
.yf4{bottom:147.226667pt;}
.y1e5{bottom:148.986667pt;}
.y16b{bottom:150.906667pt;}
.y5c{bottom:151.546667pt;}
.y75{bottom:153.306667pt;}
.y147{bottom:154.586667pt;}
.y11a{bottom:155.386667pt;}
.y1bf{bottom:156.186667pt;}
.y26{bottom:157.786667pt;}
.y21a{bottom:158.426667pt;}
.y196{bottom:158.586667pt;}
.yf3{bottom:162.906667pt;}
.y1e4{bottom:164.666667pt;}
.y204{bottom:166.426667pt;}
.y16a{bottom:166.586667pt;}
.y5b{bottom:167.226667pt;}
.ydb{bottom:167.546667pt;}
.y74{bottom:168.826667pt;}
.y146{bottom:170.266667pt;}
.y119{bottom:171.066667pt;}
.y25{bottom:173.466667pt;}
.y219{bottom:174.106667pt;}
.y195{bottom:174.266667pt;}
.ya3{bottom:178.106667pt;}
.y1be{bottom:180.026667pt;}
.y169{bottom:182.266667pt;}
.y5a{bottom:182.906667pt;}
.yda{bottom:183.226667pt;}
.y73{bottom:184.506667pt;}
.y145{bottom:185.946667pt;}
.yf2{bottom:186.426667pt;}
.y118{bottom:186.746667pt;}
.y1e3{bottom:188.186667pt;}
.y24{bottom:189.146667pt;}
.y194{bottom:189.946667pt;}
.y203{bottom:190.106667pt;}
.yb4{bottom:190.746667pt;}
.ya2{bottom:193.786667pt;}
.y218{bottom:197.626667pt;}
.y168{bottom:197.786667pt;}
.yd9{bottom:198.906667pt;}
.y144{bottom:201.466667pt;}
.y117{bottom:202.266667pt;}
.y1e2{bottom:203.866667pt;}
.y193{bottom:205.466667pt;}
.y202{bottom:205.786667pt;}
.y59{bottom:206.426667pt;}
.y72{bottom:208.026667pt;}
.ya1{bottom:209.466667pt;}
.y1bd{bottom:212.986667pt;}
.y217{bottom:213.306667pt;}
.y167{bottom:213.466667pt;}
.yd8{bottom:214.426667pt;}
.y143{bottom:217.146667pt;}
.y116{bottom:217.946667pt;}
.yf1{bottom:218.106667pt;}
.y23{bottom:220.666667pt;}
.y192{bottom:221.146667pt;}
.yb3{bottom:222.426667pt;}
.ya0{bottom:224.986667pt;}
.y1e1{bottom:227.546667pt;}
.y1bc{bottom:228.666667pt;}
.y216{bottom:228.986667pt;}
.y166{bottom:229.146667pt;}
.y201{bottom:229.306667pt;}
.yd7{bottom:230.106667pt;}
.y142{bottom:232.826667pt;}
.y115{bottom:233.626667pt;}
.yf0{bottom:233.786667pt;}
.y22{bottom:236.346667pt;}
.y58{bottom:238.106667pt;}
.y71{bottom:239.706667pt;}
.y9f{bottom:240.666667pt;}
.y1e0{bottom:243.226667pt;}
.y1bb{bottom:244.346667pt;}
.y165{bottom:244.666667pt;}
.y200{bottom:244.986667pt;}
.yd6{bottom:245.786667pt;}
.y141{bottom:248.346667pt;}
.y114{bottom:249.146667pt;}
.yef{bottom:249.466667pt;}
.y21{bottom:252.026667pt;}
.y215{bottom:252.506667pt;}
.y191{bottom:252.666667pt;}
.y57{bottom:253.786667pt;}
.y70{bottom:255.386667pt;}
.y9e{bottom:256.346667pt;}
.y1df{bottom:258.906667pt;}
.y1ba{bottom:259.866667pt;}
.y164{bottom:260.346667pt;}
.y1ff{bottom:260.666667pt;}
.yd5{bottom:261.306667pt;}
.y140{bottom:264.026667pt;}
.yee{bottom:264.986667pt;}
.y20{bottom:267.706667pt;}
.y214{bottom:268.186667pt;}
.y190{bottom:268.346667pt;}
.y56{bottom:269.306667pt;}
.y6f{bottom:271.066667pt;}
.y9d{bottom:272.026667pt;}
.y1b9{bottom:275.586667pt;}
.yd4{bottom:277.026667pt;}
.y13f{bottom:279.746667pt;}
.yed{bottom:280.706667pt;}
.y113{bottom:280.866667pt;}
.y1de{bottom:282.466667pt;}
.y1f{bottom:283.266667pt;}
.y227{bottom:283.906667pt;}
.y18f{bottom:284.066667pt;}
.y1fe{bottom:284.226667pt;}
.y55{bottom:285.026667pt;}
.y6e{bottom:286.786667pt;}
.y9c{bottom:287.586667pt;}
.y1b8{bottom:291.266667pt;}
.y163{bottom:291.906667pt;}
.yd3{bottom:292.706667pt;}
.yec{bottom:296.386667pt;}
.y112{bottom:296.546667pt;}
.y1dd{bottom:298.146667pt;}
.y1e{bottom:298.946667pt;}
.y18e{bottom:299.746667pt;}
.y1fd{bottom:299.906667pt;}
.y54{bottom:300.706667pt;}
.y6d{bottom:302.306667pt;}
.y162{bottom:307.586667pt;}
.yd2{bottom:308.226667pt;}
.y13e{bottom:310.786667pt;}
.y9b{bottom:311.266667pt;}
.yeb{bottom:312.066667pt;}
.y1dc{bottom:313.826667pt;}
.y1d{bottom:314.626667pt;}
.y18d{bottom:315.426667pt;}
.y1fc{bottom:315.586667pt;}
.y53{bottom:316.226667pt;}
.y13c{bottom:321.506667pt;}
.y1b7{bottom:322.786667pt;}
.y161{bottom:323.266667pt;}
.yd1{bottom:323.906667pt;}
.yea{bottom:327.586667pt;}
.y111{bottom:327.746667pt;}
.y1c{bottom:330.146667pt;}
.y18c{bottom:330.946667pt;}
.y52{bottom:331.906667pt;}
.y6c{bottom:333.986667pt;}
.y1db{bottom:337.346667pt;}
.y1b6{bottom:338.466667pt;}
.y226{bottom:338.786667pt;}
.y160{bottom:338.946667pt;}
.y1fb{bottom:339.106667pt;}
.yd0{bottom:339.586667pt;}
.y9a{bottom:342.786667pt;}
.ye9{bottom:343.266667pt;}
.y110{bottom:343.426667pt;}
.y1b{bottom:345.826667pt;}
.y18b{bottom:346.626667pt;}
.y213{bottom:346.786667pt;}
.y51{bottom:347.586667pt;}
.y6b{bottom:349.666667pt;}
.y1da{bottom:353.026667pt;}
.y1b5{bottom:354.146667pt;}
.y15f{bottom:354.466667pt;}
.y1fa{bottom:354.786667pt;}
.y99{bottom:358.466667pt;}
.ye8{bottom:358.946667pt;}
.y10f{bottom:359.106667pt;}
.y1a{bottom:361.506667pt;}
.y212{bottom:362.466667pt;}
.yb2{bottom:363.266667pt;}
.y6a{bottom:365.186667pt;}
.y1d9{bottom:368.706667pt;}
.y1b4{bottom:369.826667pt;}
.y13a{bottom:370.146667pt;}
.y1f9{bottom:370.466667pt;}
.ycf{bottom:371.106667pt;}
.y98{bottom:374.146667pt;}
.ye7{bottom:374.466667pt;}
.y10e{bottom:374.626667pt;}
.y19{bottom:377.186667pt;}
.y225{bottom:377.986667pt;}
.y18a{bottom:378.146667pt;}
.yb1{bottom:378.786667pt;}
.y50{bottom:379.106667pt;}
.y69{bottom:380.866667pt;}
.y1b3{bottom:385.346667pt;}
.y15e{bottom:385.826667pt;}
.y230{bottom:385.986667pt;}
.y1f8{bottom:386.146667pt;}
.yce{bottom:386.786667pt;}
.y97{bottom:389.826667pt;}
.y10d{bottom:390.306667pt;}
.y1d8{bottom:392.226667pt;}
.y224{bottom:393.666667pt;}
.y189{bottom:393.826667pt;}
.yb0{bottom:394.466667pt;}
.y4f{bottom:394.786667pt;}
.y68{bottom:396.546667pt;}
.ye6{bottom:398.146667pt;}
.y18{bottom:400.866667pt;}
.y1b2{bottom:401.026667pt;}
.y15d{bottom:401.506667pt;}
.y211{bottom:401.666667pt;}
.ycd{bottom:402.466667pt;}
.y96{bottom:405.346667pt;}
.y10c{bottom:405.986667pt;}
.y1d7{bottom:407.906667pt;}
.y223{bottom:409.346667pt;}
.y188{bottom:409.506667pt;}
.y1f7{bottom:409.666667pt;}
.yaf{bottom:410.146667pt;}
.y4e{bottom:410.466667pt;}
.y139{bottom:413.346667pt;}
.y1b1{bottom:416.706667pt;}
.y15c{bottom:417.026667pt;}
.y210{bottom:417.346667pt;}
.ycc{bottom:418.146667pt;}
.y95{bottom:421.026667pt;}
.y1d6{bottom:423.586667pt;}
.y187{bottom:425.186667pt;}
.y1f6{bottom:425.346667pt;}
.y4d{bottom:426.146667pt;}
.y67{bottom:428.066667pt;}
.ye5{bottom:429.666667pt;}
.y1b0{bottom:432.226667pt;}
.y222{bottom:432.866667pt;}
.y20f{bottom:433.026667pt;}
.ycb{bottom:433.666667pt;}
.y10b{bottom:437.506667pt;}
.y186{bottom:440.706667pt;}
.y1f5{bottom:441.026667pt;}
.y4c{bottom:441.666667pt;}
.y66{bottom:443.746667pt;}
.y17{bottom:444.226667pt;}
.y138{bottom:445.026667pt;}
.ye4{bottom:445.346667pt;}
.y1d5{bottom:447.266667pt;}
.y1af{bottom:447.906667pt;}
.y15b{bottom:448.706667pt;}
.yca{bottom:449.346667pt;}
.y94{bottom:452.706667pt;}
.y185{bottom:456.386667pt;}
.y1f4{bottom:456.546667pt;}
.y4b{bottom:457.346667pt;}
.y65{bottom:459.426667pt;}
.y137{bottom:460.706667pt;}
.ye3{bottom:461.026667pt;}
.y1ae{bottom:463.586667pt;}
.y15a{bottom:464.386667pt;}
.y22f{bottom:464.546667pt;}
.yc9{bottom:465.026667pt;}
.y10a{bottom:466.146667pt;}
.y93{bottom:468.386667pt;}
.y184{bottom:472.066667pt;}
.y1f3{bottom:472.226667pt;}
.y4a{bottom:473.026667pt;}
.y64{bottom:475.106667pt;}
.y136{bottom:476.386667pt;}
.ye2{bottom:476.706667pt;}
.y16{bottom:477.026667pt;}
.y1ad{bottom:479.106667pt;}
.y159{bottom:479.906667pt;}
.y109{bottom:480.226667pt;}
.yc8{bottom:480.546667pt;}
.y92{bottom:483.906667pt;}
.y183{bottom:487.586667pt;}
.y20e{bottom:487.906667pt;}
.y49{bottom:488.546667pt;}
.y1d4{bottom:490.306667pt;}
.y63{bottom:490.626667pt;}
.y135{bottom:491.906667pt;}
.ye1{bottom:492.386667pt;}
.y15{bottom:492.706667pt;}
.y158{bottom:495.586667pt;}
.y1f2{bottom:495.746667pt;}
.y108{bottom:495.906667pt;}
.yc7{bottom:496.226667pt;}
.y91{bottom:499.586667pt;}
.y1ac{bottom:502.946667pt;}
.y182{bottom:503.266667pt;}
.y22e{bottom:503.746667pt;}
.y48{bottom:504.226667pt;}
.y1d3{bottom:505.986667pt;}
.y62{bottom:506.306667pt;}
.ye0{bottom:507.906667pt;}
.y14{bottom:508.386667pt;}
.y157{bottom:511.266667pt;}
.y107{bottom:511.426667pt;}
.yc6{bottom:511.906667pt;}
.y90{bottom:515.266667pt;}
.y134{bottom:515.586667pt;}
.y181{bottom:518.973333pt;}
.y22d{bottom:519.453333pt;}
.y47{bottom:519.933333pt;}
.y1d2{bottom:521.693333pt;}
.ydf{bottom:523.613333pt;}
.y13{bottom:524.093333pt;}
.y156{bottom:526.813333pt;}
.y106{bottom:527.133333pt;}
.yc5{bottom:527.453333pt;}
.y8f{bottom:530.813333pt;}
.y180{bottom:534.653333pt;}
.y221{bottom:535.133333pt;}
.y46{bottom:535.453333pt;}
.y1d1{bottom:537.373333pt;}
.y61{bottom:537.853333pt;}
.yde{bottom:539.293333pt;}
.y12{bottom:539.613333pt;}
.y155{bottom:542.493333pt;}
.y105{bottom:542.813333pt;}
.yc4{bottom:543.133333pt;}
.y1ab{bottom:546.013333pt;}
.y8e{bottom:546.493333pt;}
.y133{bottom:547.133333pt;}
.y17f{bottom:550.173333pt;}
.y1f1{bottom:550.813333pt;}
.y45{bottom:551.133333pt;}
.y1d0{bottom:552.893333pt;}
.y60{bottom:553.533333pt;}
.y11{bottom:555.293333pt;}
.y154{bottom:558.173333pt;}
.y104{bottom:558.493333pt;}
.y22c{bottom:558.813333pt;}
.y1aa{bottom:561.693333pt;}
.y8d{bottom:562.173333pt;}
.ydd{bottom:562.813333pt;}
.y17e{bottom:565.853333pt;}
.y20d{bottom:566.333333pt;}
.y1f0{bottom:566.493333pt;}
.yae{bottom:566.813333pt;}
.y1cf{bottom:568.573333pt;}
.y10{bottom:570.973333pt;}
.y153{bottom:573.853333pt;}
.y220{bottom:574.333333pt;}
.y22b{bottom:574.493333pt;}
.y44{bottom:574.813333pt;}
.y1a9{bottom:577.373333pt;}
.y8c{bottom:577.693333pt;}
.y132{bottom:578.493333pt;}
.y17d{bottom:581.533333pt;}
.y103{bottom:582.013333pt;}
.y5f{bottom:582.173333pt;}
.yf{bottom:586.653333pt;}
.y21f{bottom:590.013333pt;}
.yad{bottom:590.333333pt;}
.yc3{bottom:590.493333pt;}
.y1a8{bottom:592.893333pt;}
.y8b{bottom:593.373333pt;}
.y131{bottom:594.173333pt;}
.ydc{bottom:594.653333pt;}
.y17c{bottom:597.053333pt;}
.y20c{bottom:597.693333pt;}
.y1ce{bottom:600.093333pt;}
.ye{bottom:602.173333pt;}
.y152{bottom:604.733333pt;}
.y1ef{bottom:605.693333pt;}
.yc2{bottom:606.013333pt;}
.y43{bottom:606.333333pt;}
.y1a7{bottom:608.573333pt;}
.y8a{bottom:609.053333pt;}
.y130{bottom:609.693333pt;}
.y17b{bottom:612.733333pt;}
.y102{bottom:613.693333pt;}
.y151{bottom:615.613333pt;}
.y1cd{bottom:615.773333pt;}
.yd{bottom:617.853333pt;}
.y20b{bottom:621.213333pt;}
.y1ee{bottom:621.373333pt;}
.yc1{bottom:621.693333pt;}
.y42{bottom:622.013333pt;}
.y1a6{bottom:624.253333pt;}
.y17a{bottom:628.413333pt;}
.y21e{bottom:629.213333pt;}
.y101{bottom:629.373333pt;}
.y1cc{bottom:631.453333pt;}
.yc{bottom:633.533333pt;}
.y1ed{bottom:636.893333pt;}
.yc0{bottom:637.373333pt;}
.y41{bottom:637.693333pt;}
.y150{bottom:639.773333pt;}
.y89{bottom:640.573333pt;}
.y179{bottom:643.933333pt;}
.y100{bottom:644.893333pt;}
.y1cb{bottom:647.133333pt;}
.yb{bottom:649.053333pt;}
.y20a{bottom:652.573333pt;}
.ybf{bottom:652.893333pt;}
.y40{bottom:653.373333pt;}
.y1a5{bottom:655.453333pt;}
.y88{bottom:656.253333pt;}
.y178{bottom:659.613333pt;}
.yff{bottom:660.573333pt;}
.y1ca{bottom:662.653333pt;}
.y14f{bottom:664.093333pt;}
.y209{bottom:668.253333pt;}
.y22a{bottom:668.573333pt;}
.y3f{bottom:668.893333pt;}
.y1a4{bottom:671.133333pt;}
.y87{bottom:671.933333pt;}
.ya{bottom:672.893333pt;}
.yfe{bottom:676.253333pt;}
.y12f{bottom:676.573333pt;}
.y1c9{bottom:678.333333pt;}
.y21d{bottom:684.093333pt;}
.y229{bottom:684.253333pt;}
.y3e{bottom:684.573333pt;}
.y1a3{bottom:686.653333pt;}
.y86{bottom:687.613333pt;}
.y177{bottom:690.653333pt;}
.yfd{bottom:691.773333pt;}
.y12e{bottom:692.253333pt;}
.y1c8{bottom:694.013333pt;}
.y1ec{bottom:699.773333pt;}
.yac{bottom:700.253333pt;}
.y176{bottom:701.373333pt;}
.y1a2{bottom:702.333333pt;}
.y85{bottom:703.133333pt;}
.yfc{bottom:707.453333pt;}
.y12d{bottom:707.773333pt;}
.y1c7{bottom:709.693333pt;}
.y1eb{bottom:715.453333pt;}
.ybe{bottom:715.773333pt;}
.y9{bottom:715.933333pt;}
.y3d{bottom:716.093333pt;}
.y1a1{bottom:718.013333pt;}
.y84{bottom:718.813333pt;}
.y12c{bottom:723.453333pt;}
.y1c6{bottom:725.213333pt;}
.yfb{bottom:731.133333pt;}
.ybd{bottom:731.453333pt;}
.y3c{bottom:731.773333pt;}
.y14e{bottom:739.133333pt;}
.y174{bottom:741.373333pt;}
.y1a0{bottom:741.853333pt;}
.y83{bottom:742.333333pt;}
.y208{bottom:746.813333pt;}
.ybc{bottom:747.133333pt;}
.y3b{bottom:747.453333pt;}
.y8{bottom:747.773333pt;}
.y14d{bottom:754.813333pt;}
.y12b{bottom:755.133333pt;}
.y1c5{bottom:756.893333pt;}
.y207{bottom:762.333333pt;}
.yfa{bottom:762.653333pt;}
.ybb{bottom:762.813333pt;}
.y3a{bottom:763.173333pt;}
.y14c{bottom:770.373333pt;}
.y12a{bottom:770.853333pt;}
.y82{bottom:774.053333pt;}
.y19f{bottom:774.853333pt;}
.yba{bottom:778.373333pt;}
.y39{bottom:778.853333pt;}
.y7{bottom:779.813333pt;}
.y1c4{bottom:780.773333pt;}
.y16f{bottom:781.253333pt;}
.y14b{bottom:786.053333pt;}
.y129{bottom:786.373333pt;}
.y81{bottom:789.733333pt;}
.y19e{bottom:790.533333pt;}
.yb9{bottom:794.053333pt;}
.y38{bottom:794.373333pt;}
.y206{bottom:801.733333pt;}
.y128{bottom:802.053333pt;}
.y80{bottom:805.413333pt;}
.y172{bottom:805.573333pt;}
.y19d{bottom:806.053333pt;}
.y14a{bottom:809.573333pt;}
.yb8{bottom:809.733333pt;}
.y37{bottom:810.053333pt;}
.y6{bottom:811.813333pt;}
.y1c3{bottom:813.893333pt;}
.y228{bottom:817.573333pt;}
.y7f{bottom:820.933333pt;}
.y19c{bottom:821.733333pt;}
.yf9{bottom:825.253333pt;}
.y36{bottom:825.733333pt;}
.y1ea{bottom:833.253333pt;}
.y127{bottom:833.573333pt;}
.yf8{bottom:840.933333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y7e{bottom:844.773333pt;}
.y19b{bottom:845.573333pt;}
.y1e9{bottom:848.933333pt;}
.y126{bottom:849.253333pt;}
.y34{bottom:856.933333pt;}
.y16e{bottom:864.453333pt;}
.y1e8{bottom:864.613333pt;}
.y125{bottom:864.933333pt;}
.yf7{bottom:872.453333pt;}
.y33{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.y205{bottom:880.133333pt;}
.y124{bottom:880.613333pt;}
.y7d{bottom:887.813333pt;}
.yab{bottom:888.133333pt;}
.y19a{bottom:888.453333pt;}
.y123{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y7c{bottom:903.493333pt;}
.yaa{bottom:903.813333pt;}
.y32{bottom:904.133333pt;}
.y122{bottom:911.813333pt;}
.y7b{bottom:919.173333pt;}
.ya9{bottom:919.493333pt;}
.y31{bottom:919.813333pt;}
.y121{bottom:927.493333pt;}
.yb7{bottom:935.173333pt;}
.y30{bottom:935.493333pt;}
.y1e7{bottom:943.013333pt;}
.y120{bottom:943.173333pt;}
.y7a{bottom:950.693333pt;}
.ya8{bottom:951.013333pt;}
.y2f{bottom:951.173333pt;}
.y11f{bottom:958.693333pt;}
.y79{bottom:966.373333pt;}
.y2e{bottom:966.693333pt;}
.y11e{bottom:974.373333pt;}
.y2d{bottom:982.373333pt;}
.y11d{bottom:990.053333pt;}
.y78{bottom:997.893333pt;}
.y2c{bottom:998.053333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.520000pt;}
.hd{height:23.680000pt;}
.h2{height:26.415625pt;}
.h3{height:35.083125pt;}
.he{height:37.310625pt;}
.h11{height:39.232000pt;}
.h10{height:39.360000pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h9{height:54.187500pt;}
.h12{height:54.598989pt;}
.ha{height:55.298750pt;}
.hb{height:61.295000pt;}
.hf{height:63.680000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:28.480000pt;}
.w4{width:28.512000pt;}
.w7{width:46.080000pt;}
.wd{width:46.112000pt;}
.w5{width:47.360000pt;}
.we{width:52.160000pt;}
.w9{width:53.472000pt;}
.w10{width:72.512000pt;}
.wc{width:96.640000pt;}
.wf{width:102.432000pt;}
.w6{width:114.272000pt;}
.wa{width:119.072000pt;}
.w3{width:173.626667pt;}
.w11{width:178.906667pt;}
.wb{width:252.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.720000pt;}
.x1{left:60.480000pt;}
.x5{left:73.919988pt;}
.x1b{left:98.911988pt;}
.x2{left:180.186655pt;}
.x10{left:187.866667pt;}
.x9{left:190.906667pt;}
.x1a{left:194.426655pt;}
.x19{left:253.986667pt;}
.xf{left:272.866655pt;}
.x8{left:313.666655pt;}
.x11{left:362.146667pt;}
.xb{left:365.186667pt;}
.x6{left:384.226655pt;}
.x12{left:391.266667pt;}
.xc{left:394.333333pt;}
.x15{left:433.533333pt;}
.xd{left:442.333333pt;}
.x13{left:445.373333pt;}
.x16{left:530.813333pt;}
.xe{left:557.253333pt;}
.x14{left:560.293333pt;}
.x17{left:577.573333pt;}
.x7{left:607.973322pt;}
.x18{left:630.533333pt;}
.x4{left:693.093322pt;}
.x3{left:703.973322pt;}
}




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