
    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_0304bc593d6b046ae4628fe9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_e8832e11ca1d8c2322cfc646.woff')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_11f44938be7a64b6bb178c7f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.720215;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_2209ad6f697cf0d7aa2b170d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_1f36322c6bcb65a62d002d57.woff')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_09ac6aad80921fa8ebd4b768.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70d136c0d8fed742ad05edd5.woff')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_4f59fd7aff73de744f3485e2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f7d44f77b643aa05ff2e2bc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.691406;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_ea2fd3f43dbfde9e0a1a5268.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_68a74ccf8778ce51af13c255.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7cd73ea8a982a772d07b2267.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_99ff367743b45232477bace6.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fde45d5acddba21ee076628d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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);}
.v3{vertical-align:-75.600000px;}
.v2{vertical-align:-74.160000px;}
.v5{vertical-align:-30.240000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.420000px;}
.ls18{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.109200px;}
.ls17{letter-spacing:-0.089400px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.262200px;}
.lse{letter-spacing:0.305280px;}
.ls16{letter-spacing:0.315600px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.160000px;}
.lsc{letter-spacing:3.600000px;}
.lsa{letter-spacing:5.220000px;}
.lsd{letter-spacing:7.200000px;}
.ls15{letter-spacing:11.520000px;}
.ls14{letter-spacing:12.240000px;}
.ls13{letter-spacing:12.960000px;}
.lsf{letter-spacing:18.000000px;}
.ls9{letter-spacing:39.881280px;}
.lsb{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.970240px;}
.wse{word-spacing:-10.755600px;}
.ws9{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.350600px;}
.ws1{word-spacing:-8.133471px;}
.ws4{word-spacing:-8.017001px;}
.ws3{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws2{word-spacing:-6.413601px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-6.656640px;}
._0{margin-left:-1.345231px;}
._2{width:1.080271px;}
._6{width:2.150523px;}
._7{width:3.332431px;}
._5{width:4.504320px;}
._d{width:5.625452px;}
._c{width:6.690240px;}
._f{width:8.081280px;}
._12{width:9.645662px;}
._8{width:10.797120px;}
._9{width:12.034560px;}
._e{width:13.248000px;}
._11{width:14.440320px;}
._16{width:15.490265px;}
._17{width:17.752320px;}
._1b{width:18.995397px;}
._b{width:20.177822px;}
._a{width:21.461760px;}
._18{width:22.846351px;}
._15{width:24.641280px;}
._14{width:25.787791px;}
._10{width:26.959680px;}
._13{width:28.483200px;}
._1e{width:33.318720px;}
._1f{width:34.398991px;}
._1d{width:40.360591px;}
._1c{width:41.929920px;}
._1a{width:93.576000px;}
._3{width:111.741452px;}
._1{width:129.575280px;}
._4{width:2068.376191px;}
.fc5{color:rgb(118,146,60);}
.fc1{color:rgb(56,116,161);}
.fc6{color:rgb(180,180,180);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:24.000000px;}
.fs5{font-size:27.828506px;}
.fs3{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fs2{font-size:39.755009px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:47.706010px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.y15{bottom:3.240000px;}
.yb5{bottom:3.600000px;}
.yc3{bottom:3.780000px;}
.y82{bottom:3.960000px;}
.ya{bottom:3.975503px;}
.yc{bottom:3.975506px;}
.y80{bottom:4.140000px;}
.y13{bottom:5.580000px;}
.ye1{bottom:7.500000px;}
.y14{bottom:21.270000px;}
.y10{bottom:22.859102px;}
.yb9{bottom:22.860000px;}
.yb8{bottom:41.985000px;}
.yf{bottom:42.736606px;}
.y17{bottom:76.320000px;}
.y7a{bottom:116.640000px;}
.y47{bottom:116.820000px;}
.ydc{bottom:131.040000px;}
.y79{bottom:135.540000px;}
.y46{bottom:135.900000px;}
.y9a{bottom:150.120000px;}
.yb2{bottom:150.840000px;}
.ydf{bottom:154.260000px;}
.y78{bottom:154.620000px;}
.y45{bottom:154.800000px;}
.y99{bottom:169.050000px;}
.yb1{bottom:169.770000px;}
.yde{bottom:173.190000px;}
.y77{bottom:173.550000px;}
.y44{bottom:173.730000px;}
.y98{bottom:188.130000px;}
.yb0{bottom:188.850000px;}
.y76{bottom:192.630000px;}
.y43{bottom:192.810000px;}
.y97{bottom:207.030000px;}
.yaf{bottom:207.750000px;}
.y75{bottom:211.530000px;}
.y42{bottom:211.710000px;}
.y96{bottom:222.690000px;}
.yae{bottom:223.410000px;}
.ydb{bottom:225.930000px;}
.y74{bottom:230.430000px;}
.y41{bottom:230.790000px;}
.y95{bottom:241.770000px;}
.yad{bottom:242.490000px;}
.yda{bottom:245.010000px;}
.y73{bottom:249.510000px;}
.y40{bottom:249.690000px;}
.y94{bottom:260.670000px;}
.yac{bottom:261.390000px;}
.yd9{bottom:263.910000px;}
.y72{bottom:268.410000px;}
.y3f{bottom:268.590000px;}
.y93{bottom:279.570000px;}
.yab{bottom:280.470000px;}
.yd8{bottom:282.990000px;}
.y71{bottom:287.490000px;}
.y3e{bottom:287.670000px;}
.y92{bottom:298.650000px;}
.yaa{bottom:299.370000px;}
.yd7{bottom:301.890000px;}
.y70{bottom:306.390000px;}
.y3d{bottom:306.570000px;}
.y91{bottom:317.550000px;}
.ya9{bottom:318.270000px;}
.yd6{bottom:320.790000px;}
.y6f{bottom:325.290000px;}
.y3c{bottom:325.650000px;}
.y90{bottom:336.630000px;}
.ya8{bottom:337.350000px;}
.yd5{bottom:339.870000px;}
.y6e{bottom:344.370000px;}
.y3b{bottom:344.550000px;}
.y8f{bottom:356.250000px;}
.yd4{bottom:358.770000px;}
.y6d{bottom:363.270000px;}
.y3a{bottom:363.630000px;}
.ya7{bottom:375.330000px;}
.yd3{bottom:377.850000px;}
.y8e{bottom:379.650000px;}
.ydd{bottom:381.990000px;}
.y39{bottom:382.170000px;}
.y6c{bottom:382.350000px;}
.yd2{bottom:396.750000px;}
.ya6{bottom:398.730000px;}
.y8d{bottom:399.090000px;}
.y6b{bottom:401.250000px;}
.y38{bottom:401.430000px;}
.yd1{bottom:415.875000px;}
.y8c{bottom:418.035000px;}
.ye0{bottom:419.655000px;}
.y6a{bottom:420.375000px;}
.y37{bottom:420.555000px;}
.yd0{bottom:434.775000px;}
.y8b{bottom:436.935000px;}
.y36{bottom:439.095000px;}
.y69{bottom:439.275000px;}
.ycf{bottom:453.315000px;}
.y8a{bottom:456.015000px;}
.y68{bottom:458.175000px;}
.y35{bottom:458.535000px;}
.yce{bottom:472.755000px;}
.y89{bottom:474.915000px;}
.y67{bottom:477.255000px;}
.y34{bottom:477.435000px;}
.y88{bottom:490.575000px;}
.ycd{bottom:491.655000px;}
.ya5{bottom:493.995000px;}
.y66{bottom:496.155000px;}
.y33{bottom:496.335000px;}
.y87{bottom:509.655000px;}
.ycc{bottom:510.735000px;}
.ya4{bottom:512.895000px;}
.y65{bottom:515.235000px;}
.y32{bottom:515.415000px;}
.y86{bottom:528.555000px;}
.ycb{bottom:529.635000px;}
.ya3{bottom:531.795000px;}
.y64{bottom:534.135000px;}
.y31{bottom:534.315000px;}
.y85{bottom:547.635000px;}
.yca{bottom:548.535000px;}
.y63{bottom:553.035000px;}
.y30{bottom:553.395000px;}
.yc9{bottom:564.375000px;}
.y84{bottom:566.535000px;}
.ya2{bottom:569.775000px;}
.y62{bottom:572.115000px;}
.y2f{bottom:572.295000px;}
.yc8{bottom:583.275000px;}
.y83{bottom:585.435000px;}
.y61{bottom:591.015000px;}
.y2e{bottom:591.195000px;}
.yc7{bottom:602.175000px;}
.y81{bottom:604.515000px;}
.y60{bottom:610.095000px;}
.y2d{bottom:610.275000px;}
.yc6{bottom:621.255000px;}
.ya1{bottom:623.415000px;}
.y7f{bottom:624.135000px;}
.y5f{bottom:628.995000px;}
.y2c{bottom:629.175000px;}
.yc5{bottom:640.155000px;}
.ya0{bottom:642.495000px;}
.y7e{bottom:647.535000px;}
.y5e{bottom:647.895000px;}
.y2b{bottom:648.255000px;}
.yc4{bottom:659.265000px;}
.y9f{bottom:661.425000px;}
.y5d{bottom:667.005000px;}
.y2a{bottom:667.185000px;}
.yc2{bottom:678.885000px;}
.y9e{bottom:680.325000px;}
.y5c{bottom:685.905000px;}
.y29{bottom:686.085000px;}
.y9d{bottom:699.405000px;}
.yc1{bottom:702.645000px;}
.y5b{bottom:704.985000px;}
.y28{bottom:705.165000px;}
.y9c{bottom:719.025000px;}
.yc0{bottom:721.725000px;}
.y5a{bottom:723.885000px;}
.y27{bottom:724.065000px;}
.ybf{bottom:740.625000px;}
.y59{bottom:742.785000px;}
.y26{bottom:743.145000px;}
.ybe{bottom:759.525000px;}
.y58{bottom:761.865000px;}
.y25{bottom:762.045000px;}
.y24{bottom:780.585000px;}
.y57{bottom:780.765000px;}
.ybd{bottom:797.145000px;}
.y7d{bottom:799.485000px;}
.y56{bottom:799.845000px;}
.y23{bottom:800.385000px;}
.ybc{bottom:816.585000px;}
.y55{bottom:818.745000px;}
.y22{bottom:821.085000px;}
.ybb{bottom:835.485000px;}
.y54{bottom:837.645000px;}
.y21{bottom:841.785000px;}
.yba{bottom:854.385000px;}
.y53{bottom:856.725000px;}
.y20{bottom:862.125000px;}
.yb7{bottom:870.225000px;}
.y9b{bottom:875.265000px;}
.y52{bottom:875.625000px;}
.ye{bottom:877.591787px;}
.y1f{bottom:883.185000px;}
.y51{bottom:894.705000px;}
.yd{bottom:901.444792px;}
.y1e{bottom:903.930000px;}
.yb6{bottom:908.070000px;}
.y50{bottom:913.650000px;}
.yb{bottom:915.571361px;}
.y1d{bottom:924.630000px;}
.yb4{bottom:927.870000px;}
.y9{bottom:931.473366px;}
.y7c{bottom:932.370000px;}
.y4f{bottom:932.730000px;}
.y1c{bottom:945.330000px;}
.yb3{bottom:951.270000px;}
.y4e{bottom:951.630000px;}
.y8{bottom:962.071180px;}
.y1b{bottom:965.670000px;}
.y4d{bottom:970.530000px;}
.y4c{bottom:989.610000px;}
.y7{bottom:989.899686px;}
.y1a{bottom:1004.370000px;}
.y6{bottom:1005.801689px;}
.y4b{bottom:1008.510000px;}
.y4a{bottom:1027.590000px;}
.y5{bottom:1034.624071px;}
.y19{bottom:1043.070000px;}
.y49{bottom:1046.490000px;}
.y18{bottom:1063.770000px;}
.y7b{bottom:1065.030000px;}
.y48{bottom:1065.390000px;}
.y4{bottom:1076.366830px;}
.y16{bottom:1102.830000px;}
.y3{bottom:1104.195336px;}
.y12{bottom:1124.790000px;}
.y2{bottom:1144.944219px;}
.y11{bottom:1193.220000px;}
.h9{height:12.920383px;}
.h19{height:18.900000px;}
.h1a{height:18.936000px;}
.h18{height:19.080000px;}
.h1d{height:19.116000px;}
.ha{height:20.151208px;}
.h6{height:23.029952px;}
.h20{height:25.031250px;}
.h3{height:25.908696px;}
.h8{height:28.146857px;}
.h5{height:28.787440px;}
.h7{height:34.544928px;}
.h1c{height:37.836000px;}
.he{height:40.536000px;}
.hd{height:45.895781px;}
.h16{height:46.025156px;}
.h1b{height:56.916000px;}
.hf{height:57.544805px;}
.h11{height:60.226875px;}
.h14{height:64.978594px;}
.h10{height:65.010937px;}
.h4{height:65.533647px;}
.h15{height:66.757500px;}
.h17{height:68.084282px;}
.h13{height:70.664062px;}
.h1f{height:71.225156px;}
.h1e{height:71.405156px;}
.h12{height:72.562500px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.hb{height:1262.880000px;}
.hc{height:1263.000000px;}
.w16{width:75.060000px;}
.w14{width:84.600000px;}
.w11{width:84.636000px;}
.w13{width:85.176000px;}
.w15{width:86.616000px;}
.w12{width:86.940000px;}
.w10{width:88.020000px;}
.w17{width:100.116000px;}
.w8{width:149.076000px;}
.wc{width:149.616000px;}
.wa{width:172.110000px;}
.wd{width:172.470000px;}
.w9{width:172.830000px;}
.wb{width:196.590000px;}
.w7{width:197.130000px;}
.w5{width:223.950000px;}
.w19{width:230.295000px;}
.w18{width:230.430000px;}
.wf{width:345.135000px;}
.we{width:346.035000px;}
.w2{width:346.862448px;}
.w6{width:484.665000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x24{left:37.800000px;}
.x42{left:38.880000px;}
.x26{left:41.760000px;}
.x28{left:43.920000px;}
.x25{left:49.140000px;}
.x2a{left:51.120000px;}
.x27{left:53.100000px;}
.x29{left:55.260000px;}
.x1c{left:57.600000px;}
.x1{left:59.632513px;}
.x1d{left:62.100000px;}
.x7{left:64.601889px;}
.xb{left:66.780000px;}
.x1f{left:68.580000px;}
.x20{left:73.980000px;}
.x1a{left:75.594000px;}
.x23{left:78.120000px;}
.x43{left:79.374000px;}
.x21{left:81.174000px;}
.x44{left:86.214000px;}
.x3f{left:88.554000px;}
.x22{left:91.614000px;}
.x3{left:99.387518px;}
.x31{left:105.294000px;}
.x45{left:106.950000px;}
.x8{left:108.036000px;}
.x4{left:110.320149px;}
.x2f{left:116.274000px;}
.xd{left:117.756000px;}
.x2d{left:120.954000px;}
.xc{left:128.010000px;}
.x33{left:131.934000px;}
.x19{left:135.036000px;}
.x2b{left:136.254000px;}
.x37{left:143.679000px;}
.x32{left:145.665000px;}
.x35{left:147.819000px;}
.x2c{left:149.625000px;}
.x2e{left:151.965000px;}
.x36{left:153.945000px;}
.x34{left:158.085000px;}
.x30{left:160.065000px;}
.x18{left:162.030000px;}
.x38{left:187.950000px;}
.x39{left:272.595000px;}
.x10{left:287.895000px;}
.x1b{left:297.075000px;}
.x11{left:315.795000px;}
.xa{left:323.355000px;}
.x40{left:330.375000px;}
.x15{left:333.795000px;}
.xe{left:342.075000px;}
.xf{left:349.455000px;}
.x3a{left:359.535000px;}
.x16{left:360.975000px;}
.x12{left:363.495000px;}
.x17{left:366.915000px;}
.x14{left:392.655000px;}
.x13{left:438.405000px;}
.x3b{left:444.705000px;}
.x2{left:446.249971px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
.x3c{left:529.305000px;}
.x41{left:560.805000px;}
.x3d{left:615.930000px;}
.x1e{left:618.990000px;}
.x3e{left:690.990000px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v2{vertical-align:-65.920000pt;}
.v5{vertical-align:-26.880000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:27.040000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.097067pt;}
.ls17{letter-spacing:-0.079467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.271360pt;}
.ls16{letter-spacing:0.280533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsa{letter-spacing:4.640000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls15{letter-spacing:10.240000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls13{letter-spacing:11.520000pt;}
.lsf{letter-spacing:16.000000pt;}
.ls9{letter-spacing:35.450027pt;}
.lsb{letter-spacing:177.258667pt;}
.wsa{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.306880pt;}
.wse{word-spacing:-9.560533pt;}
.ws9{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.200533pt;}
.ws1{word-spacing:-7.229752pt;}
.ws4{word-spacing:-7.126223pt;}
.ws3{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws2{word-spacing:-5.700979pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-5.917013pt;}
._0{margin-left:-1.195761pt;}
._2{width:0.960241pt;}
._6{width:1.911576pt;}
._7{width:2.962161pt;}
._5{width:4.003840pt;}
._d{width:5.000402pt;}
._c{width:5.946880pt;}
._f{width:7.183360pt;}
._12{width:8.573921pt;}
._8{width:9.597440pt;}
._9{width:10.697387pt;}
._e{width:11.776000pt;}
._11{width:12.835840pt;}
._16{width:13.769124pt;}
._17{width:15.779840pt;}
._1b{width:16.884797pt;}
._b{width:17.935841pt;}
._a{width:19.077120pt;}
._18{width:20.307867pt;}
._15{width:21.903360pt;}
._14{width:22.922481pt;}
._10{width:23.964160pt;}
._13{width:25.318400pt;}
._1e{width:29.616640pt;}
._1f{width:30.576881pt;}
._1d{width:35.876081pt;}
._1c{width:37.271040pt;}
._1a{width:83.178667pt;}
._3{width:99.325735pt;}
._1{width:115.178027pt;}
._4{width:1838.556614pt;}
.fsc{font-size:21.333333pt;}
.fs5{font-size:24.736450pt;}
.fs3{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fs2{font-size:35.337785pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:42.405342pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.y15{bottom:2.880000pt;}
.yb5{bottom:3.200000pt;}
.yc3{bottom:3.360000pt;}
.y82{bottom:3.520000pt;}
.ya{bottom:3.533781pt;}
.yc{bottom:3.533783pt;}
.y80{bottom:3.680000pt;}
.y13{bottom:4.960000pt;}
.ye1{bottom:6.666667pt;}
.y14{bottom:18.906667pt;}
.y10{bottom:20.319202pt;}
.yb9{bottom:20.320000pt;}
.yb8{bottom:37.320000pt;}
.yf{bottom:37.988095pt;}
.y17{bottom:67.840000pt;}
.y7a{bottom:103.680000pt;}
.y47{bottom:103.840000pt;}
.ydc{bottom:116.480000pt;}
.y79{bottom:120.480000pt;}
.y46{bottom:120.800000pt;}
.y9a{bottom:133.440000pt;}
.yb2{bottom:134.080000pt;}
.ydf{bottom:137.120000pt;}
.y78{bottom:137.440000pt;}
.y45{bottom:137.600000pt;}
.y99{bottom:150.266667pt;}
.yb1{bottom:150.906667pt;}
.yde{bottom:153.946667pt;}
.y77{bottom:154.266667pt;}
.y44{bottom:154.426667pt;}
.y98{bottom:167.226667pt;}
.yb0{bottom:167.866667pt;}
.y76{bottom:171.226667pt;}
.y43{bottom:171.386667pt;}
.y97{bottom:184.026667pt;}
.yaf{bottom:184.666667pt;}
.y75{bottom:188.026667pt;}
.y42{bottom:188.186667pt;}
.y96{bottom:197.946667pt;}
.yae{bottom:198.586667pt;}
.ydb{bottom:200.826667pt;}
.y74{bottom:204.826667pt;}
.y41{bottom:205.146667pt;}
.y95{bottom:214.906667pt;}
.yad{bottom:215.546667pt;}
.yda{bottom:217.786667pt;}
.y73{bottom:221.786667pt;}
.y40{bottom:221.946667pt;}
.y94{bottom:231.706667pt;}
.yac{bottom:232.346667pt;}
.yd9{bottom:234.586667pt;}
.y72{bottom:238.586667pt;}
.y3f{bottom:238.746667pt;}
.y93{bottom:248.506667pt;}
.yab{bottom:249.306667pt;}
.yd8{bottom:251.546667pt;}
.y71{bottom:255.546667pt;}
.y3e{bottom:255.706667pt;}
.y92{bottom:265.466667pt;}
.yaa{bottom:266.106667pt;}
.yd7{bottom:268.346667pt;}
.y70{bottom:272.346667pt;}
.y3d{bottom:272.506667pt;}
.y91{bottom:282.266667pt;}
.ya9{bottom:282.906667pt;}
.yd6{bottom:285.146667pt;}
.y6f{bottom:289.146667pt;}
.y3c{bottom:289.466667pt;}
.y90{bottom:299.226667pt;}
.ya8{bottom:299.866667pt;}
.yd5{bottom:302.106667pt;}
.y6e{bottom:306.106667pt;}
.y3b{bottom:306.266667pt;}
.y8f{bottom:316.666667pt;}
.yd4{bottom:318.906667pt;}
.y6d{bottom:322.906667pt;}
.y3a{bottom:323.226667pt;}
.ya7{bottom:333.626667pt;}
.yd3{bottom:335.866667pt;}
.y8e{bottom:337.466667pt;}
.ydd{bottom:339.546667pt;}
.y39{bottom:339.706667pt;}
.y6c{bottom:339.866667pt;}
.yd2{bottom:352.666667pt;}
.ya6{bottom:354.426667pt;}
.y8d{bottom:354.746667pt;}
.y6b{bottom:356.666667pt;}
.y38{bottom:356.826667pt;}
.yd1{bottom:369.666667pt;}
.y8c{bottom:371.586667pt;}
.ye0{bottom:373.026667pt;}
.y6a{bottom:373.666667pt;}
.y37{bottom:373.826667pt;}
.yd0{bottom:386.466667pt;}
.y8b{bottom:388.386667pt;}
.y36{bottom:390.306667pt;}
.y69{bottom:390.466667pt;}
.ycf{bottom:402.946667pt;}
.y8a{bottom:405.346667pt;}
.y68{bottom:407.266667pt;}
.y35{bottom:407.586667pt;}
.yce{bottom:420.226667pt;}
.y89{bottom:422.146667pt;}
.y67{bottom:424.226667pt;}
.y34{bottom:424.386667pt;}
.y88{bottom:436.066667pt;}
.ycd{bottom:437.026667pt;}
.ya5{bottom:439.106667pt;}
.y66{bottom:441.026667pt;}
.y33{bottom:441.186667pt;}
.y87{bottom:453.026667pt;}
.ycc{bottom:453.986667pt;}
.ya4{bottom:455.906667pt;}
.y65{bottom:457.986667pt;}
.y32{bottom:458.146667pt;}
.y86{bottom:469.826667pt;}
.ycb{bottom:470.786667pt;}
.ya3{bottom:472.706667pt;}
.y64{bottom:474.786667pt;}
.y31{bottom:474.946667pt;}
.y85{bottom:486.786667pt;}
.yca{bottom:487.586667pt;}
.y63{bottom:491.586667pt;}
.y30{bottom:491.906667pt;}
.yc9{bottom:501.666667pt;}
.y84{bottom:503.586667pt;}
.ya2{bottom:506.466667pt;}
.y62{bottom:508.546667pt;}
.y2f{bottom:508.706667pt;}
.yc8{bottom:518.466667pt;}
.y83{bottom:520.386667pt;}
.y61{bottom:525.346667pt;}
.y2e{bottom:525.506667pt;}
.yc7{bottom:535.266667pt;}
.y81{bottom:537.346667pt;}
.y60{bottom:542.306667pt;}
.y2d{bottom:542.466667pt;}
.yc6{bottom:552.226667pt;}
.ya1{bottom:554.146667pt;}
.y7f{bottom:554.786667pt;}
.y5f{bottom:559.106667pt;}
.y2c{bottom:559.266667pt;}
.yc5{bottom:569.026667pt;}
.ya0{bottom:571.106667pt;}
.y7e{bottom:575.586667pt;}
.y5e{bottom:575.906667pt;}
.y2b{bottom:576.226667pt;}
.yc4{bottom:586.013333pt;}
.y9f{bottom:587.933333pt;}
.y5d{bottom:592.893333pt;}
.y2a{bottom:593.053333pt;}
.yc2{bottom:603.453333pt;}
.y9e{bottom:604.733333pt;}
.y5c{bottom:609.693333pt;}
.y29{bottom:609.853333pt;}
.y9d{bottom:621.693333pt;}
.yc1{bottom:624.573333pt;}
.y5b{bottom:626.653333pt;}
.y28{bottom:626.813333pt;}
.y9c{bottom:639.133333pt;}
.yc0{bottom:641.533333pt;}
.y5a{bottom:643.453333pt;}
.y27{bottom:643.613333pt;}
.ybf{bottom:658.333333pt;}
.y59{bottom:660.253333pt;}
.y26{bottom:660.573333pt;}
.ybe{bottom:675.133333pt;}
.y58{bottom:677.213333pt;}
.y25{bottom:677.373333pt;}
.y24{bottom:693.853333pt;}
.y57{bottom:694.013333pt;}
.ybd{bottom:708.573333pt;}
.y7d{bottom:710.653333pt;}
.y56{bottom:710.973333pt;}
.y23{bottom:711.453333pt;}
.ybc{bottom:725.853333pt;}
.y55{bottom:727.773333pt;}
.y22{bottom:729.853333pt;}
.ybb{bottom:742.653333pt;}
.y54{bottom:744.573333pt;}
.y21{bottom:748.253333pt;}
.yba{bottom:759.453333pt;}
.y53{bottom:761.533333pt;}
.y20{bottom:766.333333pt;}
.yb7{bottom:773.533333pt;}
.y9b{bottom:778.013333pt;}
.y52{bottom:778.333333pt;}
.ye{bottom:780.081588pt;}
.y1f{bottom:785.053333pt;}
.y51{bottom:795.293333pt;}
.yd{bottom:801.284259pt;}
.y1e{bottom:803.493333pt;}
.yb6{bottom:807.173333pt;}
.y50{bottom:812.133333pt;}
.yb{bottom:813.841209pt;}
.y1d{bottom:821.893333pt;}
.yb4{bottom:824.773333pt;}
.y9{bottom:827.976326pt;}
.y7c{bottom:828.773333pt;}
.y4f{bottom:829.093333pt;}
.y1c{bottom:840.293333pt;}
.yb3{bottom:845.573333pt;}
.y4e{bottom:845.893333pt;}
.y8{bottom:855.174382pt;}
.y1b{bottom:858.373333pt;}
.y4d{bottom:862.693333pt;}
.y4c{bottom:879.653333pt;}
.y7{bottom:879.910832pt;}
.y1a{bottom:892.773333pt;}
.y6{bottom:894.045946pt;}
.y4b{bottom:896.453333pt;}
.y4a{bottom:913.413333pt;}
.y5{bottom:919.665840pt;}
.y19{bottom:927.173333pt;}
.y49{bottom:930.213333pt;}
.y18{bottom:945.573333pt;}
.y7b{bottom:946.693333pt;}
.y48{bottom:947.013333pt;}
.y4{bottom:956.770515pt;}
.y16{bottom:980.293333pt;}
.y3{bottom:981.506965pt;}
.y12{bottom:999.813333pt;}
.y2{bottom:1017.728195pt;}
.y11{bottom:1060.640000pt;}
.h9{height:11.484785pt;}
.h19{height:16.800000pt;}
.h1a{height:16.832000pt;}
.h18{height:16.960000pt;}
.h1d{height:16.992000pt;}
.ha{height:17.912185pt;}
.h6{height:20.471069pt;}
.h20{height:22.250000pt;}
.h3{height:23.029952pt;}
.h8{height:25.019428pt;}
.h5{height:25.588836pt;}
.h7{height:30.706603pt;}
.h1c{height:33.632000pt;}
.he{height:36.032000pt;}
.hd{height:40.796250pt;}
.h16{height:40.911250pt;}
.h1b{height:50.592000pt;}
.hf{height:51.150937pt;}
.h11{height:53.535000pt;}
.h14{height:57.758750pt;}
.h10{height:57.787500pt;}
.h4{height:58.252131pt;}
.h15{height:59.340000pt;}
.h17{height:60.519362pt;}
.h13{height:62.812500pt;}
.h1f{height:63.311250pt;}
.h1e{height:63.471250pt;}
.h12{height:64.500000pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.hb{height:1122.560000pt;}
.hc{height:1122.666667pt;}
.w16{width:66.720000pt;}
.w14{width:75.200000pt;}
.w11{width:75.232000pt;}
.w13{width:75.712000pt;}
.w15{width:76.992000pt;}
.w12{width:77.280000pt;}
.w10{width:78.240000pt;}
.w17{width:88.992000pt;}
.w8{width:132.512000pt;}
.wc{width:132.992000pt;}
.wa{width:152.986667pt;}
.wd{width:153.306667pt;}
.w9{width:153.626667pt;}
.wb{width:174.746667pt;}
.w7{width:175.226667pt;}
.w5{width:199.066667pt;}
.w19{width:204.706667pt;}
.w18{width:204.826667pt;}
.wf{width:306.786667pt;}
.we{width:307.586667pt;}
.w2{width:308.322176pt;}
.w6{width:430.813333pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x24{left:33.600000pt;}
.x42{left:34.560000pt;}
.x26{left:37.120000pt;}
.x28{left:39.040000pt;}
.x25{left:43.680000pt;}
.x2a{left:45.440000pt;}
.x27{left:47.200000pt;}
.x29{left:49.120000pt;}
.x1c{left:51.200000pt;}
.x1{left:53.006678pt;}
.x1d{left:55.200000pt;}
.x7{left:57.423901pt;}
.xb{left:59.360000pt;}
.x1f{left:60.960000pt;}
.x20{left:65.760000pt;}
.x1a{left:67.194667pt;}
.x23{left:69.440000pt;}
.x43{left:70.554667pt;}
.x21{left:72.154667pt;}
.x44{left:76.634667pt;}
.x3f{left:78.714667pt;}
.x22{left:81.434667pt;}
.x3{left:88.344460pt;}
.x31{left:93.594667pt;}
.x45{left:95.066667pt;}
.x8{left:96.032000pt;}
.x4{left:98.062355pt;}
.x2f{left:103.354667pt;}
.xd{left:104.672000pt;}
.x2d{left:107.514667pt;}
.xc{left:113.786667pt;}
.x33{left:117.274667pt;}
.x19{left:120.032000pt;}
.x2b{left:121.114667pt;}
.x37{left:127.714667pt;}
.x32{left:129.480000pt;}
.x35{left:131.394667pt;}
.x2c{left:133.000000pt;}
.x2e{left:135.080000pt;}
.x36{left:136.840000pt;}
.x34{left:140.520000pt;}
.x30{left:142.280000pt;}
.x18{left:144.026667pt;}
.x38{left:167.066667pt;}
.x39{left:242.306667pt;}
.x10{left:255.906667pt;}
.x1b{left:264.066667pt;}
.x11{left:280.706667pt;}
.xa{left:287.426667pt;}
.x40{left:293.666667pt;}
.x15{left:296.706667pt;}
.xe{left:304.066667pt;}
.xf{left:310.626667pt;}
.x3a{left:319.586667pt;}
.x16{left:320.866667pt;}
.x12{left:323.106667pt;}
.x17{left:326.146667pt;}
.x14{left:349.026667pt;}
.x13{left:389.693333pt;}
.x3b{left:395.293333pt;}
.x2{left:396.666641pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
.x3c{left:470.493333pt;}
.x41{left:498.493333pt;}
.x3d{left:547.493333pt;}
.x1e{left:550.213333pt;}
.x3e{left:614.213333pt;}
}




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