
    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_7bdd51517e31673befdfb4b8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ff68d626a3cd074861afbc50.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_375a8c6821181e6f4affc870.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_cf0b048fba7d59b2969fc975.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_f13a0830feafbe5266518ab6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.745117;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_5c004f6bbe04f59e6a22a484.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_12c20bc446c04322f862ac0f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_ffe62dba76c9202c8a28b713.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4f394dc45fb4f5f1a4bea2c4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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:ffa;src:url('chunks/assets/font_6fdde5c25407008adc4544ed.woff')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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:ffb;src:url('chunks/assets/font_828e6d16d3161dc579ef1294.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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:ffc;src:url('chunks/assets/font_b8f884b8ece33f56884562cb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.961914;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:ffd;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.834000px;}
.ls16{letter-spacing:-0.798000px;}
.ls19{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.590400px;}
.ls1c{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.238800px;}
.ls1{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.175800px;}
.lsa{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.118200px;}
.ls9{letter-spacing:-0.115200px;}
.ls4{letter-spacing:-0.048960px;}
.ls13{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.089280px;}
.ls1d{letter-spacing:0.089400px;}
.ls20{letter-spacing:0.129600px;}
.ls25{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.132600px;}
.ls1e{letter-spacing:0.141000px;}
.ls1b{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.149760px;}
.ls15{letter-spacing:0.158400px;}
.ls6{letter-spacing:0.180000px;}
.lse{letter-spacing:0.243600px;}
.lsd{letter-spacing:0.249600px;}
.ls2{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.303000px;}
.lsf{letter-spacing:0.348600px;}
.ls17{letter-spacing:0.371400px;}
.ls22{letter-spacing:7.320000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws1e{word-spacing:-66.240000px;}
.wsd{word-spacing:-21.641760px;}
.ws11{word-spacing:-21.617280px;}
.ws16{word-spacing:-20.160000px;}
.ws17{word-spacing:-19.440000px;}
.ws1d{word-spacing:-16.353480px;}
.wsb{word-spacing:-16.272000px;}
.ws15{word-spacing:-15.341640px;}
.ws1{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.128640px;}
.ws5{word-spacing:-15.120000px;}
.ws18{word-spacing:-15.111240px;}
.ws8{word-spacing:-15.102840px;}
.ws1b{word-spacing:-15.099840px;}
.ws12{word-spacing:-14.990400px;}
.ws1a{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.855040px;}
.ws3{word-spacing:-14.852040px;}
.ws20{word-spacing:-14.837640px;}
.ws0{word-spacing:-14.754240px;}
.ws2{word-spacing:-14.731440px;}
.ws19{word-spacing:-14.506440px;}
.ws1c{word-spacing:-14.379840px;}
.ws1f{word-spacing:-14.268240px;}
.ws14{word-spacing:-14.172240px;}
.ws9{word-spacing:-14.136240px;}
.ws6{word-spacing:-14.034240px;}
.wse{word-spacing:-13.808760px;}
.wsf{word-spacing:-13.755360px;}
.wsc{word-spacing:-13.749360px;}
.ws10{word-spacing:-13.505760px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-15.217440px;}
._7{margin-left:-13.992000px;}
._6{margin-left:-11.520000px;}
._5{margin-left:-9.653520px;}
._d{margin-left:-8.316000px;}
._b{margin-left:-6.900000px;}
._a{margin-left:-5.580000px;}
._c{margin-left:-4.377840px;}
._17{margin-left:-2.782080px;}
._2{margin-left:-1.270080px;}
._3{width:1.491600px;}
._9{width:2.961840px;}
._13{width:4.238880px;}
._f{width:5.365440px;}
._e{width:6.635520px;}
._19{width:7.655760px;}
._14{width:8.848320px;}
._18{width:10.759920px;}
._16{width:11.933040px;}
._15{width:13.579200px;}
._11{width:16.119360px;}
._10{width:17.222400px;}
._12{width:18.499200px;}
._1b{width:21.196800px;}
._1c{width:22.521600px;}
._1a{width:24.111360px;}
._0{width:185.909760px;}
._4{width:849.185760px;}
._1{width:1979.165760px;}
.fc8{color:rgb(36,63,96);}
.fc9{color:rgb(128,0,128);}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(110,112,114);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(62,96,154);}
.fc6{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fca{color:rgb(34,34,34);}
.fc7{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:45.360000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y7{bottom:-9.540000px;}
.y0{bottom:0.000000px;}
.y6{bottom:9.360000px;}
.y5f{bottom:9.900000px;}
.y15{bottom:13.500000px;}
.y10{bottom:22.500000px;}
.y17{bottom:22.530000px;}
.y1d{bottom:22.545000px;}
.y5{bottom:24.660000px;}
.y9{bottom:25.740000px;}
.y8{bottom:29.880000px;}
.y3{bottom:30.420000px;}
.y14{bottom:33.660000px;}
.y2{bottom:38.340000px;}
.y4{bottom:39.960000px;}
.y20{bottom:45.720000px;}
.y32{bottom:48.960000px;}
.y31{bottom:49.500000px;}
.y30{bottom:57.420000px;}
.y5e{bottom:74.160000px;}
.y5d{bottom:107.280000px;}
.y5c{bottom:140.400000px;}
.yd4{bottom:140.940000px;}
.yd3{bottom:164.160000px;}
.y69{bottom:164.520000px;}
.yf1{bottom:169.200000px;}
.y5b{bottom:173.340000px;}
.y8d{bottom:178.920000px;}
.y68{bottom:182.880000px;}
.yd2{bottom:187.200000px;}
.y55{bottom:199.620000px;}
.y67{bottom:201.060000px;}
.yf0{bottom:201.600000px;}
.y8c{bottom:202.140000px;}
.y5a{bottom:206.505000px;}
.yd1{bottom:210.420000px;}
.y66{bottom:219.420000px;}
.y54{bottom:222.660000px;}
.y8b{bottom:225.180000px;}
.yd0{bottom:233.670000px;}
.y59{bottom:239.625000px;}
.y53{bottom:245.910000px;}
.y8a{bottom:248.430000px;}
.ycf{bottom:257.790000px;}
.ye{bottom:268.230000px;}
.y52{bottom:269.130000px;}
.y89{bottom:271.650000px;}
.y58{bottom:272.565000px;}
.yce{bottom:294.150000px;}
.y88{bottom:294.870000px;}
.y57{bottom:305.685000px;}
.y51{bottom:307.290000px;}
.ycd{bottom:317.370000px;}
.y87{bottom:317.910000px;}
.yaa{bottom:326.190000px;}
.y1f{bottom:327.090000px;}
.y50{bottom:330.330000px;}
.ycc{bottom:340.590000px;}
.y86{bottom:341.130000px;}
.ya9{bottom:349.410000px;}
.y4f{bottom:353.550000px;}
.yb8{bottom:354.270000px;}
.ycb{bottom:363.630000px;}
.y85{bottom:364.170000px;}
.y4e{bottom:376.770000px;}
.yb7{bottom:377.490000px;}
.yca{bottom:386.850000px;}
.ya8{bottom:387.570000px;}
.y84{bottom:392.970000px;}
.y1e{bottom:398.190000px;}
.y4d{bottom:399.990000px;}
.yb6{bottom:400.530000px;}
.ya7{bottom:410.610000px;}
.y83{bottom:416.190000px;}
.y4c{bottom:423.030000px;}
.yb5{bottom:423.750000px;}
.yc9{bottom:425.010000px;}
.yed{bottom:427.710000px;}
.ya6{bottom:433.830000px;}
.y82{bottom:439.410000px;}
.y1c{bottom:446.070000px;}
.y4b{bottom:446.250000px;}
.yb4{bottom:446.970000px;}
.yc8{bottom:448.230000px;}
.yec{bottom:450.930000px;}
.ya5{bottom:457.050000px;}
.y81{bottom:462.675000px;}
.y4a{bottom:469.515000px;}
.yb3{bottom:470.055000px;}
.yc7{bottom:471.495000px;}
.yeb{bottom:474.015000px;}
.ya4{bottom:480.135000px;}
.y80{bottom:485.715000px;}
.y49{bottom:492.555000px;}
.yb2{bottom:493.275000px;}
.y1b{bottom:493.995000px;}
.yc6{bottom:494.535000px;}
.yea{bottom:497.235000px;}
.ya3{bottom:503.355000px;}
.y7f{bottom:508.935000px;}
.y48{bottom:515.775000px;}
.yb1{bottom:516.495000px;}
.yc5{bottom:517.755000px;}
.ye9{bottom:520.455000px;}
.ya2{bottom:526.575000px;}
.y7e{bottom:531.435000px;}
.y47{bottom:538.995000px;}
.yb0{bottom:539.535000px;}
.yc4{bottom:540.975000px;}
.y1a{bottom:541.875000px;}
.ye8{bottom:543.495000px;}
.y46{bottom:562.035000px;}
.yaf{bottom:562.755000px;}
.yc3{bottom:564.015000px;}
.ya1{bottom:564.735000px;}
.ye7{bottom:566.715000px;}
.y7d{bottom:570.855000px;}
.yef{bottom:575.175000px;}
.y45{bottom:585.255000px;}
.yae{bottom:585.975000px;}
.yc2{bottom:587.235000px;}
.ya0{bottom:587.955000px;}
.y19{bottom:589.935000px;}
.y7c{bottom:594.075000px;}
.y65{bottom:601.815000px;}
.y44{bottom:608.475000px;}
.yee{bottom:608.655000px;}
.yc1{bottom:610.455000px;}
.y9f{bottom:610.995000px;}
.ye6{bottom:612.975000px;}
.y7b{bottom:617.295000px;}
.y64{bottom:621.975000px;}
.yad{bottom:623.415000px;}
.y43{bottom:631.515000px;}
.y9e{bottom:634.215000px;}
.yc0{bottom:634.395000px;}
.ye5{bottom:636.195000px;}
.y18{bottom:637.815000px;}
.y7a{bottom:640.335000px;}
.y63{bottom:642.135000px;}
.yac{bottom:644.295000px;}
.y9d{bottom:657.435000px;}
.y42{bottom:657.975000px;}
.y79{bottom:663.555000px;}
.y62{bottom:668.595000px;}
.ybf{bottom:670.935000px;}
.ye4{bottom:674.355000px;}
.yab{bottom:676.695000px;}
.y9c{bottom:680.475000px;}
.y16{bottom:685.695000px;}
.y78{bottom:686.775000px;}
.ybe{bottom:694.185000px;}
.ye3{bottom:697.605000px;}
.y9b{bottom:703.725000px;}
.y41{bottom:706.425000px;}
.y77{bottom:709.845000px;}
.y2e{bottom:711.825000px;}
.y61{bottom:713.445000px;}
.ybd{bottom:717.405000px;}
.ye2{bottom:721.545000px;}
.y9a{bottom:726.945000px;}
.y40{bottom:729.645000px;}
.y60{bottom:731.805000px;}
.y76{bottom:733.065000px;}
.y13{bottom:733.605000px;}
.ybc{bottom:739.905000px;}
.y56{bottom:746.925000px;}
.y2d{bottom:749.985000px;}
.y3f{bottom:752.865000px;}
.ye1{bottom:758.085000px;}
.y75{bottom:771.225000px;}
.y2c{bottom:771.585000px;}
.y99{bottom:773.205000px;}
.y3e{bottom:775.905000px;}
.ybb{bottom:778.605000px;}
.ye0{bottom:781.305000px;}
.y2b{bottom:791.385000px;}
.y12{bottom:792.645000px;}
.y74{bottom:794.445000px;}
.y3d{bottom:799.125000px;}
.yba{bottom:799.485000px;}
.ydf{bottom:804.525000px;}
.y2a{bottom:811.185000px;}
.y98{bottom:811.365000px;}
.y73{bottom:817.485000px;}
.y3c{bottom:822.345000px;}
.yde{bottom:827.565000px;}
.y29{bottom:831.525000px;}
.yb9{bottom:831.885000px;}
.y97{bottom:834.585000px;}
.y11{bottom:840.525000px;}
.y72{bottom:840.705000px;}
.ydd{bottom:850.785000px;}
.y96{bottom:857.625000px;}
.y3b{bottom:860.505000px;}
.y28{bottom:861.765000px;}
.y71{bottom:863.925000px;}
.ydc{bottom:874.005000px;}
.y95{bottom:880.845000px;}
.y27{bottom:881.745000px;}
.y3a{bottom:883.545000px;}
.y70{bottom:886.965000px;}
.yf{bottom:888.405000px;}
.ydb{bottom:897.045000px;}
.y26{bottom:902.085000px;}
.y94{bottom:903.345000px;}
.y39{bottom:906.765000px;}
.y6f{bottom:909.645000px;}
.yda{bottom:920.265000px;}
.y38{bottom:930.030000px;}
.y25{bottom:933.630000px;}
.y93{bottom:942.810000px;}
.yd9{bottom:943.530000px;}
.yd{bottom:946.410000px;}
.y6e{bottom:949.110000px;}
.y37{bottom:953.070000px;}
.y92{bottom:966.030000px;}
.y24{bottom:966.390000px;}
.yd8{bottom:966.750000px;}
.y6d{bottom:972.150000px;}
.y36{bottom:976.290000px;}
.yc{bottom:984.570000px;}
.y91{bottom:989.250000px;}
.yd7{bottom:989.790000px;}
.y6c{bottom:995.370000px;}
.y23{bottom:999.150000px;}
.y35{bottom:999.510000px;}
.yb{bottom:1011.030000px;}
.y90{bottom:1012.290000px;}
.yd6{bottom:1013.010000px;}
.y6b{bottom:1018.410000px;}
.y34{bottom:1022.550000px;}
.y22{bottom:1032.090000px;}
.y8f{bottom:1035.510000px;}
.yd5{bottom:1036.230000px;}
.ya{bottom:1044.690000px;}
.y33{bottom:1049.010000px;}
.y8e{bottom:1058.010000px;}
.y6a{bottom:1059.270000px;}
.y21{bottom:1065.930000px;}
.y2f{bottom:1074.930000px;}
.y1{bottom:1085.550000px;}
.h4{height:34.706602px;}
.h5{height:41.400000px;}
.h15{height:44.907539px;}
.h9{height:47.160000px;}
.h8{height:47.196000px;}
.h12{height:48.088125px;}
.he{height:50.273438px;}
.h3{height:52.020000px;}
.hd{height:52.171875px;}
.h14{height:52.628906px;}
.h16{height:53.302500px;}
.h13{height:56.839219px;}
.ha{height:58.320000px;}
.h11{height:59.439023px;}
.hc{height:61.329023px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.hb{height:70.380000px;}
.h10{height:71.613281px;}
.h7{height:95.245664px;}
.hf{height:327.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:105.840000px;}
.w5{width:211.530000px;}
.w8{width:296.130000px;}
.w4{width:317.370000px;}
.w3{width:465.915000px;}
.w7{width:465.945000px;}
.w6{width:467.205000px;}
.wa{width:573.450000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x3{left:10.800000px;}
.xd{left:30.960000px;}
.x1{left:84.995987px;}
.x2{left:93.096000px;}
.x9{left:101.555987px;}
.x6{left:106.956000px;}
.xb{left:114.336000px;}
.xa{left:117.935987px;}
.x5{left:160.740000px;}
.xe{left:212.970000px;}
.x8{left:319.215000px;}
.xf{left:445.080000px;}
.x4{left:575.610000px;}
.xc{left:596.850000px;}
.x12{left:641.849987px;}
.x13{left:675.509987px;}
.x10{left:709.349987px;}
.x14{left:713.849987px;}
.x11{left:783.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.741333pt;}
.ls16{letter-spacing:-0.709333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.524800pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.212267pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.156267pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.105067pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls4{letter-spacing:-0.043520pt;}
.ls13{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.079360pt;}
.ls1d{letter-spacing:0.079467pt;}
.ls20{letter-spacing:0.115200pt;}
.ls25{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.117867pt;}
.ls1e{letter-spacing:0.125333pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.133120pt;}
.ls15{letter-spacing:0.140800pt;}
.ls6{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.216533pt;}
.lsd{letter-spacing:0.221867pt;}
.ls2{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.269333pt;}
.lsf{letter-spacing:0.309867pt;}
.ls17{letter-spacing:0.330133pt;}
.ls22{letter-spacing:6.506667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1e{word-spacing:-58.880000pt;}
.wsd{word-spacing:-19.237120pt;}
.ws11{word-spacing:-19.215360pt;}
.ws16{word-spacing:-17.920000pt;}
.ws17{word-spacing:-17.280000pt;}
.ws1d{word-spacing:-14.536427pt;}
.wsb{word-spacing:-14.464000pt;}
.ws15{word-spacing:-13.637013pt;}
.ws1{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.447680pt;}
.ws5{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.432213pt;}
.ws8{word-spacing:-13.424747pt;}
.ws1b{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.324800pt;}
.ws1a{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.204480pt;}
.ws3{word-spacing:-13.201813pt;}
.ws20{word-spacing:-13.189013pt;}
.ws0{word-spacing:-13.114880pt;}
.ws2{word-spacing:-13.094613pt;}
.ws19{word-spacing:-12.894613pt;}
.ws1c{word-spacing:-12.782080pt;}
.ws1f{word-spacing:-12.682880pt;}
.ws14{word-spacing:-12.597547pt;}
.ws9{word-spacing:-12.565547pt;}
.ws6{word-spacing:-12.474880pt;}
.wse{word-spacing:-12.274453pt;}
.wsf{word-spacing:-12.226987pt;}
.wsc{word-spacing:-12.221653pt;}
.ws10{word-spacing:-12.005120pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-13.526613pt;}
._7{margin-left:-12.437333pt;}
._6{margin-left:-10.240000pt;}
._5{margin-left:-8.580907pt;}
._d{margin-left:-7.392000pt;}
._b{margin-left:-6.133333pt;}
._a{margin-left:-4.960000pt;}
._c{margin-left:-3.891413pt;}
._17{margin-left:-2.472960pt;}
._2{margin-left:-1.128960pt;}
._3{width:1.325867pt;}
._9{width:2.632747pt;}
._13{width:3.767893pt;}
._f{width:4.769280pt;}
._e{width:5.898240pt;}
._19{width:6.805120pt;}
._14{width:7.865173pt;}
._18{width:9.564373pt;}
._16{width:10.607147pt;}
._15{width:12.070400pt;}
._11{width:14.328320pt;}
._10{width:15.308800pt;}
._12{width:16.443733pt;}
._1b{width:18.841600pt;}
._1c{width:20.019200pt;}
._1a{width:21.432320pt;}
._0{width:165.253120pt;}
._4{width:754.831787pt;}
._1{width:1759.258453pt;}
.fs1{font-size:40.320000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y7{bottom:-8.480000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:8.320000pt;}
.y5f{bottom:8.800000pt;}
.y15{bottom:12.000000pt;}
.y10{bottom:20.000000pt;}
.y17{bottom:20.026667pt;}
.y1d{bottom:20.040000pt;}
.y5{bottom:21.920000pt;}
.y9{bottom:22.880000pt;}
.y8{bottom:26.560000pt;}
.y3{bottom:27.040000pt;}
.y14{bottom:29.920000pt;}
.y2{bottom:34.080000pt;}
.y4{bottom:35.520000pt;}
.y20{bottom:40.640000pt;}
.y32{bottom:43.520000pt;}
.y31{bottom:44.000000pt;}
.y30{bottom:51.040000pt;}
.y5e{bottom:65.920000pt;}
.y5d{bottom:95.360000pt;}
.y5c{bottom:124.800000pt;}
.yd4{bottom:125.280000pt;}
.yd3{bottom:145.920000pt;}
.y69{bottom:146.240000pt;}
.yf1{bottom:150.400000pt;}
.y5b{bottom:154.080000pt;}
.y8d{bottom:159.040000pt;}
.y68{bottom:162.560000pt;}
.yd2{bottom:166.400000pt;}
.y55{bottom:177.440000pt;}
.y67{bottom:178.720000pt;}
.yf0{bottom:179.200000pt;}
.y8c{bottom:179.680000pt;}
.y5a{bottom:183.560000pt;}
.yd1{bottom:187.040000pt;}
.y66{bottom:195.040000pt;}
.y54{bottom:197.920000pt;}
.y8b{bottom:200.160000pt;}
.yd0{bottom:207.706667pt;}
.y59{bottom:213.000000pt;}
.y53{bottom:218.586667pt;}
.y8a{bottom:220.826667pt;}
.ycf{bottom:229.146667pt;}
.ye{bottom:238.426667pt;}
.y52{bottom:239.226667pt;}
.y89{bottom:241.466667pt;}
.y58{bottom:242.280000pt;}
.yce{bottom:261.466667pt;}
.y88{bottom:262.106667pt;}
.y57{bottom:271.720000pt;}
.y51{bottom:273.146667pt;}
.ycd{bottom:282.106667pt;}
.y87{bottom:282.586667pt;}
.yaa{bottom:289.946667pt;}
.y1f{bottom:290.746667pt;}
.y50{bottom:293.626667pt;}
.ycc{bottom:302.746667pt;}
.y86{bottom:303.226667pt;}
.ya9{bottom:310.586667pt;}
.y4f{bottom:314.266667pt;}
.yb8{bottom:314.906667pt;}
.ycb{bottom:323.226667pt;}
.y85{bottom:323.706667pt;}
.y4e{bottom:334.906667pt;}
.yb7{bottom:335.546667pt;}
.yca{bottom:343.866667pt;}
.ya8{bottom:344.506667pt;}
.y84{bottom:349.306667pt;}
.y1e{bottom:353.946667pt;}
.y4d{bottom:355.546667pt;}
.yb6{bottom:356.026667pt;}
.ya7{bottom:364.986667pt;}
.y83{bottom:369.946667pt;}
.y4c{bottom:376.026667pt;}
.yb5{bottom:376.666667pt;}
.yc9{bottom:377.786667pt;}
.yed{bottom:380.186667pt;}
.ya6{bottom:385.626667pt;}
.y82{bottom:390.586667pt;}
.y1c{bottom:396.506667pt;}
.y4b{bottom:396.666667pt;}
.yb4{bottom:397.306667pt;}
.yc8{bottom:398.426667pt;}
.yec{bottom:400.826667pt;}
.ya5{bottom:406.266667pt;}
.y81{bottom:411.266667pt;}
.y4a{bottom:417.346667pt;}
.yb3{bottom:417.826667pt;}
.yc7{bottom:419.106667pt;}
.yeb{bottom:421.346667pt;}
.ya4{bottom:426.786667pt;}
.y80{bottom:431.746667pt;}
.y49{bottom:437.826667pt;}
.yb2{bottom:438.466667pt;}
.y1b{bottom:439.106667pt;}
.yc6{bottom:439.586667pt;}
.yea{bottom:441.986667pt;}
.ya3{bottom:447.426667pt;}
.y7f{bottom:452.386667pt;}
.y48{bottom:458.466667pt;}
.yb1{bottom:459.106667pt;}
.yc5{bottom:460.226667pt;}
.ye9{bottom:462.626667pt;}
.ya2{bottom:468.066667pt;}
.y7e{bottom:472.386667pt;}
.y47{bottom:479.106667pt;}
.yb0{bottom:479.586667pt;}
.yc4{bottom:480.866667pt;}
.y1a{bottom:481.666667pt;}
.ye8{bottom:483.106667pt;}
.y46{bottom:499.586667pt;}
.yaf{bottom:500.226667pt;}
.yc3{bottom:501.346667pt;}
.ya1{bottom:501.986667pt;}
.ye7{bottom:503.746667pt;}
.y7d{bottom:507.426667pt;}
.yef{bottom:511.266667pt;}
.y45{bottom:520.226667pt;}
.yae{bottom:520.866667pt;}
.yc2{bottom:521.986667pt;}
.ya0{bottom:522.626667pt;}
.y19{bottom:524.386667pt;}
.y7c{bottom:528.066667pt;}
.y65{bottom:534.946667pt;}
.y44{bottom:540.866667pt;}
.yee{bottom:541.026667pt;}
.yc1{bottom:542.626667pt;}
.y9f{bottom:543.106667pt;}
.ye6{bottom:544.866667pt;}
.y7b{bottom:548.706667pt;}
.y64{bottom:552.866667pt;}
.yad{bottom:554.146667pt;}
.y43{bottom:561.346667pt;}
.y9e{bottom:563.746667pt;}
.yc0{bottom:563.906667pt;}
.ye5{bottom:565.506667pt;}
.y18{bottom:566.946667pt;}
.y7a{bottom:569.186667pt;}
.y63{bottom:570.786667pt;}
.yac{bottom:572.706667pt;}
.y9d{bottom:584.386667pt;}
.y42{bottom:584.866667pt;}
.y79{bottom:589.826667pt;}
.y62{bottom:594.306667pt;}
.ybf{bottom:596.386667pt;}
.ye4{bottom:599.426667pt;}
.yab{bottom:601.506667pt;}
.y9c{bottom:604.866667pt;}
.y16{bottom:609.506667pt;}
.y78{bottom:610.466667pt;}
.ybe{bottom:617.053333pt;}
.ye3{bottom:620.093333pt;}
.y9b{bottom:625.533333pt;}
.y41{bottom:627.933333pt;}
.y77{bottom:630.973333pt;}
.y2e{bottom:632.733333pt;}
.y61{bottom:634.173333pt;}
.ybd{bottom:637.693333pt;}
.ye2{bottom:641.373333pt;}
.y9a{bottom:646.173333pt;}
.y40{bottom:648.573333pt;}
.y60{bottom:650.493333pt;}
.y76{bottom:651.613333pt;}
.y13{bottom:652.093333pt;}
.ybc{bottom:657.693333pt;}
.y56{bottom:663.933333pt;}
.y2d{bottom:666.653333pt;}
.y3f{bottom:669.213333pt;}
.ye1{bottom:673.853333pt;}
.y75{bottom:685.533333pt;}
.y2c{bottom:685.853333pt;}
.y99{bottom:687.293333pt;}
.y3e{bottom:689.693333pt;}
.ybb{bottom:692.093333pt;}
.ye0{bottom:694.493333pt;}
.y2b{bottom:703.453333pt;}
.y12{bottom:704.573333pt;}
.y74{bottom:706.173333pt;}
.y3d{bottom:710.333333pt;}
.yba{bottom:710.653333pt;}
.ydf{bottom:715.133333pt;}
.y2a{bottom:721.053333pt;}
.y98{bottom:721.213333pt;}
.y73{bottom:726.653333pt;}
.y3c{bottom:730.973333pt;}
.yde{bottom:735.613333pt;}
.y29{bottom:739.133333pt;}
.yb9{bottom:739.453333pt;}
.y97{bottom:741.853333pt;}
.y11{bottom:747.133333pt;}
.y72{bottom:747.293333pt;}
.ydd{bottom:756.253333pt;}
.y96{bottom:762.333333pt;}
.y3b{bottom:764.893333pt;}
.y28{bottom:766.013333pt;}
.y71{bottom:767.933333pt;}
.ydc{bottom:776.893333pt;}
.y95{bottom:782.973333pt;}
.y27{bottom:783.773333pt;}
.y3a{bottom:785.373333pt;}
.y70{bottom:788.413333pt;}
.yf{bottom:789.693333pt;}
.ydb{bottom:797.373333pt;}
.y26{bottom:801.853333pt;}
.y94{bottom:802.973333pt;}
.y39{bottom:806.013333pt;}
.y6f{bottom:808.573333pt;}
.yda{bottom:818.013333pt;}
.y38{bottom:826.693333pt;}
.y25{bottom:829.893333pt;}
.y93{bottom:838.053333pt;}
.yd9{bottom:838.693333pt;}
.yd{bottom:841.253333pt;}
.y6e{bottom:843.653333pt;}
.y37{bottom:847.173333pt;}
.y92{bottom:858.693333pt;}
.y24{bottom:859.013333pt;}
.yd8{bottom:859.333333pt;}
.y6d{bottom:864.133333pt;}
.y36{bottom:867.813333pt;}
.yc{bottom:875.173333pt;}
.y91{bottom:879.333333pt;}
.yd7{bottom:879.813333pt;}
.y6c{bottom:884.773333pt;}
.y23{bottom:888.133333pt;}
.y35{bottom:888.453333pt;}
.yb{bottom:898.693333pt;}
.y90{bottom:899.813333pt;}
.yd6{bottom:900.453333pt;}
.y6b{bottom:905.253333pt;}
.y34{bottom:908.933333pt;}
.y22{bottom:917.413333pt;}
.y8f{bottom:920.453333pt;}
.yd5{bottom:921.093333pt;}
.ya{bottom:928.613333pt;}
.y33{bottom:932.453333pt;}
.y8e{bottom:940.453333pt;}
.y6a{bottom:941.573333pt;}
.y21{bottom:947.493333pt;}
.y2f{bottom:955.493333pt;}
.y1{bottom:964.933333pt;}
.h4{height:30.850312pt;}
.h5{height:36.800000pt;}
.h15{height:39.917813pt;}
.h9{height:41.920000pt;}
.h8{height:41.952000pt;}
.h12{height:42.745000pt;}
.he{height:44.687500pt;}
.h3{height:46.240000pt;}
.hd{height:46.375000pt;}
.h14{height:46.781250pt;}
.h16{height:47.380000pt;}
.h13{height:50.523750pt;}
.ha{height:51.840000pt;}
.h11{height:52.834688pt;}
.hc{height:54.514687pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.hb{height:62.560000pt;}
.h10{height:63.656250pt;}
.h7{height:84.662813pt;}
.hf{height:290.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:94.080000pt;}
.w5{width:188.026667pt;}
.w8{width:263.226667pt;}
.w4{width:282.106667pt;}
.w3{width:414.146667pt;}
.w7{width:414.173333pt;}
.w6{width:415.293333pt;}
.wa{width:509.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x3{left:9.600000pt;}
.xd{left:27.520000pt;}
.x1{left:75.551988pt;}
.x2{left:82.752000pt;}
.x9{left:90.271988pt;}
.x6{left:95.072000pt;}
.xb{left:101.632000pt;}
.xa{left:104.831988pt;}
.x5{left:142.880000pt;}
.xe{left:189.306667pt;}
.x8{left:283.746667pt;}
.xf{left:395.626667pt;}
.x4{left:511.653333pt;}
.xc{left:530.533333pt;}
.x12{left:570.533322pt;}
.x13{left:600.453322pt;}
.x10{left:630.533322pt;}
.x14{left:634.533322pt;}
.x11{left:696.799988pt;}
}




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