
    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_523e231b804b994fa0cca38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9f722e04e58fc9aa59ee9873.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_4cdf6464188e0043e23ade4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5cbc36b7aa107d746b7bcb67.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_094a4881ec5f90dc3404af85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e288a872494c7263da5b89ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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:-66.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls1e{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.243600px;}
.ls1f{letter-spacing:-0.223800px;}
.ls23{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.181200px;}
.ls1c{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.010080px;}
.ls2{letter-spacing:0.033840px;}
.ls10{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.269400px;}
.lse{letter-spacing:0.289440px;}
.ls19{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.900000px;}
.ls18{letter-spacing:6.660000px;}
.ls1a{letter-spacing:10.260000px;}
.ls3{letter-spacing:66.162720px;}
.ls16{letter-spacing:68.580000px;}
.lsf{letter-spacing:200.316000px;}
.lsd{letter-spacing:298.236000px;}
.lsa{letter-spacing:712.416000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199920px;}
.ws7{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.479800px;}
.ws4{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.284000px;}
.ws13{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.878800px;}
.ws15{word-spacing:-11.836200px;}
.ws14{word-spacing:-11.700000px;}
.ws9{word-spacing:-7.570080px;}
.ws8{word-spacing:-7.316400px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-7.020000px;}
._15{margin-left:-3.884400px;}
._10{margin-left:-2.717280px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._f{width:3.661680px;}
._6{width:4.752000px;}
._7{width:5.832000px;}
._4{width:6.840000px;}
._5{width:8.262000px;}
._9{width:9.828000px;}
._c{width:11.178000px;}
._14{width:12.250800px;}
._11{width:13.565520px;}
._8{width:15.066000px;}
._d{width:16.422960px;}
._e{width:17.766000px;}
._1b{width:19.422000px;}
._1c{width:21.246000px;}
._23{width:22.332720px;}
._22{width:24.023520px;}
._b{width:25.045680px;}
._a{width:26.406000px;}
._25{width:27.548160px;}
._17{width:28.686000px;}
._16{width:29.908080px;}
._1f{width:31.015440px;}
._21{width:32.031360px;}
._27{width:33.506640px;}
._1e{width:35.198640px;}
._20{width:36.573120px;}
._29{width:37.859520px;}
._1d{width:45.656640px;}
._26{width:50.119920px;}
._24{width:53.784000px;}
._2e{width:54.846000px;}
._2a{width:56.700000px;}
._2f{width:57.780000px;}
._28{width:59.828160px;}
._2c{width:90.873360px;}
._2b{width:91.962000px;}
._2d{width:93.026640px;}
._12{width:509.086560px;}
._19{width:736.380000px;}
._13{width:865.686720px;}
._1a{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:0.180000px;}
.yc8{bottom:1.080000px;}
.y114{bottom:2.340000px;}
.ybf{bottom:2.514000px;}
.yba{bottom:2.520000px;}
.yc1{bottom:2.556000px;}
.y2a{bottom:2.880000px;}
.y10{bottom:3.240000px;}
.y139{bottom:3.600000px;}
.y13b{bottom:3.780000px;}
.y117{bottom:4.500000px;}
.y32{bottom:9.000000px;}
.y38{bottom:12.240000px;}
.y29{bottom:18.360000px;}
.y15{bottom:20.520000px;}
.y37{bottom:29.520000px;}
.y28{bottom:34.050000px;}
.y140{bottom:37.620000px;}
.y14{bottom:37.800000px;}
.y36{bottom:46.800000px;}
.y27{bottom:49.530000px;}
.y13f{bottom:54.900000px;}
.y13{bottom:55.080000px;}
.y35{bottom:64.080000px;}
.y26{bottom:65.010000px;}
.y31{bottom:65.880000px;}
.y13e{bottom:72.180000px;}
.y1c1{bottom:72.390000px;}
.y25{bottom:80.490000px;}
.y12{bottom:81.180000px;}
.y1ba{bottom:87.840000px;}
.y1c0{bottom:87.870000px;}
.y5{bottom:88.200000px;}
.y34{bottom:90.180000px;}
.y24{bottom:96.150000px;}
.y1b9{bottom:103.320000px;}
.y1bf{bottom:103.530000px;}
.y1c2{bottom:109.620000px;}
.y1bc{bottom:110.880000px;}
.yd9{bottom:111.600000px;}
.y23{bottom:111.630000px;}
.y113{bottom:116.145000px;}
.y149{bottom:116.280000px;}
.y119{bottom:117.225000px;}
.y1b8{bottom:118.845000px;}
.y1be{bottom:119.010000px;}
.y116{bottom:120.630000px;}
.y122{bottom:121.680000px;}
.yc3{bottom:124.740000px;}
.y83{bottom:125.460000px;}
.y22{bottom:127.110000px;}
.yc2{bottom:127.440000px;}
.y129{bottom:128.160000px;}
.yd8{bottom:128.880000px;}
.y10f{bottom:129.420000px;}
.y18b{bottom:130.860000px;}
.y148{bottom:133.560000px;}
.yc0{bottom:133.740000px;}
.y1b7{bottom:134.325000px;}
.y1bd{bottom:134.490000px;}
.y48{bottom:138.096000px;}
.y121{bottom:138.996000px;}
.y21{bottom:142.590000px;}
.y82{bottom:142.776000px;}
.y18a{bottom:144.756000px;}
.y128{bottom:145.476000px;}
.yd7{bottom:146.196000px;}
.y10e{bottom:146.556000px;}
.ybe{bottom:147.636000px;}
.y147{bottom:150.870000px;}
.y30{bottom:153.390000px;}
.y47{bottom:155.190000px;}
.y120{bottom:156.270000px;}
.y20{bottom:158.250000px;}
.y189{bottom:158.430000px;}
.y81{bottom:160.050000px;}
.ybd{bottom:161.310000px;}
.y127{bottom:162.750000px;}
.yd6{bottom:163.290000px;}
.y10d{bottom:163.830000px;}
.y146{bottom:168.150000px;}
.y2f{bottom:170.670000px;}
.y188{bottom:172.290000px;}
.y46{bottom:172.470000px;}
.y11f{bottom:173.550000px;}
.y1f{bottom:173.730000px;}
.ybc{bottom:175.170000px;}
.y80{bottom:177.150000px;}
.yd5{bottom:179.850000px;}
.y10c{bottom:181.110000px;}
.y145{bottom:184.530000px;}
.y187{bottom:186.150000px;}
.y2e{bottom:187.950000px;}
.ybb{bottom:189.030000px;}
.y1e{bottom:189.210000px;}
.y45{bottom:189.750000px;}
.y11e{bottom:190.110000px;}
.yd4{bottom:193.710000px;}
.y7f{bottom:194.430000px;}
.y126{bottom:197.130000px;}
.y10b{bottom:198.390000px;}
.y186{bottom:199.830000px;}
.yb9{bottom:203.610000px;}
.y11d{bottom:203.790000px;}
.y1d{bottom:204.690000px;}
.y2d{bottom:205.230000px;}
.y44{bottom:207.030000px;}
.yd3{bottom:208.290000px;}
.y7e{bottom:211.710000px;}
.y144{bottom:212.970000px;}
.y185{bottom:213.690000px;}
.y125{bottom:214.410000px;}
.y10a{bottom:215.670000px;}
.y11c{bottom:218.370000px;}
.y1c{bottom:220.350000px;}
.y2c{bottom:222.330000px;}
.y43{bottom:224.310000px;}
.yd2{bottom:225.390000px;}
.y184{bottom:227.550000px;}
.y7d{bottom:228.990000px;}
.y143{bottom:230.250000px;}
.y124{bottom:231.690000px;}
.y109{bottom:232.950000px;}
.y11b{bottom:235.650000px;}
.y1b{bottom:235.830000px;}
.yb8{bottom:237.810000px;}
.y183{bottom:241.230000px;}
.y42{bottom:241.410000px;}
.yd1{bottom:242.670000px;}
.y7c{bottom:246.270000px;}
.y142{bottom:246.630000px;}
.y2b{bottom:248.610000px;}
.y123{bottom:248.970000px;}
.y108{bottom:250.050000px;}
.y1a{bottom:251.310000px;}
.yb7{bottom:251.670000px;}
.y182{bottom:255.090000px;}
.y41{bottom:258.690000px;}
.y1bb{bottom:259.770000px;}
.yd0{bottom:259.950000px;}
.y141{bottom:260.490000px;}
.y7b{bottom:263.550000px;}
.yb6{bottom:266.250000px;}
.y19{bottom:266.790000px;}
.y107{bottom:267.330000px;}
.y181{bottom:268.950000px;}
.y11a{bottom:269.310000px;}
.y13d{bottom:271.830000px;}
.y1b6{bottom:273.630000px;}
.y40{bottom:275.970000px;}
.ycf{bottom:276.510000px;}
.y7a{bottom:280.650000px;}
.y180{bottom:282.630000px;}
.yb5{bottom:283.350000px;}
.y106{bottom:284.610000px;}
.yce{bottom:290.370000px;}
.y3f{bottom:293.250000px;}
.y17f{bottom:296.490000px;}
.y79{bottom:297.930000px;}
.yb4{bottom:300.630000px;}
.ycd{bottom:301.530000px;}
.y105{bottom:301.890000px;}
.y17e{bottom:310.350000px;}
.y3e{bottom:310.530000px;}
.y78{bottom:314.490000px;}
.yb3{bottom:317.910000px;}
.ycc{bottom:318.810000px;}
.y104{bottom:319.170000px;}
.y17d{bottom:324.030000px;}
.y3d{bottom:327.810000px;}
.y77{bottom:328.350000px;}
.yb2{bottom:335.190000px;}
.y103{bottom:336.450000px;}
.y17c{bottom:337.890000px;}
.y76{bottom:342.750000px;}
.y3c{bottom:344.910000px;}
.y17b{bottom:351.750000px;}
.yb1{bottom:352.470000px;}
.y17{bottom:353.550000px;}
.y75{bottom:360.030000px;}
.y13c{bottom:360.570000px;}
.y3b{bottom:362.190000px;}
.y17a{bottom:365.430000px;}
.yb0{bottom:369.750000px;}
.y102{bottom:370.830000px;}
.y13a{bottom:372.630000px;}
.y74{bottom:377.310000px;}
.y179{bottom:379.290000px;}
.y3a{bottom:379.470000px;}
.yaf{bottom:386.850000px;}
.y101{bottom:388.155000px;}
.y138{bottom:389.955000px;}
.y178{bottom:393.195000px;}
.y73{bottom:394.635000px;}
.y39{bottom:396.795000px;}
.yae{bottom:404.175000px;}
.y100{bottom:405.435000px;}
.y177{bottom:406.875000px;}
.y137{bottom:407.955000px;}
.y72{bottom:411.915000px;}
.y33{bottom:412.995000px;}
.y176{bottom:420.735000px;}
.yad{bottom:421.455000px;}
.yff{bottom:422.715000px;}
.y1b5{bottom:424.875000px;}
.y136{bottom:428.475000px;}
.y71{bottom:429.195000px;}
.y175{bottom:434.595000px;}
.yac{bottom:438.735000px;}
.y1b4{bottom:439.455000px;}
.yfe{bottom:439.995000px;}
.y135{bottom:442.875000px;}
.y70{bottom:446.295000px;}
.y174{bottom:448.275000px;}
.yab{bottom:456.015000px;}
.yfd{bottom:457.095000px;}
.y134{bottom:460.155000px;}
.y173{bottom:462.135000px;}
.y6f{bottom:463.575000px;}
.y1b3{bottom:469.875000px;}
.yaa{bottom:473.115000px;}
.yfc{bottom:474.375000px;}
.y172{bottom:475.995000px;}
.y133{bottom:477.435000px;}
.y6e{bottom:480.855000px;}
.y1b2{bottom:483.555000px;}
.y171{bottom:489.675000px;}
.ya9{bottom:490.395000px;}
.yfb{bottom:491.655000px;}
.y132{bottom:493.995000px;}
.y1b1{bottom:497.415000px;}
.y6d{bottom:498.135000px;}
.y170{bottom:503.535000px;}
.ya8{bottom:507.675000px;}
.yfa{bottom:508.935000px;}
.y1b0{bottom:511.095000px;}
.y6c{bottom:515.415000px;}
.y16f{bottom:517.395000px;}
.ycb{bottom:519.195000px;}
.y131{bottom:522.255000px;}
.ya7{bottom:524.955000px;}
.yf9{bottom:526.215000px;}
.y16{bottom:527.115000px;}
.y118{bottom:527.475000px;}
.y16e{bottom:531.075000px;}
.y6b{bottom:532.515000px;}
.y115{bottom:534.495000px;}
.yca{bottom:536.295000px;}
.y1af{bottom:538.815000px;}
.y130{bottom:539.535000px;}
.ya6{bottom:542.235000px;}
.yf8{bottom:543.315000px;}
.y16d{bottom:544.935000px;}
.y6a{bottom:549.795000px;}
.y1ae{bottom:552.495000px;}
.y12f{bottom:556.815000px;}
.y16c{bottom:558.795000px;}
.ya5{bottom:559.515000px;}
.yf7{bottom:560.595000px;}
.y1ad{bottom:566.355000px;}
.y69{bottom:567.075000px;}
.y16b{bottom:572.475000px;}
.y12e{bottom:573.195000px;}
.ya4{bottom:576.615000px;}
.yf6{bottom:577.875000px;}
.y1ac{bottom:580.215000px;}
.y68{bottom:584.355000px;}
.y16a{bottom:586.335000px;}
.y12d{bottom:587.055000px;}
.ya3{bottom:593.895000px;}
.yf5{bottom:595.155000px;}
.y169{bottom:600.195000px;}
.y67{bottom:601.635000px;}
.y1ab{bottom:607.755000px;}
.ya2{bottom:611.175000px;}
.yf4{bottom:612.435000px;}
.y168{bottom:613.875000px;}
.y18{bottom:615.315000px;}
.y66{bottom:618.915000px;}
.y1aa{bottom:621.615000px;}
.y167{bottom:627.735000px;}
.ya1{bottom:628.455000px;}
.yf3{bottom:629.715000px;}
.y1a9{bottom:635.295000px;}
.y65{bottom:636.015000px;}
.y166{bottom:641.625000px;}
.ya0{bottom:645.765000px;}
.yf2{bottom:646.845000px;}
.y1a8{bottom:649.185000px;}
.y64{bottom:653.325000px;}
.y165{bottom:655.305000px;}
.y9f{bottom:663.045000px;}
.yf1{bottom:664.125000px;}
.y164{bottom:669.165000px;}
.y63{bottom:670.605000px;}
.y1a7{bottom:676.725000px;}
.y9e{bottom:680.145000px;}
.yf0{bottom:681.405000px;}
.y163{bottom:683.025000px;}
.y62{bottom:687.885000px;}
.y1a6{bottom:690.585000px;}
.y162{bottom:696.705000px;}
.y9d{bottom:697.425000px;}
.yef{bottom:698.685000px;}
.y1a5{bottom:704.445000px;}
.y61{bottom:705.165000px;}
.y161{bottom:710.565000px;}
.y9c{bottom:714.705000px;}
.yee{bottom:715.965000px;}
.y1a4{bottom:718.125000px;}
.y60{bottom:722.445000px;}
.yc9{bottom:723.165000px;}
.y160{bottom:724.425000px;}
.y9b{bottom:731.985000px;}
.yed{bottom:733.245000px;}
.y15f{bottom:738.105000px;}
.y5f{bottom:739.545000px;}
.yc7{bottom:740.445000px;}
.y1a3{bottom:745.845000px;}
.y9a{bottom:749.265000px;}
.yec{bottom:750.345000px;}
.y15e{bottom:751.965000px;}
.y5e{bottom:756.825000px;}
.y1a2{bottom:759.525000px;}
.y15d{bottom:765.825000px;}
.y99{bottom:766.545000px;}
.yeb{bottom:767.625000px;}
.y1a1{bottom:773.385000px;}
.y5d{bottom:774.105000px;}
.y15c{bottom:779.505000px;}
.y98{bottom:783.645000px;}
.yea{bottom:784.905000px;}
.y112{bottom:786.525000px;}
.y1a0{bottom:787.245000px;}
.y5c{bottom:791.385000px;}
.y15b{bottom:793.365000px;}
.y11{bottom:799.485000px;}
.y97{bottom:800.925000px;}
.ye9{bottom:802.185000px;}
.y15a{bottom:807.225000px;}
.y5b{bottom:807.945000px;}
.y12c{bottom:808.665000px;}
.y19f{bottom:814.785000px;}
.y96{bottom:818.205000px;}
.ye8{bottom:819.465000px;}
.y159{bottom:820.905000px;}
.y5a{bottom:821.625000px;}
.y12b{bottom:825.225000px;}
.y19e{bottom:828.645000px;}
.y158{bottom:834.765000px;}
.y95{bottom:835.485000px;}
.y59{bottom:836.205000px;}
.ye7{bottom:836.565000px;}
.y12a{bottom:838.905000px;}
.y19d{bottom:842.325000px;}
.y157{bottom:848.445000px;}
.y94{bottom:852.765000px;}
.y58{bottom:853.485000px;}
.ye6{bottom:853.845000px;}
.y19c{bottom:856.185000px;}
.y156{bottom:862.305000px;}
.y93{bottom:869.865000px;}
.y19b{bottom:870.045000px;}
.y57{bottom:870.765000px;}
.ye5{bottom:871.125000px;}
.y155{bottom:876.165000px;}
.y19a{bottom:883.725000px;}
.y92{bottom:887.145000px;}
.y56{bottom:887.865000px;}
.ye4{bottom:888.405000px;}
.y154{bottom:889.845000px;}
.y199{bottom:897.630000px;}
.y153{bottom:903.750000px;}
.yf{bottom:904.470000px;}
.y55{bottom:905.190000px;}
.y198{bottom:911.490000px;}
.y152{bottom:917.610000px;}
.y91{bottom:921.750000px;}
.ye3{bottom:922.290000px;}
.y54{bottom:922.470000px;}
.y197{bottom:925.170000px;}
.y151{bottom:931.290000px;}
.ye{bottom:935.970000px;}
.yc6{bottom:936.870000px;}
.y90{bottom:939.030000px;}
.y53{bottom:939.750000px;}
.y150{bottom:945.150000px;}
.ye2{bottom:948.030000px;}
.yd{bottom:951.450000px;}
.y196{bottom:952.890000px;}
.yc4{bottom:954.150000px;}
.y8f{bottom:956.310000px;}
.y52{bottom:957.030000px;}
.y14f{bottom:959.010000px;}
.ye1{bottom:961.890000px;}
.yc{bottom:966.570000px;}
.y14e{bottom:972.690000px;}
.y8e{bottom:973.410000px;}
.y51{bottom:974.310000px;}
.ye0{bottom:975.570000px;}
.y195{bottom:980.430000px;}
.yb{bottom:981.150000px;}
.y14d{bottom:987.270000px;}
.ydf{bottom:989.430000px;}
.y8d{bottom:990.690000px;}
.y50{bottom:991.410000px;}
.y194{bottom:994.290000px;}
.ya{bottom:998.070000px;}
.yde{bottom:1003.290000px;}
.y14c{bottom:1003.830000px;}
.y8c{bottom:1007.970000px;}
.y4f{bottom:1008.690000px;}
.y9{bottom:1013.550000px;}
.ydd{bottom:1016.970000px;}
.y14b{bottom:1017.690000px;}
.y193{bottom:1021.830000px;}
.y8b{bottom:1025.250000px;}
.y4e{bottom:1025.970000px;}
.y8{bottom:1031.550000px;}
.y111{bottom:1032.090000px;}
.y192{bottom:1035.690000px;}
.y8a{bottom:1042.530000px;}
.y4d{bottom:1043.250000px;}
.y110{bottom:1045.950000px;}
.ydc{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y89{bottom:1059.810000px;}
.y4c{bottom:1060.530000px;}
.y191{bottom:1063.230000px;}
.y14a{bottom:1066.650000px;}
.y88{bottom:1076.910000px;}
.y190{bottom:1077.090000px;}
.y4b{bottom:1077.810000px;}
.ydb{bottom:1083.210000px;}
.y6{bottom:1086.630000px;}
.y18f{bottom:1090.770000px;}
.y87{bottom:1094.190000px;}
.y4a{bottom:1094.910000px;}
.yda{bottom:1096.890000px;}
.y18e{bottom:1104.630000px;}
.y86{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y18d{bottom:1118.490000px;}
.y85{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y18c{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y49{bottom:1160.640000px;}
.y84{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h19{height:5.653125px;}
.h14{height:13.680000px;}
.h15{height:13.860000px;}
.h16{height:13.860150px;}
.h17{height:13.896000px;}
.h13{height:17.100000px;}
.h12{height:17.280000px;}
.h23{height:17.316000px;}
.h18{height:23.319141px;}
.h8{height:26.280000px;}
.h21{height:29.678906px;}
.h28{height:47.321367px;}
.h7{height:47.344922px;}
.h1e{height:47.678906px;}
.h25{height:48.616875px;}
.hf{height:52.971680px;}
.h6{height:52.998047px;}
.h27{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h9{height:70.664062px;}
.h24{height:86.220000px;}
.he{height:87.480000px;}
.h5{height:96.508125px;}
.ha{height:104.256000px;}
.h10{height:113.220000px;}
.h26{height:148.716000px;}
.h29{height:148.896000px;}
.h1c{height:186.870000px;}
.h1a{height:189.360000px;}
.h1b{height:196.410000px;}
.h1d{height:200.370000px;}
.h1f{height:243.030000px;}
.h22{height:245.190000px;}
.h20{height:252.030000px;}
.hd{height:271.650000px;}
.hc{height:288.435000px;}
.hb{height:376.635000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w19{width:25.380000px;}
.w1b{width:26.316000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w1d{width:32.040000px;}
.w25{width:35.100000px;}
.w20{width:35.280000px;}
.w24{width:35.316000px;}
.w21{width:35.640000px;}
.w26{width:36.036000px;}
.w22{width:36.180000px;}
.w27{width:36.360000px;}
.w28{width:36.540000px;}
.w23{width:36.720000px;}
.wc{width:53.280000px;}
.wb{width:53.316000px;}
.wd{width:55.260000px;}
.wa{width:63.900000px;}
.w15{width:84.060000px;}
.we{width:89.856000px;}
.w14{width:94.176000px;}
.w16{width:104.076000px;}
.w9{width:105.876000px;}
.w17{width:114.156000px;}
.w18{width:119.880000px;}
.w2c{width:128.160000px;}
.w13{width:134.640000px;}
.w1f{width:158.070000px;}
.w2b{width:198.570000px;}
.w3{width:209.190000px;}
.w29{width:214.770000px;}
.w10{width:218.190000px;}
.w11{width:219.990000px;}
.wf{width:220.890000px;}
.w2a{width:244.290000px;}
.w1e{width:287.850000px;}
.w1c{width:299.550000px;}
.w1a{width:307.830000px;}
.w5{width:433.155000px;}
.w2d{width:542.085000px;}
.w12{width:659.085000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:4.320000px;}
.x9{left:8.100000px;}
.xb{left:10.620000px;}
.x53{left:11.700000px;}
.x16{left:16.920000px;}
.x54{left:18.000000px;}
.x37{left:19.125000px;}
.x35{left:21.600000px;}
.x3b{left:23.220000px;}
.x2e{left:26.100000px;}
.x3a{left:28.260000px;}
.x38{left:31.140000px;}
.x30{left:33.690000px;}
.x2c{left:35.505000px;}
.x36{left:37.440000px;}
.x32{left:40.500000px;}
.x39{left:43.380000px;}
.x2a{left:46.614000px;}
.x34{left:48.960000px;}
.x20{left:100.260000px;}
.x1f{left:102.054000px;}
.xd{left:106.560000px;}
.x59{left:114.294000px;}
.x58{left:116.496000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x25{left:129.995987px;}
.x26{left:131.075987px;}
.x29{left:135.756000px;}
.x3d{left:153.030000px;}
.x10{left:154.649987px;}
.x12{left:157.349987px;}
.x57{left:159.689987px;}
.x27{left:172.829987px;}
.x3{left:178.229987px;}
.xf{left:181.649987px;}
.x2{left:191.729987px;}
.x1e{left:199.125000px;}
.x1a{left:200.379000px;}
.x7{left:204.509987px;}
.x22{left:210.630000px;}
.x1c{left:213.330000px;}
.x21{left:216.039000px;}
.x5a{left:244.650000px;}
.x13{left:246.450000px;}
.x2b{left:270.390000px;}
.x45{left:286.095000px;}
.x42{left:292.365000px;}
.x41{left:295.425000px;}
.x43{left:297.255000px;}
.x3e{left:303.525000px;}
.x6{left:312.014987px;}
.x46{left:321.375000px;}
.x24{left:322.419000px;}
.x44{left:329.295000px;}
.xa{left:334.695000px;}
.x55{left:343.155000px;}
.x1b{left:348.555000px;}
.x14{left:352.335000px;}
.xc{left:355.755000px;}
.x47{left:357.015000px;}
.x2d{left:364.575000px;}
.x28{left:382.034987px;}
.x48{left:393.195000px;}
.x4{left:396.614987px;}
.x15{left:416.235000px;}
.xe{left:425.055000px;}
.x49{left:429.915000px;}
.x23{left:438.729000px;}
.x2f{left:448.635000px;}
.x5{left:457.274987px;}
.x3f{left:460.875000px;}
.x4a{left:466.095000px;}
.x17{left:469.545000px;}
.x40{left:487.185000px;}
.x4b{left:501.405000px;}
.x18{left:522.825000px;}
.x4c{left:536.685000px;}
.x31{left:552.705000px;}
.x1d{left:566.745000px;}
.x4d{left:571.965000px;}
.x19{left:578.085000px;}
.x56{left:587.445000px;}
.x4e{left:607.065000px;}
.x4f{left:642.345000px;}
.x33{left:666.870000px;}
.x50{left:678.390000px;}
.x51{left:714.750000px;}
.x52{left:749.850000px;}
.x11{left:756.870000px;}
@media print{
.v1{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls1e{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.216533pt;}
.ls1f{letter-spacing:-0.198933pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.161067pt;}
.ls1c{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.008960pt;}
.ls2{letter-spacing:0.030080pt;}
.ls10{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.239467pt;}
.lse{letter-spacing:0.257280pt;}
.ls19{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:9.120000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls16{letter-spacing:60.960000pt;}
.lsf{letter-spacing:178.058667pt;}
.lsd{letter-spacing:265.098667pt;}
.lsa{letter-spacing:633.258667pt;}
.ws11{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.511040pt;}
.ws7{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.870933pt;}
.ws4{word-spacing:-12.320000pt;}
.ws17{word-spacing:-11.808000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.558933pt;}
.ws15{word-spacing:-10.521067pt;}
.ws14{word-spacing:-10.400000pt;}
.ws9{word-spacing:-6.728960pt;}
.ws8{word-spacing:-6.503467pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-6.240000pt;}
._15{margin-left:-3.452800pt;}
._10{margin-left:-2.415360pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._f{width:3.254827pt;}
._6{width:4.224000pt;}
._7{width:5.184000pt;}
._4{width:6.080000pt;}
._5{width:7.344000pt;}
._9{width:8.736000pt;}
._c{width:9.936000pt;}
._14{width:10.889600pt;}
._11{width:12.058240pt;}
._8{width:13.392000pt;}
._d{width:14.598187pt;}
._e{width:15.792000pt;}
._1b{width:17.264000pt;}
._1c{width:18.885333pt;}
._23{width:19.851307pt;}
._22{width:21.354240pt;}
._b{width:22.262827pt;}
._a{width:23.472000pt;}
._25{width:24.487253pt;}
._17{width:25.498667pt;}
._16{width:26.584960pt;}
._1f{width:27.569280pt;}
._21{width:28.472320pt;}
._27{width:29.783680pt;}
._1e{width:31.287680pt;}
._20{width:32.509440pt;}
._29{width:33.652907pt;}
._1d{width:40.583680pt;}
._26{width:44.551040pt;}
._24{width:47.808000pt;}
._2e{width:48.752000pt;}
._2a{width:50.400000pt;}
._2f{width:51.360000pt;}
._28{width:53.180587pt;}
._2c{width:80.776320pt;}
._2b{width:81.744000pt;}
._2d{width:82.690347pt;}
._12{width:452.521387pt;}
._19{width:654.560000pt;}
._13{width:769.499307pt;}
._1a{width:953.866667pt;}
._3{width:979.477333pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:0.160000pt;}
.yc8{bottom:0.960000pt;}
.y114{bottom:2.080000pt;}
.ybf{bottom:2.234667pt;}
.yba{bottom:2.240000pt;}
.yc1{bottom:2.272000pt;}
.y2a{bottom:2.560000pt;}
.y10{bottom:2.880000pt;}
.y139{bottom:3.200000pt;}
.y13b{bottom:3.360000pt;}
.y117{bottom:4.000000pt;}
.y32{bottom:8.000000pt;}
.y38{bottom:10.880000pt;}
.y29{bottom:16.320000pt;}
.y15{bottom:18.240000pt;}
.y37{bottom:26.240000pt;}
.y28{bottom:30.266667pt;}
.y140{bottom:33.440000pt;}
.y14{bottom:33.600000pt;}
.y36{bottom:41.600000pt;}
.y27{bottom:44.026667pt;}
.y13f{bottom:48.800000pt;}
.y13{bottom:48.960000pt;}
.y35{bottom:56.960000pt;}
.y26{bottom:57.786667pt;}
.y31{bottom:58.560000pt;}
.y13e{bottom:64.160000pt;}
.y1c1{bottom:64.346667pt;}
.y25{bottom:71.546667pt;}
.y12{bottom:72.160000pt;}
.y1ba{bottom:78.080000pt;}
.y1c0{bottom:78.106667pt;}
.y5{bottom:78.400000pt;}
.y34{bottom:80.160000pt;}
.y24{bottom:85.466667pt;}
.y1b9{bottom:91.840000pt;}
.y1bf{bottom:92.026667pt;}
.y1c2{bottom:97.440000pt;}
.y1bc{bottom:98.560000pt;}
.yd9{bottom:99.200000pt;}
.y23{bottom:99.226667pt;}
.y113{bottom:103.240000pt;}
.y149{bottom:103.360000pt;}
.y119{bottom:104.200000pt;}
.y1b8{bottom:105.640000pt;}
.y1be{bottom:105.786667pt;}
.y116{bottom:107.226667pt;}
.y122{bottom:108.160000pt;}
.yc3{bottom:110.880000pt;}
.y83{bottom:111.520000pt;}
.y22{bottom:112.986667pt;}
.yc2{bottom:113.280000pt;}
.y129{bottom:113.920000pt;}
.yd8{bottom:114.560000pt;}
.y10f{bottom:115.040000pt;}
.y18b{bottom:116.320000pt;}
.y148{bottom:118.720000pt;}
.yc0{bottom:118.880000pt;}
.y1b7{bottom:119.400000pt;}
.y1bd{bottom:119.546667pt;}
.y48{bottom:122.752000pt;}
.y121{bottom:123.552000pt;}
.y21{bottom:126.746667pt;}
.y82{bottom:126.912000pt;}
.y18a{bottom:128.672000pt;}
.y128{bottom:129.312000pt;}
.yd7{bottom:129.952000pt;}
.y10e{bottom:130.272000pt;}
.ybe{bottom:131.232000pt;}
.y147{bottom:134.106667pt;}
.y30{bottom:136.346667pt;}
.y47{bottom:137.946667pt;}
.y120{bottom:138.906667pt;}
.y20{bottom:140.666667pt;}
.y189{bottom:140.826667pt;}
.y81{bottom:142.266667pt;}
.ybd{bottom:143.386667pt;}
.y127{bottom:144.666667pt;}
.yd6{bottom:145.146667pt;}
.y10d{bottom:145.626667pt;}
.y146{bottom:149.466667pt;}
.y2f{bottom:151.706667pt;}
.y188{bottom:153.146667pt;}
.y46{bottom:153.306667pt;}
.y11f{bottom:154.266667pt;}
.y1f{bottom:154.426667pt;}
.ybc{bottom:155.706667pt;}
.y80{bottom:157.466667pt;}
.yd5{bottom:159.866667pt;}
.y10c{bottom:160.986667pt;}
.y145{bottom:164.026667pt;}
.y187{bottom:165.466667pt;}
.y2e{bottom:167.066667pt;}
.ybb{bottom:168.026667pt;}
.y1e{bottom:168.186667pt;}
.y45{bottom:168.666667pt;}
.y11e{bottom:168.986667pt;}
.yd4{bottom:172.186667pt;}
.y7f{bottom:172.826667pt;}
.y126{bottom:175.226667pt;}
.y10b{bottom:176.346667pt;}
.y186{bottom:177.626667pt;}
.yb9{bottom:180.986667pt;}
.y11d{bottom:181.146667pt;}
.y1d{bottom:181.946667pt;}
.y2d{bottom:182.426667pt;}
.y44{bottom:184.026667pt;}
.yd3{bottom:185.146667pt;}
.y7e{bottom:188.186667pt;}
.y144{bottom:189.306667pt;}
.y185{bottom:189.946667pt;}
.y125{bottom:190.586667pt;}
.y10a{bottom:191.706667pt;}
.y11c{bottom:194.106667pt;}
.y1c{bottom:195.866667pt;}
.y2c{bottom:197.626667pt;}
.y43{bottom:199.386667pt;}
.yd2{bottom:200.346667pt;}
.y184{bottom:202.266667pt;}
.y7d{bottom:203.546667pt;}
.y143{bottom:204.666667pt;}
.y124{bottom:205.946667pt;}
.y109{bottom:207.066667pt;}
.y11b{bottom:209.466667pt;}
.y1b{bottom:209.626667pt;}
.yb8{bottom:211.386667pt;}
.y183{bottom:214.426667pt;}
.y42{bottom:214.586667pt;}
.yd1{bottom:215.706667pt;}
.y7c{bottom:218.906667pt;}
.y142{bottom:219.226667pt;}
.y2b{bottom:220.986667pt;}
.y123{bottom:221.306667pt;}
.y108{bottom:222.266667pt;}
.y1a{bottom:223.386667pt;}
.yb7{bottom:223.706667pt;}
.y182{bottom:226.746667pt;}
.y41{bottom:229.946667pt;}
.y1bb{bottom:230.906667pt;}
.yd0{bottom:231.066667pt;}
.y141{bottom:231.546667pt;}
.y7b{bottom:234.266667pt;}
.yb6{bottom:236.666667pt;}
.y19{bottom:237.146667pt;}
.y107{bottom:237.626667pt;}
.y181{bottom:239.066667pt;}
.y11a{bottom:239.386667pt;}
.y13d{bottom:241.626667pt;}
.y1b6{bottom:243.226667pt;}
.y40{bottom:245.306667pt;}
.ycf{bottom:245.786667pt;}
.y7a{bottom:249.466667pt;}
.y180{bottom:251.226667pt;}
.yb5{bottom:251.866667pt;}
.y106{bottom:252.986667pt;}
.yce{bottom:258.106667pt;}
.y3f{bottom:260.666667pt;}
.y17f{bottom:263.546667pt;}
.y79{bottom:264.826667pt;}
.yb4{bottom:267.226667pt;}
.ycd{bottom:268.026667pt;}
.y105{bottom:268.346667pt;}
.y17e{bottom:275.866667pt;}
.y3e{bottom:276.026667pt;}
.y78{bottom:279.546667pt;}
.yb3{bottom:282.586667pt;}
.ycc{bottom:283.386667pt;}
.y104{bottom:283.706667pt;}
.y17d{bottom:288.026667pt;}
.y3d{bottom:291.386667pt;}
.y77{bottom:291.866667pt;}
.yb2{bottom:297.946667pt;}
.y103{bottom:299.066667pt;}
.y17c{bottom:300.346667pt;}
.y76{bottom:304.666667pt;}
.y3c{bottom:306.586667pt;}
.y17b{bottom:312.666667pt;}
.yb1{bottom:313.306667pt;}
.y17{bottom:314.266667pt;}
.y75{bottom:320.026667pt;}
.y13c{bottom:320.506667pt;}
.y3b{bottom:321.946667pt;}
.y17a{bottom:324.826667pt;}
.yb0{bottom:328.666667pt;}
.y102{bottom:329.626667pt;}
.y13a{bottom:331.226667pt;}
.y74{bottom:335.386667pt;}
.y179{bottom:337.146667pt;}
.y3a{bottom:337.306667pt;}
.yaf{bottom:343.866667pt;}
.y101{bottom:345.026667pt;}
.y138{bottom:346.626667pt;}
.y178{bottom:349.506667pt;}
.y73{bottom:350.786667pt;}
.y39{bottom:352.706667pt;}
.yae{bottom:359.266667pt;}
.y100{bottom:360.386667pt;}
.y177{bottom:361.666667pt;}
.y137{bottom:362.626667pt;}
.y72{bottom:366.146667pt;}
.y33{bottom:367.106667pt;}
.y176{bottom:373.986667pt;}
.yad{bottom:374.626667pt;}
.yff{bottom:375.746667pt;}
.y1b5{bottom:377.666667pt;}
.y136{bottom:380.866667pt;}
.y71{bottom:381.506667pt;}
.y175{bottom:386.306667pt;}
.yac{bottom:389.986667pt;}
.y1b4{bottom:390.626667pt;}
.yfe{bottom:391.106667pt;}
.y135{bottom:393.666667pt;}
.y70{bottom:396.706667pt;}
.y174{bottom:398.466667pt;}
.yab{bottom:405.346667pt;}
.yfd{bottom:406.306667pt;}
.y134{bottom:409.026667pt;}
.y173{bottom:410.786667pt;}
.y6f{bottom:412.066667pt;}
.y1b3{bottom:417.666667pt;}
.yaa{bottom:420.546667pt;}
.yfc{bottom:421.666667pt;}
.y172{bottom:423.106667pt;}
.y133{bottom:424.386667pt;}
.y6e{bottom:427.426667pt;}
.y1b2{bottom:429.826667pt;}
.y171{bottom:435.266667pt;}
.ya9{bottom:435.906667pt;}
.yfb{bottom:437.026667pt;}
.y132{bottom:439.106667pt;}
.y1b1{bottom:442.146667pt;}
.y6d{bottom:442.786667pt;}
.y170{bottom:447.586667pt;}
.ya8{bottom:451.266667pt;}
.yfa{bottom:452.386667pt;}
.y1b0{bottom:454.306667pt;}
.y6c{bottom:458.146667pt;}
.y16f{bottom:459.906667pt;}
.ycb{bottom:461.506667pt;}
.y131{bottom:464.226667pt;}
.ya7{bottom:466.626667pt;}
.yf9{bottom:467.746667pt;}
.y16{bottom:468.546667pt;}
.y118{bottom:468.866667pt;}
.y16e{bottom:472.066667pt;}
.y6b{bottom:473.346667pt;}
.y115{bottom:475.106667pt;}
.yca{bottom:476.706667pt;}
.y1af{bottom:478.946667pt;}
.y130{bottom:479.586667pt;}
.ya6{bottom:481.986667pt;}
.yf8{bottom:482.946667pt;}
.y16d{bottom:484.386667pt;}
.y6a{bottom:488.706667pt;}
.y1ae{bottom:491.106667pt;}
.y12f{bottom:494.946667pt;}
.y16c{bottom:496.706667pt;}
.ya5{bottom:497.346667pt;}
.yf7{bottom:498.306667pt;}
.y1ad{bottom:503.426667pt;}
.y69{bottom:504.066667pt;}
.y16b{bottom:508.866667pt;}
.y12e{bottom:509.506667pt;}
.ya4{bottom:512.546667pt;}
.yf6{bottom:513.666667pt;}
.y1ac{bottom:515.746667pt;}
.y68{bottom:519.426667pt;}
.y16a{bottom:521.186667pt;}
.y12d{bottom:521.826667pt;}
.ya3{bottom:527.906667pt;}
.yf5{bottom:529.026667pt;}
.y169{bottom:533.506667pt;}
.y67{bottom:534.786667pt;}
.y1ab{bottom:540.226667pt;}
.ya2{bottom:543.266667pt;}
.yf4{bottom:544.386667pt;}
.y168{bottom:545.666667pt;}
.y18{bottom:546.946667pt;}
.y66{bottom:550.146667pt;}
.y1aa{bottom:552.546667pt;}
.y167{bottom:557.986667pt;}
.ya1{bottom:558.626667pt;}
.yf3{bottom:559.746667pt;}
.y1a9{bottom:564.706667pt;}
.y65{bottom:565.346667pt;}
.y166{bottom:570.333333pt;}
.ya0{bottom:574.013333pt;}
.yf2{bottom:574.973333pt;}
.y1a8{bottom:577.053333pt;}
.y64{bottom:580.733333pt;}
.y165{bottom:582.493333pt;}
.y9f{bottom:589.373333pt;}
.yf1{bottom:590.333333pt;}
.y164{bottom:594.813333pt;}
.y63{bottom:596.093333pt;}
.y1a7{bottom:601.533333pt;}
.y9e{bottom:604.573333pt;}
.yf0{bottom:605.693333pt;}
.y163{bottom:607.133333pt;}
.y62{bottom:611.453333pt;}
.y1a6{bottom:613.853333pt;}
.y162{bottom:619.293333pt;}
.y9d{bottom:619.933333pt;}
.yef{bottom:621.053333pt;}
.y1a5{bottom:626.173333pt;}
.y61{bottom:626.813333pt;}
.y161{bottom:631.613333pt;}
.y9c{bottom:635.293333pt;}
.yee{bottom:636.413333pt;}
.y1a4{bottom:638.333333pt;}
.y60{bottom:642.173333pt;}
.yc9{bottom:642.813333pt;}
.y160{bottom:643.933333pt;}
.y9b{bottom:650.653333pt;}
.yed{bottom:651.773333pt;}
.y15f{bottom:656.093333pt;}
.y5f{bottom:657.373333pt;}
.yc7{bottom:658.173333pt;}
.y1a3{bottom:662.973333pt;}
.y9a{bottom:666.013333pt;}
.yec{bottom:666.973333pt;}
.y15e{bottom:668.413333pt;}
.y5e{bottom:672.733333pt;}
.y1a2{bottom:675.133333pt;}
.y15d{bottom:680.733333pt;}
.y99{bottom:681.373333pt;}
.yeb{bottom:682.333333pt;}
.y1a1{bottom:687.453333pt;}
.y5d{bottom:688.093333pt;}
.y15c{bottom:692.893333pt;}
.y98{bottom:696.573333pt;}
.yea{bottom:697.693333pt;}
.y112{bottom:699.133333pt;}
.y1a0{bottom:699.773333pt;}
.y5c{bottom:703.453333pt;}
.y15b{bottom:705.213333pt;}
.y11{bottom:710.653333pt;}
.y97{bottom:711.933333pt;}
.ye9{bottom:713.053333pt;}
.y15a{bottom:717.533333pt;}
.y5b{bottom:718.173333pt;}
.y12c{bottom:718.813333pt;}
.y19f{bottom:724.253333pt;}
.y96{bottom:727.293333pt;}
.ye8{bottom:728.413333pt;}
.y159{bottom:729.693333pt;}
.y5a{bottom:730.333333pt;}
.y12b{bottom:733.533333pt;}
.y19e{bottom:736.573333pt;}
.y158{bottom:742.013333pt;}
.y95{bottom:742.653333pt;}
.y59{bottom:743.293333pt;}
.ye7{bottom:743.613333pt;}
.y12a{bottom:745.693333pt;}
.y19d{bottom:748.733333pt;}
.y157{bottom:754.173333pt;}
.y94{bottom:758.013333pt;}
.y58{bottom:758.653333pt;}
.ye6{bottom:758.973333pt;}
.y19c{bottom:761.053333pt;}
.y156{bottom:766.493333pt;}
.y93{bottom:773.213333pt;}
.y19b{bottom:773.373333pt;}
.y57{bottom:774.013333pt;}
.ye5{bottom:774.333333pt;}
.y155{bottom:778.813333pt;}
.y19a{bottom:785.533333pt;}
.y92{bottom:788.573333pt;}
.y56{bottom:789.213333pt;}
.ye4{bottom:789.693333pt;}
.y154{bottom:790.973333pt;}
.y199{bottom:797.893333pt;}
.y153{bottom:803.333333pt;}
.yf{bottom:803.973333pt;}
.y55{bottom:804.613333pt;}
.y198{bottom:810.213333pt;}
.y152{bottom:815.653333pt;}
.y91{bottom:819.333333pt;}
.ye3{bottom:819.813333pt;}
.y54{bottom:819.973333pt;}
.y197{bottom:822.373333pt;}
.y151{bottom:827.813333pt;}
.ye{bottom:831.973333pt;}
.yc6{bottom:832.773333pt;}
.y90{bottom:834.693333pt;}
.y53{bottom:835.333333pt;}
.y150{bottom:840.133333pt;}
.ye2{bottom:842.693333pt;}
.yd{bottom:845.733333pt;}
.y196{bottom:847.013333pt;}
.yc4{bottom:848.133333pt;}
.y8f{bottom:850.053333pt;}
.y52{bottom:850.693333pt;}
.y14f{bottom:852.453333pt;}
.ye1{bottom:855.013333pt;}
.yc{bottom:859.173333pt;}
.y14e{bottom:864.613333pt;}
.y8e{bottom:865.253333pt;}
.y51{bottom:866.053333pt;}
.ye0{bottom:867.173333pt;}
.y195{bottom:871.493333pt;}
.yb{bottom:872.133333pt;}
.y14d{bottom:877.573333pt;}
.ydf{bottom:879.493333pt;}
.y8d{bottom:880.613333pt;}
.y50{bottom:881.253333pt;}
.y194{bottom:883.813333pt;}
.ya{bottom:887.173333pt;}
.yde{bottom:891.813333pt;}
.y14c{bottom:892.293333pt;}
.y8c{bottom:895.973333pt;}
.y4f{bottom:896.613333pt;}
.y9{bottom:900.933333pt;}
.ydd{bottom:903.973333pt;}
.y14b{bottom:904.613333pt;}
.y193{bottom:908.293333pt;}
.y8b{bottom:911.333333pt;}
.y4e{bottom:911.973333pt;}
.y8{bottom:916.933333pt;}
.y111{bottom:917.413333pt;}
.y192{bottom:920.613333pt;}
.y8a{bottom:926.693333pt;}
.y4d{bottom:927.333333pt;}
.y110{bottom:929.733333pt;}
.ydc{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y89{bottom:942.053333pt;}
.y4c{bottom:942.693333pt;}
.y191{bottom:945.093333pt;}
.y14a{bottom:948.133333pt;}
.y88{bottom:957.253333pt;}
.y190{bottom:957.413333pt;}
.y4b{bottom:958.053333pt;}
.ydb{bottom:962.853333pt;}
.y6{bottom:965.893333pt;}
.y18f{bottom:969.573333pt;}
.y87{bottom:972.613333pt;}
.y4a{bottom:973.253333pt;}
.yda{bottom:975.013333pt;}
.y18e{bottom:981.893333pt;}
.y86{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y18d{bottom:994.213333pt;}
.y85{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y18c{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y49{bottom:1031.680000pt;}
.y84{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h19{height:5.025000pt;}
.h14{height:12.160000pt;}
.h15{height:12.320000pt;}
.h16{height:12.320133pt;}
.h17{height:12.352000pt;}
.h13{height:15.200000pt;}
.h12{height:15.360000pt;}
.h23{height:15.392000pt;}
.h18{height:20.728125pt;}
.h8{height:23.360000pt;}
.h21{height:26.381250pt;}
.h28{height:42.063437pt;}
.h7{height:42.084375pt;}
.h1e{height:42.381250pt;}
.h25{height:43.215000pt;}
.hf{height:47.085938pt;}
.h6{height:47.109375pt;}
.h27{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h9{height:62.812500pt;}
.h24{height:76.640000pt;}
.he{height:77.760000pt;}
.h5{height:85.785000pt;}
.ha{height:92.672000pt;}
.h10{height:100.640000pt;}
.h26{height:132.192000pt;}
.h29{height:132.352000pt;}
.h1c{height:166.106667pt;}
.h1a{height:168.320000pt;}
.h1b{height:174.586667pt;}
.h1d{height:178.106667pt;}
.h1f{height:216.026667pt;}
.h22{height:217.946667pt;}
.h20{height:224.026667pt;}
.hd{height:241.466667pt;}
.hc{height:256.386667pt;}
.hb{height:334.786667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w19{width:22.560000pt;}
.w1b{width:23.392000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w1d{width:28.480000pt;}
.w25{width:31.200000pt;}
.w20{width:31.360000pt;}
.w24{width:31.392000pt;}
.w21{width:31.680000pt;}
.w26{width:32.032000pt;}
.w22{width:32.160000pt;}
.w27{width:32.320000pt;}
.w28{width:32.480000pt;}
.w23{width:32.640000pt;}
.wc{width:47.360000pt;}
.wb{width:47.392000pt;}
.wd{width:49.120000pt;}
.wa{width:56.800000pt;}
.w15{width:74.720000pt;}
.we{width:79.872000pt;}
.w14{width:83.712000pt;}
.w16{width:92.512000pt;}
.w9{width:94.112000pt;}
.w17{width:101.472000pt;}
.w18{width:106.560000pt;}
.w2c{width:113.920000pt;}
.w13{width:119.680000pt;}
.w1f{width:140.506667pt;}
.w2b{width:176.506667pt;}
.w3{width:185.946667pt;}
.w29{width:190.906667pt;}
.w10{width:193.946667pt;}
.w11{width:195.546667pt;}
.wf{width:196.346667pt;}
.w2a{width:217.146667pt;}
.w1e{width:255.866667pt;}
.w1c{width:266.266667pt;}
.w1a{width:273.626667pt;}
.w5{width:385.026667pt;}
.w2d{width:481.853333pt;}
.w12{width:585.853333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:3.840000pt;}
.x9{left:7.200000pt;}
.xb{left:9.440000pt;}
.x53{left:10.400000pt;}
.x16{left:15.040000pt;}
.x54{left:16.000000pt;}
.x37{left:17.000000pt;}
.x35{left:19.200000pt;}
.x3b{left:20.640000pt;}
.x2e{left:23.200000pt;}
.x3a{left:25.120000pt;}
.x38{left:27.680000pt;}
.x30{left:29.946667pt;}
.x2c{left:31.560000pt;}
.x36{left:33.280000pt;}
.x32{left:36.000000pt;}
.x39{left:38.560000pt;}
.x2a{left:41.434667pt;}
.x34{left:43.520000pt;}
.x20{left:89.120000pt;}
.x1f{left:90.714667pt;}
.xd{left:94.720000pt;}
.x59{left:101.594667pt;}
.x58{left:103.552000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x25{left:115.551988pt;}
.x26{left:116.511988pt;}
.x29{left:120.672000pt;}
.x3d{left:136.026667pt;}
.x10{left:137.466655pt;}
.x12{left:139.866655pt;}
.x57{left:141.946655pt;}
.x27{left:153.626655pt;}
.x3{left:158.426655pt;}
.xf{left:161.466655pt;}
.x2{left:170.426655pt;}
.x1e{left:177.000000pt;}
.x1a{left:178.114667pt;}
.x7{left:181.786655pt;}
.x22{left:187.226667pt;}
.x1c{left:189.626667pt;}
.x21{left:192.034667pt;}
.x5a{left:217.466667pt;}
.x13{left:219.066667pt;}
.x2b{left:240.346667pt;}
.x45{left:254.306667pt;}
.x42{left:259.880000pt;}
.x41{left:262.600000pt;}
.x43{left:264.226667pt;}
.x3e{left:269.800000pt;}
.x6{left:277.346655pt;}
.x46{left:285.666667pt;}
.x24{left:286.594667pt;}
.x44{left:292.706667pt;}
.xa{left:297.506667pt;}
.x55{left:305.026667pt;}
.x1b{left:309.826667pt;}
.x14{left:313.186667pt;}
.xc{left:316.226667pt;}
.x47{left:317.346667pt;}
.x2d{left:324.066667pt;}
.x28{left:339.586655pt;}
.x48{left:349.506667pt;}
.x4{left:352.546655pt;}
.x15{left:369.986667pt;}
.xe{left:377.826667pt;}
.x49{left:382.146667pt;}
.x23{left:389.981333pt;}
.x2f{left:398.786667pt;}
.x5{left:406.466655pt;}
.x3f{left:409.666667pt;}
.x4a{left:414.306667pt;}
.x17{left:417.373333pt;}
.x40{left:433.053333pt;}
.x4b{left:445.693333pt;}
.x18{left:464.733333pt;}
.x4c{left:477.053333pt;}
.x31{left:491.293333pt;}
.x1d{left:503.773333pt;}
.x4d{left:508.413333pt;}
.x19{left:513.853333pt;}
.x56{left:522.173333pt;}
.x4e{left:539.613333pt;}
.x4f{left:570.973333pt;}
.x33{left:592.773333pt;}
.x50{left:603.013333pt;}
.x51{left:635.333333pt;}
.x52{left:666.533333pt;}
.x11{left:672.773333pt;}
}




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