
    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_5368dab2f40e6a149d3a4143.woff')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_eca0fc258ec9e1a3dfdeac1e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7b141217dddb322e2fc680a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_93ac8c987917a2cfabec80f2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_4bc093f093e27301e18ab5f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_1de8429891b8bbf0b0b38a94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.128906;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-3.072000px;}
.ls13{letter-spacing:-0.984000px;}
.ls3{letter-spacing:-0.606000px;}
.ls8{letter-spacing:-0.573000px;}
.ls16{letter-spacing:-0.535800px;}
.ls14{letter-spacing:-0.526800px;}
.ls18{letter-spacing:-0.313800px;}
.ls5{letter-spacing:-0.265200px;}
.ls15{letter-spacing:-0.224400px;}
.ls10{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.054720px;}
.lsc{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.031680px;}
.ls6{letter-spacing:0.037440px;}
.ls17{letter-spacing:0.094800px;}
.ls2{letter-spacing:0.115200px;}
.lsb{letter-spacing:0.147000px;}
.lse{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.296400px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:53.876160px;}
.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:-66.240000px;}
.ws0{word-spacing:-37.358160px;}
.ws2{word-spacing:-16.323840px;}
.ws7{word-spacing:-16.260240px;}
.ws13{word-spacing:-16.110840px;}
.ws10{word-spacing:-16.058640px;}
.ws4{word-spacing:-16.001280px;}
.ws5{word-spacing:-15.995520px;}
.ws1{word-spacing:-15.963840px;}
.ws6{word-spacing:-15.909120px;}
.wsf{word-spacing:-15.739440px;}
.ws3{word-spacing:-15.698640px;}
.ws12{word-spacing:-15.650040px;}
.wse{word-spacing:-15.437040px;}
.wsa{word-spacing:-13.266000px;}
.wsd{word-spacing:-13.014000px;}
.wsb{word-spacing:-12.924000px;}
.wsc{word-spacing:-12.852000px;}
.ws9{word-spacing:-12.186000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-11.072160px;}
._2{margin-left:-9.730080px;}
._8{margin-left:-4.504320px;}
._0{margin-left:-3.187440px;}
._1{margin-left:-1.845360px;}
._4{width:1.460400px;}
._d{width:2.763360px;}
._7{width:4.040640px;}
._c{width:5.232960px;}
._22{width:6.690240px;}
._21{width:7.882560px;}
._26{width:9.148560px;}
._13{width:10.257840px;}
._f{width:11.525760px;}
._e{width:12.576240px;}
._1e{width:13.815360px;}
._2e{width:14.857920px;}
._11{width:17.686080px;}
._23{width:19.001520px;}
._6{width:20.269440px;}
._5{width:21.395520px;}
._30{width:22.446000px;}
._18{width:23.448960px;}
._1d{width:24.462480px;}
._10{width:25.833600px;}
._20{width:27.195600px;}
._1f{width:28.625520px;}
._2b{width:30.934080px;}
._1b{width:32.325120px;}
._38{width:34.567920px;}
._b{width:35.570880px;}
._12{width:37.359360px;}
._31{width:39.592800px;}
._2a{width:40.671360px;}
._28{width:41.863680px;}
._2f{width:42.923520px;}
._32{width:44.817600px;}
._24{width:45.970560px;}
._25{width:47.030400px;}
._14{width:48.421440px;}
._2c{width:50.080320px;}
._2d{width:51.323760px;}
._34{width:52.746240px;}
._35{width:53.984880px;}
._9{width:55.376640px;}
._a{width:56.879040px;}
._19{width:58.342080px;}
._1a{width:59.820720px;}
._29{width:60.877440px;}
._33{width:66.071280px;}
._17{width:73.393920px;}
._16{width:89.556480px;}
._15{width:90.805680px;}
._1c{width:95.710080px;}
._27{width:121.351680px;}
._36{width:325.569600px;}
._37{width:326.620080px;}
.fc1{color:rgb(47,84,150);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:7.920000px;}
.y99{bottom:9.360000px;}
.y90{bottom:9.540000px;}
.ya1{bottom:9.900000px;}
.yb4{bottom:14.400000px;}
.y8c{bottom:16.020000px;}
.yb0{bottom:21.060000px;}
.y96{bottom:22.500000px;}
.yaa{bottom:22.530000px;}
.y8f{bottom:22.680000px;}
.ya0{bottom:23.040000px;}
.yb3{bottom:27.540000px;}
.y97{bottom:29.160000px;}
.ya8{bottom:29.700000px;}
.yaf{bottom:34.200000px;}
.y98{bottom:35.640000px;}
.yab{bottom:35.670000px;}
.yac{bottom:35.820000px;}
.y9f{bottom:36.180000px;}
.yb2{bottom:40.680000px;}
.ya7{bottom:42.840000px;}
.yae{bottom:47.340000px;}
.y9e{bottom:49.320000px;}
.ya6{bottom:55.800000px;}
.y1{bottom:57.420000px;}
.y9d{bottom:62.460000px;}
.ya5{bottom:68.940000px;}
.y9c{bottom:75.600000px;}
.y9b{bottom:88.740000px;}
.ybb{bottom:102.645000px;}
.yb9{bottom:109.620000px;}
.y33{bottom:118.620000px;}
.yb8{bottom:122.760000px;}
.y5a{bottom:127.080000px;}
.yb7{bottom:135.900000px;}
.y32{bottom:136.080000px;}
.y59{bottom:144.360000px;}
.yb6{bottom:149.040000px;}
.y89{bottom:150.480000px;}
.y31{bottom:153.390000px;}
.y94{bottom:155.010000px;}
.y58{bottom:161.850000px;}
.y30{bottom:170.670000px;}
.y88{bottom:176.970000px;}
.y57{bottom:179.670000px;}
.y2f{bottom:188.130000px;}
.ybf{bottom:191.910000px;}
.y2e{bottom:205.410000px;}
.y106{bottom:218.190000px;}
.y56{bottom:219.630000px;}
.y10d{bottom:221.970000px;}
.y84{bottom:225.390000px;}
.y2d{bottom:234.750000px;}
.y105{bottom:235.470000px;}
.y10c{bottom:239.250000px;}
.y55{bottom:245.010000px;}
.yb5{bottom:245.190000px;}
.y83{bottom:251.850000px;}
.y2c{bottom:252.030000px;}
.y104{bottom:252.930000px;}
.y10b{bottom:256.710000px;}
.y2b{bottom:269.310000px;}
.y103{bottom:270.210000px;}
.y10a{bottom:273.990000px;}
.y54{bottom:286.050000px;}
.y2a{bottom:286.770000px;}
.y102{bottom:287.490000px;}
.yba{bottom:298.470000px;}
.y53{bottom:303.330000px;}
.y29{bottom:304.050000px;}
.y101{bottom:304.770000px;}
.y109{bottom:320.610000px;}
.y28{bottom:321.330000px;}
.y100{bottom:324.390000px;}
.y52{bottom:332.670000px;}
.y108{bottom:337.890000px;}
.y27{bottom:338.610000px;}
.yff{bottom:349.590000px;}
.y51{bottom:349.950000px;}
.ybe{bottom:351.930000px;}
.y107{bottom:355.350000px;}
.y26{bottom:356.070000px;}
.y50{bottom:367.410000px;}
.y25{bottom:373.350000px;}
.yfe{bottom:385.590000px;}
.y24{bottom:390.630000px;}
.y4f{bottom:396.570000px;}
.ybd{bottom:405.255000px;}
.y23{bottom:407.955000px;}
.yfd{bottom:409.575000px;}
.y4e{bottom:414.075000px;}
.y22{bottom:425.415000px;}
.y4d{bottom:431.355000px;}
.y4c{bottom:448.635000px;}
.y21{bottom:454.755000px;}
.ybc{bottom:458.535000px;}
.y4b{bottom:466.095000px;}
.ye2{bottom:468.075000px;}
.yfc{bottom:470.775000px;}
.y20{bottom:472.035000px;}
.y4a{bottom:483.375000px;}
.ye1{bottom:485.355000px;}
.yfb{bottom:488.055000px;}
.y1f{bottom:489.315000px;}
.y87{bottom:491.475000px;}
.y49{bottom:500.655000px;}
.ye0{bottom:502.635000px;}
.yfa{bottom:505.515000px;}
.y1e{bottom:506.595000px;}
.yad{bottom:511.815000px;}
.y48{bottom:517.935000px;}
.ydf{bottom:519.915000px;}
.yf9{bottom:522.795000px;}
.y1d{bottom:524.055000px;}
.y47{bottom:535.395000px;}
.yde{bottom:537.375000px;}
.y1c{bottom:541.335000px;}
.yf8{bottom:552.135000px;}
.y46{bottom:552.675000px;}
.ydd{bottom:554.655000px;}
.y126{bottom:555.375000px;}
.y1b{bottom:558.615000px;}
.y45{bottom:569.955000px;}
.ydc{bottom:572.655000px;}
.ya4{bottom:574.995000px;}
.y1a{bottom:575.895000px;}
.yf7{bottom:581.475000px;}
.y125{bottom:584.715000px;}
.y44{bottom:587.235000px;}
.y19{bottom:593.355000px;}
.yf6{bottom:598.755000px;}
.y124{bottom:601.995000px;}
.ydb{bottom:604.515000px;}
.y43{bottom:604.695000px;}
.y18{bottom:610.635000px;}
.yf5{bottom:616.035000px;}
.y123{bottom:619.455000px;}
.yda{bottom:621.795000px;}
.y42{bottom:621.975000px;}
.y17{bottom:627.915000px;}
.ya9{bottom:628.455000px;}
.yf4{bottom:633.315000px;}
.yd9{bottom:639.075000px;}
.y41{bottom:639.255000px;}
.y16{bottom:645.375000px;}
.y122{bottom:648.795000px;}
.yd8{bottom:656.385000px;}
.y15{bottom:662.685000px;}
.y121{bottom:666.105000px;}
.y40{bottom:668.625000px;}
.yd7{bottom:673.845000px;}
.y14{bottom:679.965000px;}
.yf3{bottom:680.145000px;}
.ya3{bottom:681.765000px;}
.y120{bottom:683.385000px;}
.y3f{bottom:685.905000px;}
.yd6{bottom:691.125000px;}
.y13{bottom:697.245000px;}
.y3e{bottom:703.365000px;}
.yd5{bottom:708.405000px;}
.yf2{bottom:709.485000px;}
.y11f{bottom:712.725000px;}
.y12{bottom:714.705000px;}
.y3d{bottom:720.645000px;}
.yd4{bottom:725.685000px;}
.yf1{bottom:726.765000px;}
.y11e{bottom:730.005000px;}
.y11{bottom:731.985000px;}
.y9a{bottom:735.045000px;}
.y3c{bottom:737.925000px;}
.yd3{bottom:743.145000px;}
.yf0{bottom:744.045000px;}
.y82{bottom:746.025000px;}
.y11d{bottom:747.465000px;}
.y10{bottom:749.265000px;}
.y71{bottom:754.485000px;}
.y3b{bottom:755.205000px;}
.yd2{bottom:760.425000px;}
.yef{bottom:761.325000px;}
.y81{bottom:763.305000px;}
.y11c{bottom:764.745000px;}
.yf{bottom:766.545000px;}
.y70{bottom:771.765000px;}
.y3a{bottom:772.665000px;}
.yd1{bottom:777.705000px;}
.yee{bottom:778.785000px;}
.y80{bottom:780.585000px;}
.ye{bottom:784.005000px;}
.ya2{bottom:788.325000px;}
.y6f{bottom:789.225000px;}
.y39{bottom:789.945000px;}
.y11b{bottom:794.085000px;}
.yd0{bottom:795.165000px;}
.yed{bottom:796.065000px;}
.y7f{bottom:798.045000px;}
.yd{bottom:801.285000px;}
.y38{bottom:807.225000px;}
.y11a{bottom:811.365000px;}
.ycf{bottom:812.445000px;}
.yec{bottom:813.345000px;}
.y7e{bottom:815.325000px;}
.yc{bottom:818.565000px;}
.y119{bottom:828.645000px;}
.yce{bottom:829.725000px;}
.yeb{bottom:830.625000px;}
.y86{bottom:832.065000px;}
.y7d{bottom:832.605000px;}
.yb{bottom:835.845000px;}
.y95{bottom:841.785000px;}
.y37{bottom:844.665000px;}
.ycd{bottom:847.725000px;}
.yea{bottom:848.085000px;}
.y7c{bottom:850.065000px;}
.y6e{bottom:853.125000px;}
.ya{bottom:853.305000px;}
.y118{bottom:857.985000px;}
.y85{bottom:858.705000px;}
.ye9{bottom:865.365000px;}
.y7b{bottom:867.345000px;}
.y6d{bottom:870.405000px;}
.y117{bottom:875.265000px;}
.ycc{bottom:879.585000px;}
.y36{bottom:879.765000px;}
.ye8{bottom:882.645000px;}
.y7a{bottom:884.625000px;}
.y6c{bottom:887.865000px;}
.y9{bottom:890.745000px;}
.y116{bottom:892.725000px;}
.ycb{bottom:896.865000px;}
.y35{bottom:897.045000px;}
.y79{bottom:901.950000px;}
.y6b{bottom:905.190000px;}
.y115{bottom:910.050000px;}
.yca{bottom:914.190000px;}
.y34{bottom:914.550000px;}
.y78{bottom:919.410000px;}
.ye7{bottom:920.130000px;}
.y93{bottom:920.310000px;}
.y6a{bottom:922.470000px;}
.yc9{bottom:931.650000px;}
.y77{bottom:936.690000px;}
.y114{bottom:939.390000px;}
.y69{bottom:939.750000px;}
.y8{bottom:943.890000px;}
.ye6{bottom:945.510000px;}
.yc8{bottom:948.930000px;}
.y92{bottom:949.110000px;}
.y76{bottom:953.970000px;}
.y113{bottom:956.670000px;}
.y68{bottom:957.210000px;}
.y91{bottom:962.790000px;}
.yc7{bottom:966.210000px;}
.y75{bottom:971.250000px;}
.y7{bottom:973.230000px;}
.y112{bottom:973.950000px;}
.y67{bottom:974.490000px;}
.yc6{bottom:983.490000px;}
.ye5{bottom:986.550000px;}
.y74{bottom:988.710000px;}
.y6{bottom:990.510000px;}
.y66{bottom:991.770000px;}
.yc5{bottom:1000.950000px;}
.y8e{bottom:1002.930000px;}
.y111{bottom:1003.290000px;}
.ye4{bottom:1003.830000px;}
.y73{bottom:1006.530000px;}
.y65{bottom:1009.050000px;}
.yc4{bottom:1018.230000px;}
.y5{bottom:1019.850000px;}
.y110{bottom:1020.750000px;}
.ye3{bottom:1021.110000px;}
.y64{bottom:1026.510000px;}
.yc3{bottom:1035.510000px;}
.y10f{bottom:1038.030000px;}
.y72{bottom:1038.390000px;}
.y4{bottom:1041.450000px;}
.y8d{bottom:1043.070000px;}
.yc2{bottom:1053.510000px;}
.y63{bottom:1055.850000px;}
.y62{bottom:1073.130000px;}
.y10e{bottom:1075.470000px;}
.y3{bottom:1082.310000px;}
.y8b{bottom:1083.210000px;}
.y61{bottom:1090.410000px;}
.yc1{bottom:1093.470000px;}
.y60{bottom:1107.690000px;}
.yc0{bottom:1118.670000px;}
.y2{bottom:1123.170000px;}
.y5f{bottom:1125.150000px;}
.y8a{bottom:1141.890000px;}
.y5e{bottom:1142.430000px;}
.y5d{bottom:1159.920000px;}
.y5c{bottom:1180.080000px;}
.y5b{bottom:1198.620000px;}
.h9{height:39.420000px;}
.ha{height:40.816406px;}
.h8{height:41.238281px;}
.h7{height:49.253906px;}
.hb{height:52.560000px;}
.he{height:52.596000px;}
.h12{height:52.740000px;}
.h2{height:60.418125px;}
.hf{height:62.460000px;}
.h4{height:65.884219px;}
.h6{height:70.925625px;}
.h5{height:87.343594px;}
.hc{height:105.840000px;}
.hd{height:106.056000px;}
.h3{height:153.015469px;}
.h11{height:212.610000px;}
.h10{height:265.890000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:70.776000px;}
.w9{width:77.940000px;}
.w8{width:93.456000px;}
.wb{width:93.960000px;}
.w5{width:95.040000px;}
.wd{width:107.280000px;}
.w7{width:114.840000px;}
.wa{width:115.776000px;}
.w3{width:169.050000px;}
.w6{width:200.370000px;}
.w4{width:211.890000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x2{left:108.035987px;}
.x6{left:182.549987px;}
.xb{left:224.310000px;}
.x8{left:278.535000px;}
.x12{left:310.034987px;}
.xc{left:318.495000px;}
.xd{left:397.155000px;}
.x3{left:473.504987px;}
.x9{left:491.145000px;}
.xe{left:513.645000px;}
.xa{left:586.905000px;}
.xf{left:608.505000px;}
.x10{left:680.010000px;}
.x5{left:709.529987px;}
.x11{left:754.889987px;}
.x4{left:774.869987px;}
.x1{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-2.730667pt;}
.ls13{letter-spacing:-0.874667pt;}
.ls3{letter-spacing:-0.538667pt;}
.ls8{letter-spacing:-0.509333pt;}
.ls16{letter-spacing:-0.476267pt;}
.ls14{letter-spacing:-0.468267pt;}
.ls18{letter-spacing:-0.278933pt;}
.ls5{letter-spacing:-0.235733pt;}
.ls15{letter-spacing:-0.199467pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.048640pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.028160pt;}
.ls6{letter-spacing:0.033280pt;}
.ls17{letter-spacing:0.084267pt;}
.ls2{letter-spacing:0.102400pt;}
.lsb{letter-spacing:0.130667pt;}
.lse{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.263467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:47.889920pt;}
.ws11{word-spacing:-58.880000pt;}
.ws0{word-spacing:-33.207253pt;}
.ws2{word-spacing:-14.510080pt;}
.ws7{word-spacing:-14.453547pt;}
.ws13{word-spacing:-14.320747pt;}
.ws10{word-spacing:-14.274347pt;}
.ws4{word-spacing:-14.223360pt;}
.ws5{word-spacing:-14.218240pt;}
.ws1{word-spacing:-14.190080pt;}
.ws6{word-spacing:-14.141440pt;}
.wsf{word-spacing:-13.990613pt;}
.ws3{word-spacing:-13.954347pt;}
.ws12{word-spacing:-13.911147pt;}
.wse{word-spacing:-13.721813pt;}
.wsa{word-spacing:-11.792000pt;}
.wsd{word-spacing:-11.568000pt;}
.wsb{word-spacing:-11.488000pt;}
.wsc{word-spacing:-11.424000pt;}
.ws9{word-spacing:-10.832000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-9.841920pt;}
._2{margin-left:-8.648960pt;}
._8{margin-left:-4.003840pt;}
._0{margin-left:-2.833280pt;}
._1{margin-left:-1.640320pt;}
._4{width:1.298133pt;}
._d{width:2.456320pt;}
._7{width:3.591680pt;}
._c{width:4.651520pt;}
._22{width:5.946880pt;}
._21{width:7.006720pt;}
._26{width:8.132053pt;}
._13{width:9.118080pt;}
._f{width:10.245120pt;}
._e{width:11.178880pt;}
._1e{width:12.280320pt;}
._2e{width:13.207040pt;}
._11{width:15.720960pt;}
._23{width:16.890240pt;}
._6{width:18.017280pt;}
._5{width:19.018240pt;}
._30{width:19.952000pt;}
._18{width:20.843520pt;}
._1d{width:21.744427pt;}
._10{width:22.963200pt;}
._20{width:24.173867pt;}
._1f{width:25.444907pt;}
._2b{width:27.496960pt;}
._1b{width:28.733440pt;}
._38{width:30.727040pt;}
._b{width:31.618560pt;}
._12{width:33.208320pt;}
._31{width:35.193600pt;}
._2a{width:36.152320pt;}
._28{width:37.212160pt;}
._2f{width:38.154240pt;}
._32{width:39.837867pt;}
._24{width:40.862720pt;}
._25{width:41.804800pt;}
._14{width:43.041280pt;}
._2c{width:44.515840pt;}
._2d{width:45.621120pt;}
._34{width:46.885547pt;}
._35{width:47.986560pt;}
._9{width:49.223680pt;}
._a{width:50.559147pt;}
._19{width:51.859627pt;}
._1a{width:53.173973pt;}
._29{width:54.113280pt;}
._33{width:58.730027pt;}
._17{width:65.239040pt;}
._16{width:79.605760pt;}
._15{width:80.716160pt;}
._1c{width:85.075627pt;}
._27{width:107.868160pt;}
._36{width:289.395200pt;}
._37{width:290.328960pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:7.040000pt;}
.y99{bottom:8.320000pt;}
.y90{bottom:8.480000pt;}
.ya1{bottom:8.800000pt;}
.yb4{bottom:12.800000pt;}
.y8c{bottom:14.240000pt;}
.yb0{bottom:18.720000pt;}
.y96{bottom:20.000000pt;}
.yaa{bottom:20.026667pt;}
.y8f{bottom:20.160000pt;}
.ya0{bottom:20.480000pt;}
.yb3{bottom:24.480000pt;}
.y97{bottom:25.920000pt;}
.ya8{bottom:26.400000pt;}
.yaf{bottom:30.400000pt;}
.y98{bottom:31.680000pt;}
.yab{bottom:31.706667pt;}
.yac{bottom:31.840000pt;}
.y9f{bottom:32.160000pt;}
.yb2{bottom:36.160000pt;}
.ya7{bottom:38.080000pt;}
.yae{bottom:42.080000pt;}
.y9e{bottom:43.840000pt;}
.ya6{bottom:49.600000pt;}
.y1{bottom:51.040000pt;}
.y9d{bottom:55.520000pt;}
.ya5{bottom:61.280000pt;}
.y9c{bottom:67.200000pt;}
.y9b{bottom:78.880000pt;}
.ybb{bottom:91.240000pt;}
.yb9{bottom:97.440000pt;}
.y33{bottom:105.440000pt;}
.yb8{bottom:109.120000pt;}
.y5a{bottom:112.960000pt;}
.yb7{bottom:120.800000pt;}
.y32{bottom:120.960000pt;}
.y59{bottom:128.320000pt;}
.yb6{bottom:132.480000pt;}
.y89{bottom:133.760000pt;}
.y31{bottom:136.346667pt;}
.y94{bottom:137.786667pt;}
.y58{bottom:143.866667pt;}
.y30{bottom:151.706667pt;}
.y88{bottom:157.306667pt;}
.y57{bottom:159.706667pt;}
.y2f{bottom:167.226667pt;}
.ybf{bottom:170.586667pt;}
.y2e{bottom:182.586667pt;}
.y106{bottom:193.946667pt;}
.y56{bottom:195.226667pt;}
.y10d{bottom:197.306667pt;}
.y84{bottom:200.346667pt;}
.y2d{bottom:208.666667pt;}
.y105{bottom:209.306667pt;}
.y10c{bottom:212.666667pt;}
.y55{bottom:217.786667pt;}
.yb5{bottom:217.946667pt;}
.y83{bottom:223.866667pt;}
.y2c{bottom:224.026667pt;}
.y104{bottom:224.826667pt;}
.y10b{bottom:228.186667pt;}
.y2b{bottom:239.386667pt;}
.y103{bottom:240.186667pt;}
.y10a{bottom:243.546667pt;}
.y54{bottom:254.266667pt;}
.y2a{bottom:254.906667pt;}
.y102{bottom:255.546667pt;}
.yba{bottom:265.306667pt;}
.y53{bottom:269.626667pt;}
.y29{bottom:270.266667pt;}
.y101{bottom:270.906667pt;}
.y109{bottom:284.986667pt;}
.y28{bottom:285.626667pt;}
.y100{bottom:288.346667pt;}
.y52{bottom:295.706667pt;}
.y108{bottom:300.346667pt;}
.y27{bottom:300.986667pt;}
.yff{bottom:310.746667pt;}
.y51{bottom:311.066667pt;}
.ybe{bottom:312.826667pt;}
.y107{bottom:315.866667pt;}
.y26{bottom:316.506667pt;}
.y50{bottom:326.586667pt;}
.y25{bottom:331.866667pt;}
.yfe{bottom:342.746667pt;}
.y24{bottom:347.226667pt;}
.y4f{bottom:352.506667pt;}
.ybd{bottom:360.226667pt;}
.y23{bottom:362.626667pt;}
.yfd{bottom:364.066667pt;}
.y4e{bottom:368.066667pt;}
.y22{bottom:378.146667pt;}
.y4d{bottom:383.426667pt;}
.y4c{bottom:398.786667pt;}
.y21{bottom:404.226667pt;}
.ybc{bottom:407.586667pt;}
.y4b{bottom:414.306667pt;}
.ye2{bottom:416.066667pt;}
.yfc{bottom:418.466667pt;}
.y20{bottom:419.586667pt;}
.y4a{bottom:429.666667pt;}
.ye1{bottom:431.426667pt;}
.yfb{bottom:433.826667pt;}
.y1f{bottom:434.946667pt;}
.y87{bottom:436.866667pt;}
.y49{bottom:445.026667pt;}
.ye0{bottom:446.786667pt;}
.yfa{bottom:449.346667pt;}
.y1e{bottom:450.306667pt;}
.yad{bottom:454.946667pt;}
.y48{bottom:460.386667pt;}
.ydf{bottom:462.146667pt;}
.yf9{bottom:464.706667pt;}
.y1d{bottom:465.826667pt;}
.y47{bottom:475.906667pt;}
.yde{bottom:477.666667pt;}
.y1c{bottom:481.186667pt;}
.yf8{bottom:490.786667pt;}
.y46{bottom:491.266667pt;}
.ydd{bottom:493.026667pt;}
.y126{bottom:493.666667pt;}
.y1b{bottom:496.546667pt;}
.y45{bottom:506.626667pt;}
.ydc{bottom:509.026667pt;}
.ya4{bottom:511.106667pt;}
.y1a{bottom:511.906667pt;}
.yf7{bottom:516.866667pt;}
.y125{bottom:519.746667pt;}
.y44{bottom:521.986667pt;}
.y19{bottom:527.426667pt;}
.yf6{bottom:532.226667pt;}
.y124{bottom:535.106667pt;}
.ydb{bottom:537.346667pt;}
.y43{bottom:537.506667pt;}
.y18{bottom:542.786667pt;}
.yf5{bottom:547.586667pt;}
.y123{bottom:550.626667pt;}
.yda{bottom:552.706667pt;}
.y42{bottom:552.866667pt;}
.y17{bottom:558.146667pt;}
.ya9{bottom:558.626667pt;}
.yf4{bottom:562.946667pt;}
.yd9{bottom:568.066667pt;}
.y41{bottom:568.226667pt;}
.y16{bottom:573.666667pt;}
.y122{bottom:576.706667pt;}
.yd8{bottom:583.453333pt;}
.y15{bottom:589.053333pt;}
.y121{bottom:592.093333pt;}
.y40{bottom:594.333333pt;}
.yd7{bottom:598.973333pt;}
.y14{bottom:604.413333pt;}
.yf3{bottom:604.573333pt;}
.ya3{bottom:606.013333pt;}
.y120{bottom:607.453333pt;}
.y3f{bottom:609.693333pt;}
.yd6{bottom:614.333333pt;}
.y13{bottom:619.773333pt;}
.y3e{bottom:625.213333pt;}
.yd5{bottom:629.693333pt;}
.yf2{bottom:630.653333pt;}
.y11f{bottom:633.533333pt;}
.y12{bottom:635.293333pt;}
.y3d{bottom:640.573333pt;}
.yd4{bottom:645.053333pt;}
.yf1{bottom:646.013333pt;}
.y11e{bottom:648.893333pt;}
.y11{bottom:650.653333pt;}
.y9a{bottom:653.373333pt;}
.y3c{bottom:655.933333pt;}
.yd3{bottom:660.573333pt;}
.yf0{bottom:661.373333pt;}
.y82{bottom:663.133333pt;}
.y11d{bottom:664.413333pt;}
.y10{bottom:666.013333pt;}
.y71{bottom:670.653333pt;}
.y3b{bottom:671.293333pt;}
.yd2{bottom:675.933333pt;}
.yef{bottom:676.733333pt;}
.y81{bottom:678.493333pt;}
.y11c{bottom:679.773333pt;}
.yf{bottom:681.373333pt;}
.y70{bottom:686.013333pt;}
.y3a{bottom:686.813333pt;}
.yd1{bottom:691.293333pt;}
.yee{bottom:692.253333pt;}
.y80{bottom:693.853333pt;}
.ye{bottom:696.893333pt;}
.ya2{bottom:700.733333pt;}
.y6f{bottom:701.533333pt;}
.y39{bottom:702.173333pt;}
.y11b{bottom:705.853333pt;}
.yd0{bottom:706.813333pt;}
.yed{bottom:707.613333pt;}
.y7f{bottom:709.373333pt;}
.yd{bottom:712.253333pt;}
.y38{bottom:717.533333pt;}
.y11a{bottom:721.213333pt;}
.ycf{bottom:722.173333pt;}
.yec{bottom:722.973333pt;}
.y7e{bottom:724.733333pt;}
.yc{bottom:727.613333pt;}
.y119{bottom:736.573333pt;}
.yce{bottom:737.533333pt;}
.yeb{bottom:738.333333pt;}
.y86{bottom:739.613333pt;}
.y7d{bottom:740.093333pt;}
.yb{bottom:742.973333pt;}
.y95{bottom:748.253333pt;}
.y37{bottom:750.813333pt;}
.ycd{bottom:753.533333pt;}
.yea{bottom:753.853333pt;}
.y7c{bottom:755.613333pt;}
.y6e{bottom:758.333333pt;}
.ya{bottom:758.493333pt;}
.y118{bottom:762.653333pt;}
.y85{bottom:763.293333pt;}
.ye9{bottom:769.213333pt;}
.y7b{bottom:770.973333pt;}
.y6d{bottom:773.693333pt;}
.y117{bottom:778.013333pt;}
.ycc{bottom:781.853333pt;}
.y36{bottom:782.013333pt;}
.ye8{bottom:784.573333pt;}
.y7a{bottom:786.333333pt;}
.y6c{bottom:789.213333pt;}
.y9{bottom:791.773333pt;}
.y116{bottom:793.533333pt;}
.ycb{bottom:797.213333pt;}
.y35{bottom:797.373333pt;}
.y79{bottom:801.733333pt;}
.y6b{bottom:804.613333pt;}
.y115{bottom:808.933333pt;}
.yca{bottom:812.613333pt;}
.y34{bottom:812.933333pt;}
.y78{bottom:817.253333pt;}
.ye7{bottom:817.893333pt;}
.y93{bottom:818.053333pt;}
.y6a{bottom:819.973333pt;}
.yc9{bottom:828.133333pt;}
.y77{bottom:832.613333pt;}
.y114{bottom:835.013333pt;}
.y69{bottom:835.333333pt;}
.y8{bottom:839.013333pt;}
.ye6{bottom:840.453333pt;}
.yc8{bottom:843.493333pt;}
.y92{bottom:843.653333pt;}
.y76{bottom:847.973333pt;}
.y113{bottom:850.373333pt;}
.y68{bottom:850.853333pt;}
.y91{bottom:855.813333pt;}
.yc7{bottom:858.853333pt;}
.y75{bottom:863.333333pt;}
.y7{bottom:865.093333pt;}
.y112{bottom:865.733333pt;}
.y67{bottom:866.213333pt;}
.yc6{bottom:874.213333pt;}
.ye5{bottom:876.933333pt;}
.y74{bottom:878.853333pt;}
.y6{bottom:880.453333pt;}
.y66{bottom:881.573333pt;}
.yc5{bottom:889.733333pt;}
.y8e{bottom:891.493333pt;}
.y111{bottom:891.813333pt;}
.ye4{bottom:892.293333pt;}
.y73{bottom:894.693333pt;}
.y65{bottom:896.933333pt;}
.yc4{bottom:905.093333pt;}
.y5{bottom:906.533333pt;}
.y110{bottom:907.333333pt;}
.ye3{bottom:907.653333pt;}
.y64{bottom:912.453333pt;}
.yc3{bottom:920.453333pt;}
.y10f{bottom:922.693333pt;}
.y72{bottom:923.013333pt;}
.y4{bottom:925.733333pt;}
.y8d{bottom:927.173333pt;}
.yc2{bottom:936.453333pt;}
.y63{bottom:938.533333pt;}
.y62{bottom:953.893333pt;}
.y10e{bottom:955.973333pt;}
.y3{bottom:962.053333pt;}
.y8b{bottom:962.853333pt;}
.y61{bottom:969.253333pt;}
.yc1{bottom:971.973333pt;}
.y60{bottom:984.613333pt;}
.yc0{bottom:994.373333pt;}
.y2{bottom:998.373333pt;}
.y5f{bottom:1000.133333pt;}
.y8a{bottom:1015.013333pt;}
.y5e{bottom:1015.493333pt;}
.y5d{bottom:1031.040000pt;}
.y5c{bottom:1048.960000pt;}
.y5b{bottom:1065.440000pt;}
.h9{height:35.040000pt;}
.ha{height:36.281250pt;}
.h8{height:36.656250pt;}
.h7{height:43.781250pt;}
.hb{height:46.720000pt;}
.he{height:46.752000pt;}
.h12{height:46.880000pt;}
.h2{height:53.705000pt;}
.hf{height:55.520000pt;}
.h4{height:58.563750pt;}
.h6{height:63.045000pt;}
.h5{height:77.638750pt;}
.hc{height:94.080000pt;}
.hd{height:94.272000pt;}
.h3{height:136.013750pt;}
.h11{height:188.986667pt;}
.h10{height:236.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:62.912000pt;}
.w9{width:69.280000pt;}
.w8{width:83.072000pt;}
.wb{width:83.520000pt;}
.w5{width:84.480000pt;}
.wd{width:95.360000pt;}
.w7{width:102.080000pt;}
.wa{width:102.912000pt;}
.w3{width:150.266667pt;}
.w6{width:178.106667pt;}
.w4{width:188.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x2{left:96.031988pt;}
.x6{left:162.266655pt;}
.xb{left:199.386667pt;}
.x8{left:247.586667pt;}
.x12{left:275.586655pt;}
.xc{left:283.106667pt;}
.xd{left:353.026667pt;}
.x3{left:420.893322pt;}
.x9{left:436.573333pt;}
.xe{left:456.573333pt;}
.xa{left:521.693333pt;}
.xf{left:540.893333pt;}
.x10{left:604.453333pt;}
.x5{left:630.693322pt;}
.x11{left:671.013322pt;}
.x4{left:688.773322pt;}
.x1{left:697.893322pt;}
}




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