
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_c1c007e292a221504b5cccf5.woff')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_b55b7c4b9f5595dca94bec1d.woff')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_5614c58c7499481f50b9983c.woff')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_f595ce5a48db642d5f1c8aff.woff')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_fc89a1cf8f8d8dbf2620ab4f.woff')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_3d74b4e3bcba325a0a07b628.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8ef484daeb329f2c87e73df5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_33c9ba8bb3768673866c5942.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.037800px;}
.ls13{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.097800px;}
.ls18{letter-spacing:0.108600px;}
.ls14{letter-spacing:0.115800px;}
.ls5{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.160800px;}
.lsc{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.173520px;}
.ls1e{letter-spacing:0.180000px;}
.lse{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1d{letter-spacing:2.608560px;}
.ls19{letter-spacing:2.976000px;}
.ls1b{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.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;}
}
.wsb{word-spacing:-15.984000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342200px;}
.ws11{word-spacing:-13.335000px;}
.ws10{word-spacing:-13.324200px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.188600px;}
.wsd{word-spacing:-13.141800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._36{margin-left:-11.391360px;}
._8{margin-left:-4.482603px;}
._7{margin-left:-3.366600px;}
._e{margin-left:-2.229000px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._4{width:2.075472px;}
._5{width:3.390239px;}
._6{width:4.887593px;}
._b{width:6.306134px;}
._c{width:8.236200px;}
._d{width:9.380403px;}
._a{width:10.568994px;}
._9{width:11.603400px;}
._f{width:14.433601px;}
._2b{width:15.691320px;}
._14{width:16.773480px;}
._10{width:17.855640px;}
._11{width:19.086600px;}
._12{width:20.924760px;}
._13{width:22.305840px;}
._1{width:23.905800px;}
._3{width:24.912024px;}
._2e{width:26.399520px;}
._17{width:27.414720px;}
._2f{width:28.737360px;}
._2a{width:30.240360px;}
._2c{width:32.524920px;}
._38{width:33.787440px;}
._20{width:35.383320px;}
._37{width:36.432720px;}
._3a{width:39.619080px;}
._22{width:44.023320px;}
._25{width:46.172160px;}
._21{width:48.697200px;}
._19{width:50.140080px;}
._18{width:52.665120px;}
._1f{width:53.863320px;}
._28{width:55.791360px;}
._1e{width:62.464680px;}
._23{width:64.148040px;}
._33{width:65.258040px;}
._15{width:66.372480px;}
._16{width:67.712520px;}
._34{width:74.067840px;}
._35{width:75.150000px;}
._24{width:79.063320px;}
._1b{width:85.550760px;}
._26{width:89.699040px;}
._1d{width:93.967560px;}
._39{width:104.849280px;}
._32{width:106.367160px;}
._31{width:107.795160px;}
._30{width:108.877320px;}
._27{width:110.560680px;}
._1a{width:112.123800px;}
._29{width:117.674760px;}
._3b{width:133.645800px;}
._1c{width:136.893240px;}
._2d{width:184.267800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yda{bottom:4.500000px;}
.ya8{bottom:7.830000px;}
.yac{bottom:7.920000px;}
.yc5{bottom:8.460000px;}
.y10b{bottom:9.630000px;}
.yc4{bottom:11.340000px;}
.y109{bottom:11.430000px;}
.y107{bottom:12.420000px;}
.ya9{bottom:25.380000px;}
.yb0{bottom:25.470000px;}
.yea{bottom:25.500000px;}
.yb6{bottom:26.640000px;}
.y106{bottom:29.970000px;}
.y10a{bottom:31.350000px;}
.y108{bottom:32.790000px;}
.yc1{bottom:35.190000px;}
.ye8{bottom:43.020000px;}
.yed{bottom:43.110000px;}
.ya6{bottom:52.740000px;}
.ye7{bottom:52.830000px;}
.ye6{bottom:70.380000px;}
.y11b{bottom:71.490000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y118{bottom:97.680000px;}
.ye3{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.yab{bottom:112.170000px;}
.y51{bottom:113.790000px;}
.yd6{bottom:113.880000px;}
.yf1{bottom:114.600000px;}
.y19c{bottom:125.130000px;}
.y1c0{bottom:125.580000px;}
.y50{bottom:131.430000px;}
.y141{bottom:138.450000px;}
.yaa{bottom:139.530000px;}
.y114{bottom:139.980000px;}
.y19b{bottom:142.680000px;}
.y28{bottom:142.860000px;}
.y1bf{bottom:143.130000px;}
.y7d{bottom:144.840000px;}
.y16f{bottom:146.820000px;}
.y4f{bottom:148.980000px;}
.yd5{bottom:149.520000px;}
.y140{bottom:156.090000px;}
.y19a{bottom:160.320000px;}
.y27{bottom:160.500000px;}
.y1be{bottom:160.680000px;}
.y7c{bottom:162.390000px;}
.y16e{bottom:164.370000px;}
.y4e{bottom:166.620000px;}
.ya5{bottom:166.890000px;}
.yd4{bottom:167.070000px;}
.y13f{bottom:173.640000px;}
.y113{bottom:175.530000px;}
.yf0{bottom:177.060000px;}
.y26{bottom:178.050000px;}
.y7b{bottom:179.940000px;}
.y16d{bottom:182.010000px;}
.y4d{bottom:184.170000px;}
.yd3{bottom:184.710000px;}
.y199{bottom:186.870000px;}
.y1bd{bottom:187.320000px;}
.y13e{bottom:191.280000px;}
.y25{bottom:195.600000px;}
.y7a{bottom:197.580000px;}
.y4c{bottom:201.720000px;}
.yd2{bottom:202.260000px;}
.y198{bottom:204.510000px;}
.y1bc{bottom:204.870000px;}
.y16c{bottom:208.560000px;}
.y13d{bottom:208.830000px;}
.y112{bottom:211.170000px;}
.ya7{bottom:211.800000px;}
.y24{bottom:213.240000px;}
.y79{bottom:215.130000px;}
.y4b{bottom:219.360000px;}
.yd1{bottom:219.810000px;}
.y197{bottom:222.060000px;}
.y1bb{bottom:222.510000px;}
.y16b{bottom:226.110000px;}
.y13c{bottom:226.380000px;}
.y78{bottom:232.680000px;}
.y4a{bottom:236.910000px;}
.yd0{bottom:237.450000px;}
.yef{bottom:239.610000px;}
.y16a{bottom:243.750000px;}
.y111{bottom:246.720000px;}
.y196{bottom:248.610000px;}
.y23{bottom:248.790000px;}
.y1ba{bottom:249.060000px;}
.y77{bottom:250.320000px;}
.y49{bottom:254.550000px;}
.ya4{bottom:260.490000px;}
.y13b{bottom:262.020000px;}
.y195{bottom:266.250000px;}
.y22{bottom:266.340000px;}
.y1b9{bottom:266.610000px;}
.y76{bottom:267.870000px;}
.y169{bottom:270.300000px;}
.y48{bottom:272.100000px;}
.ycf{bottom:272.280000px;}
.y13a{bottom:279.570000px;}
.y110{bottom:282.270000px;}
.y194{bottom:283.800000px;}
.y21{bottom:283.980000px;}
.y1b8{bottom:284.250000px;}
.yce{bottom:284.430000px;}
.y75{bottom:285.510000px;}
.y168{bottom:287.940000px;}
.y47{bottom:289.650000px;}
.ya3{bottom:296.040000px;}
.y139{bottom:297.210000px;}
.y20{bottom:301.530000px;}
.yee{bottom:302.070000px;}
.y193{bottom:310.440000px;}
.y1b7{bottom:310.800000px;}
.ycd{bottom:311.790000px;}
.y74{bottom:312.060000px;}
.ya2{bottom:313.590000px;}
.y167{bottom:314.490000px;}
.y138{bottom:314.760000px;}
.y10f{bottom:317.910000px;}
.y1f{bottom:319.170000px;}
.y46{bottom:325.290000px;}
.y192{bottom:327.990000px;}
.y1b6{bottom:328.440000px;}
.y166{bottom:332.040000px;}
.y137{bottom:332.310000px;}
.y1e{bottom:336.720000px;}
.ycc{bottom:339.150000px;}
.ya1{bottom:341.400000px;}
.y45{bottom:342.840000px;}
.y1b5{bottom:345.990000px;}
.yec{bottom:346.980000px;}
.y73{bottom:347.610000px;}
.y165{bottom:349.680000px;}
.y136{bottom:349.950000px;}
.y10e{bottom:353.460000px;}
.y1d{bottom:354.270000px;}
.y191{bottom:354.540000px;}
.y44{bottom:360.480000px;}
.y72{bottom:365.250000px;}
.ycb{bottom:366.510000px;}
.y135{bottom:367.500000px;}
.y1c{bottom:371.910000px;}
.y190{bottom:372.180000px;}
.y1b4{bottom:372.540000px;}
.y164{bottom:376.230000px;}
.y43{bottom:378.030000px;}
.y71{bottom:382.800000px;}
.y134{bottom:385.050000px;}
.y10d{bottom:389.100000px;}
.y1b{bottom:389.460000px;}
.ya0{bottom:389.640000px;}
.y1b3{bottom:390.180000px;}
.yca{bottom:393.780000px;}
.y163{bottom:393.870000px;}
.y42{bottom:395.580000px;}
.y18f{bottom:398.730000px;}
.y70{bottom:400.440000px;}
.y133{bottom:402.690000px;}
.y10c{bottom:406.650000px;}
.y1a{bottom:407.100000px;}
.y9f{bottom:407.280000px;}
.yeb{bottom:409.530000px;}
.y162{bottom:411.420000px;}
.y41{bottom:413.220000px;}
.y18e{bottom:416.370000px;}
.y1b2{bottom:416.730000px;}
.y6f{bottom:417.990000px;}
.y132{bottom:420.240000px;}
.yc9{bottom:421.140000px;}
.y19{bottom:424.650000px;}
.y9e{bottom:424.830000px;}
.y40{bottom:430.770000px;}
.y1b1{bottom:434.370000px;}
.y6e{bottom:435.540000px;}
.y131{bottom:437.880000px;}
.y161{bottom:437.970000px;}
.y105{bottom:439.590000px;}
.y9d{bottom:442.380000px;}
.y18d{bottom:442.920000px;}
.y3f{bottom:448.410000px;}
.yc8{bottom:448.500000px;}
.y18{bottom:451.560000px;}
.y6d{bottom:453.180000px;}
.ye9{bottom:454.440000px;}
.y130{bottom:455.430000px;}
.y160{bottom:455.610000px;}
.y9c{bottom:460.020000px;}
.y18c{bottom:460.470000px;}
.y1b0{bottom:460.920000px;}
.y3e{bottom:465.960000px;}
.y6c{bottom:470.760000px;}
.y15f{bottom:473.190000px;}
.yc7{bottom:475.800000px;}
.y9b{bottom:477.600000px;}
.y1af{bottom:478.500000px;}
.y18b{bottom:487.140000px;}
.y104{bottom:489.030000px;}
.y15e{bottom:490.830000px;}
.y12f{bottom:491.010000px;}
.y9a{bottom:495.240000px;}
.y1ae{bottom:496.140000px;}
.ye2{bottom:499.380000px;}
.y17{bottom:500.190000px;}
.y3d{bottom:501.540000px;}
.yc6{bottom:503.160000px;}
.y18a{bottom:504.690000px;}
.y6b{bottom:506.400000px;}
.y12e{bottom:508.650000px;}
.y99{bottom:512.790000px;}
.y15d{bottom:517.380000px;}
.y3c{bottom:519.180000px;}
.y189{bottom:522.330000px;}
.y1ad{bottom:522.690000px;}
.y6a{bottom:523.950000px;}
.y12d{bottom:526.200000px;}
.ye5{bottom:526.740000px;}
.y98{bottom:530.340000px;}
.yc3{bottom:530.520000px;}
.y103{bottom:534.030000px;}
.y15c{bottom:534.930000px;}
.y16{bottom:537.180000px;}
.y1ac{bottom:540.330000px;}
.y69{bottom:541.500000px;}
.y12c{bottom:543.840000px;}
.y3b{bottom:545.730000px;}
.y97{bottom:547.980000px;}
.y188{bottom:548.880000px;}
.y15b{bottom:552.570000px;}
.y15{bottom:554.820000px;}
.y68{bottom:559.140000px;}
.yc0{bottom:561.390000px;}
.y96{bottom:565.530000px;}
.y187{bottom:566.430000px;}
.y1ab{bottom:566.880000px;}
.y14{bottom:572.370000px;}
.y67{bottom:576.690000px;}
.y12b{bottom:578.940000px;}
.y15a{bottom:579.120000px;}
.y3a{bottom:581.280000px;}
.y95{bottom:583.170000px;}
.y186{bottom:584.070000px;}
.y1aa{bottom:584.430000px;}
.yc2{bottom:588.660000px;}
.ye4{bottom:589.200000px;}
.y13{bottom:589.920000px;}
.y66{bottom:594.330000px;}
.y159{bottom:596.760000px;}
.y102{bottom:600.270000px;}
.y1a9{bottom:602.070000px;}
.y12{bottom:607.560000px;}
.y94{bottom:609.990000px;}
.y185{bottom:610.620000px;}
.y65{bottom:611.880000px;}
.y39{bottom:613.500000px;}
.y158{bottom:614.310000px;}
.y12a{bottom:614.580000px;}
.y1c4{bottom:619.620000px;}
.y11{bottom:625.110000px;}
.y184{bottom:628.260000px;}
.y1a8{bottom:628.620000px;}
.y64{bottom:629.430000px;}
.y129{bottom:632.130000px;}
.y101{bottom:635.820000px;}
.y1c3{bottom:637.260000px;}
.ybf{bottom:637.440000px;}
.ye1{bottom:637.890000px;}
.y157{bottom:640.860000px;}
.y10{bottom:642.750000px;}
.y183{bottom:645.810000px;}
.y1a7{bottom:646.260000px;}
.y63{bottom:647.070000px;}
.y128{bottom:649.770000px;}
.y100{bottom:653.370000px;}
.y93{bottom:658.320000px;}
.y156{bottom:658.500000px;}
.yf{bottom:660.300000px;}
.y1a6{bottom:663.810000px;}
.y62{bottom:664.620000px;}
.y127{bottom:667.320000px;}
.y182{bottom:672.360000px;}
.ybe{bottom:672.990000px;}
.ye0{bottom:673.530000px;}
.yff{bottom:675.510000px;}
.y92{bottom:675.870000px;}
.ye{bottom:677.850000px;}
.y1c2{bottom:681.360000px;}
.y61{bottom:682.260000px;}
.y126{bottom:684.870000px;}
.y155{bottom:685.050000px;}
.y181{bottom:690.000000px;}
.y1a5{bottom:690.360000px;}
.ybd{bottom:690.540000px;}
.ydf{bottom:691.080000px;}
.yfe{bottom:693.060000px;}
.y91{bottom:694.320000px;}
.yd{bottom:695.490000px;}
.y60{bottom:699.810000px;}
.y125{bottom:702.510000px;}
.y154{bottom:702.690000px;}
.y1a4{bottom:708.000000px;}
.y90{bottom:711.870000px;}
.yc{bottom:713.040000px;}
.y180{bottom:716.550000px;}
.y5f{bottom:717.360000px;}
.yde{bottom:718.530000px;}
.y124{bottom:720.060000px;}
.y153{bottom:720.240000px;}
.y1a3{bottom:725.550000px;}
.ybc{bottom:726.990000px;}
.y8f{bottom:730.320000px;}
.yb{bottom:730.680000px;}
.y17f{bottom:734.190000px;}
.y5e{bottom:735.000000px;}
.y123{bottom:737.700000px;}
.yfb{bottom:737.970000px;}
.y1c1{bottom:743.190000px;}
.ybb{bottom:744.540000px;}
.y152{bottom:746.790000px;}
.y8e{bottom:747.870000px;}
.y17e{bottom:751.740000px;}
.y1a2{bottom:752.190000px;}
.y5d{bottom:752.550000px;}
.ydd{bottom:754.080000px;}
.y122{bottom:755.250000px;}
.ya{bottom:757.590000px;}
.yba{bottom:762.180000px;}
.y151{bottom:764.430000px;}
.yfd{bottom:765.330000px;}
.y1a1{bottom:769.740000px;}
.y5c{bottom:770.190000px;}
.ydc{bottom:771.720000px;}
.y121{bottom:772.800000px;}
.y8d{bottom:775.320000px;}
.y17d{bottom:778.290000px;}
.yb9{bottom:779.730000px;}
.y150{bottom:781.980000px;}
.y1a0{bottom:787.290000px;}
.y120{bottom:790.440000px;}
.yb8{bottom:797.280000px;}
.ydb{bottom:804.660000px;}
.y17c{bottom:804.930000px;}
.y5b{bottom:805.740000px;}
.y9{bottom:805.830000px;}
.y11f{bottom:807.990000px;}
.y14f{bottom:808.890000px;}
.yfc{bottom:810.240000px;}
.y8c{bottom:810.870000px;}
.y19f{bottom:813.930000px;}
.yb7{bottom:814.920000px;}
.y17b{bottom:822.480000px;}
.y5a{bottom:823.290000px;}
.y8b{bottom:828.420000px;}
.y19e{bottom:831.480000px;}
.yd9{bottom:832.020000px;}
.y11e{bottom:834.900000px;}
.y59{bottom:840.930000px;}
.y8{bottom:841.380000px;}
.y8a{bottom:846.870000px;}
.yb5{bottom:847.860000px;}
.y17a{bottom:849.030000px;}
.y14e{bottom:857.130000px;}
.y58{bottom:858.480000px;}
.y89{bottom:865.230000px;}
.y179{bottom:866.670000px;}
.yb4{bottom:875.220000px;}
.y14d{bottom:875.580000px;}
.y38{bottom:875.670000px;}
.y57{bottom:876.030000px;}
.yfa{bottom:876.480000px;}
.y7{bottom:877.200000px;}
.y11d{bottom:882.420000px;}
.y88{bottom:892.680000px;}
.y14c{bottom:893.130000px;}
.y178{bottom:893.220000px;}
.y56{bottom:893.670000px;}
.y11c{bottom:894.660000px;}
.y177{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y14b{bottom:911.580000px;}
.yf9{bottom:912.120000px;}
.y6{bottom:913.200000px;}
.yb3{bottom:920.130000px;}
.y87{bottom:928.320000px;}
.y176{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.yf8{bottom:929.670000px;}
.y14a{bottom:929.940000px;}
.y19d{bottom:937.410000px;}
.y117{bottom:939.570000px;}
.y86{bottom:945.870000px;}
.y35{bottom:946.410000px;}
.yf7{bottom:947.310000px;}
.y5{bottom:949.290000px;}
.y175{bottom:954.960000px;}
.y34{bottom:963.960000px;}
.y85{bottom:964.320000px;}
.yf6{bottom:964.860000px;}
.yb2{bottom:965.040000px;}
.y149{bottom:966.390000px;}
.y11a{bottom:966.930000px;}
.y174{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.y84{bottom:981.870000px;}
.yf5{bottom:982.410000px;}
.y4{bottom:987.630000px;}
.y173{bottom:990.150000px;}
.y148{bottom:993.300000px;}
.y32{bottom:999.150000px;}
.y55{bottom:999.600000px;}
.y83{bottom:1000.320000px;}
.yb1{bottom:1009.980000px;}
.y119{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y54{bottom:1017.180000px;}
.yf4{bottom:1017.360000px;}
.y82{bottom:1017.900000px;}
.yf3{bottom:1029.510000px;}
.y147{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y53{bottom:1034.820000px;}
.y146{bottom:1047.960000px;}
.y52{bottom:1052.370000px;}
.y81{bottom:1054.350000px;}
.yaf{bottom:1054.890000px;}
.y172{bottom:1060.920000px;}
.y145{bottom:1065.510000px;}
.y2f{bottom:1069.920000px;}
.y80{bottom:1071.900000px;}
.y116{bottom:1078.110000px;}
.y171{bottom:1078.560000px;}
.y144{bottom:1083.150000px;}
.y2e{bottom:1087.560000px;}
.yf2{bottom:1091.970000px;}
.y170{bottom:1096.110000px;}
.y7f{bottom:1098.540000px;}
.yae{bottom:1099.890000px;}
.y143{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y115{bottom:1113.750000px;}
.yd8{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.yad{bottom:1127.160000px;}
.y142{bottom:1127.610000px;}
.y7e{bottom:1137.690000px;}
.yd7{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h16{height:26.580000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h14{height:30.060000px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h10{height:44.100000px;}
.h23{height:44.130000px;}
.h12{height:44.190000px;}
.h1c{height:44.220000px;}
.h20{height:46.986328px;}
.h1f{height:48.720000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h13{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h1b{height:61.740000px;}
.hc{height:61.793886px;}
.h1d{height:61.830000px;}
.ha{height:62.585859px;}
.h15{height:62.648438px;}
.hd{height:68.582109px;}
.he{height:71.460000px;}
.h22{height:71.490000px;}
.h1e{height:71.550000px;}
.h4{height:72.985430px;}
.hb{height:74.953125px;}
.h1a{height:89.100000px;}
.h21{height:116.400000px;}
.h19{height:116.460000px;}
.h18{height:267.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:23.760000px;}
.w3e{width:29.340000px;}
.w6{width:32.040000px;}
.wa{width:32.130000px;}
.w30{width:32.400000px;}
.w2b{width:36.900000px;}
.w3d{width:43.470000px;}
.w23{width:45.720000px;}
.w4e{width:46.890000px;}
.w38{width:47.610000px;}
.w40{width:48.870000px;}
.w7{width:53.190000px;}
.wb{width:53.280000px;}
.w13{width:53.310000px;}
.w2f{width:53.640000px;}
.w29{width:56.790000px;}
.w33{width:60.210000px;}
.w25{width:62.370000px;}
.w42{width:63.090000px;}
.w49{width:63.180000px;}
.w16{width:66.510000px;}
.w19{width:66.540000px;}
.w32{width:68.670000px;}
.w8{width:69.300000px;}
.w28{width:73.350000px;}
.w4d{width:74.340000px;}
.w27{width:74.460000px;}
.w36{width:74.820000px;}
.w18{width:74.880000px;}
.w4c{width:75.240000px;}
.w24{width:81.810000px;}
.w48{width:82.530000px;}
.w31{width:84.870000px;}
.w4a{width:84.900000px;}
.wf{width:86.040000px;}
.w11{width:86.130000px;}
.w34{width:88.470000px;}
.w3f{width:90.180000px;}
.w41{width:93.000000px;}
.w43{width:96.300000px;}
.w2a{width:100.980000px;}
.w37{width:110.070000px;}
.wc{width:110.880000px;}
.w9{width:110.910000px;}
.w17{width:111.510000px;}
.w45{width:114.930000px;}
.w44{width:116.400000px;}
.w1a{width:120.630000px;}
.w39{width:128.010000px;}
.w3a{width:142.590000px;}
.w26{width:148.530000px;}
.w4b{width:150.390000px;}
.w2d{width:176.340000px;}
.w12{width:180.900000px;}
.w10{width:180.930000px;}
.w2c{width:184.530000px;}
.w35{width:185.610000px;}
.w1c{width:187.110000px;}
.w22{width:191.340000px;}
.we{width:194.070000px;}
.w4f{width:195.690000px;}
.w3b{width:214.200000px;}
.w3{width:218.640000px;}
.w20{width:222.240000px;}
.w3c{width:232.140000px;}
.w15{width:241.110000px;}
.w46{width:243.300000px;}
.w1b{width:254.460000px;}
.w5{width:267.750000px;}
.w4{width:267.780000px;}
.w21{width:340.590000px;}
.w47{width:354.090000px;}
.w1d{width:368.670000px;}
.w14{width:375.690000px;}
.w1e{width:379.920000px;}
.w2e{width:405.300000px;}
.w1f{width:749.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x1c{left:71.910000px;}
.x11{left:93.330000px;}
.x6{left:95.039987px;}
.x29{left:106.470000px;}
.x12{left:110.790000px;}
.x32{left:117.090000px;}
.x38{left:118.350000px;}
.x7{left:122.039987px;}
.x1b{left:160.019987px;}
.x13{left:164.910000px;}
.x44{left:169.499987px;}
.x5{left:187.949987px;}
.x2{left:202.799987px;}
.x33{left:212.160000px;}
.x15{left:232.140000px;}
.x2b{left:245.820000px;}
.x2a{left:261.749987px;}
.x39{left:266.160000px;}
.x16{left:286.140000px;}
.x9{left:288.210000px;}
.x21{left:291.810000px;}
.x3c{left:312.780000px;}
.x2f{left:315.300000px;}
.xb{left:321.060000px;}
.x3a{left:330.060000px;}
.x23{left:338.250000px;}
.x1d{left:361.020000px;}
.x40{left:366.780000px;}
.x1f{left:372.270000px;}
.xc{left:375.060000px;}
.x30{left:376.230000px;}
.x17{left:398.370000px;}
.x24{left:420.780000px;}
.x34{left:427.080000px;}
.x41{left:430.770000px;}
.x1e{left:441.390000px;}
.xd{left:445.080000px;}
.x31{left:465.510000px;}
.x18{left:474.060000px;}
.x25{left:483.870000px;}
.x42{left:516.480000px;}
.x14{left:541.320000px;}
.x3b{left:544.290000px;}
.xa{left:556.710000px;}
.x26{left:559.050000px;}
.xe{left:589.560000px;}
.x43{left:592.530000px;}
.x19{left:595.320000px;}
.x22{left:633.120000px;}
.xf{left:643.560000px;}
.x2c{left:651.930000px;}
.x35{left:660.030000px;}
.x3d{left:667.680000px;}
.x27{left:690.630000px;}
.x4{left:695.309987px;}
.x36{left:704.220000px;}
.x2d{left:706.380000px;}
.x1a{left:707.550000px;}
.x3e{left:711.870000px;}
.x10{left:713.580000px;}
.x28{left:723.480000px;}
.x37{left:734.280000px;}
.x2e{left:739.590000px;}
.x3f{left:741.930000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.033600pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.086933pt;}
.ls18{letter-spacing:0.096533pt;}
.ls14{letter-spacing:0.102933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.142933pt;}
.lsc{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.154240pt;}
.ls1e{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1d{letter-spacing:2.318720pt;}
.ls19{letter-spacing:2.645333pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.wsb{word-spacing:-14.208000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.859733pt;}
.ws11{word-spacing:-11.853333pt;}
.ws10{word-spacing:-11.843733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.723200pt;}
.wsd{word-spacing:-11.681600pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._36{margin-left:-10.125653pt;}
._8{margin-left:-3.984536pt;}
._7{margin-left:-2.992533pt;}
._e{margin-left:-1.981334pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._4{width:1.844864pt;}
._5{width:3.013546pt;}
._6{width:4.344527pt;}
._b{width:5.605452pt;}
._c{width:7.321066pt;}
._d{width:8.338136pt;}
._a{width:9.394661pt;}
._9{width:10.314134pt;}
._f{width:12.829867pt;}
._2b{width:13.947840pt;}
._14{width:14.909760pt;}
._10{width:15.871680pt;}
._11{width:16.965867pt;}
._12{width:18.599787pt;}
._13{width:19.827413pt;}
._1{width:21.249600pt;}
._3{width:22.144022pt;}
._2e{width:23.466240pt;}
._17{width:24.368640pt;}
._2f{width:25.544320pt;}
._2a{width:26.880320pt;}
._2c{width:28.911040pt;}
._38{width:30.033280pt;}
._20{width:31.451840pt;}
._37{width:32.384640pt;}
._3a{width:35.216960pt;}
._22{width:39.131840pt;}
._25{width:41.041920pt;}
._21{width:43.286400pt;}
._19{width:44.568960pt;}
._18{width:46.813440pt;}
._1f{width:47.878507pt;}
._28{width:49.592320pt;}
._1e{width:55.524160pt;}
._23{width:57.020480pt;}
._33{width:58.007147pt;}
._15{width:58.997760pt;}
._16{width:60.188907pt;}
._34{width:65.838080pt;}
._35{width:66.800000pt;}
._24{width:70.278507pt;}
._1b{width:76.045120pt;}
._26{width:79.732480pt;}
._1d{width:83.526720pt;}
._39{width:93.199360pt;}
._32{width:94.548587pt;}
._31{width:95.817920pt;}
._30{width:96.779840pt;}
._27{width:98.276160pt;}
._1a{width:99.665600pt;}
._29{width:104.599787pt;}
._3b{width:118.796267pt;}
._1c{width:121.682880pt;}
._2d{width:163.793600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:4.000000pt;}
.ya8{bottom:6.960000pt;}
.yac{bottom:7.040000pt;}
.yc5{bottom:7.520000pt;}
.y10b{bottom:8.560000pt;}
.yc4{bottom:10.080000pt;}
.y109{bottom:10.160000pt;}
.y107{bottom:11.040000pt;}
.ya9{bottom:22.560000pt;}
.yb0{bottom:22.640000pt;}
.yea{bottom:22.666667pt;}
.yb6{bottom:23.680000pt;}
.y106{bottom:26.640000pt;}
.y10a{bottom:27.866667pt;}
.y108{bottom:29.146667pt;}
.yc1{bottom:31.280000pt;}
.ye8{bottom:38.240000pt;}
.yed{bottom:38.320000pt;}
.ya6{bottom:46.880000pt;}
.ye7{bottom:46.960000pt;}
.ye6{bottom:62.560000pt;}
.y11b{bottom:63.546667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y118{bottom:86.826667pt;}
.ye3{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.yab{bottom:99.706667pt;}
.y51{bottom:101.146667pt;}
.yd6{bottom:101.226667pt;}
.yf1{bottom:101.866667pt;}
.y19c{bottom:111.226667pt;}
.y1c0{bottom:111.626667pt;}
.y50{bottom:116.826667pt;}
.y141{bottom:123.066667pt;}
.yaa{bottom:124.026667pt;}
.y114{bottom:124.426667pt;}
.y19b{bottom:126.826667pt;}
.y28{bottom:126.986667pt;}
.y1bf{bottom:127.226667pt;}
.y7d{bottom:128.746667pt;}
.y16f{bottom:130.506667pt;}
.y4f{bottom:132.426667pt;}
.yd5{bottom:132.906667pt;}
.y140{bottom:138.746667pt;}
.y19a{bottom:142.506667pt;}
.y27{bottom:142.666667pt;}
.y1be{bottom:142.826667pt;}
.y7c{bottom:144.346667pt;}
.y16e{bottom:146.106667pt;}
.y4e{bottom:148.106667pt;}
.ya5{bottom:148.346667pt;}
.yd4{bottom:148.506667pt;}
.y13f{bottom:154.346667pt;}
.y113{bottom:156.026667pt;}
.yf0{bottom:157.386667pt;}
.y26{bottom:158.266667pt;}
.y7b{bottom:159.946667pt;}
.y16d{bottom:161.786667pt;}
.y4d{bottom:163.706667pt;}
.yd3{bottom:164.186667pt;}
.y199{bottom:166.106667pt;}
.y1bd{bottom:166.506667pt;}
.y13e{bottom:170.026667pt;}
.y25{bottom:173.866667pt;}
.y7a{bottom:175.626667pt;}
.y4c{bottom:179.306667pt;}
.yd2{bottom:179.786667pt;}
.y198{bottom:181.786667pt;}
.y1bc{bottom:182.106667pt;}
.y16c{bottom:185.386667pt;}
.y13d{bottom:185.626667pt;}
.y112{bottom:187.706667pt;}
.ya7{bottom:188.266667pt;}
.y24{bottom:189.546667pt;}
.y79{bottom:191.226667pt;}
.y4b{bottom:194.986667pt;}
.yd1{bottom:195.386667pt;}
.y197{bottom:197.386667pt;}
.y1bb{bottom:197.786667pt;}
.y16b{bottom:200.986667pt;}
.y13c{bottom:201.226667pt;}
.y78{bottom:206.826667pt;}
.y4a{bottom:210.586667pt;}
.yd0{bottom:211.066667pt;}
.yef{bottom:212.986667pt;}
.y16a{bottom:216.666667pt;}
.y111{bottom:219.306667pt;}
.y196{bottom:220.986667pt;}
.y23{bottom:221.146667pt;}
.y1ba{bottom:221.386667pt;}
.y77{bottom:222.506667pt;}
.y49{bottom:226.266667pt;}
.ya4{bottom:231.546667pt;}
.y13b{bottom:232.906667pt;}
.y195{bottom:236.666667pt;}
.y22{bottom:236.746667pt;}
.y1b9{bottom:236.986667pt;}
.y76{bottom:238.106667pt;}
.y169{bottom:240.266667pt;}
.y48{bottom:241.866667pt;}
.ycf{bottom:242.026667pt;}
.y13a{bottom:248.506667pt;}
.y110{bottom:250.906667pt;}
.y194{bottom:252.266667pt;}
.y21{bottom:252.426667pt;}
.y1b8{bottom:252.666667pt;}
.yce{bottom:252.826667pt;}
.y75{bottom:253.786667pt;}
.y168{bottom:255.946667pt;}
.y47{bottom:257.466667pt;}
.ya3{bottom:263.146667pt;}
.y139{bottom:264.186667pt;}
.y20{bottom:268.026667pt;}
.yee{bottom:268.506667pt;}
.y193{bottom:275.946667pt;}
.y1b7{bottom:276.266667pt;}
.ycd{bottom:277.146667pt;}
.y74{bottom:277.386667pt;}
.ya2{bottom:278.746667pt;}
.y167{bottom:279.546667pt;}
.y138{bottom:279.786667pt;}
.y10f{bottom:282.586667pt;}
.y1f{bottom:283.706667pt;}
.y46{bottom:289.146667pt;}
.y192{bottom:291.546667pt;}
.y1b6{bottom:291.946667pt;}
.y166{bottom:295.146667pt;}
.y137{bottom:295.386667pt;}
.y1e{bottom:299.306667pt;}
.ycc{bottom:301.466667pt;}
.ya1{bottom:303.466667pt;}
.y45{bottom:304.746667pt;}
.y1b5{bottom:307.546667pt;}
.yec{bottom:308.426667pt;}
.y73{bottom:308.986667pt;}
.y165{bottom:310.826667pt;}
.y136{bottom:311.066667pt;}
.y10e{bottom:314.186667pt;}
.y1d{bottom:314.906667pt;}
.y191{bottom:315.146667pt;}
.y44{bottom:320.426667pt;}
.y72{bottom:324.666667pt;}
.ycb{bottom:325.786667pt;}
.y135{bottom:326.666667pt;}
.y1c{bottom:330.586667pt;}
.y190{bottom:330.826667pt;}
.y1b4{bottom:331.146667pt;}
.y164{bottom:334.426667pt;}
.y43{bottom:336.026667pt;}
.y71{bottom:340.266667pt;}
.y134{bottom:342.266667pt;}
.y10d{bottom:345.866667pt;}
.y1b{bottom:346.186667pt;}
.ya0{bottom:346.346667pt;}
.y1b3{bottom:346.826667pt;}
.yca{bottom:350.026667pt;}
.y163{bottom:350.106667pt;}
.y42{bottom:351.626667pt;}
.y18f{bottom:354.426667pt;}
.y70{bottom:355.946667pt;}
.y133{bottom:357.946667pt;}
.y10c{bottom:361.466667pt;}
.y1a{bottom:361.866667pt;}
.y9f{bottom:362.026667pt;}
.yeb{bottom:364.026667pt;}
.y162{bottom:365.706667pt;}
.y41{bottom:367.306667pt;}
.y18e{bottom:370.106667pt;}
.y1b2{bottom:370.426667pt;}
.y6f{bottom:371.546667pt;}
.y132{bottom:373.546667pt;}
.yc9{bottom:374.346667pt;}
.y19{bottom:377.466667pt;}
.y9e{bottom:377.626667pt;}
.y40{bottom:382.906667pt;}
.y1b1{bottom:386.106667pt;}
.y6e{bottom:387.146667pt;}
.y131{bottom:389.226667pt;}
.y161{bottom:389.306667pt;}
.y105{bottom:390.746667pt;}
.y9d{bottom:393.226667pt;}
.y18d{bottom:393.706667pt;}
.y3f{bottom:398.586667pt;}
.yc8{bottom:398.666667pt;}
.y18{bottom:401.386667pt;}
.y6d{bottom:402.826667pt;}
.ye9{bottom:403.946667pt;}
.y130{bottom:404.826667pt;}
.y160{bottom:404.986667pt;}
.y9c{bottom:408.906667pt;}
.y18c{bottom:409.306667pt;}
.y1b0{bottom:409.706667pt;}
.y3e{bottom:414.186667pt;}
.y6c{bottom:418.453333pt;}
.y15f{bottom:420.613333pt;}
.yc7{bottom:422.933333pt;}
.y9b{bottom:424.533333pt;}
.y1af{bottom:425.333333pt;}
.y18b{bottom:433.013333pt;}
.y104{bottom:434.693333pt;}
.y15e{bottom:436.293333pt;}
.y12f{bottom:436.453333pt;}
.y9a{bottom:440.213333pt;}
.y1ae{bottom:441.013333pt;}
.ye2{bottom:443.893333pt;}
.y17{bottom:444.613333pt;}
.y3d{bottom:445.813333pt;}
.yc6{bottom:447.253333pt;}
.y18a{bottom:448.613333pt;}
.y6b{bottom:450.133333pt;}
.y12e{bottom:452.133333pt;}
.y99{bottom:455.813333pt;}
.y15d{bottom:459.893333pt;}
.y3c{bottom:461.493333pt;}
.y189{bottom:464.293333pt;}
.y1ad{bottom:464.613333pt;}
.y6a{bottom:465.733333pt;}
.y12d{bottom:467.733333pt;}
.ye5{bottom:468.213333pt;}
.y98{bottom:471.413333pt;}
.yc3{bottom:471.573333pt;}
.y103{bottom:474.693333pt;}
.y15c{bottom:475.493333pt;}
.y16{bottom:477.493333pt;}
.y1ac{bottom:480.293333pt;}
.y69{bottom:481.333333pt;}
.y12c{bottom:483.413333pt;}
.y3b{bottom:485.093333pt;}
.y97{bottom:487.093333pt;}
.y188{bottom:487.893333pt;}
.y15b{bottom:491.173333pt;}
.y15{bottom:493.173333pt;}
.y68{bottom:497.013333pt;}
.yc0{bottom:499.013333pt;}
.y96{bottom:502.693333pt;}
.y187{bottom:503.493333pt;}
.y1ab{bottom:503.893333pt;}
.y14{bottom:508.773333pt;}
.y67{bottom:512.613333pt;}
.y12b{bottom:514.613333pt;}
.y15a{bottom:514.773333pt;}
.y3a{bottom:516.693333pt;}
.y95{bottom:518.373333pt;}
.y186{bottom:519.173333pt;}
.y1aa{bottom:519.493333pt;}
.yc2{bottom:523.253333pt;}
.ye4{bottom:523.733333pt;}
.y13{bottom:524.373333pt;}
.y66{bottom:528.293333pt;}
.y159{bottom:530.453333pt;}
.y102{bottom:533.573333pt;}
.y1a9{bottom:535.173333pt;}
.y12{bottom:540.053333pt;}
.y94{bottom:542.213333pt;}
.y185{bottom:542.773333pt;}
.y65{bottom:543.893333pt;}
.y39{bottom:545.333333pt;}
.y158{bottom:546.053333pt;}
.y12a{bottom:546.293333pt;}
.y1c4{bottom:550.773333pt;}
.y11{bottom:555.653333pt;}
.y184{bottom:558.453333pt;}
.y1a8{bottom:558.773333pt;}
.y64{bottom:559.493333pt;}
.y129{bottom:561.893333pt;}
.y101{bottom:565.173333pt;}
.y1c3{bottom:566.453333pt;}
.ybf{bottom:566.613333pt;}
.ye1{bottom:567.013333pt;}
.y157{bottom:569.653333pt;}
.y10{bottom:571.333333pt;}
.y183{bottom:574.053333pt;}
.y1a7{bottom:574.453333pt;}
.y63{bottom:575.173333pt;}
.y128{bottom:577.573333pt;}
.y100{bottom:580.773333pt;}
.y93{bottom:585.173333pt;}
.y156{bottom:585.333333pt;}
.yf{bottom:586.933333pt;}
.y1a6{bottom:590.053333pt;}
.y62{bottom:590.773333pt;}
.y127{bottom:593.173333pt;}
.y182{bottom:597.653333pt;}
.ybe{bottom:598.213333pt;}
.ye0{bottom:598.693333pt;}
.yff{bottom:600.453333pt;}
.y92{bottom:600.773333pt;}
.ye{bottom:602.533333pt;}
.y1c2{bottom:605.653333pt;}
.y61{bottom:606.453333pt;}
.y126{bottom:608.773333pt;}
.y155{bottom:608.933333pt;}
.y181{bottom:613.333333pt;}
.y1a5{bottom:613.653333pt;}
.ybd{bottom:613.813333pt;}
.ydf{bottom:614.293333pt;}
.yfe{bottom:616.053333pt;}
.y91{bottom:617.173333pt;}
.yd{bottom:618.213333pt;}
.y60{bottom:622.053333pt;}
.y125{bottom:624.453333pt;}
.y154{bottom:624.613333pt;}
.y1a4{bottom:629.333333pt;}
.y90{bottom:632.773333pt;}
.yc{bottom:633.813333pt;}
.y180{bottom:636.933333pt;}
.y5f{bottom:637.653333pt;}
.yde{bottom:638.693333pt;}
.y124{bottom:640.053333pt;}
.y153{bottom:640.213333pt;}
.y1a3{bottom:644.933333pt;}
.ybc{bottom:646.213333pt;}
.y8f{bottom:649.173333pt;}
.yb{bottom:649.493333pt;}
.y17f{bottom:652.613333pt;}
.y5e{bottom:653.333333pt;}
.y123{bottom:655.733333pt;}
.yfb{bottom:655.973333pt;}
.y1c1{bottom:660.613333pt;}
.ybb{bottom:661.813333pt;}
.y152{bottom:663.813333pt;}
.y8e{bottom:664.773333pt;}
.y17e{bottom:668.213333pt;}
.y1a2{bottom:668.613333pt;}
.y5d{bottom:668.933333pt;}
.ydd{bottom:670.293333pt;}
.y122{bottom:671.333333pt;}
.ya{bottom:673.413333pt;}
.yba{bottom:677.493333pt;}
.y151{bottom:679.493333pt;}
.yfd{bottom:680.293333pt;}
.y1a1{bottom:684.213333pt;}
.y5c{bottom:684.613333pt;}
.ydc{bottom:685.973333pt;}
.y121{bottom:686.933333pt;}
.y8d{bottom:689.173333pt;}
.y17d{bottom:691.813333pt;}
.yb9{bottom:693.093333pt;}
.y150{bottom:695.093333pt;}
.y1a0{bottom:699.813333pt;}
.y120{bottom:702.613333pt;}
.yb8{bottom:708.693333pt;}
.ydb{bottom:715.253333pt;}
.y17c{bottom:715.493333pt;}
.y5b{bottom:716.213333pt;}
.y9{bottom:716.293333pt;}
.y11f{bottom:718.213333pt;}
.y14f{bottom:719.013333pt;}
.yfc{bottom:720.213333pt;}
.y8c{bottom:720.773333pt;}
.y19f{bottom:723.493333pt;}
.yb7{bottom:724.373333pt;}
.y17b{bottom:731.093333pt;}
.y5a{bottom:731.813333pt;}
.y8b{bottom:736.373333pt;}
.y19e{bottom:739.093333pt;}
.yd9{bottom:739.573333pt;}
.y11e{bottom:742.133333pt;}
.y59{bottom:747.493333pt;}
.y8{bottom:747.893333pt;}
.y8a{bottom:752.773333pt;}
.yb5{bottom:753.653333pt;}
.y17a{bottom:754.693333pt;}
.y14e{bottom:761.893333pt;}
.y58{bottom:763.093333pt;}
.y89{bottom:769.093333pt;}
.y179{bottom:770.373333pt;}
.yb4{bottom:777.973333pt;}
.y14d{bottom:778.293333pt;}
.y38{bottom:778.373333pt;}
.y57{bottom:778.693333pt;}
.yfa{bottom:779.093333pt;}
.y7{bottom:779.733333pt;}
.y11d{bottom:784.373333pt;}
.y88{bottom:793.493333pt;}
.y14c{bottom:793.893333pt;}
.y178{bottom:793.973333pt;}
.y56{bottom:794.373333pt;}
.y11c{bottom:795.253333pt;}
.y177{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y14b{bottom:810.293333pt;}
.yf9{bottom:810.773333pt;}
.y6{bottom:811.733333pt;}
.yb3{bottom:817.893333pt;}
.y87{bottom:825.173333pt;}
.y176{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.yf8{bottom:826.373333pt;}
.y14a{bottom:826.613333pt;}
.y19d{bottom:833.253333pt;}
.y117{bottom:835.173333pt;}
.y86{bottom:840.773333pt;}
.y35{bottom:841.253333pt;}
.yf7{bottom:842.053333pt;}
.y5{bottom:843.813333pt;}
.y175{bottom:848.853333pt;}
.y34{bottom:856.853333pt;}
.y85{bottom:857.173333pt;}
.yf6{bottom:857.653333pt;}
.yb2{bottom:857.813333pt;}
.y149{bottom:859.013333pt;}
.y11a{bottom:859.493333pt;}
.y174{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.y84{bottom:872.773333pt;}
.yf5{bottom:873.253333pt;}
.y4{bottom:877.893333pt;}
.y173{bottom:880.133333pt;}
.y148{bottom:882.933333pt;}
.y32{bottom:888.133333pt;}
.y55{bottom:888.533333pt;}
.y83{bottom:889.173333pt;}
.yb1{bottom:897.760000pt;}
.y119{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y54{bottom:904.160000pt;}
.yf4{bottom:904.320000pt;}
.y82{bottom:904.800000pt;}
.yf3{bottom:915.120000pt;}
.y147{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y53{bottom:919.840000pt;}
.y146{bottom:931.520000pt;}
.y52{bottom:935.440000pt;}
.y81{bottom:937.200000pt;}
.yaf{bottom:937.680000pt;}
.y172{bottom:943.040000pt;}
.y145{bottom:947.120000pt;}
.y2f{bottom:951.040000pt;}
.y80{bottom:952.800000pt;}
.y116{bottom:958.320000pt;}
.y171{bottom:958.720000pt;}
.y144{bottom:962.800000pt;}
.y2e{bottom:966.720000pt;}
.yf2{bottom:970.640000pt;}
.y170{bottom:974.320000pt;}
.y7f{bottom:976.480000pt;}
.yae{bottom:977.680000pt;}
.y143{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y115{bottom:990.000000pt;}
.yd8{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.yad{bottom:1001.920000pt;}
.y142{bottom:1002.320000pt;}
.y7e{bottom:1011.280000pt;}
.yd7{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h16{height:23.626667pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h14{height:26.720000pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h10{height:39.200000pt;}
.h23{height:39.226667pt;}
.h12{height:39.280000pt;}
.h1c{height:39.306667pt;}
.h20{height:41.765625pt;}
.h1f{height:43.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h13{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h1b{height:54.880000pt;}
.hc{height:54.927899pt;}
.h1d{height:54.960000pt;}
.ha{height:55.631875pt;}
.h15{height:55.687500pt;}
.hd{height:60.961875pt;}
.he{height:63.520000pt;}
.h22{height:63.546667pt;}
.h1e{height:63.600000pt;}
.h4{height:64.875937pt;}
.hb{height:66.625000pt;}
.h1a{height:79.200000pt;}
.h21{height:103.466667pt;}
.h19{height:103.520000pt;}
.h18{height:238.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:21.120000pt;}
.w3e{width:26.080000pt;}
.w6{width:28.480000pt;}
.wa{width:28.560000pt;}
.w30{width:28.800000pt;}
.w2b{width:32.800000pt;}
.w3d{width:38.640000pt;}
.w23{width:40.640000pt;}
.w4e{width:41.680000pt;}
.w38{width:42.320000pt;}
.w40{width:43.440000pt;}
.w7{width:47.280000pt;}
.wb{width:47.360000pt;}
.w13{width:47.386667pt;}
.w2f{width:47.680000pt;}
.w29{width:50.480000pt;}
.w33{width:53.520000pt;}
.w25{width:55.440000pt;}
.w42{width:56.080000pt;}
.w49{width:56.160000pt;}
.w16{width:59.120000pt;}
.w19{width:59.146667pt;}
.w32{width:61.040000pt;}
.w8{width:61.600000pt;}
.w28{width:65.200000pt;}
.w4d{width:66.080000pt;}
.w27{width:66.186667pt;}
.w36{width:66.506667pt;}
.w18{width:66.560000pt;}
.w4c{width:66.880000pt;}
.w24{width:72.720000pt;}
.w48{width:73.360000pt;}
.w31{width:75.440000pt;}
.w4a{width:75.466667pt;}
.wf{width:76.480000pt;}
.w11{width:76.560000pt;}
.w34{width:78.640000pt;}
.w3f{width:80.160000pt;}
.w41{width:82.666667pt;}
.w43{width:85.600000pt;}
.w2a{width:89.760000pt;}
.w37{width:97.840000pt;}
.wc{width:98.560000pt;}
.w9{width:98.586667pt;}
.w17{width:99.120000pt;}
.w45{width:102.160000pt;}
.w44{width:103.466667pt;}
.w1a{width:107.226667pt;}
.w39{width:113.786667pt;}
.w3a{width:126.746667pt;}
.w26{width:132.026667pt;}
.w4b{width:133.680000pt;}
.w2d{width:156.746667pt;}
.w12{width:160.800000pt;}
.w10{width:160.826667pt;}
.w2c{width:164.026667pt;}
.w35{width:164.986667pt;}
.w1c{width:166.320000pt;}
.w22{width:170.080000pt;}
.we{width:172.506667pt;}
.w4f{width:173.946667pt;}
.w3b{width:190.400000pt;}
.w3{width:194.346667pt;}
.w20{width:197.546667pt;}
.w3c{width:206.346667pt;}
.w15{width:214.320000pt;}
.w46{width:216.266667pt;}
.w1b{width:226.186667pt;}
.w5{width:238.000000pt;}
.w4{width:238.026667pt;}
.w21{width:302.746667pt;}
.w47{width:314.746667pt;}
.w1d{width:327.706667pt;}
.w14{width:333.946667pt;}
.w1e{width:337.706667pt;}
.w2e{width:360.266667pt;}
.w1f{width:666.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1c{left:63.920000pt;}
.x11{left:82.960000pt;}
.x6{left:84.479988pt;}
.x29{left:94.640000pt;}
.x12{left:98.480000pt;}
.x32{left:104.080000pt;}
.x38{left:105.200000pt;}
.x7{left:108.479988pt;}
.x1b{left:142.239988pt;}
.x13{left:146.586667pt;}
.x44{left:150.666655pt;}
.x5{left:167.066655pt;}
.x2{left:180.266655pt;}
.x33{left:188.586667pt;}
.x15{left:206.346667pt;}
.x2b{left:218.506667pt;}
.x2a{left:232.666655pt;}
.x39{left:236.586667pt;}
.x16{left:254.346667pt;}
.x9{left:256.186667pt;}
.x21{left:259.386667pt;}
.x3c{left:278.026667pt;}
.x2f{left:280.266667pt;}
.xb{left:285.386667pt;}
.x3a{left:293.386667pt;}
.x23{left:300.666667pt;}
.x1d{left:320.906667pt;}
.x40{left:326.026667pt;}
.x1f{left:330.906667pt;}
.xc{left:333.386667pt;}
.x30{left:334.426667pt;}
.x17{left:354.106667pt;}
.x24{left:374.026667pt;}
.x34{left:379.626667pt;}
.x41{left:382.906667pt;}
.x1e{left:392.346667pt;}
.xd{left:395.626667pt;}
.x31{left:413.786667pt;}
.x18{left:421.386667pt;}
.x25{left:430.106667pt;}
.x42{left:459.093333pt;}
.x14{left:481.173333pt;}
.x3b{left:483.813333pt;}
.xa{left:494.853333pt;}
.x26{left:496.933333pt;}
.xe{left:524.053333pt;}
.x43{left:526.693333pt;}
.x19{left:529.173333pt;}
.x22{left:562.773333pt;}
.xf{left:572.053333pt;}
.x2c{left:579.493333pt;}
.x35{left:586.693333pt;}
.x3d{left:593.493333pt;}
.x27{left:613.893333pt;}
.x4{left:618.053322pt;}
.x36{left:625.973333pt;}
.x2d{left:627.893333pt;}
.x1a{left:628.933333pt;}
.x3e{left:632.773333pt;}
.x10{left:634.293333pt;}
.x28{left:643.093333pt;}
.x37{left:652.693333pt;}
.x2e{left:657.413333pt;}
.x3f{left:659.493333pt;}
.x3{left:704.053322pt;}
}




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