
    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_a6e604f79ba0b9d0ecec834a.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_c0a65e5a4509f15a659854b2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ad1a87acc06c8f9ec5c420d.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_86f60308ed5a6897bc951f62.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52835dd9684f9074452e9729.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_92d2a8b0afa8769df08d4a0a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_250dd1ecdddf9d7f187310e3.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;}
.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;}
.lsb{letter-spacing:-0.371400px;}
.ls17{letter-spacing:-0.243600px;}
.ls12{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.101400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.031800px;}
.ls14{letter-spacing:-0.014760px;}
.ls1b{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls1e{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.108600px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls20{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1f{letter-spacing:80.846640px;}
.ls1d{letter-spacing:200.160000px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.425600px;}
.ws3{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.335000px;}
.ws15{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.218840px;}
.wsc{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.125000px;}
.wse{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.ws4{word-spacing:-12.855000px;}
.wsd{word-spacing:-11.826000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.482400px;}
._b{margin-left:-2.381748px;}
._0{margin-left:-1.110000px;}
._2{width:1.101108px;}
._4{width:2.532000px;}
._1{width:3.774600px;}
._3{width:4.923252px;}
._9{width:6.025680px;}
._7{width:7.088040px;}
._8{width:8.369880px;}
._12{width:9.672492px;}
._6{width:10.881600px;}
._5{width:12.024000px;}
._10{width:14.256120px;}
._f{width:15.330600px;}
._c{width:16.893600px;}
._d{width:18.456840px;}
._11{width:19.534680px;}
._13{width:28.256400px;}
._14{width:29.569080px;}
._18{width:35.951760px;}
._19{width:37.154160px;}
._1a{width:38.597040px;}
._1b{width:39.619080px;}
._17{width:45.270360px;}
._e{width:94.060800px;}
._16{width:113.566680px;}
._15{width:255.570120px;}
.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;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:7.470000px;}
.y47{bottom:7.830000px;}
.y67{bottom:7.860000px;}
.y58{bottom:7.920000px;}
.yc6{bottom:7.950000px;}
.y113{bottom:13.050000px;}
.yd7{bottom:13.140000px;}
.yf2{bottom:25.470000px;}
.yf1{bottom:30.690000px;}
.yba{bottom:35.190000px;}
.yc4{bottom:35.220000px;}
.yd5{bottom:35.280000px;}
.yef{bottom:52.740000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y4e{bottom:116.130000px;}
.yc2{bottom:118.200000px;}
.y10e{bottom:118.740000px;}
.y9b{bottom:125.220000px;}
.y175{bottom:125.490000px;}
.y102{bottom:127.110000px;}
.y1a5{bottom:128.190000px;}
.y62{bottom:135.030000px;}
.y10d{bottom:136.290000px;}
.y24{bottom:140.790000px;}
.y4d{bottom:141.960000px;}
.y174{bottom:143.040000px;}
.y145{bottom:145.560000px;}
.y1a4{bottom:145.740000px;}
.yec{bottom:150.060000px;}
.yc1{bottom:150.420000px;}
.y7a{bottom:151.320000px;}
.y61{bottom:152.670000px;}
.y101{bottom:154.470000px;}
.y23{bottom:158.340000px;}
.y136{bottom:160.050000px;}
.y9a{bottom:160.860000px;}
.y1a3{bottom:163.380000px;}
.y143{bottom:165.000000px;}
.y4c{bottom:167.790000px;}
.ydb{bottom:168.780000px;}
.y60{bottom:170.220000px;}
.y10c{bottom:171.840000px;}
.y144{bottom:177.780000px;}
.y173{bottom:178.680000px;}
.y1a2{bottom:180.930000px;}
.y100{bottom:181.830000px;}
.yeb{bottom:182.280000px;}
.y152{bottom:183.000000px;}
.y5f{bottom:187.860000px;}
.y135{bottom:192.270000px;}
.y4b{bottom:193.620000px;}
.y22{bottom:193.980000px;}
.yda{bottom:196.140000px;}
.y1a1{bottom:198.570000px;}
.y79{bottom:201.000000px;}
.y99{bottom:203.610000px;}
.y10b{bottom:204.060000px;}
.yff{bottom:209.100000px;}
.y172{bottom:210.900000px;}
.y21{bottom:211.530000px;}
.y1a0{bottom:216.120000px;}
.y151{bottom:218.640000px;}
.y78{bottom:218.910000px;}
.y4a{bottom:219.450000px;}
.y142{bottom:219.630000px;}
.y5e{bottom:223.410000px;}
.yd9{bottom:223.500000px;}
.y8a{bottom:228.630000px;}
.y20{bottom:229.170000px;}
.y125{bottom:232.500000px;}
.y19f{bottom:233.670000px;}
.y163{bottom:234.750000px;}
.y150{bottom:236.190000px;}
.yfd{bottom:236.460000px;}
.yaf{bottom:236.910000px;}
.y49{bottom:245.280000px;}
.y77{bottom:246.270000px;}
.y1f{bottom:246.720000px;}
.y141{bottom:246.990000px;}
.yd8{bottom:250.860000px;}
.y19e{bottom:251.310000px;}
.y14f{bottom:253.740000px;}
.y5d{bottom:255.630000px;}
.y89{bottom:255.990000px;}
.y124{bottom:259.860000px;}
.y162{bottom:262.110000px;}
.yfe{bottom:263.820000px;}
.y1e{bottom:264.270000px;}
.y48{bottom:271.110000px;}
.y14e{bottom:271.380000px;}
.y76{bottom:273.630000px;}
.y13f{bottom:274.350000px;}
.yd4{bottom:278.130000px;}
.y19d{bottom:278.220000px;}
.y88{bottom:283.350000px;}
.y123{bottom:287.130000px;}
.y161{bottom:289.380000px;}
.y1d{bottom:291.180000px;}
.yae{bottom:291.630000px;}
.y46{bottom:296.940000px;}
.y75{bottom:300.900000px;}
.y140{bottom:301.620000px;}
.yd6{bottom:305.490000px;}
.y14d{bottom:306.930000px;}
.y87{bottom:310.710000px;}
.y122{bottom:314.490000px;}
.y160{bottom:316.740000px;}
.yad{bottom:318.900000px;}
.y19c{bottom:326.460000px;}
.y74{bottom:328.260000px;}
.y13e{bottom:328.980000px;}
.yd3{bottom:332.850000px;}
.y86{bottom:337.980000px;}
.y14c{bottom:339.150000px;}
.y1c{bottom:339.780000px;}
.yfc{bottom:339.870000px;}
.y120{bottom:341.850000px;}
.y15e{bottom:344.100000px;}
.y45{bottom:344.190000px;}
.yac{bottom:346.260000px;}
.y1c2{bottom:350.400000px;}
.y73{bottom:355.620000px;}
.y19b{bottom:361.650000px;}
.y85{bottom:365.340000px;}
.yfb{bottom:366.420000px;}
.y1c1{bottom:367.950000px;}
.y121{bottom:369.210000px;}
.y44{bottom:370.740000px;}
.y15f{bottom:371.460000px;}
.y1b{bottom:376.860000px;}
.y13d{bottom:377.670000px;}
.y19a{bottom:379.200000px;}
.yd2{bottom:381.540000px;}
.y72{bottom:382.890000px;}
.y43{bottom:388.380000px;}
.y1a{bottom:394.410000px;}
.y1c0{bottom:394.590000px;}
.yab{bottom:394.950000px;}
.y11f{bottom:396.480000px;}
.y199{bottom:396.840000px;}
.y15d{bottom:398.730000px;}
.yfa{bottom:402.060000px;}
.y71{bottom:410.250000px;}
.y19{bottom:412.050000px;}
.y1bf{bottom:412.140000px;}
.y13c{bottom:413.310000px;}
.y84{bottom:414.030000px;}
.y198{bottom:414.390000px;}
.yd1{bottom:417.090000px;}
.yf9{bottom:419.610000px;}
.y42{bottom:424.290000px;}
.y18{bottom:429.600000px;}
.y1be{bottom:429.690000px;}
.yaa{bottom:430.590000px;}
.y13b{bottom:430.860000px;}
.y197{bottom:431.940000px;}
.yd0{bottom:434.730000px;}
.yf8{bottom:437.160000px;}
.y11e{bottom:445.170000px;}
.y15c{bottom:447.420000px;}
.ya9{bottom:448.140000px;}
.y13a{bottom:448.410000px;}
.y196{bottom:449.580000px;}
.y83{bottom:449.670000px;}
.ycf{bottom:452.280000px;}
.yf7{bottom:454.800000px;}
.y1bd{bottom:456.330000px;}
.y70{bottom:458.940000px;}
.y17{bottom:465.150000px;}
.ya8{bottom:465.690000px;}
.y139{bottom:466.050000px;}
.yc0{bottom:466.500000px;}
.y195{bottom:467.130000px;}
.y82{bottom:467.220000px;}
.yce{bottom:469.950000px;}
.y41{bottom:472.560000px;}
.y1bc{bottom:473.910000px;}
.y15b{bottom:474.090000px;}
.y98{bottom:474.360000px;}
.y11d{bottom:480.840000px;}
.ybf{bottom:481.470000px;}
.y16{bottom:482.820000px;}
.ya7{bottom:483.360000px;}
.y81{bottom:484.800000px;}
.y40{bottom:490.110000px;}
.yf6{bottom:490.380000px;}
.yea{bottom:491.640000px;}
.y134{bottom:493.260000px;}
.y6f{bottom:494.610000px;}
.y11c{bottom:498.390000px;}
.y15{bottom:500.370000px;}
.y1bb{bottom:500.550000px;}
.ya6{bottom:500.910000px;}
.y138{bottom:501.630000px;}
.y97{bottom:501.720000px;}
.y194{bottom:502.350000px;}
.y80{bottom:502.440000px;}
.ycd{bottom:505.500000px;}
.ye9{bottom:506.670000px;}
.ybe{bottom:508.830000px;}
.y15a{bottom:509.640000px;}
.y6e{bottom:512.160000px;}
.y171{bottom:515.040000px;}
.y11b{bottom:516.030000px;}
.y10a{bottom:516.390000px;}
.y3f{bottom:516.750000px;}
.y5c{bottom:517.380000px;}
.y14{bottom:517.920000px;}
.y1ba{bottom:518.100000px;}
.y193{bottom:519.900000px;}
.y7f{bottom:519.990000px;}
.y133{bottom:520.170000px;}
.yf5{bottom:522.600000px;}
.y170{bottom:527.190000px;}
.y159{bottom:527.280000px;}
.y96{bottom:529.080000px;}
.y6d{bottom:529.710000px;}
.y11a{bottom:533.580000px;}
.y137{bottom:533.850000px;}
.ye8{bottom:533.940000px;}
.ybd{bottom:536.190000px;}
.ya5{bottom:536.460000px;}
.y192{bottom:537.540000px;}
.ycc{bottom:537.720000px;}
.y109{bottom:543.210000px;}
.y1b9{bottom:544.650000px;}
.y5b{bottom:544.740000px;}
.y158{bottom:544.830000px;}
.y6c{bottom:547.350000px;}
.y132{bottom:547.440000px;}
.y3e{bottom:552.300000px;}
.y13{bottom:553.560000px;}
.y16f{bottom:554.550000px;}
.y191{bottom:555.090000px;}
.y7e{bottom:555.630000px;}
.y95{bottom:556.350000px;}
.ye7{bottom:561.300000px;}
.y157{bottom:562.380000px;}
.ybc{bottom:563.460000px;}
.y6b{bottom:564.900000px;}
.ya4{bottom:568.680000px;}
.y119{bottom:569.130000px;}
.y108{bottom:570.570000px;}
.y12{bottom:571.110000px;}
.y1b8{bottom:571.290000px;}
.y5a{bottom:572.100000px;}
.y190{bottom:572.730000px;}
.y131{bottom:574.800000px;}
.y3d{bottom:578.940000px;}
.y16e{bottom:581.910000px;}
.y94{bottom:583.710000px;}
.y7d{bottom:587.850000px;}
.ye6{bottom:588.660000px;}
.y11{bottom:588.750000px;}
.y1b7{bottom:588.840000px;}
.y18f{bottom:590.280000px;}
.yb9{bottom:590.820000px;}
.y107{bottom:597.930000px;}
.y156{bottom:598.020000px;}
.y59{bottom:599.460000px;}
.y6a{bottom:600.540000px;}
.y118{bottom:601.350000px;}
.y130{bottom:602.160000px;}
.y10{bottom:606.300000px;}
.y18e{bottom:607.830000px;}
.y16d{bottom:609.180000px;}
.y3c{bottom:614.490000px;}
.y1b6{bottom:615.480000px;}
.ye4{bottom:615.930000px;}
.ybb{bottom:618.180000px;}
.y106{bottom:625.200000px;}
.y18d{bottom:625.470000px;}
.y57{bottom:626.730000px;}
.y12e{bottom:629.430000px;}
.y155{bottom:630.240000px;}
.y93{bottom:632.400000px;}
.y69{bottom:632.760000px;}
.y1b5{bottom:633.030000px;}
.y16b{bottom:636.540000px;}
.yf{bottom:641.850000px;}
.y18c{bottom:643.020000px;}
.ye5{bottom:643.290000px;}
.y3b{bottom:650.040000px;}
.y104{bottom:652.560000px;}
.y12f{bottom:656.790000px;}
.y14b{bottom:657.240000px;}
.ye{bottom:659.490000px;}
.y1b4{bottom:659.580000px;}
.y18b{bottom:660.660000px;}
.y16c{bottom:663.900000px;}
.yb8{bottom:666.870000px;}
.y3a{bottom:667.680000px;}
.y92{bottom:668.040000px;}
.ye3{bottom:670.650000px;}
.y56{bottom:675.420000px;}
.yd{bottom:677.040000px;}
.y1b3{bottom:677.220000px;}
.y18a{bottom:678.210000px;}
.y105{bottom:679.920000px;}
.y12d{bottom:684.150000px;}
.y14a{bottom:684.510000px;}
.y91{bottom:685.590000px;}
.yb7{bottom:693.420000px;}
.y189{bottom:695.760000px;}
.y90{bottom:703.140000px;}
.y39{bottom:703.230000px;}
.y1b2{bottom:703.770000px;}
.y103{bottom:707.190000px;}
.y55{bottom:711.060000px;}
.y149{bottom:711.870000px;}
.y16a{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y188{bottom:713.400000px;}
.ye2{bottom:719.340000px;}
.y8f{bottom:720.780000px;}
.y1b1{bottom:721.410000px;}
.y38{bottom:721.590000px;}
.y54{bottom:728.610000px;}
.yb6{bottom:729.060000px;}
.yb{bottom:730.230000px;}
.y187{bottom:730.950000px;}
.y12c{bottom:732.840000px;}
.y8e{bottom:738.330000px;}
.y148{bottom:739.230000px;}
.y37{bottom:740.040000px;}
.y53{bottom:746.250000px;}
.yb5{bottom:746.610000px;}
.y1b0{bottom:747.960000px;}
.y169{bottom:748.140000px;}
.y186{bottom:748.590000px;}
.ye1{bottom:754.890000px;}
.y8d{bottom:755.970000px;}
.ya{bottom:757.140000px;}
.y52{bottom:763.800000px;}
.yb4{bottom:764.250000px;}
.y1af{bottom:765.510000px;}
.y168{bottom:765.780000px;}
.y185{bottom:766.140000px;}
.y147{bottom:766.500000px;}
.y36{bottom:767.490000px;}
.y12b{bottom:768.390000px;}
.ye0{bottom:772.530000px;}
.y51{bottom:781.350000px;}
.yb3{bottom:781.800000px;}
.y167{bottom:783.330000px;}
.y184{bottom:783.690000px;}
.y12a{bottom:786.030000px;}
.ydf{bottom:790.080000px;}
.y8c{bottom:791.520000px;}
.y1ae{bottom:792.420000px;}
.yb2{bottom:799.350000px;}
.y35{bottom:800.070000px;}
.y166{bottom:800.970000px;}
.y183{bottom:801.330000px;}
.y129{bottom:803.580000px;}
.y9{bottom:805.380000px;}
.yde{bottom:807.720000px;}
.yf4{bottom:812.400000px;}
.y146{bottom:815.280000px;}
.y50{bottom:816.990000px;}
.y182{bottom:818.880000px;}
.y128{bottom:821.220000px;}
.y8b{bottom:823.740000px;}
.yb1{bottom:834.990000px;}
.y34{bottom:835.620000px;}
.y165{bottom:836.520000px;}
.yf3{bottom:839.220000px;}
.y1ad{bottom:840.750000px;}
.y8{bottom:841.200000px;}
.ycb{bottom:842.550000px;}
.ydd{bottom:843.270000px;}
.ya3{bottom:850.740000px;}
.y33{bottom:853.260000px;}
.y181{bottom:854.070000px;}
.y127{bottom:856.770000px;}
.y4f{bottom:859.740000px;}
.yca{bottom:866.580000px;}
.y1ac{bottom:867.660000px;}
.y164{bottom:868.740000px;}
.y180{bottom:871.620000px;}
.y117{bottom:874.410000px;}
.ydc{bottom:875.490000px;}
.y7{bottom:877.200000px;}
.yb0{bottom:877.740000px;}
.ya2{bottom:878.100000px;}
.y32{bottom:879.810000px;}
.y126{bottom:888.990000px;}
.y17f{bottom:889.260000px;}
.yc9{bottom:893.850000px;}
.y116{bottom:901.680000px;}
.y154{bottom:903.570000px;}
.y1ab{bottom:904.650000px;}
.ya1{bottom:905.370000px;}
.y17e{bottom:906.810000px;}
.y6{bottom:913.200000px;}
.y31{bottom:915.720000px;}
.yc8{bottom:921.210000px;}
.y17d{bottom:924.450000px;}
.y153{bottom:927.600000px;}
.y115{bottom:929.040000px;}
.y1aa{bottom:931.560000px;}
.ya0{bottom:932.730000px;}
.y7c{bottom:939.930000px;}
.y17c{bottom:942.000000px;}
.yc7{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y7b{bottom:954.870000px;}
.y114{bottom:956.400000px;}
.y17b{bottom:959.550000px;}
.y9f{bottom:960.090000px;}
.y30{bottom:963.960000px;}
.y1a9{bottom:968.910000px;}
.yc3{bottom:975.930000px;}
.y17a{bottom:977.190000px;}
.y2f{bottom:981.600000px;}
.y68{bottom:982.230000px;}
.y111{bottom:983.760000px;}
.y9d{bottom:987.360000px;}
.y4{bottom:987.630000px;}
.yf0{bottom:993.480000px;}
.y179{bottom:994.740000px;}
.y2e{bottom:999.150000px;}
.yc5{bottom:1003.200000px;}
.y66{bottom:1009.590000px;}
.y112{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y2d{bottom:1016.820000px;}
.y1a8{bottom:1017.180000px;}
.yee{bottom:1020.870000px;}
.y178{bottom:1029.960000px;}
.y2c{bottom:1034.370000px;}
.y1a7{bottom:1034.820000px;}
.y65{bottom:1036.890000px;}
.y110{bottom:1038.420000px;}
.y177{bottom:1047.510000px;}
.y2b{bottom:1051.920000px;}
.y1a6{bottom:1052.370000px;}
.y64{bottom:1064.250000px;}
.yed{bottom:1069.560000px;}
.y9c{bottom:1069.920000px;}
.y176{bottom:1074.420000px;}
.y10f{bottom:1087.110000px;}
.y2a{bottom:1087.560000px;}
.y63{bottom:1091.610000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h10{height:24.870000px;}
.hb{height:25.110000px;}
.he{height:26.550000px;}
.hf{height:26.580000px;}
.hd{height:26.640000px;}
.h13{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h16{height:44.190000px;}
.h6{height:50.902383px;}
.h11{height:53.910000px;}
.h12{height:53.940000px;}
.h14{height:54.000000px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.hc{height:60.960938px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h17{height:66.142617px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h15{height:71.490000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w53{width:32.940000px;}
.w58{width:48.780000px;}
.w5c{width:48.810000px;}
.w3e{width:48.870000px;}
.w23{width:51.750000px;}
.w46{width:54.900000px;}
.w39{width:56.070000px;}
.w41{width:56.100000px;}
.w49{width:56.160000px;}
.w3a{width:56.190000px;}
.w45{width:63.090000px;}
.w5d{width:65.700000px;}
.w3f{width:65.730000px;}
.w52{width:67.410000px;}
.w1d{width:69.030000px;}
.wc{width:69.120000px;}
.w6{width:69.150000px;}
.w47{width:71.850000px;}
.wa{width:78.120000px;}
.w5{width:88.470000px;}
.w19{width:88.500000px;}
.w1c{width:88.590000px;}
.w1a{width:89.460000px;}
.w9{width:96.870000px;}
.w12{width:100.260000px;}
.w4{width:100.440000px;}
.wf{width:104.400000px;}
.we{width:104.430000px;}
.w16{width:111.510000px;}
.w8{width:113.490000px;}
.w57{width:115.230000px;}
.w3d{width:115.320000px;}
.w10{width:116.190000px;}
.w27{width:116.220000px;}
.w3c{width:120.420000px;}
.w21{width:120.540000px;}
.w44{width:127.470000px;}
.w43{width:132.930000px;}
.w30{width:134.940000px;}
.w1f{width:135.900000px;}
.w54{width:138.540000px;}
.w51{width:141.660000px;}
.w1b{width:142.650000px;}
.w11{width:142.680000px;}
.w33{width:143.010000px;}
.w35{width:143.040000px;}
.w4c{width:144.180000px;}
.w34{width:151.290000px;}
.w2e{width:156.180000px;}
.w2a{width:156.270000px;}
.w37{width:157.590000px;}
.w25{width:159.510000px;}
.w31{width:164.100000px;}
.w2d{width:170.190000px;}
.w29{width:170.280000px;}
.w24{width:172.980000px;}
.w2b{width:173.790000px;}
.w26{width:176.490000px;}
.w56{width:179.640000px;}
.w4f{width:179.730000px;}
.w13{width:183.960000px;}
.w20{width:184.500000px;}
.w15{width:190.800000px;}
.w18{width:225.720000px;}
.w3{width:259.590000px;}
.w5b{width:279.540000px;}
.w5a{width:279.660000px;}
.w38{width:283.530000px;}
.w3b{width:289.020000px;}
.w7{width:290.010000px;}
.wb{width:293.970000px;}
.w1e{width:295.050000px;}
.w4d{width:312.780000px;}
.w4a{width:323.490000px;}
.w42{width:325.110000px;}
.w55{width:348.240000px;}
.w50{width:382.890000px;}
.w17{width:405.210000px;}
.w14{width:446.430000px;}
.w32{width:447.150000px;}
.w40{width:457.320000px;}
.w48{width:483.780000px;}
.w4b{width:485.310000px;}
.w36{width:494.310000px;}
.w28{width:501.780000px;}
.w22{width:510.510000px;}
.w4e{width:516.450000px;}
.w59{width:616.380000px;}
.w2f{width:690.000000px;}
.w2c{width:697.740000px;}
.wd{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x3b{left:97.740000px;}
.x42{left:101.610000px;}
.x31{left:104.490000px;}
.x35{left:110.970000px;}
.x4d{left:137.339987px;}
.x82{left:138.420000px;}
.x8c{left:141.209987px;}
.x3a{left:165.719987px;}
.x41{left:169.229987px;}
.x48{left:172.379987px;}
.x15{left:174.000000px;}
.x72{left:188.400000px;}
.x2{left:192.719987px;}
.x4e{left:199.470000px;}
.x64{left:204.780000px;}
.x81{left:214.319987px;}
.x57{left:218.010000px;}
.x10{left:220.080000px;}
.x7d{left:221.789987px;}
.x1b{left:223.410000px;}
.x32{left:225.750000px;}
.x36{left:227.910000px;}
.x49{left:233.580000px;}
.x6e{left:235.019987px;}
.x43{left:237.360000px;}
.x3c{left:241.230000px;}
.x1e{left:244.020000px;}
.x63{left:247.889987px;}
.x56{left:252.929987px;}
.x78{left:255.180000px;}
.x5f{left:256.619987px;}
.x52{left:265.349987px;}
.x7e{left:272.550000px;}
.x2c{left:274.800000px;}
.x16{left:279.210000px;}
.x60{left:284.070000px;}
.x6f{left:290.280000px;}
.x22{left:295.770000px;}
.x27{left:299.100000px;}
.xb{left:301.620000px;}
.x5{left:316.830000px;}
.x58{left:334.920000px;}
.x30{left:341.309987px;}
.x65{left:348.150000px;}
.x26{left:357.419987px;}
.x14{left:358.949987px;}
.x73{left:368.850000px;}
.x21{left:370.019987px;}
.x1d{left:375.239987px;}
.x2b{left:377.039987px;}
.x4b{left:385.590000px;}
.x5a{left:391.800000px;}
.xf{left:393.239987px;}
.x17{left:396.120000px;}
.x79{left:397.560000px;}
.x34{left:399.450000px;}
.xa{left:404.759987px;}
.x45{left:408.360000px;}
.x3e{left:412.230000px;}
.x50{left:414.660000px;}
.xc{left:415.830000px;}
.x7{left:418.080000px;}
.x8a{left:419.609987px;}
.x53{left:423.300000px;}
.x75{left:425.730000px;}
.x6b{left:428.340000px;}
.x28{left:435.810000px;}
.x23{left:439.140000px;}
.x1a{left:446.609987px;}
.x5b{left:448.590000px;}
.x7f{left:453.000000px;}
.x2d{left:460.110000px;}
.x67{left:461.820000px;}
.x7a{left:465.780000px;}
.x1f{left:470.550000px;}
.x54{left:472.890000px;}
.x84{left:475.680000px;}
.x76{left:482.520000px;}
.x6c{left:483.960000px;}
.x7b{left:499.530000px;}
.x80{left:502.500000px;}
.x5c{left:505.470000px;}
.x8{left:507.270000px;}
.xd{left:513.510000px;}
.x11{left:514.860000px;}
.x68{left:518.730000px;}
.x29{left:525.030000px;}
.x24{left:528.450000px;}
.x85{left:532.500000px;}
.x18{left:539.520000px;}
.x61{left:546.090000px;}
.x2e{left:549.330000px;}
.x70{left:551.310000px;}
.x89{left:552.480000px;}
.x38{left:555.990000px;}
.x1c{left:558.330000px;}
.x20{left:559.770000px;}
.x5d{left:562.380000px;}
.x46{left:565.350000px;}
.x3f{left:569.220000px;}
.x69{left:575.610000px;}
.x51{left:585.240000px;}
.x86{left:589.380000px;}
.x77{left:596.310000px;}
.x12{left:604.050000px;}
.x59{left:619.170000px;}
.x66{left:632.400000px;}
.x19{left:640.500000px;}
.x4f{left:642.030000px;}
.x87{left:646.260000px;}
.xe{left:648.059987px;}
.x74{left:653.100000px;}
.x25{left:654.809987px;}
.x5e{left:657.059987px;}
.x6d{left:659.309987px;}
.x2a{left:663.809987px;}
.x62{left:664.889987px;}
.x4c{left:668.309987px;}
.x40{left:675.059987px;}
.x2f{left:676.139987px;}
.x6a{left:677.309987px;}
.x39{left:678.389987px;}
.x4a{left:681.450000px;}
.x47{left:685.139987px;}
.x55{left:686.309987px;}
.x71{left:687.389987px;}
.x8b{left:689.639987px;}
.x9{left:690.809987px;}
.x7c{left:694.139987px;}
.x83{left:703.050000px;}
.x88{left:705.389987px;}
.x13{left:720.059987px;}
.x37{left:730.500000px;}
.x33{left:736.980000px;}
.x44{left:739.860000px;}
.x3d{left:743.730000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.330133pt;}
.ls17{letter-spacing:-0.216533pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.090133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.028267pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls1b{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls1e{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.096533pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls20{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ls1d{letter-spacing:177.920000pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.933867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.853333pt;}
.ws15{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.750080pt;}
.wsc{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.666667pt;}
.wse{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.ws4{word-spacing:-11.426667pt;}
.wsd{word-spacing:-10.512000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.095467pt;}
._b{margin-left:-2.117109pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.978763pt;}
._4{width:2.250666pt;}
._1{width:3.355200pt;}
._3{width:4.376224pt;}
._9{width:5.356160pt;}
._7{width:6.300480pt;}
._8{width:7.439893pt;}
._12{width:8.597770pt;}
._6{width:9.672533pt;}
._5{width:10.688000pt;}
._10{width:12.672106pt;}
._f{width:13.627200pt;}
._c{width:15.016533pt;}
._d{width:16.406080pt;}
._11{width:17.364160pt;}
._13{width:25.116800pt;}
._14{width:26.283627pt;}
._18{width:31.957120pt;}
._19{width:33.025920pt;}
._1a{width:34.308480pt;}
._1b{width:35.216960pt;}
._17{width:40.240320pt;}
._e{width:83.609600pt;}
._16{width:100.948160pt;}
._15{width:227.173440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:6.640000pt;}
.y47{bottom:6.960000pt;}
.y67{bottom:6.986667pt;}
.y58{bottom:7.040000pt;}
.yc6{bottom:7.066667pt;}
.y113{bottom:11.600000pt;}
.yd7{bottom:11.680000pt;}
.yf2{bottom:22.640000pt;}
.yf1{bottom:27.280000pt;}
.yba{bottom:31.280000pt;}
.yc4{bottom:31.306667pt;}
.yd5{bottom:31.360000pt;}
.yef{bottom:46.880000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y4e{bottom:103.226667pt;}
.yc2{bottom:105.066667pt;}
.y10e{bottom:105.546667pt;}
.y9b{bottom:111.306667pt;}
.y175{bottom:111.546667pt;}
.y102{bottom:112.986667pt;}
.y1a5{bottom:113.946667pt;}
.y62{bottom:120.026667pt;}
.y10d{bottom:121.146667pt;}
.y24{bottom:125.146667pt;}
.y4d{bottom:126.186667pt;}
.y174{bottom:127.146667pt;}
.y145{bottom:129.386667pt;}
.y1a4{bottom:129.546667pt;}
.yec{bottom:133.386667pt;}
.yc1{bottom:133.706667pt;}
.y7a{bottom:134.506667pt;}
.y61{bottom:135.706667pt;}
.y101{bottom:137.306667pt;}
.y23{bottom:140.746667pt;}
.y136{bottom:142.266667pt;}
.y9a{bottom:142.986667pt;}
.y1a3{bottom:145.226667pt;}
.y143{bottom:146.666667pt;}
.y4c{bottom:149.146667pt;}
.ydb{bottom:150.026667pt;}
.y60{bottom:151.306667pt;}
.y10c{bottom:152.746667pt;}
.y144{bottom:158.026667pt;}
.y173{bottom:158.826667pt;}
.y1a2{bottom:160.826667pt;}
.y100{bottom:161.626667pt;}
.yeb{bottom:162.026667pt;}
.y152{bottom:162.666667pt;}
.y5f{bottom:166.986667pt;}
.y135{bottom:170.906667pt;}
.y4b{bottom:172.106667pt;}
.y22{bottom:172.426667pt;}
.yda{bottom:174.346667pt;}
.y1a1{bottom:176.506667pt;}
.y79{bottom:178.666667pt;}
.y99{bottom:180.986667pt;}
.y10b{bottom:181.386667pt;}
.yff{bottom:185.866667pt;}
.y172{bottom:187.466667pt;}
.y21{bottom:188.026667pt;}
.y1a0{bottom:192.106667pt;}
.y151{bottom:194.346667pt;}
.y78{bottom:194.586667pt;}
.y4a{bottom:195.066667pt;}
.y142{bottom:195.226667pt;}
.y5e{bottom:198.586667pt;}
.yd9{bottom:198.666667pt;}
.y8a{bottom:203.226667pt;}
.y20{bottom:203.706667pt;}
.y125{bottom:206.666667pt;}
.y19f{bottom:207.706667pt;}
.y163{bottom:208.666667pt;}
.y150{bottom:209.946667pt;}
.yfd{bottom:210.186667pt;}
.yaf{bottom:210.586667pt;}
.y49{bottom:218.026667pt;}
.y77{bottom:218.906667pt;}
.y1f{bottom:219.306667pt;}
.y141{bottom:219.546667pt;}
.yd8{bottom:222.986667pt;}
.y19e{bottom:223.386667pt;}
.y14f{bottom:225.546667pt;}
.y5d{bottom:227.226667pt;}
.y89{bottom:227.546667pt;}
.y124{bottom:230.986667pt;}
.y162{bottom:232.986667pt;}
.yfe{bottom:234.506667pt;}
.y1e{bottom:234.906667pt;}
.y48{bottom:240.986667pt;}
.y14e{bottom:241.226667pt;}
.y76{bottom:243.226667pt;}
.y13f{bottom:243.866667pt;}
.yd4{bottom:247.226667pt;}
.y19d{bottom:247.306667pt;}
.y88{bottom:251.866667pt;}
.y123{bottom:255.226667pt;}
.y161{bottom:257.226667pt;}
.y1d{bottom:258.826667pt;}
.yae{bottom:259.226667pt;}
.y46{bottom:263.946667pt;}
.y75{bottom:267.466667pt;}
.y140{bottom:268.106667pt;}
.yd6{bottom:271.546667pt;}
.y14d{bottom:272.826667pt;}
.y87{bottom:276.186667pt;}
.y122{bottom:279.546667pt;}
.y160{bottom:281.546667pt;}
.yad{bottom:283.466667pt;}
.y19c{bottom:290.186667pt;}
.y74{bottom:291.786667pt;}
.y13e{bottom:292.426667pt;}
.yd3{bottom:295.866667pt;}
.y86{bottom:300.426667pt;}
.y14c{bottom:301.466667pt;}
.y1c{bottom:302.026667pt;}
.yfc{bottom:302.106667pt;}
.y120{bottom:303.866667pt;}
.y15e{bottom:305.866667pt;}
.y45{bottom:305.946667pt;}
.yac{bottom:307.786667pt;}
.y1c2{bottom:311.466667pt;}
.y73{bottom:316.106667pt;}
.y19b{bottom:321.466667pt;}
.y85{bottom:324.746667pt;}
.yfb{bottom:325.706667pt;}
.y1c1{bottom:327.066667pt;}
.y121{bottom:328.186667pt;}
.y44{bottom:329.546667pt;}
.y15f{bottom:330.186667pt;}
.y1b{bottom:334.986667pt;}
.y13d{bottom:335.706667pt;}
.y19a{bottom:337.066667pt;}
.yd2{bottom:339.146667pt;}
.y72{bottom:340.346667pt;}
.y43{bottom:345.226667pt;}
.y1a{bottom:350.586667pt;}
.y1c0{bottom:350.746667pt;}
.yab{bottom:351.066667pt;}
.y11f{bottom:352.426667pt;}
.y199{bottom:352.746667pt;}
.y15d{bottom:354.426667pt;}
.yfa{bottom:357.386667pt;}
.y71{bottom:364.666667pt;}
.y19{bottom:366.266667pt;}
.y1bf{bottom:366.346667pt;}
.y13c{bottom:367.386667pt;}
.y84{bottom:368.026667pt;}
.y198{bottom:368.346667pt;}
.yd1{bottom:370.746667pt;}
.yf9{bottom:372.986667pt;}
.y42{bottom:377.146667pt;}
.y18{bottom:381.866667pt;}
.y1be{bottom:381.946667pt;}
.yaa{bottom:382.746667pt;}
.y13b{bottom:382.986667pt;}
.y197{bottom:383.946667pt;}
.yd0{bottom:386.426667pt;}
.yf8{bottom:388.586667pt;}
.y11e{bottom:395.706667pt;}
.y15c{bottom:397.706667pt;}
.ya9{bottom:398.346667pt;}
.y13a{bottom:398.586667pt;}
.y196{bottom:399.626667pt;}
.y83{bottom:399.706667pt;}
.ycf{bottom:402.026667pt;}
.yf7{bottom:404.266667pt;}
.y1bd{bottom:405.626667pt;}
.y70{bottom:407.946667pt;}
.y17{bottom:413.466667pt;}
.ya8{bottom:413.946667pt;}
.y139{bottom:414.266667pt;}
.yc0{bottom:414.666667pt;}
.y195{bottom:415.226667pt;}
.y82{bottom:415.306667pt;}
.yce{bottom:417.733333pt;}
.y41{bottom:420.053333pt;}
.y1bc{bottom:421.253333pt;}
.y15b{bottom:421.413333pt;}
.y98{bottom:421.653333pt;}
.y11d{bottom:427.413333pt;}
.ybf{bottom:427.973333pt;}
.y16{bottom:429.173333pt;}
.ya7{bottom:429.653333pt;}
.y81{bottom:430.933333pt;}
.y40{bottom:435.653333pt;}
.yf6{bottom:435.893333pt;}
.yea{bottom:437.013333pt;}
.y134{bottom:438.453333pt;}
.y6f{bottom:439.653333pt;}
.y11c{bottom:443.013333pt;}
.y15{bottom:444.773333pt;}
.y1bb{bottom:444.933333pt;}
.ya6{bottom:445.253333pt;}
.y138{bottom:445.893333pt;}
.y97{bottom:445.973333pt;}
.y194{bottom:446.533333pt;}
.y80{bottom:446.613333pt;}
.ycd{bottom:449.333333pt;}
.ye9{bottom:450.373333pt;}
.ybe{bottom:452.293333pt;}
.y15a{bottom:453.013333pt;}
.y6e{bottom:455.253333pt;}
.y171{bottom:457.813333pt;}
.y11b{bottom:458.693333pt;}
.y10a{bottom:459.013333pt;}
.y3f{bottom:459.333333pt;}
.y5c{bottom:459.893333pt;}
.y14{bottom:460.373333pt;}
.y1ba{bottom:460.533333pt;}
.y193{bottom:462.133333pt;}
.y7f{bottom:462.213333pt;}
.y133{bottom:462.373333pt;}
.yf5{bottom:464.533333pt;}
.y170{bottom:468.613333pt;}
.y159{bottom:468.693333pt;}
.y96{bottom:470.293333pt;}
.y6d{bottom:470.853333pt;}
.y11a{bottom:474.293333pt;}
.y137{bottom:474.533333pt;}
.ye8{bottom:474.613333pt;}
.ybd{bottom:476.613333pt;}
.ya5{bottom:476.853333pt;}
.y192{bottom:477.813333pt;}
.ycc{bottom:477.973333pt;}
.y109{bottom:482.853333pt;}
.y1b9{bottom:484.133333pt;}
.y5b{bottom:484.213333pt;}
.y158{bottom:484.293333pt;}
.y6c{bottom:486.533333pt;}
.y132{bottom:486.613333pt;}
.y3e{bottom:490.933333pt;}
.y13{bottom:492.053333pt;}
.y16f{bottom:492.933333pt;}
.y191{bottom:493.413333pt;}
.y7e{bottom:493.893333pt;}
.y95{bottom:494.533333pt;}
.ye7{bottom:498.933333pt;}
.y157{bottom:499.893333pt;}
.ybc{bottom:500.853333pt;}
.y6b{bottom:502.133333pt;}
.ya4{bottom:505.493333pt;}
.y119{bottom:505.893333pt;}
.y108{bottom:507.173333pt;}
.y12{bottom:507.653333pt;}
.y1b8{bottom:507.813333pt;}
.y5a{bottom:508.533333pt;}
.y190{bottom:509.093333pt;}
.y131{bottom:510.933333pt;}
.y3d{bottom:514.613333pt;}
.y16e{bottom:517.253333pt;}
.y94{bottom:518.853333pt;}
.y7d{bottom:522.533333pt;}
.ye6{bottom:523.253333pt;}
.y11{bottom:523.333333pt;}
.y1b7{bottom:523.413333pt;}
.y18f{bottom:524.693333pt;}
.yb9{bottom:525.173333pt;}
.y107{bottom:531.493333pt;}
.y156{bottom:531.573333pt;}
.y59{bottom:532.853333pt;}
.y6a{bottom:533.813333pt;}
.y118{bottom:534.533333pt;}
.y130{bottom:535.253333pt;}
.y10{bottom:538.933333pt;}
.y18e{bottom:540.293333pt;}
.y16d{bottom:541.493333pt;}
.y3c{bottom:546.213333pt;}
.y1b6{bottom:547.093333pt;}
.ye4{bottom:547.493333pt;}
.ybb{bottom:549.493333pt;}
.y106{bottom:555.733333pt;}
.y18d{bottom:555.973333pt;}
.y57{bottom:557.093333pt;}
.y12e{bottom:559.493333pt;}
.y155{bottom:560.213333pt;}
.y93{bottom:562.133333pt;}
.y69{bottom:562.453333pt;}
.y1b5{bottom:562.693333pt;}
.y16b{bottom:565.813333pt;}
.yf{bottom:570.533333pt;}
.y18c{bottom:571.573333pt;}
.ye5{bottom:571.813333pt;}
.y3b{bottom:577.813333pt;}
.y104{bottom:580.053333pt;}
.y12f{bottom:583.813333pt;}
.y14b{bottom:584.213333pt;}
.ye{bottom:586.213333pt;}
.y1b4{bottom:586.293333pt;}
.y18b{bottom:587.253333pt;}
.y16c{bottom:590.133333pt;}
.yb8{bottom:592.773333pt;}
.y3a{bottom:593.493333pt;}
.y92{bottom:593.813333pt;}
.ye3{bottom:596.133333pt;}
.y56{bottom:600.373333pt;}
.yd{bottom:601.813333pt;}
.y1b3{bottom:601.973333pt;}
.y18a{bottom:602.853333pt;}
.y105{bottom:604.373333pt;}
.y12d{bottom:608.133333pt;}
.y14a{bottom:608.453333pt;}
.y91{bottom:609.413333pt;}
.yb7{bottom:616.373333pt;}
.y189{bottom:618.453333pt;}
.y90{bottom:625.013333pt;}
.y39{bottom:625.093333pt;}
.y1b2{bottom:625.573333pt;}
.y103{bottom:628.613333pt;}
.y55{bottom:632.053333pt;}
.y149{bottom:632.773333pt;}
.y16a{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y188{bottom:634.133333pt;}
.ye2{bottom:639.413333pt;}
.y8f{bottom:640.693333pt;}
.y1b1{bottom:641.253333pt;}
.y38{bottom:641.413333pt;}
.y54{bottom:647.653333pt;}
.yb6{bottom:648.053333pt;}
.yb{bottom:649.093333pt;}
.y187{bottom:649.733333pt;}
.y12c{bottom:651.413333pt;}
.y8e{bottom:656.293333pt;}
.y148{bottom:657.093333pt;}
.y37{bottom:657.813333pt;}
.y53{bottom:663.333333pt;}
.yb5{bottom:663.653333pt;}
.y1b0{bottom:664.853333pt;}
.y169{bottom:665.013333pt;}
.y186{bottom:665.413333pt;}
.ye1{bottom:671.013333pt;}
.y8d{bottom:671.973333pt;}
.ya{bottom:673.013333pt;}
.y52{bottom:678.933333pt;}
.yb4{bottom:679.333333pt;}
.y1af{bottom:680.453333pt;}
.y168{bottom:680.693333pt;}
.y185{bottom:681.013333pt;}
.y147{bottom:681.333333pt;}
.y36{bottom:682.213333pt;}
.y12b{bottom:683.013333pt;}
.ye0{bottom:686.693333pt;}
.y51{bottom:694.533333pt;}
.yb3{bottom:694.933333pt;}
.y167{bottom:696.293333pt;}
.y184{bottom:696.613333pt;}
.y12a{bottom:698.693333pt;}
.ydf{bottom:702.293333pt;}
.y8c{bottom:703.573333pt;}
.y1ae{bottom:704.373333pt;}
.yb2{bottom:710.533333pt;}
.y35{bottom:711.173333pt;}
.y166{bottom:711.973333pt;}
.y183{bottom:712.293333pt;}
.y129{bottom:714.293333pt;}
.y9{bottom:715.893333pt;}
.yde{bottom:717.973333pt;}
.yf4{bottom:722.133333pt;}
.y146{bottom:724.693333pt;}
.y50{bottom:726.213333pt;}
.y182{bottom:727.893333pt;}
.y128{bottom:729.973333pt;}
.y8b{bottom:732.213333pt;}
.yb1{bottom:742.213333pt;}
.y34{bottom:742.773333pt;}
.y165{bottom:743.573333pt;}
.yf3{bottom:745.973333pt;}
.y1ad{bottom:747.333333pt;}
.y8{bottom:747.733333pt;}
.ycb{bottom:748.933333pt;}
.ydd{bottom:749.573333pt;}
.ya3{bottom:756.213333pt;}
.y33{bottom:758.453333pt;}
.y181{bottom:759.173333pt;}
.y127{bottom:761.573333pt;}
.y4f{bottom:764.213333pt;}
.yca{bottom:770.293333pt;}
.y1ac{bottom:771.253333pt;}
.y164{bottom:772.213333pt;}
.y180{bottom:774.773333pt;}
.y117{bottom:777.253333pt;}
.ydc{bottom:778.213333pt;}
.y7{bottom:779.733333pt;}
.yb0{bottom:780.213333pt;}
.ya2{bottom:780.533333pt;}
.y32{bottom:782.053333pt;}
.y126{bottom:790.213333pt;}
.y17f{bottom:790.453333pt;}
.yc9{bottom:794.533333pt;}
.y116{bottom:801.493333pt;}
.y154{bottom:803.173333pt;}
.y1ab{bottom:804.133333pt;}
.ya1{bottom:804.773333pt;}
.y17e{bottom:806.053333pt;}
.y6{bottom:811.733333pt;}
.y31{bottom:813.973333pt;}
.yc8{bottom:818.853333pt;}
.y17d{bottom:821.733333pt;}
.y153{bottom:824.533333pt;}
.y115{bottom:825.813333pt;}
.y1aa{bottom:828.053333pt;}
.ya0{bottom:829.093333pt;}
.y7c{bottom:835.493333pt;}
.y17c{bottom:837.333333pt;}
.yc7{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y7b{bottom:848.773333pt;}
.y114{bottom:850.133333pt;}
.y17b{bottom:852.933333pt;}
.y9f{bottom:853.413333pt;}
.y30{bottom:856.853333pt;}
.y1a9{bottom:861.253333pt;}
.yc3{bottom:867.493333pt;}
.y17a{bottom:868.613333pt;}
.y2f{bottom:872.533333pt;}
.y68{bottom:873.093333pt;}
.y111{bottom:874.453333pt;}
.y9d{bottom:877.653333pt;}
.y4{bottom:877.893333pt;}
.yf0{bottom:883.093333pt;}
.y179{bottom:884.213333pt;}
.y2e{bottom:888.133333pt;}
.yc5{bottom:891.733333pt;}
.y66{bottom:897.413333pt;}
.y112{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y2d{bottom:903.840000pt;}
.y1a8{bottom:904.160000pt;}
.yee{bottom:907.440000pt;}
.y178{bottom:915.520000pt;}
.y2c{bottom:919.440000pt;}
.y1a7{bottom:919.840000pt;}
.y65{bottom:921.680000pt;}
.y110{bottom:923.040000pt;}
.y177{bottom:931.120000pt;}
.y2b{bottom:935.040000pt;}
.y1a6{bottom:935.440000pt;}
.y64{bottom:946.000000pt;}
.yed{bottom:950.720000pt;}
.y9c{bottom:951.040000pt;}
.y176{bottom:955.040000pt;}
.y10f{bottom:966.320000pt;}
.y2a{bottom:966.720000pt;}
.y63{bottom:970.320000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h10{height:22.106667pt;}
.hb{height:22.320000pt;}
.he{height:23.600000pt;}
.hf{height:23.626667pt;}
.hd{height:23.680000pt;}
.h13{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h16{height:39.280000pt;}
.h6{height:45.246562pt;}
.h11{height:47.920000pt;}
.h12{height:47.946667pt;}
.h14{height:48.000000pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.hc{height:54.187500pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h17{height:58.793438pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h15{height:63.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w53{width:29.280000pt;}
.w58{width:43.360000pt;}
.w5c{width:43.386667pt;}
.w3e{width:43.440000pt;}
.w23{width:46.000000pt;}
.w46{width:48.800000pt;}
.w39{width:49.840000pt;}
.w41{width:49.866667pt;}
.w49{width:49.920000pt;}
.w3a{width:49.946667pt;}
.w45{width:56.080000pt;}
.w5d{width:58.400000pt;}
.w3f{width:58.426667pt;}
.w52{width:59.920000pt;}
.w1d{width:61.360000pt;}
.wc{width:61.440000pt;}
.w6{width:61.466667pt;}
.w47{width:63.866667pt;}
.wa{width:69.440000pt;}
.w5{width:78.640000pt;}
.w19{width:78.666667pt;}
.w1c{width:78.746667pt;}
.w1a{width:79.520000pt;}
.w9{width:86.106667pt;}
.w12{width:89.120000pt;}
.w4{width:89.280000pt;}
.wf{width:92.800000pt;}
.we{width:92.826667pt;}
.w16{width:99.120000pt;}
.w8{width:100.880000pt;}
.w57{width:102.426667pt;}
.w3d{width:102.506667pt;}
.w10{width:103.280000pt;}
.w27{width:103.306667pt;}
.w3c{width:107.040000pt;}
.w21{width:107.146667pt;}
.w44{width:113.306667pt;}
.w43{width:118.160000pt;}
.w30{width:119.946667pt;}
.w1f{width:120.800000pt;}
.w54{width:123.146667pt;}
.w51{width:125.920000pt;}
.w1b{width:126.800000pt;}
.w11{width:126.826667pt;}
.w33{width:127.120000pt;}
.w35{width:127.146667pt;}
.w4c{width:128.160000pt;}
.w34{width:134.480000pt;}
.w2e{width:138.826667pt;}
.w2a{width:138.906667pt;}
.w37{width:140.080000pt;}
.w25{width:141.786667pt;}
.w31{width:145.866667pt;}
.w2d{width:151.280000pt;}
.w29{width:151.360000pt;}
.w24{width:153.760000pt;}
.w2b{width:154.480000pt;}
.w26{width:156.880000pt;}
.w56{width:159.680000pt;}
.w4f{width:159.760000pt;}
.w13{width:163.520000pt;}
.w20{width:164.000000pt;}
.w15{width:169.600000pt;}
.w18{width:200.640000pt;}
.w3{width:230.746667pt;}
.w5b{width:248.480000pt;}
.w5a{width:248.586667pt;}
.w38{width:252.026667pt;}
.w3b{width:256.906667pt;}
.w7{width:257.786667pt;}
.wb{width:261.306667pt;}
.w1e{width:262.266667pt;}
.w4d{width:278.026667pt;}
.w4a{width:287.546667pt;}
.w42{width:288.986667pt;}
.w55{width:309.546667pt;}
.w50{width:340.346667pt;}
.w17{width:360.186667pt;}
.w14{width:396.826667pt;}
.w32{width:397.466667pt;}
.w40{width:406.506667pt;}
.w48{width:430.026667pt;}
.w4b{width:431.386667pt;}
.w36{width:439.386667pt;}
.w28{width:446.026667pt;}
.w22{width:453.786667pt;}
.w4e{width:459.066667pt;}
.w59{width:547.893333pt;}
.w2f{width:613.333333pt;}
.w2c{width:620.213333pt;}
.wd{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x3b{left:86.880000pt;}
.x42{left:90.320000pt;}
.x31{left:92.880000pt;}
.x35{left:98.640000pt;}
.x4d{left:122.079988pt;}
.x82{left:123.040000pt;}
.x8c{left:125.519988pt;}
.x3a{left:147.306655pt;}
.x41{left:150.426655pt;}
.x48{left:153.226655pt;}
.x15{left:154.666667pt;}
.x72{left:167.466667pt;}
.x2{left:171.306655pt;}
.x4e{left:177.306667pt;}
.x64{left:182.026667pt;}
.x81{left:190.506655pt;}
.x57{left:193.786667pt;}
.x10{left:195.626667pt;}
.x7d{left:197.146655pt;}
.x1b{left:198.586667pt;}
.x32{left:200.666667pt;}
.x36{left:202.586667pt;}
.x49{left:207.626667pt;}
.x6e{left:208.906655pt;}
.x43{left:210.986667pt;}
.x3c{left:214.426667pt;}
.x1e{left:216.906667pt;}
.x63{left:220.346655pt;}
.x56{left:224.826655pt;}
.x78{left:226.826667pt;}
.x5f{left:228.106655pt;}
.x52{left:235.866655pt;}
.x7e{left:242.266667pt;}
.x2c{left:244.266667pt;}
.x16{left:248.186667pt;}
.x60{left:252.506667pt;}
.x6f{left:258.026667pt;}
.x22{left:262.906667pt;}
.x27{left:265.866667pt;}
.xb{left:268.106667pt;}
.x5{left:281.626667pt;}
.x58{left:297.706667pt;}
.x30{left:303.386655pt;}
.x65{left:309.466667pt;}
.x26{left:317.706655pt;}
.x14{left:319.066655pt;}
.x73{left:327.866667pt;}
.x21{left:328.906655pt;}
.x1d{left:333.546655pt;}
.x2b{left:335.146655pt;}
.x4b{left:342.746667pt;}
.x5a{left:348.266667pt;}
.xf{left:349.546655pt;}
.x17{left:352.106667pt;}
.x79{left:353.386667pt;}
.x34{left:355.066667pt;}
.xa{left:359.786655pt;}
.x45{left:362.986667pt;}
.x3e{left:366.426667pt;}
.x50{left:368.586667pt;}
.xc{left:369.626667pt;}
.x7{left:371.626667pt;}
.x8a{left:372.986655pt;}
.x53{left:376.266667pt;}
.x75{left:378.426667pt;}
.x6b{left:380.746667pt;}
.x28{left:387.386667pt;}
.x23{left:390.346667pt;}
.x1a{left:396.986655pt;}
.x5b{left:398.746667pt;}
.x7f{left:402.666667pt;}
.x2d{left:408.986667pt;}
.x67{left:410.506667pt;}
.x7a{left:414.026667pt;}
.x1f{left:418.266667pt;}
.x54{left:420.346667pt;}
.x84{left:422.826667pt;}
.x76{left:428.906667pt;}
.x6c{left:430.186667pt;}
.x7b{left:444.026667pt;}
.x80{left:446.666667pt;}
.x5c{left:449.306667pt;}
.x8{left:450.906667pt;}
.xd{left:456.453333pt;}
.x11{left:457.653333pt;}
.x68{left:461.093333pt;}
.x29{left:466.693333pt;}
.x24{left:469.733333pt;}
.x85{left:473.333333pt;}
.x18{left:479.573333pt;}
.x61{left:485.413333pt;}
.x2e{left:488.293333pt;}
.x70{left:490.053333pt;}
.x89{left:491.093333pt;}
.x38{left:494.213333pt;}
.x1c{left:496.293333pt;}
.x20{left:497.573333pt;}
.x5d{left:499.893333pt;}
.x46{left:502.533333pt;}
.x3f{left:505.973333pt;}
.x69{left:511.653333pt;}
.x51{left:520.213333pt;}
.x86{left:523.893333pt;}
.x77{left:530.053333pt;}
.x12{left:536.933333pt;}
.x59{left:550.373333pt;}
.x66{left:562.133333pt;}
.x19{left:569.333333pt;}
.x4f{left:570.693333pt;}
.x87{left:574.453333pt;}
.xe{left:576.053322pt;}
.x74{left:580.533333pt;}
.x25{left:582.053322pt;}
.x5e{left:584.053322pt;}
.x6d{left:586.053322pt;}
.x2a{left:590.053322pt;}
.x62{left:591.013322pt;}
.x4c{left:594.053322pt;}
.x40{left:600.053322pt;}
.x2f{left:601.013322pt;}
.x6a{left:602.053322pt;}
.x39{left:603.013322pt;}
.x4a{left:605.733333pt;}
.x47{left:609.013322pt;}
.x55{left:610.053322pt;}
.x71{left:611.013322pt;}
.x8b{left:613.013322pt;}
.x9{left:614.053322pt;}
.x7c{left:617.013322pt;}
.x83{left:624.933333pt;}
.x88{left:627.013322pt;}
.x13{left:640.053322pt;}
.x37{left:649.333333pt;}
.x33{left:655.093333pt;}
.x44{left:657.653333pt;}
.x3d{left:661.093333pt;}
.x3{left:711.413322pt;}
}




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