
    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_d671f6aa06e497a5b7c11c3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0f602c1f95098eae3f34347c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_43198c80c41c321507fa3360.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_20601ec2d155f030f5f8bbdf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dad18353b75c9ce51dc903dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_50001ed9e4876ec75df21373.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bfb8835193ec855cee57c7f5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c0ed46af28506d912f03900.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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);}
.v1{vertical-align:-92.160000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:2.520000px;}
.ls6{letter-spacing:10.440000px;}
.ls1{letter-spacing:18.360000px;}
.ls7{letter-spacing:33.984000px;}
.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;}
}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:0.000000px;}
._2c{margin-left:-17.856000px;}
._1c{margin-left:-13.320000px;}
._37{margin-left:-5.400000px;}
._a{margin-left:-4.104000px;}
._c{margin-left:-2.808000px;}
._8{margin-left:-1.008000px;}
._3{width:1.080000px;}
._9{width:2.736000px;}
._1d{width:3.888000px;}
._1a{width:5.688000px;}
._24{width:7.272000px;}
._12{width:8.568000px;}
._4{width:9.648000px;}
._e{width:10.728000px;}
._25{width:11.880000px;}
._b{width:12.888000px;}
._d{width:14.328000px;}
._6{width:15.624000px;}
._10{width:16.776000px;}
._15{width:19.080000px;}
._18{width:20.088000px;}
._1e{width:21.312000px;}
._2e{width:22.392000px;}
._1b{width:23.616000px;}
._19{width:25.128000px;}
._7{width:26.280000px;}
._14{width:27.288000px;}
._28{width:28.296000px;}
._16{width:30.024000px;}
._0{width:31.248000px;}
._5{width:32.472000px;}
._22{width:33.552000px;}
._11{width:35.136000px;}
._34{width:36.792000px;}
._1f{width:38.592000px;}
._17{width:40.032000px;}
._3c{width:41.040000px;}
._2a{width:42.048000px;}
._26{width:43.200000px;}
._2f{width:44.712000px;}
._47{width:45.720000px;}
._13{width:46.872000px;}
._32{width:48.384000px;}
._f{width:49.392000px;}
._31{width:51.192000px;}
._2{width:52.848000px;}
._1{width:53.856000px;}
._3a{width:55.008000px;}
._21{width:56.664000px;}
._20{width:57.744000px;}
._30{width:58.752000px;}
._27{width:60.120000px;}
._2d{width:61.272000px;}
._52{width:62.424000px;}
._3b{width:63.648000px;}
._2b{width:65.232000px;}
._39{width:66.384000px;}
._23{width:68.112000px;}
._3e{width:69.264000px;}
._36{width:70.920000px;}
._53{width:71.928000px;}
._35{width:74.448000px;}
._41{width:75.528000px;}
._4c{width:76.896000px;}
._45{width:78.624000px;}
._4f{width:80.064000px;}
._3f{width:81.144000px;}
._59{width:82.872000px;}
._44{width:83.880000px;}
._29{width:85.464000px;}
._54{width:87.408000px;}
._50{width:88.992000px;}
._56{width:90.864000px;}
._5c{width:92.520000px;}
._49{width:95.184000px;}
._48{width:96.192000px;}
._46{width:98.280000px;}
._33{width:99.576000px;}
._3d{width:101.088000px;}
._5b{width:102.312000px;}
._51{width:103.536000px;}
._4e{width:106.056000px;}
._38{width:107.208000px;}
._4a{width:108.864000px;}
._58{width:110.376000px;}
._57{width:112.896000px;}
._55{width:114.696000px;}
._5a{width:115.776000px;}
._4d{width:117.288000px;}
._40{width:118.512000px;}
._42{width:133.200000px;}
._4b{width:162.792000px;}
._43{width:165.168000px;}
._5d{width:172.584000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:121.500000px;}
.y1e{bottom:121.770000px;}
.y110{bottom:121.860000px;}
.y57{bottom:126.540000px;}
.yae{bottom:126.720000px;}
.y97{bottom:126.990000px;}
.ybe{bottom:127.350000px;}
.ycc{bottom:127.620000px;}
.y72{bottom:129.690000px;}
.y7c{bottom:133.290000px;}
.y3c{bottom:140.040000px;}
.y11a{bottom:142.200000px;}
.y10f{bottom:142.560000px;}
.y1d{bottom:144.090000px;}
.yd9{bottom:144.360000px;}
.yf3{bottom:145.080000px;}
.y13f{bottom:145.260000px;}
.y121{bottom:145.890000px;}
.yb3{bottom:146.790000px;}
.y12c{bottom:147.150000px;}
.yad{bottom:147.420000px;}
.y96{bottom:147.690000px;}
.ybd{bottom:148.050000px;}
.ycb{bottom:148.320000px;}
.y71{bottom:150.390000px;}
.y3b{bottom:160.740000px;}
.y10e{bottom:163.260000px;}
.yf2{bottom:165.780000px;}
.y1c{bottom:166.500000px;}
.y12b{bottom:167.760000px;}
.yac{bottom:168.120000px;}
.y95{bottom:168.390000px;}
.yba{bottom:168.750000px;}
.yca{bottom:169.020000px;}
.y70{bottom:171.090000px;}
.y146{bottom:172.440000px;}
.y56{bottom:172.620000px;}
.y7b{bottom:174.060000px;}
.y3a{bottom:181.440000px;}
.y10d{bottom:183.960000px;}
.yd8{bottom:186.120000px;}
.yf1{bottom:186.480000px;}
.y13e{bottom:187.020000px;}
.y120{bottom:187.560000px;}
.yb2{bottom:188.460000px;}
.y1b{bottom:188.820000px;}
.y94{bottom:189.090000px;}
.yb9{bottom:189.450000px;}
.yc9{bottom:189.720000px;}
.y55{bottom:195.660000px;}
.y39{bottom:202.140000px;}
.y10c{bottom:204.660000px;}
.yf0{bottom:207.180000px;}
.y12a{bottom:209.160000px;}
.yaf{bottom:209.520000px;}
.y93{bottom:209.790000px;}
.ybb{bottom:210.060000px;}
.yb8{bottom:210.150000px;}
.yc8{bottom:210.420000px;}
.y1a{bottom:211.140000px;}
.y6f{bottom:211.860000px;}
.y145{bottom:214.110000px;}
.y7a{bottom:214.920000px;}
.y54{bottom:218.610000px;}
.y38{bottom:222.780000px;}
.y10b{bottom:225.390000px;}
.y114{bottom:225.660000px;}
.yd7{bottom:227.820000px;}
.yef{bottom:227.910000px;}
.y13d{bottom:228.720000px;}
.y11f{bottom:229.350000px;}
.y129{bottom:229.890000px;}
.yb1{bottom:230.250000px;}
.y92{bottom:230.520000px;}
.yb7{bottom:230.790000px;}
.yc7{bottom:231.150000px;}
.y6e{bottom:232.590000px;}
.y19{bottom:233.490000px;}
.y53{bottom:241.680000px;}
.y37{bottom:243.480000px;}
.y10a{bottom:246.090000px;}
.y113{bottom:246.360000px;}
.yee{bottom:248.610000px;}
.y128{bottom:250.590000px;}
.y91{bottom:251.220000px;}
.ya4{bottom:251.490000px;}
.yc1{bottom:251.850000px;}
.y6d{bottom:253.290000px;}
.y79{bottom:255.720000px;}
.y18{bottom:255.810000px;}
.y144{bottom:255.900000px;}
.y36{bottom:264.180000px;}
.y52{bottom:264.720000px;}
.y109{bottom:266.790000px;}
.y112{bottom:267.060000px;}
.yed{bottom:269.310000px;}
.yd6{bottom:269.490000px;}
.y13c{bottom:270.390000px;}
.y11e{bottom:271.020000px;}
.y127{bottom:271.290000px;}
.y90{bottom:271.920000px;}
.ya3{bottom:272.190000px;}
.yc0{bottom:272.550000px;}
.y6c{bottom:273.990000px;}
.y17{bottom:278.220000px;}
.y35{bottom:284.880000px;}
.y119{bottom:287.490000px;}
.y51{bottom:287.760000px;}
.yec{bottom:290.010000px;}
.y126{bottom:291.990000px;}
.y8f{bottom:292.620000px;}
.yab{bottom:292.890000px;}
.ybf{bottom:293.250000px;}
.y136{bottom:293.520000px;}
.y6b{bottom:294.690000px;}
.y78{bottom:296.490000px;}
.y143{bottom:297.570000px;}
.y16{bottom:300.540000px;}
.y34{bottom:305.580000px;}
.y50{bottom:306.930000px;}
.y118{bottom:308.190000px;}
.y108{bottom:308.460000px;}
.yeb{bottom:310.710000px;}
.yd5{bottom:311.250000px;}
.y13b{bottom:312.150000px;}
.y11d{bottom:312.690000px;}
.y8e{bottom:313.320000px;}
.yaa{bottom:313.590000px;}
.ya2{bottom:313.950000px;}
.y135{bottom:314.220000px;}
.y6a{bottom:315.390000px;}
.y15{bottom:322.860000px;}
.y33{bottom:328.620000px;}
.y117{bottom:328.890000px;}
.y107{bottom:329.160000px;}
.yea{bottom:331.410000px;}
.y9c{bottom:334.020000px;}
.ya9{bottom:334.290000px;}
.ya1{bottom:334.650000px;}
.y134{bottom:334.920000px;}
.y69{bottom:336.090000px;}
.y77{bottom:337.350000px;}
.y142{bottom:339.240000px;}
.y14{bottom:345.180000px;}
.y32{bottom:349.320000px;}
.y106{bottom:349.860000px;}
.ye9{bottom:352.110000px;}
.yd4{bottom:352.920000px;}
.y13a{bottom:353.820000px;}
.y11c{bottom:354.450000px;}
.y9b{bottom:354.720000px;}
.y8d{bottom:354.990000px;}
.ya0{bottom:355.350000px;}
.y133{bottom:355.620000px;}
.y68{bottom:356.790000px;}
.y13{bottom:367.500000px;}
.y4f{bottom:369.390000px;}
.y31{bottom:370.020000px;}
.y105{bottom:370.560000px;}
.y116{bottom:371.100000px;}
.ye8{bottom:372.810000px;}
.y9a{bottom:375.420000px;}
.ya8{bottom:375.690000px;}
.y9f{bottom:376.050000px;}
.y132{bottom:376.320000px;}
.y141{bottom:377.130000px;}
.y67{bottom:377.490000px;}
.y76{bottom:378.120000px;}
.y12{bottom:389.820000px;}
.y30{bottom:390.720000px;}
.y104{bottom:391.260000px;}
.y4e{bottom:392.340000px;}
.ye7{bottom:393.510000px;}
.y115{bottom:394.410000px;}
.yd3{bottom:394.590000px;}
.y139{bottom:395.490000px;}
.y99{bottom:396.120000px;}
.ya7{bottom:396.390000px;}
.y8c{bottom:396.750000px;}
.y131{bottom:397.020000px;}
.y66{bottom:398.190000px;}
.y2f{bottom:411.420000px;}
.y103{bottom:411.960000px;}
.y11{bottom:412.230000px;}
.y4d{bottom:413.040000px;}
.ye6{bottom:414.210000px;}
.y12f{bottom:416.820000px;}
.ya6{bottom:417.090000px;}
.y8b{bottom:417.450000px;}
.y130{bottom:417.720000px;}
.y65{bottom:418.890000px;}
.y2e{bottom:432.120000px;}
.y102{bottom:432.660000px;}
.y4c{bottom:433.740000px;}
.y10{bottom:434.550000px;}
.ye5{bottom:434.910000px;}
.yd2{bottom:436.350000px;}
.y138{bottom:437.250000px;}
.y12e{bottom:437.520000px;}
.y98{bottom:437.790000px;}
.y8a{bottom:438.150000px;}
.yc6{bottom:438.420000px;}
.y64{bottom:439.590000px;}
.y2d{bottom:452.820000px;}
.y101{bottom:453.360000px;}
.y4b{bottom:454.440000px;}
.yf{bottom:456.870000px;}
.y12d{bottom:458.220000px;}
.ya5{bottom:458.490000px;}
.y89{bottom:458.850000px;}
.yc5{bottom:459.120000px;}
.y75{bottom:460.290000px;}
.y2c{bottom:473.520000px;}
.y100{bottom:474.060000px;}
.ye4{bottom:476.580000px;}
.y4a{bottom:477.480000px;}
.yd1{bottom:478.020000px;}
.y137{bottom:478.920000px;}
.ye{bottom:479.190000px;}
.y88{bottom:479.550000px;}
.yc4{bottom:479.820000px;}
.y63{bottom:480.450000px;}
.y74{bottom:480.990000px;}
.y2b{bottom:494.250000px;}
.y111{bottom:495.060000px;}
.ye3{bottom:497.310000px;}
.y49{bottom:498.210000px;}
.yb0{bottom:499.920000px;}
.y87{bottom:500.280000px;}
.yc3{bottom:500.550000px;}
.y62{bottom:501.180000px;}
.yd{bottom:501.540000px;}
.y73{bottom:501.720000px;}
.y2a{bottom:514.950000px;}
.yff{bottom:515.760000px;}
.ye2{bottom:518.010000px;}
.y48{bottom:518.910000px;}
.yd0{bottom:519.720000px;}
.yb6{bottom:520.620000px;}
.y86{bottom:520.980000px;}
.yc2{bottom:521.250000px;}
.y61{bottom:521.880000px;}
.yc{bottom:523.950000px;}
.yfe{bottom:536.460000px;}
.y29{bottom:537.990000px;}
.ye1{bottom:538.710000px;}
.y47{bottom:539.610000px;}
.yb5{bottom:541.320000px;}
.y85{bottom:541.680000px;}
.ybc{bottom:541.950000px;}
.y60{bottom:542.580000px;}
.yb{bottom:546.270000px;}
.yfd{bottom:557.160000px;}
.y28{bottom:558.690000px;}
.ye0{bottom:559.410000px;}
.y46{bottom:560.310000px;}
.ycf{bottom:561.390000px;}
.y125{bottom:562.020000px;}
.y84{bottom:562.380000px;}
.y9e{bottom:562.650000px;}
.y5f{bottom:563.280000px;}
.ya{bottom:568.590000px;}
.yfc{bottom:577.860000px;}
.y27{bottom:579.390000px;}
.ydf{bottom:580.110000px;}
.y45{bottom:581.010000px;}
.y124{bottom:582.720000px;}
.yb4{bottom:582.990000px;}
.y83{bottom:583.080000px;}
.y9d{bottom:583.350000px;}
.y5e{bottom:583.980000px;}
.y9{bottom:590.910000px;}
.yfb{bottom:598.560000px;}
.y26{bottom:600.090000px;}
.yde{bottom:600.810000px;}
.yce{bottom:603.150000px;}
.y123{bottom:603.420000px;}
.y82{bottom:603.690000px;}
.y44{bottom:604.050000px;}
.y5d{bottom:604.590000px;}
.y8{bottom:613.230000px;}
.yfa{bottom:619.260000px;}
.y25{bottom:620.790000px;}
.ydd{bottom:621.510000px;}
.y122{bottom:624.120000px;}
.y81{bottom:624.390000px;}
.y43{bottom:624.750000px;}
.y5c{bottom:625.290000px;}
.y7{bottom:635.640000px;}
.yf9{bottom:639.960000px;}
.y24{bottom:641.490000px;}
.ydc{bottom:642.210000px;}
.ycd{bottom:644.820000px;}
.y80{bottom:645.090000px;}
.y42{bottom:645.450000px;}
.y5b{bottom:645.990000px;}
.y6{bottom:657.960000px;}
.yf8{bottom:660.660000px;}
.y23{bottom:662.190000px;}
.ydb{bottom:662.910000px;}
.y7f{bottom:665.790000px;}
.y41{bottom:666.150000px;}
.y5a{bottom:666.690000px;}
.y5{bottom:680.280000px;}
.yf7{bottom:681.360000px;}
.y22{bottom:682.890000px;}
.y7e{bottom:686.490000px;}
.y40{bottom:686.850000px;}
.y59{bottom:687.390000px;}
.yf6{bottom:702.060000px;}
.y4{bottom:702.600000px;}
.y21{bottom:703.590000px;}
.yda{bottom:705.120000px;}
.y7d{bottom:707.190000px;}
.y3f{bottom:707.550000px;}
.y58{bottom:708.090000px;}
.y20{bottom:724.290000px;}
.y3{bottom:724.920000px;}
.y140{bottom:727.890000px;}
.y3e{bottom:728.250000px;}
.yf5{bottom:744.270000px;}
.y2{bottom:747.240000px;}
.y3d{bottom:748.950000px;}
.yf4{bottom:767.610000px;}
.y1{bottom:769.590000px;}
.y1f{bottom:769.680000px;}
.h6{height:58.429688px;}
.h5{height:64.546875px;}
.h3{height:70.628906px;}
.h4{height:70.664062px;}
.h7{height:72.562500px;}
.h2{height:74.004654px;}
.h8{height:79.457520px;}
.h9{height:81.632812px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w2{width:595.259991px;}
.w0{width:595.260000px;}
.w1{width:595.500000px;}
.x0{left:0.000000px;}
.x2{left:126.479991px;}
.x1{left:127.649991px;}
.x4{left:154.649991px;}
.x5{left:181.649991px;}
.x6{left:284.609991px;}
.x3{left:468.509991px;}
@media print{
.v1{vertical-align:-81.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:2.240000pt;}
.ls6{letter-spacing:9.280000pt;}
.ls1{letter-spacing:16.320000pt;}
.ls7{letter-spacing:30.208000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:0.000000pt;}
._2c{margin-left:-15.872000pt;}
._1c{margin-left:-11.840000pt;}
._37{margin-left:-4.800000pt;}
._a{margin-left:-3.648000pt;}
._c{margin-left:-2.496000pt;}
._8{margin-left:-0.896000pt;}
._3{width:0.960000pt;}
._9{width:2.432000pt;}
._1d{width:3.456000pt;}
._1a{width:5.056000pt;}
._24{width:6.464000pt;}
._12{width:7.616000pt;}
._4{width:8.576000pt;}
._e{width:9.536000pt;}
._25{width:10.560000pt;}
._b{width:11.456000pt;}
._d{width:12.736000pt;}
._6{width:13.888000pt;}
._10{width:14.912000pt;}
._15{width:16.960000pt;}
._18{width:17.856000pt;}
._1e{width:18.944000pt;}
._2e{width:19.904000pt;}
._1b{width:20.992000pt;}
._19{width:22.336000pt;}
._7{width:23.360000pt;}
._14{width:24.256000pt;}
._28{width:25.152000pt;}
._16{width:26.688000pt;}
._0{width:27.776000pt;}
._5{width:28.864000pt;}
._22{width:29.824000pt;}
._11{width:31.232000pt;}
._34{width:32.704000pt;}
._1f{width:34.304000pt;}
._17{width:35.584000pt;}
._3c{width:36.480000pt;}
._2a{width:37.376000pt;}
._26{width:38.400000pt;}
._2f{width:39.744000pt;}
._47{width:40.640000pt;}
._13{width:41.664000pt;}
._32{width:43.008000pt;}
._f{width:43.904000pt;}
._31{width:45.504000pt;}
._2{width:46.976000pt;}
._1{width:47.872000pt;}
._3a{width:48.896000pt;}
._21{width:50.368000pt;}
._20{width:51.328000pt;}
._30{width:52.224000pt;}
._27{width:53.440000pt;}
._2d{width:54.464000pt;}
._52{width:55.488000pt;}
._3b{width:56.576000pt;}
._2b{width:57.984000pt;}
._39{width:59.008000pt;}
._23{width:60.544000pt;}
._3e{width:61.568000pt;}
._36{width:63.040000pt;}
._53{width:63.936000pt;}
._35{width:66.176000pt;}
._41{width:67.136000pt;}
._4c{width:68.352000pt;}
._45{width:69.888000pt;}
._4f{width:71.168000pt;}
._3f{width:72.128000pt;}
._59{width:73.664000pt;}
._44{width:74.560000pt;}
._29{width:75.968000pt;}
._54{width:77.696000pt;}
._50{width:79.104000pt;}
._56{width:80.768000pt;}
._5c{width:82.240000pt;}
._49{width:84.608000pt;}
._48{width:85.504000pt;}
._46{width:87.360000pt;}
._33{width:88.512000pt;}
._3d{width:89.856000pt;}
._5b{width:90.944000pt;}
._51{width:92.032000pt;}
._4e{width:94.272000pt;}
._38{width:95.296000pt;}
._4a{width:96.768000pt;}
._58{width:98.112000pt;}
._57{width:100.352000pt;}
._55{width:101.952000pt;}
._5a{width:102.912000pt;}
._4d{width:104.256000pt;}
._40{width:105.344000pt;}
._42{width:118.400000pt;}
._4b{width:144.704000pt;}
._43{width:146.816000pt;}
._5d{width:153.408000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:108.000000pt;}
.y1e{bottom:108.240000pt;}
.y110{bottom:108.320000pt;}
.y57{bottom:112.480000pt;}
.yae{bottom:112.640000pt;}
.y97{bottom:112.880000pt;}
.ybe{bottom:113.200000pt;}
.ycc{bottom:113.440000pt;}
.y72{bottom:115.280000pt;}
.y7c{bottom:118.480000pt;}
.y3c{bottom:124.480000pt;}
.y11a{bottom:126.400000pt;}
.y10f{bottom:126.720000pt;}
.y1d{bottom:128.080000pt;}
.yd9{bottom:128.320000pt;}
.yf3{bottom:128.960000pt;}
.y13f{bottom:129.120000pt;}
.y121{bottom:129.680000pt;}
.yb3{bottom:130.480000pt;}
.y12c{bottom:130.800000pt;}
.yad{bottom:131.040000pt;}
.y96{bottom:131.280000pt;}
.ybd{bottom:131.600000pt;}
.ycb{bottom:131.840000pt;}
.y71{bottom:133.680000pt;}
.y3b{bottom:142.880000pt;}
.y10e{bottom:145.120000pt;}
.yf2{bottom:147.360000pt;}
.y1c{bottom:148.000000pt;}
.y12b{bottom:149.120000pt;}
.yac{bottom:149.440000pt;}
.y95{bottom:149.680000pt;}
.yba{bottom:150.000000pt;}
.yca{bottom:150.240000pt;}
.y70{bottom:152.080000pt;}
.y146{bottom:153.280000pt;}
.y56{bottom:153.440000pt;}
.y7b{bottom:154.720000pt;}
.y3a{bottom:161.280000pt;}
.y10d{bottom:163.520000pt;}
.yd8{bottom:165.440000pt;}
.yf1{bottom:165.760000pt;}
.y13e{bottom:166.240000pt;}
.y120{bottom:166.720000pt;}
.yb2{bottom:167.520000pt;}
.y1b{bottom:167.840000pt;}
.y94{bottom:168.080000pt;}
.yb9{bottom:168.400000pt;}
.yc9{bottom:168.640000pt;}
.y55{bottom:173.920000pt;}
.y39{bottom:179.680000pt;}
.y10c{bottom:181.920000pt;}
.yf0{bottom:184.160000pt;}
.y12a{bottom:185.920000pt;}
.yaf{bottom:186.240000pt;}
.y93{bottom:186.480000pt;}
.ybb{bottom:186.720000pt;}
.yb8{bottom:186.800000pt;}
.yc8{bottom:187.040000pt;}
.y1a{bottom:187.680000pt;}
.y6f{bottom:188.320000pt;}
.y145{bottom:190.320000pt;}
.y7a{bottom:191.040000pt;}
.y54{bottom:194.320000pt;}
.y38{bottom:198.026667pt;}
.y10b{bottom:200.346667pt;}
.y114{bottom:200.586667pt;}
.yd7{bottom:202.506667pt;}
.yef{bottom:202.586667pt;}
.y13d{bottom:203.306667pt;}
.y11f{bottom:203.866667pt;}
.y129{bottom:204.346667pt;}
.yb1{bottom:204.666667pt;}
.y92{bottom:204.906667pt;}
.yb7{bottom:205.146667pt;}
.yc7{bottom:205.466667pt;}
.y6e{bottom:206.746667pt;}
.y19{bottom:207.546667pt;}
.y53{bottom:214.826667pt;}
.y37{bottom:216.426667pt;}
.y10a{bottom:218.746667pt;}
.y113{bottom:218.986667pt;}
.yee{bottom:220.986667pt;}
.y128{bottom:222.746667pt;}
.y91{bottom:223.306667pt;}
.ya4{bottom:223.546667pt;}
.yc1{bottom:223.866667pt;}
.y6d{bottom:225.146667pt;}
.y79{bottom:227.306667pt;}
.y18{bottom:227.386667pt;}
.y144{bottom:227.466667pt;}
.y36{bottom:234.826667pt;}
.y52{bottom:235.306667pt;}
.y109{bottom:237.146667pt;}
.y112{bottom:237.386667pt;}
.yed{bottom:239.386667pt;}
.yd6{bottom:239.546667pt;}
.y13c{bottom:240.346667pt;}
.y11e{bottom:240.906667pt;}
.y127{bottom:241.146667pt;}
.y90{bottom:241.706667pt;}
.ya3{bottom:241.946667pt;}
.yc0{bottom:242.266667pt;}
.y6c{bottom:243.546667pt;}
.y17{bottom:247.306667pt;}
.y35{bottom:253.226667pt;}
.y119{bottom:255.546667pt;}
.y51{bottom:255.786667pt;}
.yec{bottom:257.786667pt;}
.y126{bottom:259.546667pt;}
.y8f{bottom:260.106667pt;}
.yab{bottom:260.346667pt;}
.ybf{bottom:260.666667pt;}
.y136{bottom:260.906667pt;}
.y6b{bottom:261.946667pt;}
.y78{bottom:263.546667pt;}
.y143{bottom:264.506667pt;}
.y16{bottom:267.146667pt;}
.y34{bottom:271.626667pt;}
.y50{bottom:272.826667pt;}
.y118{bottom:273.946667pt;}
.y108{bottom:274.186667pt;}
.yeb{bottom:276.186667pt;}
.yd5{bottom:276.666667pt;}
.y13b{bottom:277.466667pt;}
.y11d{bottom:277.946667pt;}
.y8e{bottom:278.506667pt;}
.yaa{bottom:278.746667pt;}
.ya2{bottom:279.066667pt;}
.y135{bottom:279.306667pt;}
.y6a{bottom:280.346667pt;}
.y15{bottom:286.986667pt;}
.y33{bottom:292.106667pt;}
.y117{bottom:292.346667pt;}
.y107{bottom:292.586667pt;}
.yea{bottom:294.586667pt;}
.y9c{bottom:296.906667pt;}
.ya9{bottom:297.146667pt;}
.ya1{bottom:297.466667pt;}
.y134{bottom:297.706667pt;}
.y69{bottom:298.746667pt;}
.y77{bottom:299.866667pt;}
.y142{bottom:301.546667pt;}
.y14{bottom:306.826667pt;}
.y32{bottom:310.506667pt;}
.y106{bottom:310.986667pt;}
.ye9{bottom:312.986667pt;}
.yd4{bottom:313.706667pt;}
.y13a{bottom:314.506667pt;}
.y11c{bottom:315.066667pt;}
.y9b{bottom:315.306667pt;}
.y8d{bottom:315.546667pt;}
.ya0{bottom:315.866667pt;}
.y133{bottom:316.106667pt;}
.y68{bottom:317.146667pt;}
.y13{bottom:326.666667pt;}
.y4f{bottom:328.346667pt;}
.y31{bottom:328.906667pt;}
.y105{bottom:329.386667pt;}
.y116{bottom:329.866667pt;}
.ye8{bottom:331.386667pt;}
.y9a{bottom:333.706667pt;}
.ya8{bottom:333.946667pt;}
.y9f{bottom:334.266667pt;}
.y132{bottom:334.506667pt;}
.y141{bottom:335.226667pt;}
.y67{bottom:335.546667pt;}
.y76{bottom:336.106667pt;}
.y12{bottom:346.506667pt;}
.y30{bottom:347.306667pt;}
.y104{bottom:347.786667pt;}
.y4e{bottom:348.746667pt;}
.ye7{bottom:349.786667pt;}
.y115{bottom:350.586667pt;}
.yd3{bottom:350.746667pt;}
.y139{bottom:351.546667pt;}
.y99{bottom:352.106667pt;}
.ya7{bottom:352.346667pt;}
.y8c{bottom:352.666667pt;}
.y131{bottom:352.906667pt;}
.y66{bottom:353.946667pt;}
.y2f{bottom:365.706667pt;}
.y103{bottom:366.186667pt;}
.y11{bottom:366.426667pt;}
.y4d{bottom:367.146667pt;}
.ye6{bottom:368.186667pt;}
.y12f{bottom:370.506667pt;}
.ya6{bottom:370.746667pt;}
.y8b{bottom:371.066667pt;}
.y130{bottom:371.306667pt;}
.y65{bottom:372.346667pt;}
.y2e{bottom:384.106667pt;}
.y102{bottom:384.586667pt;}
.y4c{bottom:385.546667pt;}
.y10{bottom:386.266667pt;}
.ye5{bottom:386.586667pt;}
.yd2{bottom:387.866667pt;}
.y138{bottom:388.666667pt;}
.y12e{bottom:388.906667pt;}
.y98{bottom:389.146667pt;}
.y8a{bottom:389.466667pt;}
.yc6{bottom:389.706667pt;}
.y64{bottom:390.746667pt;}
.y2d{bottom:402.506667pt;}
.y101{bottom:402.986667pt;}
.y4b{bottom:403.946667pt;}
.yf{bottom:406.106667pt;}
.y12d{bottom:407.306667pt;}
.ya5{bottom:407.546667pt;}
.y89{bottom:407.866667pt;}
.yc5{bottom:408.106667pt;}
.y75{bottom:409.146667pt;}
.y2c{bottom:420.906667pt;}
.y100{bottom:421.386667pt;}
.ye4{bottom:423.626667pt;}
.y4a{bottom:424.426667pt;}
.yd1{bottom:424.906667pt;}
.y137{bottom:425.706667pt;}
.ye{bottom:425.946667pt;}
.y88{bottom:426.266667pt;}
.yc4{bottom:426.506667pt;}
.y63{bottom:427.066667pt;}
.y74{bottom:427.546667pt;}
.y2b{bottom:439.333333pt;}
.y111{bottom:440.053333pt;}
.ye3{bottom:442.053333pt;}
.y49{bottom:442.853333pt;}
.yb0{bottom:444.373333pt;}
.y87{bottom:444.693333pt;}
.yc3{bottom:444.933333pt;}
.y62{bottom:445.493333pt;}
.yd{bottom:445.813333pt;}
.y73{bottom:445.973333pt;}
.y2a{bottom:457.733333pt;}
.yff{bottom:458.453333pt;}
.ye2{bottom:460.453333pt;}
.y48{bottom:461.253333pt;}
.yd0{bottom:461.973333pt;}
.yb6{bottom:462.773333pt;}
.y86{bottom:463.093333pt;}
.yc2{bottom:463.333333pt;}
.y61{bottom:463.893333pt;}
.yc{bottom:465.733333pt;}
.yfe{bottom:476.853333pt;}
.y29{bottom:478.213333pt;}
.ye1{bottom:478.853333pt;}
.y47{bottom:479.653333pt;}
.yb5{bottom:481.173333pt;}
.y85{bottom:481.493333pt;}
.ybc{bottom:481.733333pt;}
.y60{bottom:482.293333pt;}
.yb{bottom:485.573333pt;}
.yfd{bottom:495.253333pt;}
.y28{bottom:496.613333pt;}
.ye0{bottom:497.253333pt;}
.y46{bottom:498.053333pt;}
.ycf{bottom:499.013333pt;}
.y125{bottom:499.573333pt;}
.y84{bottom:499.893333pt;}
.y9e{bottom:500.133333pt;}
.y5f{bottom:500.693333pt;}
.ya{bottom:505.413333pt;}
.yfc{bottom:513.653333pt;}
.y27{bottom:515.013333pt;}
.ydf{bottom:515.653333pt;}
.y45{bottom:516.453333pt;}
.y124{bottom:517.973333pt;}
.yb4{bottom:518.213333pt;}
.y83{bottom:518.293333pt;}
.y9d{bottom:518.533333pt;}
.y5e{bottom:519.093333pt;}
.y9{bottom:525.253333pt;}
.yfb{bottom:532.053333pt;}
.y26{bottom:533.413333pt;}
.yde{bottom:534.053333pt;}
.yce{bottom:536.133333pt;}
.y123{bottom:536.373333pt;}
.y82{bottom:536.613333pt;}
.y44{bottom:536.933333pt;}
.y5d{bottom:537.413333pt;}
.y8{bottom:545.093333pt;}
.yfa{bottom:550.453333pt;}
.y25{bottom:551.813333pt;}
.ydd{bottom:552.453333pt;}
.y122{bottom:554.773333pt;}
.y81{bottom:555.013333pt;}
.y43{bottom:555.333333pt;}
.y5c{bottom:555.813333pt;}
.y7{bottom:565.013333pt;}
.yf9{bottom:568.853333pt;}
.y24{bottom:570.213333pt;}
.ydc{bottom:570.853333pt;}
.ycd{bottom:573.173333pt;}
.y80{bottom:573.413333pt;}
.y42{bottom:573.733333pt;}
.y5b{bottom:574.213333pt;}
.y6{bottom:584.853333pt;}
.yf8{bottom:587.253333pt;}
.y23{bottom:588.613333pt;}
.ydb{bottom:589.253333pt;}
.y7f{bottom:591.813333pt;}
.y41{bottom:592.133333pt;}
.y5a{bottom:592.613333pt;}
.y5{bottom:604.693333pt;}
.yf7{bottom:605.653333pt;}
.y22{bottom:607.013333pt;}
.y7e{bottom:610.213333pt;}
.y40{bottom:610.533333pt;}
.y59{bottom:611.013333pt;}
.yf6{bottom:624.053333pt;}
.y4{bottom:624.533333pt;}
.y21{bottom:625.413333pt;}
.yda{bottom:626.773333pt;}
.y7d{bottom:628.613333pt;}
.y3f{bottom:628.933333pt;}
.y58{bottom:629.413333pt;}
.y20{bottom:643.813333pt;}
.y3{bottom:644.373333pt;}
.y140{bottom:647.013333pt;}
.y3e{bottom:647.333333pt;}
.yf5{bottom:661.573333pt;}
.y2{bottom:664.213333pt;}
.y3d{bottom:665.733333pt;}
.yf4{bottom:682.320000pt;}
.y1{bottom:684.080000pt;}
.y1f{bottom:684.160000pt;}
.h6{height:51.937500pt;}
.h5{height:57.375000pt;}
.h3{height:62.781250pt;}
.h4{height:62.812500pt;}
.h7{height:64.500000pt;}
.h2{height:65.781915pt;}
.h8{height:70.628906pt;}
.h9{height:72.562500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w2{width:529.119992pt;}
.w0{width:529.120000pt;}
.w1{width:529.333333pt;}
.x0{left:0.000000pt;}
.x2{left:112.426659pt;}
.x1{left:113.466659pt;}
.x4{left:137.466659pt;}
.x5{left:161.466659pt;}
.x6{left:252.986659pt;}
.x3{left:416.453325pt;}
}




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