
    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_85d787592b22ca4b6392ca01.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_894ee9e00e549a5c6771cfe5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.957031;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_faeb6fb8fcb59688987af518.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_a85e20662ded9feb9eb6d29d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f192693326ba46f8c1cb90b2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae584822ec3584243529bc86.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.014400px;}
.ls13{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106560px;}
.ls14{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:2.340000px;}
.ls6{letter-spacing:3.780000px;}
.ls10{letter-spacing:8.100000px;}
.ls16{letter-spacing:17.436000px;}
.ls7{letter-spacing:26.280000px;}
.ls17{letter-spacing:46.026720px;}
.ls8{letter-spacing:56.340000px;}
.lsb{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-4.173840px;}
._13{margin-left:-2.624880px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._6{width:2.590800px;}
._19{width:3.920400px;}
._12{width:5.139360px;}
._8{width:6.334560px;}
._9{width:7.470000px;}
._2d{width:8.485920px;}
._d{width:9.501840px;}
._14{width:10.637280px;}
._f{width:12.310560px;}
._10{width:13.436640px;}
._4{width:15.513120px;}
._5{width:16.747920px;}
._e{width:17.928000px;}
._11{width:19.307520px;}
._c{width:20.962800px;}
._2c{width:21.972240px;}
._b{width:23.014080px;}
._a{width:24.441840px;}
._1c{width:25.502400px;}
._1e{width:27.310320px;}
._1d{width:28.625040px;}
._1f{width:29.760480px;}
._16{width:31.672800px;}
._2a{width:33.107040px;}
._22{width:34.344480px;}
._15{width:35.915760px;}
._1b{width:37.230480px;}
._1a{width:38.306160px;}
._17{width:40.039200px;}
._25{width:41.234400px;}
._24{width:42.557760px;}
._28{width:44.820000px;}
._27{width:46.074960px;}
._35{width:47.628720px;}
._37{width:49.242240px;}
._20{width:50.755680px;}
._29{width:52.278480px;}
._18{width:53.295120px;}
._2e{width:54.799920px;}
._26{width:57.011040px;}
._2f{width:58.373280px;}
._21{width:59.760000px;}
._2{width:64.800000px;}
._23{width:66.313440px;}
._2b{width:67.887360px;}
._3a{width:69.261840px;}
._36{width:72.070560px;}
._34{width:74.819520px;}
._38{width:76.277520px;}
._39{width:77.400480px;}
._31{width:96.153840px;}
._30{width:97.408800px;}
._33{width:145.814400px;}
._32{width:202.287600px;}
._3{width:674.100000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(238,0,0);}
.fc4{color:rgb(24,23,23);}
.fc5{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y139{bottom:5.805000px;}
.y2a{bottom:5.940000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.y1c{bottom:8.820000px;}
.y130{bottom:15.660000px;}
.y13a{bottom:15.705000px;}
.y135{bottom:15.840000px;}
.yd{bottom:25.560000px;}
.y29{bottom:25.740000px;}
.y12f{bottom:25.770000px;}
.y138{bottom:25.785000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y159{bottom:35.460000px;}
.y189{bottom:35.670000px;}
.y12d{bottom:45.360000px;}
.y28{bottom:45.540000px;}
.y188{bottom:45.570000px;}
.y6{bottom:47.520000px;}
.y13{bottom:51.480000px;}
.yc{bottom:54.360000px;}
.y132{bottom:65.160000px;}
.y155{bottom:65.340000px;}
.y27{bottom:65.370000px;}
.y10{bottom:68.580000px;}
.y5{bottom:69.660000px;}
.yb{bottom:74.340000px;}
.y154{bottom:85.140000px;}
.y26{bottom:85.170000px;}
.y4{bottom:97.590000px;}
.y157{bottom:98.640000px;}
.y1ca{bottom:101.700000px;}
.y1f1{bottom:102.240000px;}
.ya{bottom:103.170000px;}
.y25{bottom:105.150000px;}
.y181{bottom:111.240000px;}
.yca{bottom:111.960000px;}
.y79{bottom:113.400000px;}
.y42{bottom:113.940000px;}
.ya8{bottom:115.200000px;}
.yfd{bottom:115.920000px;}
.y1c9{bottom:121.500000px;}
.y19d{bottom:122.040000px;}
.y9{bottom:122.970000px;}
.y24{bottom:124.950000px;}
.y12e{bottom:130.140000px;}
.y180{bottom:131.040000px;}
.yc9{bottom:131.940000px;}
.y3{bottom:131.970000px;}
.y78{bottom:133.200000px;}
.y41{bottom:133.740000px;}
.ya7{bottom:135.180000px;}
.yfc{bottom:135.900000px;}
.y19c{bottom:136.800000px;}
.y1f0{bottom:142.020000px;}
.y1c8{bottom:142.380000px;}
.y23{bottom:144.750000px;}
.y17f{bottom:150.840000px;}
.yc8{bottom:151.770000px;}
.y77{bottom:153.210000px;}
.y40{bottom:153.570000px;}
.ya6{bottom:155.010000px;}
.yfb{bottom:155.730000px;}
.y19b{bottom:157.350000px;}
.y156{bottom:158.970000px;}
.y1ef{bottom:161.850000px;}
.y1c7{bottom:162.210000px;}
.y22{bottom:164.550000px;}
.y12c{bottom:170.670000px;}
.yc7{bottom:171.570000px;}
.y76{bottom:173.010000px;}
.y3f{bottom:173.370000px;}
.ya5{bottom:174.810000px;}
.yfa{bottom:175.530000px;}
.y19a{bottom:178.050000px;}
.y1ee{bottom:181.650000px;}
.y1c6{bottom:182.010000px;}
.y21{bottom:184.350000px;}
.y17e{bottom:190.650000px;}
.yc6{bottom:191.370000px;}
.y75{bottom:192.810000px;}
.y3e{bottom:193.170000px;}
.ya4{bottom:194.610000px;}
.yf9{bottom:195.330000px;}
.y199{bottom:198.570000px;}
.y1ed{bottom:201.450000px;}
.y1c5{bottom:201.990000px;}
.y20{bottom:204.330000px;}
.y17d{bottom:210.450000px;}
.yc5{bottom:211.170000px;}
.y74{bottom:212.610000px;}
.y3d{bottom:213.150000px;}
.ya3{bottom:214.410000px;}
.yf8{bottom:215.130000px;}
.y1ec{bottom:221.250000px;}
.y1c4{bottom:221.790000px;}
.y1f{bottom:224.130000px;}
.y198{bottom:225.030000px;}
.y17c{bottom:230.250000px;}
.y12b{bottom:230.790000px;}
.yc4{bottom:231.150000px;}
.y73{bottom:232.410000px;}
.y3c{bottom:232.950000px;}
.ya2{bottom:234.390000px;}
.yf7{bottom:236.190000px;}
.y1eb{bottom:241.230000px;}
.y1c3{bottom:241.590000px;}
.y1e{bottom:243.930000px;}
.y197{bottom:244.830000px;}
.y17b{bottom:250.050000px;}
.yc3{bottom:250.950000px;}
.y72{bottom:252.390000px;}
.y3b{bottom:252.750000px;}
.yf6{bottom:255.990000px;}
.y12a{bottom:257.250000px;}
.y153{bottom:258.870000px;}
.y1ea{bottom:261.030000px;}
.y1c2{bottom:261.390000px;}
.ya1{bottom:263.190000px;}
.y196{bottom:264.630000px;}
.y17a{bottom:269.850000px;}
.yc2{bottom:270.750000px;}
.y71{bottom:272.190000px;}
.y3a{bottom:272.550000px;}
.yf5{bottom:276.870000px;}
.y129{bottom:277.050000px;}
.y1e9{bottom:280.830000px;}
.y1c1{bottom:281.190000px;}
.ya0{bottom:282.990000px;}
.y195{bottom:284.430000px;}
.y179{bottom:289.830000px;}
.yc1{bottom:290.550000px;}
.y70{bottom:291.990000px;}
.y39{bottom:292.350000px;}
.y128{bottom:296.850000px;}
.yf4{bottom:297.750000px;}
.y1e8{bottom:300.630000px;}
.y1c0{bottom:301.170000px;}
.y9f{bottom:302.790000px;}
.y194{bottom:304.410000px;}
.y178{bottom:309.630000px;}
.yc0{bottom:310.350000px;}
.y6f{bottom:311.790000px;}
.y38{bottom:312.330000px;}
.y127{bottom:316.830000px;}
.yf3{bottom:318.630000px;}
.y1e7{bottom:320.430000px;}
.y1bf{bottom:322.050000px;}
.y9e{bottom:322.590000px;}
.y193{bottom:324.210000px;}
.y177{bottom:329.430000px;}
.ybf{bottom:330.330000px;}
.y6e{bottom:331.590000px;}
.y37{bottom:332.130000px;}
.y126{bottom:336.630000px;}
.yf2{bottom:339.690000px;}
.y1e6{bottom:340.410000px;}
.y1be{bottom:341.850000px;}
.y9d{bottom:342.570000px;}
.y192{bottom:344.010000px;}
.y176{bottom:349.230000px;}
.ybe{bottom:350.130000px;}
.y6d{bottom:351.570000px;}
.y36{bottom:351.930000px;}
.y125{bottom:356.430000px;}
.y152{bottom:358.770000px;}
.y1e5{bottom:360.210000px;}
.yf1{bottom:360.570000px;}
.y1bd{bottom:361.650000px;}
.y9c{bottom:362.370000px;}
.y191{bottom:363.810000px;}
.y175{bottom:369.030000px;}
.ybd{bottom:369.930000px;}
.y6c{bottom:371.370000px;}
.y35{bottom:371.730000px;}
.y124{bottom:376.230000px;}
.y1e4{bottom:380.010000px;}
.yf0{bottom:381.450000px;}
.y9b{bottom:382.170000px;}
.y190{bottom:383.610000px;}
.y151{bottom:385.230000px;}
.y174{bottom:389.010000px;}
.ybc{bottom:389.730000px;}
.y6b{bottom:391.170000px;}
.y34{bottom:391.530000px;}
.y123{bottom:396.030000px;}
.y1e3{bottom:399.810000px;}
.y1bc{bottom:401.475000px;}
.y9a{bottom:402.015000px;}
.yef{bottom:402.375000px;}
.y18f{bottom:403.635000px;}
.y150{bottom:405.075000px;}
.y173{bottom:408.855000px;}
.ybb{bottom:409.575000px;}
.y6a{bottom:411.015000px;}
.y33{bottom:411.555000px;}
.y122{bottom:416.055000px;}
.y1e2{bottom:419.655000px;}
.y1bb{bottom:421.275000px;}
.y99{bottom:421.815000px;}
.yee{bottom:422.175000px;}
.y18e{bottom:423.435000px;}
.y14f{bottom:424.875000px;}
.y172{bottom:428.655000px;}
.yba{bottom:429.555000px;}
.y69{bottom:430.815000px;}
.y32{bottom:431.355000px;}
.y121{bottom:435.855000px;}
.y1e1{bottom:439.635000px;}
.y98{bottom:441.795000px;}
.yed{bottom:441.975000px;}
.y1ba{bottom:442.155000px;}
.y18d{bottom:443.235000px;}
.y14e{bottom:444.675000px;}
.y171{bottom:448.455000px;}
.yb9{bottom:449.355000px;}
.y68{bottom:450.795000px;}
.y31{bottom:451.155000px;}
.y120{bottom:455.655000px;}
.y18c{bottom:457.995000px;}
.y1e0{bottom:459.435000px;}
.y97{bottom:461.595000px;}
.yec{bottom:461.955000px;}
.y14d{bottom:464.475000px;}
.y170{bottom:468.255000px;}
.yb8{bottom:469.155000px;}
.y67{bottom:470.595000px;}
.y30{bottom:470.955000px;}
.y11f{bottom:475.455000px;}
.y1df{bottom:479.235000px;}
.y96{bottom:481.395000px;}
.yeb{bottom:481.755000px;}
.y14c{bottom:484.455000px;}
.y16f{bottom:488.235000px;}
.yb7{bottom:488.955000px;}
.y11e{bottom:490.215000px;}
.y66{bottom:490.395000px;}
.y2f{bottom:490.755000px;}
.y1de{bottom:499.035000px;}
.y95{bottom:501.195000px;}
.yea{bottom:501.555000px;}
.y1b9{bottom:501.735000px;}
.y14b{bottom:504.255000px;}
.y16e{bottom:508.035000px;}
.yb6{bottom:508.755000px;}
.y65{bottom:510.195000px;}
.y2e{bottom:510.735000px;}
.y11d{bottom:510.915000px;}
.y18b{bottom:518.295000px;}
.y1dd{bottom:518.835000px;}
.y94{bottom:520.995000px;}
.ye9{bottom:521.355000px;}
.y1b8{bottom:521.535000px;}
.y14a{bottom:524.055000px;}
.y16d{bottom:527.835000px;}
.yb5{bottom:528.735000px;}
.y64{bottom:529.995000px;}
.y2d{bottom:530.535000px;}
.y11c{bottom:531.435000px;}
.y1dc{bottom:538.815000px;}
.y93{bottom:540.975000px;}
.ye8{bottom:541.155000px;}
.y1b7{bottom:541.335000px;}
.y149{bottom:543.855000px;}
.y16c{bottom:547.635000px;}
.yb4{bottom:548.535000px;}
.y63{bottom:549.975000px;}
.y2c{bottom:550.335000px;}
.y11b{bottom:551.955000px;}
.y1db{bottom:558.615000px;}
.y92{bottom:560.775000px;}
.ye7{bottom:561.135000px;}
.y148{bottom:563.655000px;}
.y2b{bottom:565.095000px;}
.y16b{bottom:567.435000px;}
.yb3{bottom:568.335000px;}
.y62{bottom:569.775000px;}
.y11a{bottom:578.415000px;}
.y18a{bottom:578.595000px;}
.y91{bottom:580.575000px;}
.ye6{bottom:580.935000px;}
.y1b6{bottom:582.015000px;}
.y147{bottom:583.635000px;}
.y1d{bottom:585.615000px;}
.y16a{bottom:587.415000px;}
.yb2{bottom:588.135000px;}
.y61{bottom:589.575000px;}
.y119{bottom:598.215000px;}
.y90{bottom:600.375000px;}
.ye5{bottom:600.735000px;}
.y1b5{bottom:601.995000px;}
.y146{bottom:603.435000px;}
.y169{bottom:607.215000px;}
.yb1{bottom:607.935000px;}
.y60{bottom:609.375000px;}
.y118{bottom:618.015000px;}
.y8f{bottom:620.175000px;}
.ye4{bottom:620.535000px;}
.y1b4{bottom:621.795000px;}
.y145{bottom:623.235000px;}
.y168{bottom:627.015000px;}
.y5f{bottom:629.175000px;}
.yb0{bottom:636.915000px;}
.y117{bottom:637.995000px;}
.y187{bottom:638.715000px;}
.y8e{bottom:640.155000px;}
.y1b3{bottom:641.595000px;}
.y144{bottom:643.035000px;}
.y167{bottom:646.815000px;}
.y5e{bottom:649.185000px;}
.ye3{bottom:649.365000px;}
.yaf{bottom:656.745000px;}
.y116{bottom:657.825000px;}
.y8d{bottom:659.985000px;}
.y1b2{bottom:661.425000px;}
.y143{bottom:662.865000px;}
.y166{bottom:666.645000px;}
.y5d{bottom:668.985000px;}
.ye2{bottom:669.345000px;}
.yae{bottom:676.545000px;}
.y115{bottom:677.625000px;}
.y8c{bottom:679.785000px;}
.y1b1{bottom:681.225000px;}
.y142{bottom:682.845000px;}
.y165{bottom:686.625000px;}
.y5c{bottom:688.785000px;}
.ye1{bottom:689.145000px;}
.yad{bottom:696.345000px;}
.y114{bottom:697.425000px;}
.y8b{bottom:699.585000px;}
.y1b0{bottom:701.205000px;}
.y141{bottom:702.645000px;}
.y164{bottom:706.425000px;}
.y5b{bottom:708.585000px;}
.ye0{bottom:708.945000px;}
.yac{bottom:716.145000px;}
.y113{bottom:717.225000px;}
.y186{bottom:718.845000px;}
.y8a{bottom:719.385000px;}
.y1af{bottom:721.005000px;}
.y140{bottom:722.445000px;}
.y163{bottom:726.225000px;}
.y5a{bottom:728.385000px;}
.yab{bottom:736.125000px;}
.y112{bottom:737.205000px;}
.ydf{bottom:737.745000px;}
.y89{bottom:739.365000px;}
.y1ae{bottom:740.805000px;}
.y13f{bottom:742.245000px;}
.y162{bottom:746.025000px;}
.y59{bottom:748.365000px;}
.yaa{bottom:757.005000px;}
.yde{bottom:757.545000px;}
.y88{bottom:759.165000px;}
.y185{bottom:759.345000px;}
.y1ad{bottom:760.605000px;}
.y13e{bottom:762.045000px;}
.y161{bottom:765.825000px;}
.y58{bottom:768.165000px;}
.y1da{bottom:776.805000px;}
.ydd{bottom:777.525000px;}
.ya9{bottom:777.885000px;}
.y87{bottom:778.965000px;}
.y1ac{bottom:780.405000px;}
.y13d{bottom:782.025000px;}
.y111{bottom:785.805000px;}
.y57{bottom:787.965000px;}
.y1d9{bottom:796.605000px;}
.y13c{bottom:796.785000px;}
.ydc{bottom:797.325000px;}
.y86{bottom:798.765000px;}
.y1ab{bottom:800.385000px;}
.y110{bottom:805.605000px;}
.y56{bottom:807.765000px;}
.y1aa{bottom:815.145000px;}
.y1d8{bottom:816.405000px;}
.ydb{bottom:817.125000px;}
.y85{bottom:818.565000px;}
.y10f{bottom:825.405000px;}
.y55{bottom:827.565000px;}
.y1a9{bottom:835.665000px;}
.y1d7{bottom:836.385000px;}
.yda{bottom:836.925000px;}
.y13b{bottom:837.105000px;}
.y84{bottom:838.545000px;}
.y184{bottom:839.445000px;}
.y1b{bottom:844.305000px;}
.y160{bottom:845.205000px;}
.y10e{bottom:845.385000px;}
.y54{bottom:847.545000px;}
.y1a8{bottom:856.185000px;}
.yd9{bottom:856.725000px;}
.y83{bottom:858.345000px;}
.y15f{bottom:865.005000px;}
.y10d{bottom:865.185000px;}
.y53{bottom:867.345000px;}
.y1a{bottom:873.825000px;}
.y1d6{bottom:875.985000px;}
.yd8{bottom:876.705000px;}
.y1a7{bottom:876.885000px;}
.y82{bottom:878.145000px;}
.y15e{bottom:884.805000px;}
.y10c{bottom:884.985000px;}
.y52{bottom:887.145000px;}
.yd7{bottom:891.465000px;}
.y1d5{bottom:895.785000px;}
.y137{bottom:897.405000px;}
.y81{bottom:897.990000px;}
.y19{bottom:898.890000px;}
.y183{bottom:899.790000px;}
.y1a6{bottom:903.210000px;}
.y10b{bottom:904.830000px;}
.y51{bottom:906.990000px;}
.yd6{bottom:912.030000px;}
.y1d4{bottom:915.630000px;}
.y80{bottom:917.790000px;}
.y18{bottom:918.690000px;}
.y1a5{bottom:923.190000px;}
.y10a{bottom:924.630000px;}
.y50{bottom:926.790000px;}
.yd5{bottom:932.730000px;}
.y17{bottom:933.810000px;}
.y1d3{bottom:935.610000px;}
.y7f{bottom:937.770000px;}
.y136{bottom:937.950000px;}
.y1a4{bottom:942.990000px;}
.y15d{bottom:944.430000px;}
.y109{bottom:944.610000px;}
.y4f{bottom:946.770000px;}
.yd4{bottom:953.250000px;}
.y1d2{bottom:955.410000px;}
.y16{bottom:955.770000px;}
.y7e{bottom:957.570000px;}
.y182{bottom:959.910000px;}
.y1a3{bottom:962.790000px;}
.y15c{bottom:964.230000px;}
.y108{bottom:964.410000px;}
.y4e{bottom:966.570000px;}
.yd3{bottom:973.770000px;}
.y1d1{bottom:975.210000px;}
.y7d{bottom:977.370000px;}
.y134{bottom:978.270000px;}
.y15{bottom:980.610000px;}
.y1a2{bottom:982.590000px;}
.y15b{bottom:984.030000px;}
.y107{bottom:984.210000px;}
.y4d{bottom:986.370000px;}
.yd2{bottom:994.470000px;}
.y1d0{bottom:995.010000px;}
.y7c{bottom:997.170000px;}
.y1a1{bottom:997.350000px;}
.y15a{bottom:998.970000px;}
.y106{bottom:1004.010000px;}
.y4c{bottom:1006.170000px;}
.y14{bottom:1012.290000px;}
.y1cf{bottom:1014.810000px;}
.yd1{bottom:1014.990000px;}
.y7b{bottom:1016.970000px;}
.y1a0{bottom:1018.050000px;}
.y133{bottom:1018.770000px;}
.y105{bottom:1023.810000px;}
.y4b{bottom:1025.970000px;}
.y1ce{bottom:1034.790000px;}
.yd0{bottom:1035.510000px;}
.y7a{bottom:1036.950000px;}
.y19f{bottom:1038.570000px;}
.yf{bottom:1039.470000px;}
.y104{bottom:1043.790000px;}
.y4a{bottom:1045.950000px;}
.ycf{bottom:1056.210000px;}
.y19e{bottom:1059.090000px;}
.y1{bottom:1063.410000px;}
.y103{bottom:1063.590000px;}
.y49{bottom:1065.750000px;}
.yce{bottom:1076.730000px;}
.y131{bottom:1079.070000px;}
.y1cd{bottom:1083.390000px;}
.y102{bottom:1084.470000px;}
.y48{bottom:1085.550000px;}
.ycd{bottom:1097.250000px;}
.y158{bottom:1098.870000px;}
.y1cc{bottom:1103.190000px;}
.y101{bottom:1104.270000px;}
.y47{bottom:1105.350000px;}
.ycc{bottom:1117.950000px;}
.y1cb{bottom:1122.990000px;}
.y100{bottom:1124.070000px;}
.y46{bottom:1125.150000px;}
.ycb{bottom:1138.470000px;}
.yff{bottom:1144.050000px;}
.y45{bottom:1145.130000px;}
.yfe{bottom:1163.880000px;}
.y44{bottom:1164.960000px;}
.y43{bottom:1194.300000px;}
.h3{height:2.010938px;}
.h10{height:19.800000px;}
.h14{height:19.836000px;}
.h15{height:19.980000px;}
.ha{height:21.960000px;}
.he{height:22.860000px;}
.hd{height:27.147656px;}
.h1a{height:39.600000px;}
.h19{height:39.780000px;}
.h17{height:39.816000px;}
.h7{height:41.726953px;}
.h13{height:43.506914px;}
.h4{height:44.294766px;}
.h8{height:46.251562px;}
.h12{height:48.496641px;}
.h6{height:49.097812px;}
.h11{height:49.255313px;}
.hb{height:54.712969px;}
.h16{height:59.400000px;}
.h1f{height:59.436000px;}
.h1b{height:59.580000px;}
.h1d{height:59.616000px;}
.h5{height:62.439609px;}
.hc{height:70.978359px;}
.h9{height:71.613281px;}
.h20{height:79.380000px;}
.h1e{height:79.416000px;}
.h1c{height:99.180000px;}
.h18{height:99.216000px;}
.h2{height:146.016000px;}
.hf{height:257.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:41.580000px;}
.w23{width:41.760000px;}
.w16{width:42.120000px;}
.w1d{width:42.300000px;}
.w15{width:42.840000px;}
.w17{width:44.640000px;}
.w19{width:44.676000px;}
.w24{width:46.656000px;}
.w22{width:52.020000px;}
.w6{width:52.056000px;}
.w18{width:52.200000px;}
.w14{width:52.236000px;}
.w1b{width:52.560000px;}
.w1f{width:52.596000px;}
.w12{width:59.400000px;}
.w20{width:62.460000px;}
.w1e{width:62.496000px;}
.w28{width:64.620000px;}
.w2c{width:65.916000px;}
.w2d{width:66.060000px;}
.w31{width:66.600000px;}
.w29{width:66.636000px;}
.w2e{width:68.040000px;}
.w27{width:70.020000px;}
.w30{width:70.056000px;}
.w10{width:71.856000px;}
.w11{width:72.000000px;}
.w2f{width:72.360000px;}
.w26{width:72.396000px;}
.w2b{width:73.620000px;}
.wf{width:74.160000px;}
.we{width:75.996000px;}
.wd{width:84.096000px;}
.w25{width:88.020000px;}
.w2a{width:88.056000px;}
.wc{width:111.240000px;}
.w4{width:141.876000px;}
.wb{width:150.870000px;}
.w1a{width:154.290000px;}
.w2{width:155.730000px;}
.w13{width:168.330000px;}
.w21{width:176.430000px;}
.w8{width:192.270000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.560000px;}
.x5{left:8.640000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xc{left:57.600000px;}
.x17{left:58.860000px;}
.x1c{left:60.480000px;}
.x10{left:80.999987px;}
.xf{left:100.115987px;}
.xb{left:106.776000px;}
.x11{left:108.035987px;}
.x4{left:127.665000px;}
.x18{left:135.576000px;}
.x8{left:142.065000px;}
.x35{left:143.496000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x19{left:210.450000px;}
.x29{left:213.870000px;}
.x39{left:216.570000px;}
.x36{left:217.830000px;}
.x1d{left:229.530000px;}
.xd{left:249.870000px;}
.x2a{left:267.375000px;}
.x1a{left:283.035000px;}
.x37{left:284.475000px;}
.x3a{left:287.355000px;}
.x2b{left:309.675000px;}
.x1e{left:326.055000px;}
.x38{left:351.255000px;}
.x2c{left:352.695000px;}
.x1b{left:355.755000px;}
.x1f{left:368.895000px;}
.xe{left:473.144987px;}
.x2d{left:475.125000px;}
.x24{left:478.005000px;}
.x20{left:479.625000px;}
.x12{left:482.325000px;}
.x15{left:500.144987px;}
.x16{left:527.144987px;}
.x32{left:562.605000px;}
.x13{left:633.930000px;}
.x33{left:635.730000px;}
.x21{left:648.690000px;}
.x2e{left:652.290000px;}
.x26{left:686.490000px;}
.x22{left:701.610000px;}
.x9{left:703.050000px;}
.x2f{left:705.030000px;}
.x34{left:706.470000px;}
.x27{left:728.790000px;}
.x14{left:745.890000px;}
.x30{left:747.510000px;}
.x28{left:771.810000px;}
.x23{left:788.010000px;}
.x31{left:790.530000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.012800pt;}
.ls13{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094720pt;}
.ls14{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls6{letter-spacing:3.360000pt;}
.ls10{letter-spacing:7.200000pt;}
.ls16{letter-spacing:15.498667pt;}
.ls7{letter-spacing:23.360000pt;}
.ls17{letter-spacing:40.912640pt;}
.ls8{letter-spacing:50.080000pt;}
.lsb{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-3.710080pt;}
._13{margin-left:-2.333227pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._6{width:2.302933pt;}
._19{width:3.484800pt;}
._12{width:4.568320pt;}
._8{width:5.630720pt;}
._9{width:6.640000pt;}
._2d{width:7.543040pt;}
._d{width:8.446080pt;}
._14{width:9.455360pt;}
._f{width:10.942720pt;}
._10{width:11.943680pt;}
._4{width:13.789440pt;}
._5{width:14.887040pt;}
._e{width:15.936000pt;}
._11{width:17.162240pt;}
._c{width:18.633600pt;}
._2c{width:19.530880pt;}
._b{width:20.456960pt;}
._a{width:21.726080pt;}
._1c{width:22.668800pt;}
._1e{width:24.275840pt;}
._1d{width:25.444480pt;}
._1f{width:26.453760pt;}
._16{width:28.153600pt;}
._2a{width:29.428480pt;}
._22{width:30.528427pt;}
._15{width:31.925120pt;}
._1b{width:33.093760pt;}
._1a{width:34.049920pt;}
._17{width:35.590400pt;}
._25{width:36.652800pt;}
._24{width:37.829120pt;}
._28{width:39.840000pt;}
._27{width:40.955520pt;}
._35{width:42.336640pt;}
._37{width:43.770880pt;}
._20{width:45.116160pt;}
._29{width:46.469760pt;}
._18{width:47.373440pt;}
._2e{width:48.711040pt;}
._26{width:50.676480pt;}
._2f{width:51.887360pt;}
._21{width:53.120000pt;}
._2{width:57.600000pt;}
._23{width:58.945280pt;}
._2b{width:60.344320pt;}
._3a{width:61.566080pt;}
._36{width:64.062720pt;}
._34{width:66.506240pt;}
._38{width:67.802240pt;}
._39{width:68.800427pt;}
._31{width:85.470080pt;}
._30{width:86.585600pt;}
._33{width:129.612800pt;}
._32{width:179.811200pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y139{bottom:5.160000pt;}
.y2a{bottom:5.280000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.y1c{bottom:7.840000pt;}
.y130{bottom:13.920000pt;}
.y13a{bottom:13.960000pt;}
.y135{bottom:14.080000pt;}
.yd{bottom:22.720000pt;}
.y29{bottom:22.880000pt;}
.y12f{bottom:22.906667pt;}
.y138{bottom:22.920000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y159{bottom:31.520000pt;}
.y189{bottom:31.706667pt;}
.y12d{bottom:40.320000pt;}
.y28{bottom:40.480000pt;}
.y188{bottom:40.506667pt;}
.y6{bottom:42.240000pt;}
.y13{bottom:45.760000pt;}
.yc{bottom:48.320000pt;}
.y132{bottom:57.920000pt;}
.y155{bottom:58.080000pt;}
.y27{bottom:58.106667pt;}
.y10{bottom:60.960000pt;}
.y5{bottom:61.920000pt;}
.yb{bottom:66.080000pt;}
.y154{bottom:75.680000pt;}
.y26{bottom:75.706667pt;}
.y4{bottom:86.746667pt;}
.y157{bottom:87.680000pt;}
.y1ca{bottom:90.400000pt;}
.y1f1{bottom:90.880000pt;}
.ya{bottom:91.706667pt;}
.y25{bottom:93.466667pt;}
.y181{bottom:98.880000pt;}
.yca{bottom:99.520000pt;}
.y79{bottom:100.800000pt;}
.y42{bottom:101.280000pt;}
.ya8{bottom:102.400000pt;}
.yfd{bottom:103.040000pt;}
.y1c9{bottom:108.000000pt;}
.y19d{bottom:108.480000pt;}
.y9{bottom:109.306667pt;}
.y24{bottom:111.066667pt;}
.y12e{bottom:115.680000pt;}
.y180{bottom:116.480000pt;}
.yc9{bottom:117.280000pt;}
.y3{bottom:117.306667pt;}
.y78{bottom:118.400000pt;}
.y41{bottom:118.880000pt;}
.ya7{bottom:120.160000pt;}
.yfc{bottom:120.800000pt;}
.y19c{bottom:121.600000pt;}
.y1f0{bottom:126.240000pt;}
.y1c8{bottom:126.560000pt;}
.y23{bottom:128.666667pt;}
.y17f{bottom:134.080000pt;}
.yc8{bottom:134.906667pt;}
.y77{bottom:136.186667pt;}
.y40{bottom:136.506667pt;}
.ya6{bottom:137.786667pt;}
.yfb{bottom:138.426667pt;}
.y19b{bottom:139.866667pt;}
.y156{bottom:141.306667pt;}
.y1ef{bottom:143.866667pt;}
.y1c7{bottom:144.186667pt;}
.y22{bottom:146.266667pt;}
.y12c{bottom:151.706667pt;}
.yc7{bottom:152.506667pt;}
.y76{bottom:153.786667pt;}
.y3f{bottom:154.106667pt;}
.ya5{bottom:155.386667pt;}
.yfa{bottom:156.026667pt;}
.y19a{bottom:158.266667pt;}
.y1ee{bottom:161.466667pt;}
.y1c6{bottom:161.786667pt;}
.y21{bottom:163.866667pt;}
.y17e{bottom:169.466667pt;}
.yc6{bottom:170.106667pt;}
.y75{bottom:171.386667pt;}
.y3e{bottom:171.706667pt;}
.ya4{bottom:172.986667pt;}
.yf9{bottom:173.626667pt;}
.y199{bottom:176.506667pt;}
.y1ed{bottom:179.066667pt;}
.y1c5{bottom:179.546667pt;}
.y20{bottom:181.626667pt;}
.y17d{bottom:187.066667pt;}
.yc5{bottom:187.706667pt;}
.y74{bottom:188.986667pt;}
.y3d{bottom:189.466667pt;}
.ya3{bottom:190.586667pt;}
.yf8{bottom:191.226667pt;}
.y1ec{bottom:196.666667pt;}
.y1c4{bottom:197.146667pt;}
.y1f{bottom:199.226667pt;}
.y198{bottom:200.026667pt;}
.y17c{bottom:204.666667pt;}
.y12b{bottom:205.146667pt;}
.yc4{bottom:205.466667pt;}
.y73{bottom:206.586667pt;}
.y3c{bottom:207.066667pt;}
.ya2{bottom:208.346667pt;}
.yf7{bottom:209.946667pt;}
.y1eb{bottom:214.426667pt;}
.y1c3{bottom:214.746667pt;}
.y1e{bottom:216.826667pt;}
.y197{bottom:217.626667pt;}
.y17b{bottom:222.266667pt;}
.yc3{bottom:223.066667pt;}
.y72{bottom:224.346667pt;}
.y3b{bottom:224.666667pt;}
.yf6{bottom:227.546667pt;}
.y12a{bottom:228.666667pt;}
.y153{bottom:230.106667pt;}
.y1ea{bottom:232.026667pt;}
.y1c2{bottom:232.346667pt;}
.ya1{bottom:233.946667pt;}
.y196{bottom:235.226667pt;}
.y17a{bottom:239.866667pt;}
.yc2{bottom:240.666667pt;}
.y71{bottom:241.946667pt;}
.y3a{bottom:242.266667pt;}
.yf5{bottom:246.106667pt;}
.y129{bottom:246.266667pt;}
.y1e9{bottom:249.626667pt;}
.y1c1{bottom:249.946667pt;}
.ya0{bottom:251.546667pt;}
.y195{bottom:252.826667pt;}
.y179{bottom:257.626667pt;}
.yc1{bottom:258.266667pt;}
.y70{bottom:259.546667pt;}
.y39{bottom:259.866667pt;}
.y128{bottom:263.866667pt;}
.yf4{bottom:264.666667pt;}
.y1e8{bottom:267.226667pt;}
.y1c0{bottom:267.706667pt;}
.y9f{bottom:269.146667pt;}
.y194{bottom:270.586667pt;}
.y178{bottom:275.226667pt;}
.yc0{bottom:275.866667pt;}
.y6f{bottom:277.146667pt;}
.y38{bottom:277.626667pt;}
.y127{bottom:281.626667pt;}
.yf3{bottom:283.226667pt;}
.y1e7{bottom:284.826667pt;}
.y1bf{bottom:286.266667pt;}
.y9e{bottom:286.746667pt;}
.y193{bottom:288.186667pt;}
.y177{bottom:292.826667pt;}
.ybf{bottom:293.626667pt;}
.y6e{bottom:294.746667pt;}
.y37{bottom:295.226667pt;}
.y126{bottom:299.226667pt;}
.yf2{bottom:301.946667pt;}
.y1e6{bottom:302.586667pt;}
.y1be{bottom:303.866667pt;}
.y9d{bottom:304.506667pt;}
.y192{bottom:305.786667pt;}
.y176{bottom:310.426667pt;}
.ybe{bottom:311.226667pt;}
.y6d{bottom:312.506667pt;}
.y36{bottom:312.826667pt;}
.y125{bottom:316.826667pt;}
.y152{bottom:318.906667pt;}
.y1e5{bottom:320.186667pt;}
.yf1{bottom:320.506667pt;}
.y1bd{bottom:321.466667pt;}
.y9c{bottom:322.106667pt;}
.y191{bottom:323.386667pt;}
.y175{bottom:328.026667pt;}
.ybd{bottom:328.826667pt;}
.y6c{bottom:330.106667pt;}
.y35{bottom:330.426667pt;}
.y124{bottom:334.426667pt;}
.y1e4{bottom:337.786667pt;}
.yf0{bottom:339.066667pt;}
.y9b{bottom:339.706667pt;}
.y190{bottom:340.986667pt;}
.y151{bottom:342.426667pt;}
.y174{bottom:345.786667pt;}
.ybc{bottom:346.426667pt;}
.y6b{bottom:347.706667pt;}
.y34{bottom:348.026667pt;}
.y123{bottom:352.026667pt;}
.y1e3{bottom:355.386667pt;}
.y1bc{bottom:356.866667pt;}
.y9a{bottom:357.346667pt;}
.yef{bottom:357.666667pt;}
.y18f{bottom:358.786667pt;}
.y150{bottom:360.066667pt;}
.y173{bottom:363.426667pt;}
.ybb{bottom:364.066667pt;}
.y6a{bottom:365.346667pt;}
.y33{bottom:365.826667pt;}
.y122{bottom:369.826667pt;}
.y1e2{bottom:373.026667pt;}
.y1bb{bottom:374.466667pt;}
.y99{bottom:374.946667pt;}
.yee{bottom:375.266667pt;}
.y18e{bottom:376.386667pt;}
.y14f{bottom:377.666667pt;}
.y172{bottom:381.026667pt;}
.yba{bottom:381.826667pt;}
.y69{bottom:382.946667pt;}
.y32{bottom:383.426667pt;}
.y121{bottom:387.426667pt;}
.y1e1{bottom:390.786667pt;}
.y98{bottom:392.706667pt;}
.yed{bottom:392.866667pt;}
.y1ba{bottom:393.026667pt;}
.y18d{bottom:393.986667pt;}
.y14e{bottom:395.266667pt;}
.y171{bottom:398.626667pt;}
.yb9{bottom:399.426667pt;}
.y68{bottom:400.706667pt;}
.y31{bottom:401.026667pt;}
.y120{bottom:405.026667pt;}
.y18c{bottom:407.106667pt;}
.y1e0{bottom:408.386667pt;}
.y97{bottom:410.306667pt;}
.yec{bottom:410.626667pt;}
.y14d{bottom:412.866667pt;}
.y170{bottom:416.226667pt;}
.yb8{bottom:417.026667pt;}
.y67{bottom:418.306667pt;}
.y30{bottom:418.626667pt;}
.y11f{bottom:422.626667pt;}
.y1df{bottom:425.986667pt;}
.y96{bottom:427.906667pt;}
.yeb{bottom:428.226667pt;}
.y14c{bottom:430.626667pt;}
.y16f{bottom:433.986667pt;}
.yb7{bottom:434.626667pt;}
.y11e{bottom:435.746667pt;}
.y66{bottom:435.906667pt;}
.y2f{bottom:436.226667pt;}
.y1de{bottom:443.586667pt;}
.y95{bottom:445.506667pt;}
.yea{bottom:445.826667pt;}
.y1b9{bottom:445.986667pt;}
.y14b{bottom:448.226667pt;}
.y16e{bottom:451.586667pt;}
.yb6{bottom:452.226667pt;}
.y65{bottom:453.506667pt;}
.y2e{bottom:453.986667pt;}
.y11d{bottom:454.146667pt;}
.y18b{bottom:460.706667pt;}
.y1dd{bottom:461.186667pt;}
.y94{bottom:463.106667pt;}
.ye9{bottom:463.426667pt;}
.y1b8{bottom:463.586667pt;}
.y14a{bottom:465.826667pt;}
.y16d{bottom:469.186667pt;}
.yb5{bottom:469.986667pt;}
.y64{bottom:471.106667pt;}
.y2d{bottom:471.586667pt;}
.y11c{bottom:472.386667pt;}
.y1dc{bottom:478.946667pt;}
.y93{bottom:480.866667pt;}
.ye8{bottom:481.026667pt;}
.y1b7{bottom:481.186667pt;}
.y149{bottom:483.426667pt;}
.y16c{bottom:486.786667pt;}
.yb4{bottom:487.586667pt;}
.y63{bottom:488.866667pt;}
.y2c{bottom:489.186667pt;}
.y11b{bottom:490.626667pt;}
.y1db{bottom:496.546667pt;}
.y92{bottom:498.466667pt;}
.ye7{bottom:498.786667pt;}
.y148{bottom:501.026667pt;}
.y2b{bottom:502.306667pt;}
.y16b{bottom:504.386667pt;}
.yb3{bottom:505.186667pt;}
.y62{bottom:506.466667pt;}
.y11a{bottom:514.146667pt;}
.y18a{bottom:514.306667pt;}
.y91{bottom:516.066667pt;}
.ye6{bottom:516.386667pt;}
.y1b6{bottom:517.346667pt;}
.y147{bottom:518.786667pt;}
.y1d{bottom:520.546667pt;}
.y16a{bottom:522.146667pt;}
.yb2{bottom:522.786667pt;}
.y61{bottom:524.066667pt;}
.y119{bottom:531.746667pt;}
.y90{bottom:533.666667pt;}
.ye5{bottom:533.986667pt;}
.y1b5{bottom:535.106667pt;}
.y146{bottom:536.386667pt;}
.y169{bottom:539.746667pt;}
.yb1{bottom:540.386667pt;}
.y60{bottom:541.666667pt;}
.y118{bottom:549.346667pt;}
.y8f{bottom:551.266667pt;}
.ye4{bottom:551.586667pt;}
.y1b4{bottom:552.706667pt;}
.y145{bottom:553.986667pt;}
.y168{bottom:557.346667pt;}
.y5f{bottom:559.266667pt;}
.yb0{bottom:566.146667pt;}
.y117{bottom:567.106667pt;}
.y187{bottom:567.746667pt;}
.y8e{bottom:569.026667pt;}
.y1b3{bottom:570.306667pt;}
.y144{bottom:571.586667pt;}
.y167{bottom:574.946667pt;}
.y5e{bottom:577.053333pt;}
.ye3{bottom:577.213333pt;}
.yaf{bottom:583.773333pt;}
.y116{bottom:584.733333pt;}
.y8d{bottom:586.653333pt;}
.y1b2{bottom:587.933333pt;}
.y143{bottom:589.213333pt;}
.y166{bottom:592.573333pt;}
.y5d{bottom:594.653333pt;}
.ye2{bottom:594.973333pt;}
.yae{bottom:601.373333pt;}
.y115{bottom:602.333333pt;}
.y8c{bottom:604.253333pt;}
.y1b1{bottom:605.533333pt;}
.y142{bottom:606.973333pt;}
.y165{bottom:610.333333pt;}
.y5c{bottom:612.253333pt;}
.ye1{bottom:612.573333pt;}
.yad{bottom:618.973333pt;}
.y114{bottom:619.933333pt;}
.y8b{bottom:621.853333pt;}
.y1b0{bottom:623.293333pt;}
.y141{bottom:624.573333pt;}
.y164{bottom:627.933333pt;}
.y5b{bottom:629.853333pt;}
.ye0{bottom:630.173333pt;}
.yac{bottom:636.573333pt;}
.y113{bottom:637.533333pt;}
.y186{bottom:638.973333pt;}
.y8a{bottom:639.453333pt;}
.y1af{bottom:640.893333pt;}
.y140{bottom:642.173333pt;}
.y163{bottom:645.533333pt;}
.y5a{bottom:647.453333pt;}
.yab{bottom:654.333333pt;}
.y112{bottom:655.293333pt;}
.ydf{bottom:655.773333pt;}
.y89{bottom:657.213333pt;}
.y1ae{bottom:658.493333pt;}
.y13f{bottom:659.773333pt;}
.y162{bottom:663.133333pt;}
.y59{bottom:665.213333pt;}
.yaa{bottom:672.893333pt;}
.yde{bottom:673.373333pt;}
.y88{bottom:674.813333pt;}
.y185{bottom:674.973333pt;}
.y1ad{bottom:676.093333pt;}
.y13e{bottom:677.373333pt;}
.y161{bottom:680.733333pt;}
.y58{bottom:682.813333pt;}
.y1da{bottom:690.493333pt;}
.ydd{bottom:691.133333pt;}
.ya9{bottom:691.453333pt;}
.y87{bottom:692.413333pt;}
.y1ac{bottom:693.693333pt;}
.y13d{bottom:695.133333pt;}
.y111{bottom:698.493333pt;}
.y57{bottom:700.413333pt;}
.y1d9{bottom:708.093333pt;}
.y13c{bottom:708.253333pt;}
.ydc{bottom:708.733333pt;}
.y86{bottom:710.013333pt;}
.y1ab{bottom:711.453333pt;}
.y110{bottom:716.093333pt;}
.y56{bottom:718.013333pt;}
.y1aa{bottom:724.573333pt;}
.y1d8{bottom:725.693333pt;}
.ydb{bottom:726.333333pt;}
.y85{bottom:727.613333pt;}
.y10f{bottom:733.693333pt;}
.y55{bottom:735.613333pt;}
.y1a9{bottom:742.813333pt;}
.y1d7{bottom:743.453333pt;}
.yda{bottom:743.933333pt;}
.y13b{bottom:744.093333pt;}
.y84{bottom:745.373333pt;}
.y184{bottom:746.173333pt;}
.y1b{bottom:750.493333pt;}
.y160{bottom:751.293333pt;}
.y10e{bottom:751.453333pt;}
.y54{bottom:753.373333pt;}
.y1a8{bottom:761.053333pt;}
.yd9{bottom:761.533333pt;}
.y83{bottom:762.973333pt;}
.y15f{bottom:768.893333pt;}
.y10d{bottom:769.053333pt;}
.y53{bottom:770.973333pt;}
.y1a{bottom:776.733333pt;}
.y1d6{bottom:778.653333pt;}
.yd8{bottom:779.293333pt;}
.y1a7{bottom:779.453333pt;}
.y82{bottom:780.573333pt;}
.y15e{bottom:786.493333pt;}
.y10c{bottom:786.653333pt;}
.y52{bottom:788.573333pt;}
.yd7{bottom:792.413333pt;}
.y1d5{bottom:796.253333pt;}
.y137{bottom:797.693333pt;}
.y81{bottom:798.213333pt;}
.y19{bottom:799.013333pt;}
.y183{bottom:799.813333pt;}
.y1a6{bottom:802.853333pt;}
.y10b{bottom:804.293333pt;}
.y51{bottom:806.213333pt;}
.yd6{bottom:810.693333pt;}
.y1d4{bottom:813.893333pt;}
.y80{bottom:815.813333pt;}
.y18{bottom:816.613333pt;}
.y1a5{bottom:820.613333pt;}
.y10a{bottom:821.893333pt;}
.y50{bottom:823.813333pt;}
.yd5{bottom:829.093333pt;}
.y17{bottom:830.053333pt;}
.y1d3{bottom:831.653333pt;}
.y7f{bottom:833.573333pt;}
.y136{bottom:833.733333pt;}
.y1a4{bottom:838.213333pt;}
.y15d{bottom:839.493333pt;}
.y109{bottom:839.653333pt;}
.y4f{bottom:841.573333pt;}
.yd4{bottom:847.333333pt;}
.y1d2{bottom:849.253333pt;}
.y16{bottom:849.573333pt;}
.y7e{bottom:851.173333pt;}
.y182{bottom:853.253333pt;}
.y1a3{bottom:855.813333pt;}
.y15c{bottom:857.093333pt;}
.y108{bottom:857.253333pt;}
.y4e{bottom:859.173333pt;}
.yd3{bottom:865.573333pt;}
.y1d1{bottom:866.853333pt;}
.y7d{bottom:868.773333pt;}
.y134{bottom:869.573333pt;}
.y15{bottom:871.653333pt;}
.y1a2{bottom:873.413333pt;}
.y15b{bottom:874.693333pt;}
.y107{bottom:874.853333pt;}
.y4d{bottom:876.773333pt;}
.yd2{bottom:883.973333pt;}
.y1d0{bottom:884.453333pt;}
.y7c{bottom:886.373333pt;}
.y1a1{bottom:886.533333pt;}
.y15a{bottom:887.973333pt;}
.y106{bottom:892.453333pt;}
.y4c{bottom:894.373333pt;}
.y14{bottom:899.813333pt;}
.y1cf{bottom:902.053333pt;}
.yd1{bottom:902.213333pt;}
.y7b{bottom:903.973333pt;}
.y1a0{bottom:904.933333pt;}
.y133{bottom:905.573333pt;}
.y105{bottom:910.053333pt;}
.y4b{bottom:911.973333pt;}
.y1ce{bottom:919.813333pt;}
.yd0{bottom:920.453333pt;}
.y7a{bottom:921.733333pt;}
.y19f{bottom:923.173333pt;}
.yf{bottom:923.973333pt;}
.y104{bottom:927.813333pt;}
.y4a{bottom:929.733333pt;}
.ycf{bottom:938.853333pt;}
.y19e{bottom:941.413333pt;}
.y1{bottom:945.253333pt;}
.y103{bottom:945.413333pt;}
.y49{bottom:947.333333pt;}
.yce{bottom:957.093333pt;}
.y131{bottom:959.173333pt;}
.y1cd{bottom:963.013333pt;}
.y102{bottom:963.973333pt;}
.y48{bottom:964.933333pt;}
.ycd{bottom:975.333333pt;}
.y158{bottom:976.773333pt;}
.y1cc{bottom:980.613333pt;}
.y101{bottom:981.573333pt;}
.y47{bottom:982.533333pt;}
.ycc{bottom:993.733333pt;}
.y1cb{bottom:998.213333pt;}
.y100{bottom:999.173333pt;}
.y46{bottom:1000.133333pt;}
.ycb{bottom:1011.973333pt;}
.yff{bottom:1016.933333pt;}
.y45{bottom:1017.893333pt;}
.yfe{bottom:1034.560000pt;}
.y44{bottom:1035.520000pt;}
.y43{bottom:1061.600000pt;}
.h3{height:1.787500pt;}
.h10{height:17.600000pt;}
.h14{height:17.632000pt;}
.h15{height:17.760000pt;}
.ha{height:19.520000pt;}
.he{height:20.320000pt;}
.hd{height:24.131250pt;}
.h1a{height:35.200000pt;}
.h19{height:35.360000pt;}
.h17{height:35.392000pt;}
.h7{height:37.090625pt;}
.h13{height:38.672812pt;}
.h4{height:39.373125pt;}
.h8{height:41.112500pt;}
.h12{height:43.108125pt;}
.h6{height:43.642500pt;}
.h11{height:43.782500pt;}
.hb{height:48.633750pt;}
.h16{height:52.800000pt;}
.h1f{height:52.832000pt;}
.h1b{height:52.960000pt;}
.h1d{height:52.992000pt;}
.h5{height:55.501875pt;}
.hc{height:63.091875pt;}
.h9{height:63.656250pt;}
.h20{height:70.560000pt;}
.h1e{height:70.592000pt;}
.h1c{height:88.160000pt;}
.h18{height:88.192000pt;}
.h2{height:129.792000pt;}
.hf{height:229.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:36.960000pt;}
.w23{width:37.120000pt;}
.w16{width:37.440000pt;}
.w1d{width:37.600000pt;}
.w15{width:38.080000pt;}
.w17{width:39.680000pt;}
.w19{width:39.712000pt;}
.w24{width:41.472000pt;}
.w22{width:46.240000pt;}
.w6{width:46.272000pt;}
.w18{width:46.400000pt;}
.w14{width:46.432000pt;}
.w1b{width:46.720000pt;}
.w1f{width:46.752000pt;}
.w12{width:52.800000pt;}
.w20{width:55.520000pt;}
.w1e{width:55.552000pt;}
.w28{width:57.440000pt;}
.w2c{width:58.592000pt;}
.w2d{width:58.720000pt;}
.w31{width:59.200000pt;}
.w29{width:59.232000pt;}
.w2e{width:60.480000pt;}
.w27{width:62.240000pt;}
.w30{width:62.272000pt;}
.w10{width:63.872000pt;}
.w11{width:64.000000pt;}
.w2f{width:64.320000pt;}
.w26{width:64.352000pt;}
.w2b{width:65.440000pt;}
.wf{width:65.920000pt;}
.we{width:67.552000pt;}
.wd{width:74.752000pt;}
.w25{width:78.240000pt;}
.w2a{width:78.272000pt;}
.wc{width:98.880000pt;}
.w4{width:126.112000pt;}
.wb{width:134.106667pt;}
.w1a{width:137.146667pt;}
.w2{width:138.426667pt;}
.w13{width:149.626667pt;}
.w21{width:156.826667pt;}
.w8{width:170.906667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.720000pt;}
.x5{left:7.680000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xc{left:51.200000pt;}
.x17{left:52.320000pt;}
.x1c{left:53.760000pt;}
.x10{left:71.999988pt;}
.xf{left:88.991988pt;}
.xb{left:94.912000pt;}
.x11{left:96.031988pt;}
.x4{left:113.480000pt;}
.x18{left:120.512000pt;}
.x8{left:126.280000pt;}
.x35{left:127.552000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x19{left:187.066667pt;}
.x29{left:190.106667pt;}
.x39{left:192.506667pt;}
.x36{left:193.626667pt;}
.x1d{left:204.026667pt;}
.xd{left:222.106667pt;}
.x2a{left:237.666667pt;}
.x1a{left:251.586667pt;}
.x37{left:252.866667pt;}
.x3a{left:255.426667pt;}
.x2b{left:275.266667pt;}
.x1e{left:289.826667pt;}
.x38{left:312.226667pt;}
.x2c{left:313.506667pt;}
.x1b{left:316.226667pt;}
.x1f{left:327.906667pt;}
.xe{left:420.573322pt;}
.x2d{left:422.333333pt;}
.x24{left:424.893333pt;}
.x20{left:426.333333pt;}
.x12{left:428.733333pt;}
.x15{left:444.573322pt;}
.x16{left:468.573322pt;}
.x32{left:500.093333pt;}
.x13{left:563.493333pt;}
.x33{left:565.093333pt;}
.x21{left:576.613333pt;}
.x2e{left:579.813333pt;}
.x26{left:610.213333pt;}
.x22{left:623.653333pt;}
.x9{left:624.933333pt;}
.x2f{left:626.693333pt;}
.x34{left:627.973333pt;}
.x27{left:647.813333pt;}
.x14{left:663.013333pt;}
.x30{left:664.453333pt;}
.x28{left:686.053333pt;}
.x23{left:700.453333pt;}
.x31{left:702.693333pt;}
}




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