
    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_54df8c441aefefd6b27d8338.woff')format("woff");}.ff1{font-family:ff1;line-height:0.949707;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_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_4902d1f598da807511896928.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_623f2691f6035b98ba9ebc29.woff')format("woff");}.ff5{font-family:ff5;line-height:0.949707;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_dba1b180139f475e1252b3b3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_b63ce8126229fb59125d4f4c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_259d9aa04b886d4e87b8145d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9574ab88593bdffaa0c5504d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.331800px;}
.ls6{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.187800px;}
.ls14{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.004320px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.513600px;}
.ls16{letter-spacing:0.720000px;}
.ls1{letter-spacing:10.980000px;}
.ls2{letter-spacing:11.700000px;}
.ls18{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.ls15{letter-spacing:154.170720px;}
.lsb{letter-spacing:169.290720px;}
.lsc{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-21.096000px;}
.wsb{word-spacing:-21.060000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.715680px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:601.166880px;}
._20{margin-left:-7.483680px;}
._1d{margin-left:-4.226640px;}
._16{margin-left:-3.214080px;}
._8{margin-left:-2.142000px;}
._1{margin-left:-1.059840px;}
._0{width:1.185840px;}
._3{width:2.511600px;}
._4{width:3.632640px;}
._10{width:5.258880px;}
._18{width:6.394320px;}
._14{width:7.529760px;}
._e{width:8.674560px;}
._1b{width:9.791040px;}
._5{width:10.826640px;}
._9{width:12.226320px;}
._1a{width:13.731840px;}
._11{width:16.306560px;}
._b{width:17.688960px;}
._a{width:18.824400px;}
._19{width:20.079360px;}
._1e{width:21.163680px;}
._1c{width:22.290480px;}
._c{width:23.913360px;}
._d{width:24.960960px;}
._f{width:26.083440px;}
._15{width:29.052720px;}
._13{width:32.651280px;}
._12{width:33.714000px;}
._7{width:36.702000px;}
._6{width:38.365920px;}
._21{width:45.895680px;}
._2{width:103.612320px;}
._17{width:201.204000px;}
._1f{width:2941.920000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y7{bottom:14.760000px;}
.y30{bottom:25.560000px;}
.y6{bottom:43.920000px;}
.y2f{bottom:45.360000px;}
.ye6{bottom:52.275000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y2e{bottom:65.160000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y40{bottom:79.380000px;}
.ybe{bottom:84.600000px;}
.y2d{bottom:85.185000px;}
.y4{bottom:86.400000px;}
.ye4{bottom:87.840000px;}
.y3f{bottom:96.660000px;}
.y3e{bottom:101.880000px;}
.y2c{bottom:104.985000px;}
.y9{bottom:107.490000px;}
.ye3{bottom:107.640000px;}
.y3d{bottom:113.940000px;}
.yf4{bottom:117.180000px;}
.y3c{bottom:119.160000px;}
.y3{bottom:122.610000px;}
.y2b{bottom:124.785000px;}
.ye2{bottom:127.440000px;}
.y7d{bottom:131.220000px;}
.y3b{bottom:131.940000px;}
.y99{bottom:136.440000px;}
.y8{bottom:136.650000px;}
.yf3{bottom:136.980000px;}
.y2a{bottom:144.585000px;}
.ye1{bottom:147.420000px;}
.y7c{bottom:148.320000px;}
.ybd{bottom:149.040000px;}
.y7b{bottom:153.570000px;}
.yf2{bottom:156.810000px;}
.yed{bottom:159.225000px;}
.yf0{bottom:161.310000px;}
.ye9{bottom:163.005000px;}
.y29{bottom:164.385000px;}
.y7a{bottom:165.630000px;}
.y98{bottom:166.350000px;}
.ye0{bottom:167.250000px;}
.y39{bottom:170.670000px;}
.y79{bottom:170.850000px;}
.y3a{bottom:175.890000px;}
.yc9{bottom:176.610000px;}
.y78{bottom:182.910000px;}
.y28{bottom:184.365000px;}
.ydf{bottom:187.050000px;}
.y77{bottom:188.130000px;}
.yec{bottom:189.465000px;}
.y38{bottom:190.470000px;}
.y96{bottom:190.830000px;}
.yef{bottom:191.550000px;}
.ye8{bottom:193.245000px;}
.y97{bottom:196.050000px;}
.yc8{bottom:196.410000px;}
.ydd{bottom:200.730000px;}
.y76{bottom:200.910000px;}
.ye5{bottom:201.240000px;}
.yde{bottom:203.610000px;}
.y27{bottom:204.165000px;}
.yab{bottom:206.130000px;}
.y37{bottom:210.270000px;}
.y95{bottom:210.630000px;}
.yac{bottom:211.350000px;}
.ybc{bottom:213.150000px;}
.yc7{bottom:216.390000px;}
.yeb{bottom:219.525000px;}
.ydc{bottom:220.530000px;}
.yee{bottom:221.610000px;}
.ye7{bottom:223.350000px;}
.y26{bottom:223.965000px;}
.yaa{bottom:225.930000px;}
.y35{bottom:230.250000px;}
.y94{bottom:230.430000px;}
.ybb{bottom:232.950000px;}
.y36{bottom:235.470000px;}
.yc6{bottom:236.190000px;}
.ydb{bottom:240.510000px;}
.y25{bottom:243.765000px;}
.ya9{bottom:245.730000px;}
.y75{bottom:246.990000px;}
.y34{bottom:250.050000px;}
.y93{bottom:250.230000px;}
.yba{bottom:253.830000px;}
.yc5{bottom:255.990000px;}
.yda{bottom:260.310000px;}
.y24{bottom:263.565000px;}
.ya8{bottom:265.530000px;}
.y74{bottom:266.790000px;}
.y33{bottom:269.850000px;}
.y92{bottom:270.030000px;}
.yb9{bottom:273.630000px;}
.yc4{bottom:275.790000px;}
.yd8{bottom:280.110000px;}
.y23{bottom:283.545000px;}
.yd9{bottom:285.330000px;}
.ya7{bottom:285.510000px;}
.y73{bottom:286.590000px;}
.y32{bottom:289.650000px;}
.y91{bottom:290.010000px;}
.yb8{bottom:294.510000px;}
.yc3{bottom:295.590000px;}
.yd7{bottom:299.910000px;}
.y22{bottom:303.345000px;}
.ya6{bottom:305.310000px;}
.y72{bottom:306.570000px;}
.y31{bottom:309.450000px;}
.y90{bottom:309.810000px;}
.yb7{bottom:314.490000px;}
.yc2{bottom:315.570000px;}
.yd6{bottom:319.710000px;}
.y21{bottom:323.145000px;}
.y17{bottom:324.390000px;}
.ya5{bottom:325.110000px;}
.y71{bottom:326.370000px;}
.y8f{bottom:329.610000px;}
.yb6{bottom:335.370000px;}
.y20{bottom:342.975000px;}
.ya4{bottom:344.910000px;}
.y70{bottom:346.170000px;}
.yd5{bottom:348.690000px;}
.y8e{bottom:349.410000px;}
.yb5{bottom:355.170000px;}
.y1f{bottom:362.775000px;}
.y6f{bottom:365.970000px;}
.yd4{bottom:368.490000px;}
.y8d{bottom:369.210000px;}
.yea{bottom:372.030000px;}
.ya3{bottom:373.710000px;}
.yf1{bottom:374.760000px;}
.yb4{bottom:374.970000px;}
.y1e{bottom:382.755000px;}
.y6e{bottom:385.770000px;}
.yd3{bottom:388.290000px;}
.y8c{bottom:389.190000px;}
.ya2{bottom:393.690000px;}
.yb3{bottom:394.770000px;}
.y1d{bottom:402.555000px;}
.y6c{bottom:405.795000px;}
.yd2{bottom:408.135000px;}
.y6d{bottom:411.015000px;}
.ya1{bottom:413.535000px;}
.yb2{bottom:414.795000px;}
.y8b{bottom:418.035000px;}
.y1c{bottom:422.355000px;}
.y6a{bottom:425.595000px;}
.yd1{bottom:427.935000px;}
.y6b{bottom:430.815000px;}
.ya0{bottom:433.335000px;}
.yb1{bottom:434.595000px;}
.y8a{bottom:437.835000px;}
.y1b{bottom:442.155000px;}
.y69{bottom:445.395000px;}
.yd0{bottom:447.915000px;}
.y9f{bottom:453.135000px;}
.yb0{bottom:454.395000px;}
.y89{bottom:457.635000px;}
.y1a{bottom:461.955000px;}
.y68{bottom:465.195000px;}
.ycf{bottom:467.715000px;}
.y9e{bottom:472.935000px;}
.yaf{bottom:474.195000px;}
.y88{bottom:477.435000px;}
.y19{bottom:481.935000px;}
.y67{bottom:484.995000px;}
.yce{bottom:487.515000px;}
.y9d{bottom:492.915000px;}
.yae{bottom:493.995000px;}
.y87{bottom:497.415000px;}
.y18{bottom:501.735000px;}
.ycd{bottom:504.075000px;}
.y9c{bottom:512.715000px;}
.y66{bottom:513.975000px;}
.y86{bottom:517.215000px;}
.y9b{bottom:529.275000px;}
.y65{bottom:533.775000px;}
.y85{bottom:537.015000px;}
.y64{bottom:553.575000px;}
.y84{bottom:556.815000px;}
.yc1{bottom:558.795000px;}
.y63{bottom:573.375000px;}
.y83{bottom:576.615000px;}
.y62{bottom:593.175000px;}
.y82{bottom:596.595000px;}
.y61{bottom:613.155000px;}
.y81{bottom:616.395000px;}
.y60{bottom:632.955000px;}
.y80{bottom:636.195000px;}
.y5f{bottom:652.785000px;}
.y5e{bottom:672.585000px;}
.y5d{bottom:692.385000px;}
.y5c{bottom:712.365000px;}
.y5b{bottom:732.165000px;}
.yc0{bottom:737.385000px;}
.y5a{bottom:751.965000px;}
.y59{bottom:771.765000px;}
.y58{bottom:791.565000px;}
.y57{bottom:811.545000px;}
.y56{bottom:831.345000px;}
.ybf{bottom:836.565000px;}
.y15{bottom:840.885000px;}
.y55{bottom:851.145000px;}
.ycc{bottom:856.365000px;}
.y14{bottom:866.445000px;}
.y54{bottom:870.945000px;}
.y53{bottom:890.745000px;}
.y13{bottom:891.645000px;}
.y52{bottom:910.770000px;}
.y12{bottom:911.490000px;}
.ycb{bottom:915.990000px;}
.y11{bottom:926.610000px;}
.y51{bottom:930.570000px;}
.y10{bottom:947.850000px;}
.y50{bottom:950.370000px;}
.y4f{bottom:970.170000px;}
.yf{bottom:971.430000px;}
.y9a{bottom:975.390000px;}
.y4e{bottom:989.970000px;}
.ye{bottom:1003.110000px;}
.y4c{bottom:1009.950000px;}
.y4d{bottom:1015.170000px;}
.yc{bottom:1029.390000px;}
.y4b{bottom:1029.750000px;}
.y1{bottom:1046.850000px;}
.y4a{bottom:1049.550000px;}
.yad{bottom:1054.770000px;}
.y49{bottom:1069.350000px;}
.y47{bottom:1089.150000px;}
.y48{bottom:1094.370000px;}
.y46{bottom:1109.130000px;}
.yca{bottom:1114.350000px;}
.y45{bottom:1128.930000px;}
.y7f{bottom:1134.150000px;}
.y43{bottom:1148.760000px;}
.y44{bottom:1153.980000px;}
.y42{bottom:1168.560000px;}
.y7e{bottom:1173.780000px;}
.y41{bottom:1194.840000px;}
.h3{height:2.082656px;}
.hd{height:19.800000px;}
.hb{height:28.115859px;}
.h9{height:42.164648px;}
.hc{height:43.215117px;}
.h11{height:43.506914px;}
.h7{height:47.901094px;}
.h10{height:48.995859px;}
.hf{height:49.255313px;}
.h6{height:52.066406px;}
.ha{height:53.958516px;}
.h13{height:59.436914px;}
.h14{height:59.538516px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.h12{height:445.860000px;}
.he{height:515.775000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x11{left:58.859987px;}
.x26{left:63.719987px;}
.x51{left:80.999987px;}
.xe{left:89.855973px;}
.xf{left:94.715987px;}
.x52{left:108.035987px;}
.x8{left:109.485000px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x47{left:139.715987px;}
.x49{left:152.354987px;}
.x4a{left:159.914987px;}
.x44{left:161.489987px;}
.x1b{left:168.149973px;}
.x1c{left:173.009987px;}
.x35{left:203.609973px;}
.x3{left:208.470000px;}
.x36{left:213.329987px;}
.x25{left:219.089987px;}
.x12{left:223.589987px;}
.x6{left:236.385000px;}
.x32{left:241.409973px;}
.x33{left:251.129987px;}
.x24{left:263.189987px;}
.x10{left:270.074987px;}
.x13{left:277.094973px;}
.x14{left:281.954987px;}
.x34{left:289.874973px;}
.x19{left:295.634973px;}
.x48{left:298.619987px;}
.x1a{left:300.494987px;}
.x29{left:328.574973px;}
.x3b{left:332.354973px;}
.x2a{left:338.294987px;}
.x3c{left:342.074987px;}
.xb{left:343.875000px;}
.x21{left:346.934973px;}
.x22{left:356.654987px;}
.x4b{left:391.349987px;}
.x4d{left:393.869987px;}
.x30{left:420.194973px;}
.x31{left:429.914987px;}
.x39{left:440.174973px;}
.x3a{left:449.924987px;}
.x15{left:462.164973px;}
.x16{left:467.024987px;}
.x4c{left:470.189987px;}
.x2b{left:539.744973px;}
.x2c{left:549.464987px;}
.x27{left:555.944973px;}
.x28{left:565.664987px;}
.x1d{left:569.264973px;}
.x1e{left:574.124987px;}
.x4e{left:615.089987px;}
.x1f{left:622.724973px;}
.x20{left:627.629987px;}
.x17{left:642.569973px;}
.x2d{left:644.549987px;}
.x18{left:647.429987px;}
.x50{left:651.929987px;}
.x4f{left:677.369987px;}
.x9{left:681.270000px;}
.x43{left:683.969987px;}
.x23{left:685.049987px;}
.x41{left:706.289973px;}
.x42{left:716.009987px;}
.x45{left:759.029973px;}
.x46{left:768.749987px;}
.x2e{left:782.249973px;}
.x2f{left:791.969987px;}
.x3d{left:793.049973px;}
.x3f{left:796.469973px;}
.x3e{left:802.769987px;}
.x40{left:806.189987px;}
.xc{left:809.459973px;}
.xd{left:814.319987px;}
.x37{left:825.839973px;}
.x38{left:835.559987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.294933pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.166933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.003840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.456533pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1{letter-spacing:9.760000pt;}
.ls2{letter-spacing:10.400000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls15{letter-spacing:137.040640pt;}
.lsb{letter-spacing:150.480640pt;}
.lsc{letter-spacing:178.848000pt;}
.wsd{word-spacing:-18.752000pt;}
.wsb{word-spacing:-18.720000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.636160pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:534.370560pt;}
._20{margin-left:-6.652160pt;}
._1d{margin-left:-3.757013pt;}
._16{margin-left:-2.856960pt;}
._8{margin-left:-1.904000pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._3{width:2.232533pt;}
._4{width:3.229013pt;}
._10{width:4.674560pt;}
._18{width:5.683840pt;}
._14{width:6.693120pt;}
._e{width:7.710720pt;}
._1b{width:8.703147pt;}
._5{width:9.623680pt;}
._9{width:10.867840pt;}
._1a{width:12.206080pt;}
._11{width:14.494720pt;}
._b{width:15.723520pt;}
._a{width:16.732800pt;}
._19{width:17.848320pt;}
._1e{width:18.812160pt;}
._1c{width:19.813760pt;}
._c{width:21.256320pt;}
._d{width:22.187520pt;}
._f{width:23.185280pt;}
._15{width:25.824640pt;}
._13{width:29.023360pt;}
._12{width:29.968000pt;}
._7{width:32.624000pt;}
._6{width:34.103040pt;}
._21{width:40.796160pt;}
._2{width:92.099840pt;}
._17{width:178.848000pt;}
._1f{width:2615.040000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y7{bottom:13.120000pt;}
.y30{bottom:22.720000pt;}
.y6{bottom:39.040000pt;}
.y2f{bottom:40.320000pt;}
.ye6{bottom:46.466667pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y2e{bottom:57.920000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y40{bottom:70.560000pt;}
.ybe{bottom:75.200000pt;}
.y2d{bottom:75.720000pt;}
.y4{bottom:76.800000pt;}
.ye4{bottom:78.080000pt;}
.y3f{bottom:85.920000pt;}
.y3e{bottom:90.560000pt;}
.y2c{bottom:93.320000pt;}
.y9{bottom:95.546667pt;}
.ye3{bottom:95.680000pt;}
.y3d{bottom:101.280000pt;}
.yf4{bottom:104.160000pt;}
.y3c{bottom:105.920000pt;}
.y3{bottom:108.986667pt;}
.y2b{bottom:110.920000pt;}
.ye2{bottom:113.280000pt;}
.y7d{bottom:116.640000pt;}
.y3b{bottom:117.280000pt;}
.y99{bottom:121.280000pt;}
.y8{bottom:121.466667pt;}
.yf3{bottom:121.760000pt;}
.y2a{bottom:128.520000pt;}
.ye1{bottom:131.040000pt;}
.y7c{bottom:131.840000pt;}
.ybd{bottom:132.480000pt;}
.y7b{bottom:136.506667pt;}
.yf2{bottom:139.386667pt;}
.yed{bottom:141.533333pt;}
.yf0{bottom:143.386667pt;}
.ye9{bottom:144.893333pt;}
.y29{bottom:146.120000pt;}
.y7a{bottom:147.226667pt;}
.y98{bottom:147.866667pt;}
.ye0{bottom:148.666667pt;}
.y39{bottom:151.706667pt;}
.y79{bottom:151.866667pt;}
.y3a{bottom:156.346667pt;}
.yc9{bottom:156.986667pt;}
.y78{bottom:162.586667pt;}
.y28{bottom:163.880000pt;}
.ydf{bottom:166.266667pt;}
.y77{bottom:167.226667pt;}
.yec{bottom:168.413333pt;}
.y38{bottom:169.306667pt;}
.y96{bottom:169.626667pt;}
.yef{bottom:170.266667pt;}
.ye8{bottom:171.773333pt;}
.y97{bottom:174.266667pt;}
.yc8{bottom:174.586667pt;}
.ydd{bottom:178.426667pt;}
.y76{bottom:178.586667pt;}
.ye5{bottom:178.880000pt;}
.yde{bottom:180.986667pt;}
.y27{bottom:181.480000pt;}
.yab{bottom:183.226667pt;}
.y37{bottom:186.906667pt;}
.y95{bottom:187.226667pt;}
.yac{bottom:187.866667pt;}
.ybc{bottom:189.466667pt;}
.yc7{bottom:192.346667pt;}
.yeb{bottom:195.133333pt;}
.ydc{bottom:196.026667pt;}
.yee{bottom:196.986667pt;}
.ye7{bottom:198.533333pt;}
.y26{bottom:199.080000pt;}
.yaa{bottom:200.826667pt;}
.y35{bottom:204.666667pt;}
.y94{bottom:204.826667pt;}
.ybb{bottom:207.066667pt;}
.y36{bottom:209.306667pt;}
.yc6{bottom:209.946667pt;}
.ydb{bottom:213.786667pt;}
.y25{bottom:216.680000pt;}
.ya9{bottom:218.426667pt;}
.y75{bottom:219.546667pt;}
.y34{bottom:222.266667pt;}
.y93{bottom:222.426667pt;}
.yba{bottom:225.626667pt;}
.yc5{bottom:227.546667pt;}
.yda{bottom:231.386667pt;}
.y24{bottom:234.280000pt;}
.ya8{bottom:236.026667pt;}
.y74{bottom:237.146667pt;}
.y33{bottom:239.866667pt;}
.y92{bottom:240.026667pt;}
.yb9{bottom:243.226667pt;}
.yc4{bottom:245.146667pt;}
.yd8{bottom:248.986667pt;}
.y23{bottom:252.040000pt;}
.yd9{bottom:253.626667pt;}
.ya7{bottom:253.786667pt;}
.y73{bottom:254.746667pt;}
.y32{bottom:257.466667pt;}
.y91{bottom:257.786667pt;}
.yb8{bottom:261.786667pt;}
.yc3{bottom:262.746667pt;}
.yd7{bottom:266.586667pt;}
.y22{bottom:269.640000pt;}
.ya6{bottom:271.386667pt;}
.y72{bottom:272.506667pt;}
.y31{bottom:275.066667pt;}
.y90{bottom:275.386667pt;}
.yb7{bottom:279.546667pt;}
.yc2{bottom:280.506667pt;}
.yd6{bottom:284.186667pt;}
.y21{bottom:287.240000pt;}
.y17{bottom:288.346667pt;}
.ya5{bottom:288.986667pt;}
.y71{bottom:290.106667pt;}
.y8f{bottom:292.986667pt;}
.yb6{bottom:298.106667pt;}
.y20{bottom:304.866667pt;}
.ya4{bottom:306.586667pt;}
.y70{bottom:307.706667pt;}
.yd5{bottom:309.946667pt;}
.y8e{bottom:310.586667pt;}
.yb5{bottom:315.706667pt;}
.y1f{bottom:322.466667pt;}
.y6f{bottom:325.306667pt;}
.yd4{bottom:327.546667pt;}
.y8d{bottom:328.186667pt;}
.yea{bottom:330.693333pt;}
.ya3{bottom:332.186667pt;}
.yf1{bottom:333.120000pt;}
.yb4{bottom:333.306667pt;}
.y1e{bottom:340.226667pt;}
.y6e{bottom:342.906667pt;}
.yd3{bottom:345.146667pt;}
.y8c{bottom:345.946667pt;}
.ya2{bottom:349.946667pt;}
.yb3{bottom:350.906667pt;}
.y1d{bottom:357.826667pt;}
.y6c{bottom:360.706667pt;}
.yd2{bottom:362.786667pt;}
.y6d{bottom:365.346667pt;}
.ya1{bottom:367.586667pt;}
.yb2{bottom:368.706667pt;}
.y8b{bottom:371.586667pt;}
.y1c{bottom:375.426667pt;}
.y6a{bottom:378.306667pt;}
.yd1{bottom:380.386667pt;}
.y6b{bottom:382.946667pt;}
.ya0{bottom:385.186667pt;}
.yb1{bottom:386.306667pt;}
.y8a{bottom:389.186667pt;}
.y1b{bottom:393.026667pt;}
.y69{bottom:395.906667pt;}
.yd0{bottom:398.146667pt;}
.y9f{bottom:402.786667pt;}
.yb0{bottom:403.906667pt;}
.y89{bottom:406.786667pt;}
.y1a{bottom:410.626667pt;}
.y68{bottom:413.506667pt;}
.ycf{bottom:415.746667pt;}
.y9e{bottom:420.386667pt;}
.yaf{bottom:421.506667pt;}
.y88{bottom:424.386667pt;}
.y19{bottom:428.386667pt;}
.y67{bottom:431.106667pt;}
.yce{bottom:433.346667pt;}
.y9d{bottom:438.146667pt;}
.yae{bottom:439.106667pt;}
.y87{bottom:442.146667pt;}
.y18{bottom:445.986667pt;}
.ycd{bottom:448.066667pt;}
.y9c{bottom:455.746667pt;}
.y66{bottom:456.866667pt;}
.y86{bottom:459.746667pt;}
.y9b{bottom:470.466667pt;}
.y65{bottom:474.466667pt;}
.y85{bottom:477.346667pt;}
.y64{bottom:492.066667pt;}
.y84{bottom:494.946667pt;}
.yc1{bottom:496.706667pt;}
.y63{bottom:509.666667pt;}
.y83{bottom:512.546667pt;}
.y62{bottom:527.266667pt;}
.y82{bottom:530.306667pt;}
.y61{bottom:545.026667pt;}
.y81{bottom:547.906667pt;}
.y60{bottom:562.626667pt;}
.y80{bottom:565.506667pt;}
.y5f{bottom:580.253333pt;}
.y5e{bottom:597.853333pt;}
.y5d{bottom:615.453333pt;}
.y5c{bottom:633.213333pt;}
.y5b{bottom:650.813333pt;}
.yc0{bottom:655.453333pt;}
.y5a{bottom:668.413333pt;}
.y59{bottom:686.013333pt;}
.y58{bottom:703.613333pt;}
.y57{bottom:721.373333pt;}
.y56{bottom:738.973333pt;}
.ybf{bottom:743.613333pt;}
.y15{bottom:747.453333pt;}
.y55{bottom:756.573333pt;}
.ycc{bottom:761.213333pt;}
.y14{bottom:770.173333pt;}
.y54{bottom:774.173333pt;}
.y53{bottom:791.773333pt;}
.y13{bottom:792.573333pt;}
.y52{bottom:809.573333pt;}
.y12{bottom:810.213333pt;}
.ycb{bottom:814.213333pt;}
.y11{bottom:823.653333pt;}
.y51{bottom:827.173333pt;}
.y10{bottom:842.533333pt;}
.y50{bottom:844.773333pt;}
.y4f{bottom:862.373333pt;}
.yf{bottom:863.493333pt;}
.y9a{bottom:867.013333pt;}
.y4e{bottom:879.973333pt;}
.ye{bottom:891.653333pt;}
.y4c{bottom:897.733333pt;}
.y4d{bottom:902.373333pt;}
.yc{bottom:915.013333pt;}
.y4b{bottom:915.333333pt;}
.y1{bottom:930.533333pt;}
.y4a{bottom:932.933333pt;}
.yad{bottom:937.573333pt;}
.y49{bottom:950.533333pt;}
.y47{bottom:968.133333pt;}
.y48{bottom:972.773333pt;}
.y46{bottom:985.893333pt;}
.yca{bottom:990.533333pt;}
.y45{bottom:1003.493333pt;}
.y7f{bottom:1008.133333pt;}
.y43{bottom:1021.120000pt;}
.y44{bottom:1025.760000pt;}
.y42{bottom:1038.720000pt;}
.y7e{bottom:1043.360000pt;}
.y41{bottom:1062.080000pt;}
.h3{height:1.851250pt;}
.hd{height:17.600000pt;}
.hb{height:24.991875pt;}
.h9{height:37.479688pt;}
.hc{height:38.413438pt;}
.h11{height:38.672812pt;}
.h7{height:42.578750pt;}
.h10{height:43.551875pt;}
.hf{height:43.782500pt;}
.h6{height:46.281250pt;}
.ha{height:47.963125pt;}
.h13{height:52.832812pt;}
.h14{height:52.923125pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.h12{height:396.320000pt;}
.he{height:458.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x11{left:52.319988pt;}
.x26{left:56.639988pt;}
.x51{left:71.999988pt;}
.xe{left:79.871976pt;}
.xf{left:84.191988pt;}
.x52{left:96.031988pt;}
.x8{left:97.320000pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x47{left:124.191988pt;}
.x49{left:135.426655pt;}
.x4a{left:142.146655pt;}
.x44{left:143.546655pt;}
.x1b{left:149.466643pt;}
.x1c{left:153.786655pt;}
.x35{left:180.986643pt;}
.x3{left:185.306667pt;}
.x36{left:189.626655pt;}
.x25{left:194.746655pt;}
.x12{left:198.746655pt;}
.x6{left:210.120000pt;}
.x32{left:214.586643pt;}
.x33{left:223.226655pt;}
.x24{left:233.946655pt;}
.x10{left:240.066655pt;}
.x13{left:246.306643pt;}
.x14{left:250.626655pt;}
.x34{left:257.666643pt;}
.x19{left:262.786643pt;}
.x48{left:265.439988pt;}
.x1a{left:267.106655pt;}
.x29{left:292.066643pt;}
.x3b{left:295.426643pt;}
.x2a{left:300.706655pt;}
.x3c{left:304.066655pt;}
.xb{left:305.666667pt;}
.x21{left:308.386643pt;}
.x22{left:317.026655pt;}
.x4b{left:347.866655pt;}
.x4d{left:350.106655pt;}
.x30{left:373.506643pt;}
.x31{left:382.146655pt;}
.x39{left:391.266643pt;}
.x3a{left:399.933322pt;}
.x15{left:410.813310pt;}
.x16{left:415.133322pt;}
.x4c{left:417.946655pt;}
.x2b{left:479.773310pt;}
.x2c{left:488.413322pt;}
.x27{left:494.173310pt;}
.x28{left:502.813322pt;}
.x1d{left:506.013310pt;}
.x1e{left:510.333322pt;}
.x4e{left:546.746655pt;}
.x1f{left:553.533310pt;}
.x20{left:557.893322pt;}
.x17{left:571.173310pt;}
.x2d{left:572.933322pt;}
.x18{left:575.493322pt;}
.x50{left:579.493322pt;}
.x4f{left:602.106655pt;}
.x9{left:605.573333pt;}
.x43{left:607.973322pt;}
.x23{left:608.933322pt;}
.x41{left:627.813310pt;}
.x42{left:636.453322pt;}
.x45{left:674.693310pt;}
.x46{left:683.333322pt;}
.x2e{left:695.333310pt;}
.x2f{left:703.973322pt;}
.x3d{left:704.933310pt;}
.x3f{left:707.973310pt;}
.x3e{left:713.573322pt;}
.x40{left:716.613322pt;}
.xc{left:719.519976pt;}
.xd{left:723.839988pt;}
.x37{left:734.079976pt;}
.x38{left:742.719988pt;}
}




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