
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8f2e4f8814f52beb7803af4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ba836e28325f915801cfa138.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_07bddd276a86d62ea6cb4630.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_251ab62846d2725de473d734.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_342c69c8c38c1820881574f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_e1a34cfd8ba52b70784cfaaa.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.291600px;}
.ls10{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.048960px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls15{letter-spacing:47.726640px;}
.ls12{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.177440px;}
.ws3{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.982800px;}
.wse{word-spacing:-12.934800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._25{margin-left:-4.180560px;}
._5{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._3{width:1.195044px;}
._4{width:2.953356px;}
._9{width:4.509000px;}
._a{width:5.591400px;}
._d{width:6.673200px;}
._8{width:8.476800px;}
._b{width:9.494757px;}
._7{width:10.609200px;}
._6{width:11.783400px;}
._13{width:14.794920px;}
._2{width:15.921720px;}
._1{width:17.032800px;}
._c{width:18.396600px;}
._e{width:19.959840px;}
._f{width:21.156240px;}
._10{width:22.304520px;}
._11{width:23.512920px;}
._14{width:25.003920px;}
._20{width:26.573040px;}
._15{width:28.496880px;}
._12{width:30.360600px;}
._22{width:31.743360px;}
._1e{width:36.552960px;}
._16{width:43.947720px;}
._19{width:58.556880px;}
._1b{width:62.705160px;}
._1f{width:84.468600px;}
._26{width:125.921160px;}
._27{width:126.943560px;}
._28{width:141.702840px;}
._18{width:158.596560px;}
._24{width:166.953240px;}
._1d{width:171.762840px;}
._1a{width:204.408000px;}
._17{width:221.301720px;}
._1c{width:233.385840px;}
._21{width:273.365640px;}
._23{width:276.612120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:7.830000px;}
.yc5{bottom:7.920000px;}
.yd1{bottom:25.470000px;}
.yd5{bottom:43.020000px;}
.yd3{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc9{bottom:111.990000px;}
.y133{bottom:112.710000px;}
.yaf{bottom:125.310000px;}
.y119{bottom:130.170000px;}
.y132{bottom:130.350000px;}
.y100{bottom:131.610000px;}
.y57{bottom:133.860000px;}
.y81{bottom:138.270000px;}
.yc8{bottom:139.350000px;}
.y27{bottom:140.250000px;}
.yee{bottom:141.510000px;}
.yae{bottom:142.860000px;}
.y131{bottom:147.900000px;}
.y56{bottom:151.500000px;}
.y80{bottom:155.910000px;}
.y26{bottom:157.800000px;}
.yed{bottom:159.060000px;}
.yad{bottom:160.500000px;}
.y130{bottom:165.450000px;}
.y118{bottom:165.720000px;}
.yc7{bottom:166.710000px;}
.yff{bottom:167.160000px;}
.y55{bottom:169.050000px;}
.y7f{bottom:173.460000px;}
.y25{bottom:175.350000px;}
.yec{bottom:176.610000px;}
.y12f{bottom:183.090000px;}
.y117{bottom:183.270000px;}
.yfe{bottom:184.800000px;}
.y54{bottom:186.600000px;}
.yac{bottom:187.050000px;}
.y7e{bottom:191.100000px;}
.y24{bottom:192.990000px;}
.yc6{bottom:194.070000px;}
.yeb{bottom:194.250000px;}
.y12e{bottom:200.640000px;}
.y116{bottom:200.910000px;}
.yfd{bottom:202.350000px;}
.y53{bottom:204.240000px;}
.y7d{bottom:208.650000px;}
.yea{bottom:211.800000px;}
.y115{bottom:218.460000px;}
.yfc{bottom:219.990000px;}
.yc4{bottom:221.340000px;}
.yab{bottom:222.960000px;}
.y7c{bottom:226.200000px;}
.y12d{bottom:227.280000px;}
.y23{bottom:228.540000px;}
.y52{bottom:230.790000px;}
.y114{bottom:236.100000px;}
.yfb{bottom:237.540000px;}
.ye9{bottom:238.440000px;}
.y12c{bottom:244.830000px;}
.y22{bottom:246.090000px;}
.yc2{bottom:248.700000px;}
.y7b{bottom:252.840000px;}
.y113{bottom:253.650000px;}
.yfa{bottom:255.090000px;}
.y12b{bottom:262.380000px;}
.y21{bottom:263.730000px;}
.y51{bottom:266.700000px;}
.yaa{bottom:271.200000px;}
.yf9{bottom:272.730000px;}
.ye8{bottom:273.990000px;}
.y20{bottom:281.280000px;}
.y7a{bottom:288.390000px;}
.ya9{bottom:288.840000px;}
.y12a{bottom:289.290000px;}
.ye7{bottom:291.540000px;}
.yc1{bottom:297.390000px;}
.y1f{bottom:298.920000px;}
.yf8{bottom:299.280000px;}
.y79{bottom:305.940000px;}
.ya8{bottom:306.390000px;}
.ye6{bottom:309.180000px;}
.y50{bottom:314.940000px;}
.y78{bottom:323.580000px;}
.ya7{bottom:323.940000px;}
.ye5{bottom:326.730000px;}
.y4f{bottom:332.580000px;}
.yc0{bottom:332.940000px;}
.y1e{bottom:334.470000px;}
.yf7{bottom:334.920000px;}
.y129{bottom:337.620000px;}
.y77{bottom:341.130000px;}
.ya6{bottom:341.580000px;}
.ye4{bottom:344.370000px;}
.y4e{bottom:350.130000px;}
.ybf{bottom:350.580000px;}
.y1d{bottom:352.020000px;}
.y128{bottom:355.170000px;}
.y76{bottom:358.770000px;}
.ya5{bottom:359.130000px;}
.ye3{bottom:361.920000px;}
.yf6{bottom:367.140000px;}
.y4d{bottom:367.770000px;}
.ybe{bottom:368.130000px;}
.y112{bottom:368.580000px;}
.y1c{bottom:369.660000px;}
.y127{bottom:372.810000px;}
.y75{bottom:376.320000px;}
.ya4{bottom:376.770000px;}
.ye2{bottom:379.470000px;}
.y4c{bottom:385.320000px;}
.ybd{bottom:385.770000px;}
.y111{bottom:386.130000px;}
.y1b{bottom:387.210000px;}
.y126{bottom:390.360000px;}
.y4b{bottom:402.870000px;}
.ya3{bottom:403.320000px;}
.y110{bottom:403.770000px;}
.y1a{bottom:404.850000px;}
.ye1{bottom:406.110000px;}
.y125{bottom:407.910000px;}
.y4a{bottom:420.510000px;}
.ybc{bottom:420.870000px;}
.y10f{bottom:421.320000px;}
.y124{bottom:425.550000px;}
.y19{bottom:431.760000px;}
.y74{bottom:438.510000px;}
.ya2{bottom:438.870000px;}
.ye0{bottom:441.660000px;}
.y123{bottom:443.100000px;}
.y49{bottom:447.060000px;}
.y73{bottom:456.060000px;}
.ya1{bottom:456.510000px;}
.ydf{bottom:459.300000px;}
.y122{bottom:460.740000px;}
.y72{bottom:473.730000px;}
.ya0{bottom:474.090000px;}
.yde{bottom:476.880000px;}
.y121{bottom:478.320000px;}
.y18{bottom:480.030000px;}
.y48{bottom:482.730000px;}
.y71{bottom:491.280000px;}
.y9f{bottom:491.730000px;}
.ydd{bottom:494.430000px;}
.y120{bottom:495.870000px;}
.y17{bottom:497.940000px;}
.y47{bottom:500.280000px;}
.y70{bottom:508.830000px;}
.y9e{bottom:509.280000px;}
.ydc{bottom:512.070000px;}
.y11f{bottom:513.510000px;}
.y46{bottom:517.830000px;}
.ybb{bottom:518.640000px;}
.y6f{bottom:526.470000px;}
.y9d{bottom:526.830000px;}
.ydb{bottom:529.620000px;}
.y11e{bottom:531.060000px;}
.y16{bottom:534.930000px;}
.y45{bottom:535.470000px;}
.y10e{bottom:535.830000px;}
.y9c{bottom:544.470000px;}
.yda{bottom:547.260000px;}
.y15{bottom:552.570000px;}
.y44{bottom:553.020000px;}
.y11d{bottom:557.970000px;}
.yba{bottom:566.880000px;}
.y14{bottom:570.120000px;}
.y43{bottom:570.660000px;}
.y9b{bottom:571.020000px;}
.y10d{bottom:571.470000px;}
.yd9{bottom:573.810000px;}
.yb9{bottom:584.430000px;}
.y13{bottom:587.670000px;}
.y42{bottom:588.210000px;}
.y6e{bottom:588.930000px;}
.y10c{bottom:589.020000px;}
.yb8{bottom:602.070000px;}
.y12{bottom:605.310000px;}
.y11c{bottom:606.210000px;}
.y9a{bottom:606.660000px;}
.yd8{bottom:606.750000px;}
.y41{bottom:614.760000px;}
.yb7{bottom:619.620000px;}
.y11{bottom:622.860000px;}
.y99{bottom:624.210000px;}
.y6d{bottom:637.260000px;}
.y11b{bottom:638.430000px;}
.y10{bottom:640.500000px;}
.y98{bottom:641.760000px;}
.y40{bottom:650.400000px;}
.y6c{bottom:654.810000px;}
.yf{bottom:658.050000px;}
.y97{bottom:659.400000px;}
.y3f{bottom:667.950000px;}
.yd7{bottom:669.300000px;}
.y6b{bottom:672.360000px;}
.ye{bottom:675.600000px;}
.y96{bottom:676.950000px;}
.y3e{bottom:685.590000px;}
.y6a{bottom:690.000000px;}
.yd{bottom:693.240000px;}
.y95{bottom:694.590000px;}
.y3d{bottom:703.140000px;}
.y69{bottom:707.550000px;}
.yc{bottom:710.790000px;}
.y94{bottom:712.140000px;}
.yb6{bottom:716.550000px;}
.y3c{bottom:720.690000px;}
.y68{bottom:725.190000px;}
.yb{bottom:728.430000px;}
.y10b{bottom:729.690000px;}
.yd6{bottom:731.760000px;}
.y3b{bottom:738.330000px;}
.y93{bottom:738.690000px;}
.y67{bottom:751.740000px;}
.yb5{bottom:752.190000px;}
.ya{bottom:755.340000px;}
.y10a{bottom:756.330000px;}
.y3a{bottom:764.880000px;}
.yb4{bottom:769.740000px;}
.y92{bottom:774.330000px;}
.y137{bottom:778.290000px;}
.y66{bottom:787.290000px;}
.y91{bottom:791.880000px;}
.y109{bottom:792.240000px;}
.yd4{bottom:794.310000px;}
.y136{bottom:795.930000px;}
.y39{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y65{bottom:804.930000px;}
.y90{bottom:809.520000px;}
.y135{bottom:813.480000px;}
.y38{bottom:818.070000px;}
.y64{bottom:822.480000px;}
.y8f{bottom:827.070000px;}
.y37{bottom:835.620000px;}
.y8{bottom:839.130000px;}
.y63{bottom:840.030000px;}
.y108{bottom:840.480000px;}
.y8e{bottom:844.620000px;}
.y36{bottom:853.260000px;}
.yd2{bottom:856.770000px;}
.y62{bottom:857.670000px;}
.y107{bottom:858.030000px;}
.y8d{bottom:862.260000px;}
.y35{bottom:870.810000px;}
.y7{bottom:874.950000px;}
.y61{bottom:875.220000px;}
.y106{bottom:875.670000px;}
.y8c{bottom:879.810000px;}
.yb3{bottom:884.220000px;}
.y34{bottom:888.450000px;}
.y105{bottom:893.220000px;}
.y8b{bottom:897.450000px;}
.y60{bottom:901.860000px;}
.y104{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y33{bottom:915.000000px;}
.yd0{bottom:919.320000px;}
.y134{bottom:919.410000px;}
.yb2{bottom:919.860000px;}
.y8a{bottom:924.000000px;}
.y103{bottom:928.410000px;}
.y5f{bottom:937.410000px;}
.yf5{bottom:941.550000px;}
.y102{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y32{bottom:950.910000px;}
.y5e{bottom:954.960000px;}
.yf4{bottom:959.190000px;}
.y89{bottom:959.910000px;}
.y101{bottom:963.600000px;}
.y5d{bottom:972.600000px;}
.yf3{bottom:976.740000px;}
.y4{bottom:985.380000px;}
.ycf{bottom:985.560000px;}
.y5c{bottom:990.150000px;}
.y11a{bottom:990.600000px;}
.yf2{bottom:994.290000px;}
.y31{bottom:999.150000px;}
.y5b{bottom:1007.790000px;}
.y88{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.yf1{bottom:1011.960000px;}
.y30{bottom:1016.820000px;}
.yce{bottom:1021.230000px;}
.y5a{bottom:1025.370000px;}
.y87{bottom:1025.820000px;}
.y2f{bottom:1034.370000px;}
.yf0{bottom:1038.510000px;}
.y59{bottom:1042.920000px;}
.y86{bottom:1043.370000px;}
.ycd{bottom:1045.170000px;}
.y2e{bottom:1051.920000px;}
.y58{bottom:1060.560000px;}
.y85{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.ycc{bottom:1072.530000px;}
.yef{bottom:1074.420000px;}
.y84{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.yb1{bottom:1087.560000px;}
.y83{bottom:1096.110000px;}
.ycb{bottom:1099.890000px;}
.yb0{bottom:1105.110000px;}
.y82{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yca{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.hf{height:61.740000px;}
.h10{height:61.793886px;}
.he{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:54.900000px;}
.w8{width:81.180000px;}
.w9{width:98.280000px;}
.w4{width:112.590000px;}
.w7{width:133.860000px;}
.w6{width:150.300000px;}
.wb{width:183.990000px;}
.w5{width:198.570000px;}
.wc{width:199.710000px;}
.w3{width:231.240000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:99.090000px;}
.x12{left:111.239987px;}
.x2{left:202.799987px;}
.xf{left:226.019987px;}
.x11{left:256.709987px;}
.xa{left:285.240000px;}
.x6{left:331.050000px;}
.xb{left:384.240000px;}
.xc{left:439.950000px;}
.x7{left:444.450000px;}
.xd{left:624.750000px;}
.x8{left:643.830000px;}
.xe{left:690.809987px;}
.x10{left:716.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.259200pt;}
.ls10{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.043520pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls15{letter-spacing:42.423680pt;}
.ls12{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.713280pt;}
.ws3{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.497600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._25{margin-left:-3.716053pt;}
._5{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.062261pt;}
._4{width:2.625206pt;}
._9{width:4.008000pt;}
._a{width:4.970134pt;}
._d{width:5.931733pt;}
._8{width:7.534933pt;}
._b{width:8.439784pt;}
._7{width:9.430400pt;}
._6{width:10.474133pt;}
._13{width:13.151040pt;}
._2{width:14.152640pt;}
._1{width:15.140267pt;}
._c{width:16.352533pt;}
._e{width:17.742080pt;}
._f{width:18.805547pt;}
._10{width:19.826240pt;}
._11{width:20.900373pt;}
._14{width:22.225707pt;}
._20{width:23.620480pt;}
._15{width:25.330560pt;}
._12{width:26.987200pt;}
._22{width:28.216320pt;}
._1e{width:32.491520pt;}
._16{width:39.064640pt;}
._19{width:52.050560pt;}
._1b{width:55.737920pt;}
._1f{width:75.083200pt;}
._26{width:111.929920pt;}
._27{width:112.838720pt;}
._28{width:125.958080pt;}
._18{width:140.974720pt;}
._24{width:148.402880pt;}
._1d{width:152.678080pt;}
._1a{width:181.696000pt;}
._17{width:196.712640pt;}
._1c{width:207.454080pt;}
._21{width:242.991680pt;}
._23{width:245.877440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:6.960000pt;}
.yc5{bottom:7.040000pt;}
.yd1{bottom:22.640000pt;}
.yd5{bottom:38.240000pt;}
.yd3{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc9{bottom:99.546667pt;}
.y133{bottom:100.186667pt;}
.yaf{bottom:111.386667pt;}
.y119{bottom:115.706667pt;}
.y132{bottom:115.866667pt;}
.y100{bottom:116.986667pt;}
.y57{bottom:118.986667pt;}
.y81{bottom:122.906667pt;}
.yc8{bottom:123.866667pt;}
.y27{bottom:124.666667pt;}
.yee{bottom:125.786667pt;}
.yae{bottom:126.986667pt;}
.y131{bottom:131.466667pt;}
.y56{bottom:134.666667pt;}
.y80{bottom:138.586667pt;}
.y26{bottom:140.266667pt;}
.yed{bottom:141.386667pt;}
.yad{bottom:142.666667pt;}
.y130{bottom:147.066667pt;}
.y118{bottom:147.306667pt;}
.yc7{bottom:148.186667pt;}
.yff{bottom:148.586667pt;}
.y55{bottom:150.266667pt;}
.y7f{bottom:154.186667pt;}
.y25{bottom:155.866667pt;}
.yec{bottom:156.986667pt;}
.y12f{bottom:162.746667pt;}
.y117{bottom:162.906667pt;}
.yfe{bottom:164.266667pt;}
.y54{bottom:165.866667pt;}
.yac{bottom:166.266667pt;}
.y7e{bottom:169.866667pt;}
.y24{bottom:171.546667pt;}
.yc6{bottom:172.506667pt;}
.yeb{bottom:172.666667pt;}
.y12e{bottom:178.346667pt;}
.y116{bottom:178.586667pt;}
.yfd{bottom:179.866667pt;}
.y53{bottom:181.546667pt;}
.y7d{bottom:185.466667pt;}
.yea{bottom:188.266667pt;}
.y115{bottom:194.186667pt;}
.yfc{bottom:195.546667pt;}
.yc4{bottom:196.746667pt;}
.yab{bottom:198.186667pt;}
.y7c{bottom:201.066667pt;}
.y12d{bottom:202.026667pt;}
.y23{bottom:203.146667pt;}
.y52{bottom:205.146667pt;}
.y114{bottom:209.866667pt;}
.yfb{bottom:211.146667pt;}
.ye9{bottom:211.946667pt;}
.y12c{bottom:217.626667pt;}
.y22{bottom:218.746667pt;}
.yc2{bottom:221.066667pt;}
.y7b{bottom:224.746667pt;}
.y113{bottom:225.466667pt;}
.yfa{bottom:226.746667pt;}
.y12b{bottom:233.226667pt;}
.y21{bottom:234.426667pt;}
.y51{bottom:237.066667pt;}
.yaa{bottom:241.066667pt;}
.yf9{bottom:242.426667pt;}
.ye8{bottom:243.546667pt;}
.y20{bottom:250.026667pt;}
.y7a{bottom:256.346667pt;}
.ya9{bottom:256.746667pt;}
.y12a{bottom:257.146667pt;}
.ye7{bottom:259.146667pt;}
.yc1{bottom:264.346667pt;}
.y1f{bottom:265.706667pt;}
.yf8{bottom:266.026667pt;}
.y79{bottom:271.946667pt;}
.ya8{bottom:272.346667pt;}
.ye6{bottom:274.826667pt;}
.y50{bottom:279.946667pt;}
.y78{bottom:287.626667pt;}
.ya7{bottom:287.946667pt;}
.ye5{bottom:290.426667pt;}
.y4f{bottom:295.626667pt;}
.yc0{bottom:295.946667pt;}
.y1e{bottom:297.306667pt;}
.yf7{bottom:297.706667pt;}
.y129{bottom:300.106667pt;}
.y77{bottom:303.226667pt;}
.ya6{bottom:303.626667pt;}
.ye4{bottom:306.106667pt;}
.y4e{bottom:311.226667pt;}
.ybf{bottom:311.626667pt;}
.y1d{bottom:312.906667pt;}
.y128{bottom:315.706667pt;}
.y76{bottom:318.906667pt;}
.ya5{bottom:319.226667pt;}
.ye3{bottom:321.706667pt;}
.yf6{bottom:326.346667pt;}
.y4d{bottom:326.906667pt;}
.ybe{bottom:327.226667pt;}
.y112{bottom:327.626667pt;}
.y1c{bottom:328.586667pt;}
.y127{bottom:331.386667pt;}
.y75{bottom:334.506667pt;}
.ya4{bottom:334.906667pt;}
.ye2{bottom:337.306667pt;}
.y4c{bottom:342.506667pt;}
.ybd{bottom:342.906667pt;}
.y111{bottom:343.226667pt;}
.y1b{bottom:344.186667pt;}
.y126{bottom:346.986667pt;}
.y4b{bottom:358.106667pt;}
.ya3{bottom:358.506667pt;}
.y110{bottom:358.906667pt;}
.y1a{bottom:359.866667pt;}
.ye1{bottom:360.986667pt;}
.y125{bottom:362.586667pt;}
.y4a{bottom:373.786667pt;}
.ybc{bottom:374.106667pt;}
.y10f{bottom:374.506667pt;}
.y124{bottom:378.266667pt;}
.y19{bottom:383.786667pt;}
.y74{bottom:389.786667pt;}
.ya2{bottom:390.106667pt;}
.ye0{bottom:392.586667pt;}
.y123{bottom:393.866667pt;}
.y49{bottom:397.386667pt;}
.y73{bottom:405.386667pt;}
.ya1{bottom:405.786667pt;}
.ydf{bottom:408.266667pt;}
.y122{bottom:409.546667pt;}
.y72{bottom:421.093333pt;}
.ya0{bottom:421.413333pt;}
.yde{bottom:423.893333pt;}
.y121{bottom:425.173333pt;}
.y18{bottom:426.693333pt;}
.y48{bottom:429.093333pt;}
.y71{bottom:436.693333pt;}
.y9f{bottom:437.093333pt;}
.ydd{bottom:439.493333pt;}
.y120{bottom:440.773333pt;}
.y17{bottom:442.613333pt;}
.y47{bottom:444.693333pt;}
.y70{bottom:452.293333pt;}
.y9e{bottom:452.693333pt;}
.ydc{bottom:455.173333pt;}
.y11f{bottom:456.453333pt;}
.y46{bottom:460.293333pt;}
.ybb{bottom:461.013333pt;}
.y6f{bottom:467.973333pt;}
.y9d{bottom:468.293333pt;}
.ydb{bottom:470.773333pt;}
.y11e{bottom:472.053333pt;}
.y16{bottom:475.493333pt;}
.y45{bottom:475.973333pt;}
.y10e{bottom:476.293333pt;}
.y9c{bottom:483.973333pt;}
.yda{bottom:486.453333pt;}
.y15{bottom:491.173333pt;}
.y44{bottom:491.573333pt;}
.y11d{bottom:495.973333pt;}
.yba{bottom:503.893333pt;}
.y14{bottom:506.773333pt;}
.y43{bottom:507.253333pt;}
.y9b{bottom:507.573333pt;}
.y10d{bottom:507.973333pt;}
.yd9{bottom:510.053333pt;}
.yb9{bottom:519.493333pt;}
.y13{bottom:522.373333pt;}
.y42{bottom:522.853333pt;}
.y6e{bottom:523.493333pt;}
.y10c{bottom:523.573333pt;}
.yb8{bottom:535.173333pt;}
.y12{bottom:538.053333pt;}
.y11c{bottom:538.853333pt;}
.y9a{bottom:539.253333pt;}
.yd8{bottom:539.333333pt;}
.y41{bottom:546.453333pt;}
.yb7{bottom:550.773333pt;}
.y11{bottom:553.653333pt;}
.y99{bottom:554.853333pt;}
.y6d{bottom:566.453333pt;}
.y11b{bottom:567.493333pt;}
.y10{bottom:569.333333pt;}
.y98{bottom:570.453333pt;}
.y40{bottom:578.133333pt;}
.y6c{bottom:582.053333pt;}
.yf{bottom:584.933333pt;}
.y97{bottom:586.133333pt;}
.y3f{bottom:593.733333pt;}
.yd7{bottom:594.933333pt;}
.y6b{bottom:597.653333pt;}
.ye{bottom:600.533333pt;}
.y96{bottom:601.733333pt;}
.y3e{bottom:609.413333pt;}
.y6a{bottom:613.333333pt;}
.yd{bottom:616.213333pt;}
.y95{bottom:617.413333pt;}
.y3d{bottom:625.013333pt;}
.y69{bottom:628.933333pt;}
.yc{bottom:631.813333pt;}
.y94{bottom:633.013333pt;}
.yb6{bottom:636.933333pt;}
.y3c{bottom:640.613333pt;}
.y68{bottom:644.613333pt;}
.yb{bottom:647.493333pt;}
.y10b{bottom:648.613333pt;}
.yd6{bottom:650.453333pt;}
.y3b{bottom:656.293333pt;}
.y93{bottom:656.613333pt;}
.y67{bottom:668.213333pt;}
.yb5{bottom:668.613333pt;}
.ya{bottom:671.413333pt;}
.y10a{bottom:672.293333pt;}
.y3a{bottom:679.893333pt;}
.yb4{bottom:684.213333pt;}
.y92{bottom:688.293333pt;}
.y137{bottom:691.813333pt;}
.y66{bottom:699.813333pt;}
.y91{bottom:703.893333pt;}
.y109{bottom:704.213333pt;}
.yd4{bottom:706.053333pt;}
.y136{bottom:707.493333pt;}
.y39{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y65{bottom:715.493333pt;}
.y90{bottom:719.573333pt;}
.y135{bottom:723.093333pt;}
.y38{bottom:727.173333pt;}
.y64{bottom:731.093333pt;}
.y8f{bottom:735.173333pt;}
.y37{bottom:742.773333pt;}
.y8{bottom:745.893333pt;}
.y63{bottom:746.693333pt;}
.y108{bottom:747.093333pt;}
.y8e{bottom:750.773333pt;}
.y36{bottom:758.453333pt;}
.yd2{bottom:761.573333pt;}
.y62{bottom:762.373333pt;}
.y107{bottom:762.693333pt;}
.y8d{bottom:766.453333pt;}
.y35{bottom:774.053333pt;}
.y7{bottom:777.733333pt;}
.y61{bottom:777.973333pt;}
.y106{bottom:778.373333pt;}
.y8c{bottom:782.053333pt;}
.yb3{bottom:785.973333pt;}
.y34{bottom:789.733333pt;}
.y105{bottom:793.973333pt;}
.y8b{bottom:797.733333pt;}
.y60{bottom:801.653333pt;}
.y104{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y33{bottom:813.333333pt;}
.yd0{bottom:817.173333pt;}
.y134{bottom:817.253333pt;}
.yb2{bottom:817.653333pt;}
.y8a{bottom:821.333333pt;}
.y103{bottom:825.253333pt;}
.y5f{bottom:833.253333pt;}
.yf5{bottom:836.933333pt;}
.y102{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y32{bottom:845.253333pt;}
.y5e{bottom:848.853333pt;}
.yf4{bottom:852.613333pt;}
.y89{bottom:853.253333pt;}
.y101{bottom:856.533333pt;}
.y5d{bottom:864.533333pt;}
.yf3{bottom:868.213333pt;}
.y4{bottom:875.893333pt;}
.ycf{bottom:876.053333pt;}
.y5c{bottom:880.133333pt;}
.y11a{bottom:880.533333pt;}
.yf2{bottom:883.813333pt;}
.y31{bottom:888.133333pt;}
.y5b{bottom:895.813333pt;}
.y88{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.yf1{bottom:899.520000pt;}
.y30{bottom:903.840000pt;}
.yce{bottom:907.760000pt;}
.y5a{bottom:911.440000pt;}
.y87{bottom:911.840000pt;}
.y2f{bottom:919.440000pt;}
.yf0{bottom:923.120000pt;}
.y59{bottom:927.040000pt;}
.y86{bottom:927.440000pt;}
.ycd{bottom:929.040000pt;}
.y2e{bottom:935.040000pt;}
.y58{bottom:942.720000pt;}
.y85{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.ycc{bottom:953.360000pt;}
.yef{bottom:955.040000pt;}
.y84{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.yb1{bottom:966.720000pt;}
.y83{bottom:974.320000pt;}
.ycb{bottom:977.680000pt;}
.yb0{bottom:982.320000pt;}
.y82{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yca{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.hf{height:54.880000pt;}
.h10{height:54.927899pt;}
.he{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:48.800000pt;}
.w8{width:72.160000pt;}
.w9{width:87.360000pt;}
.w4{width:100.080000pt;}
.w7{width:118.986667pt;}
.w6{width:133.600000pt;}
.wb{width:163.546667pt;}
.w5{width:176.506667pt;}
.wc{width:177.520000pt;}
.w3{width:205.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:88.080000pt;}
.x12{left:98.879988pt;}
.x2{left:180.266655pt;}
.xf{left:200.906655pt;}
.x11{left:228.186655pt;}
.xa{left:253.546667pt;}
.x6{left:294.266667pt;}
.xb{left:341.546667pt;}
.xc{left:391.066667pt;}
.x7{left:395.066667pt;}
.xd{left:555.333333pt;}
.x8{left:572.293333pt;}
.xe{left:614.053322pt;}
.x10{left:637.013322pt;}
.x3{left:704.053322pt;}
}




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