
    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_19bad784b80005f6d08a45dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007812;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_e837962bee22dd430c94f7f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007812;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_b106c7dd5fdba7974ce28bfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002441;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_46c856aac7069bde3fa4e135.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002441;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_4521dd127e03e1222c24623f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.004883;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_415b9dc8b5caf9f474f10124.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004883;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e7de0cc2be1e188a42272917.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_b0ac23ec1de8f31278aae476.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090820;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_bd326a2ddf42087d33f2a459.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;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_8d469eec9e5484b9dcac8512.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999512;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_a922ef2d1444be1e4567fbdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.948000px;}
.ls13{letter-spacing:-0.828000px;}
.lsc{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.lsa{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.027360px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.025920px;}
.ls12{letter-spacing:0.027360px;}
.ls17{letter-spacing:0.095040px;}
.lsd{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.131040px;}
.lsb{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.305280px;}
.ls2{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.636480px;}
.lsf{letter-spacing:19.025280px;}
.ls3{letter-spacing:19.169280px;}
.ls0{letter-spacing:28.368000px;}
.ls1{letter-spacing:34.865280px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(184,108,0),0 0.015em rgb(184,108,0),0.015em 0 rgb(184,108,0),0 -0.015em  rgb(184,108,0);}
.sc3{text-shadow:-0.015em 0 rgb(123,73,0),0 0.015em rgb(123,73,0),0.015em 0 rgb(123,73,0),0 -0.015em  rgb(123,73,0);}
.sc2{text-shadow:-0.015em 0 rgb(235,151,125),0 0.015em rgb(235,151,125),0.015em 0 rgb(235,151,125),0 -0.015em  rgb(235,151,125);}
.sc1{text-shadow:-0.015em 0 rgb(48,103,133),0 0.015em rgb(48,103,133),0.015em 0 rgb(48,103,133),0 -0.015em  rgb(48,103,133);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(184,108,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(123,73,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(235,151,125);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(48,103,133);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-90.947520px;}
.wsf{word-spacing:-89.999520px;}
.ws10{word-spacing:-78.096240px;}
.ws6{word-spacing:-66.240000px;}
.ws0{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.720120px;}
.ws9{word-spacing:-18.676920px;}
.wsd{word-spacing:-18.523920px;}
.ws4{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws8{word-spacing:-18.262320px;}
.ws2{word-spacing:-18.109320px;}
.wsc{word-spacing:-17.956920px;}
.wse{word-spacing:-17.586720px;}
.wsb{word-spacing:-15.812640px;}
.ws11{word-spacing:-15.785280px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-90.947520px;}
._b{margin-left:-4.755120px;}
._8{margin-left:-3.305040px;}
._5{margin-left:-2.239920px;}
._1{margin-left:-1.179360px;}
._0{width:1.135440px;}
._2{width:2.370000px;}
._e{width:3.512160px;}
._f{width:4.541760px;}
._a{width:5.694960px;}
._9{width:6.743520px;}
._d{width:8.534880px;}
._c{width:9.869760px;}
._11{width:11.226240px;}
._12{width:12.261120px;}
._3{width:13.326720px;}
._4{width:14.936400px;}
._13{width:16.361280px;}
._6{width:21.978720px;}
._7{width:23.411280px;}
._15{width:24.463680px;}
._14{width:31.331520px;}
.fcf{color:transparent;}
.fce{color:rgb(246,146,0);}
.fc0{color:rgb(48,103,133);}
.fc1{color:rgb(235,151,125);}
.fc2{color:rgb(170,59,25);}
.fc3{color:rgb(32,69,89);}
.fc9{color:rgb(244,244,244);}
.fc4{color:rgb(0,0,0);}
.fc5{color:rgb(184,108,0);}
.fc6{color:rgb(65,138,179);}
.fc7{color:rgb(236,152,125);}
.fcb{color:rgb(255,200,61);}
.fc8{color:rgb(0,210,106);}
.fca{color:rgb(123,73,0);}
.fcd{color:rgb(96,57,0);}
.fcc{color:rgb(214,125,0);}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:4.500000px;}
.y52{bottom:4.680000px;}
.y8f{bottom:5.040000px;}
.y8e{bottom:5.940000px;}
.ya7{bottom:7.200000px;}
.y1{bottom:30.060000px;}
.y30{bottom:30.420000px;}
.y90{bottom:89.280000px;}
.yec{bottom:99.180000px;}
.ybc{bottom:99.540000px;}
.y8d{bottom:112.320000px;}
.y60{bottom:119.880000px;}
.yeb{bottom:121.140000px;}
.ybb{bottom:121.500000px;}
.y2d{bottom:127.080000px;}
.y110{bottom:132.480000px;}
.y8c{bottom:135.360000px;}
.y5f{bottom:140.400000px;}
.yea{bottom:142.920000px;}
.yba{bottom:143.460000px;}
.y2c{bottom:149.040000px;}
.y10f{bottom:154.470000px;}
.y5e{bottom:161.130000px;}
.ye9{bottom:164.910000px;}
.yb9{bottom:165.270000px;}
.y8b{bottom:167.250000px;}
.y2b{bottom:170.850000px;}
.y10e{bottom:176.430000px;}
.y5d{bottom:181.650000px;}
.yb8{bottom:187.230000px;}
.y8a{bottom:189.210000px;}
.ye8{bottom:190.110000px;}
.y2a{bottom:192.990000px;}
.y10d{bottom:198.390000px;}
.yb7{bottom:209.190000px;}
.y89{bottom:211.170000px;}
.y5c{bottom:212.430000px;}
.ye7{bottom:218.550000px;}
.y29{bottom:219.990000px;}
.y10c{bottom:220.350000px;}
.yb6{bottom:231.150000px;}
.y88{bottom:233.130000px;}
.y5b{bottom:234.390000px;}
.y28{bottom:241.950000px;}
.y10b{bottom:243.030000px;}
.ye6{bottom:245.550000px;}
.y5a{bottom:256.350000px;}
.y87{bottom:258.870000px;}
.y27{bottom:263.910000px;}
.ye5{bottom:267.510000px;}
.y10a{bottom:275.970000px;}
.y59{bottom:278.310000px;}
.yb5{bottom:284.790000px;}
.y86{bottom:289.290000px;}
.ye4{bottom:290.190000px;}
.y26{bottom:290.910000px;}
.y109{bottom:297.750000px;}
.y58{bottom:305.310000px;}
.y85{bottom:311.790000px;}
.ye3{bottom:312.690000px;}
.y25{bottom:312.870000px;}
.y108{bottom:320.610000px;}
.y57{bottom:324.750000px;}
.y84{bottom:333.750000px;}
.yb4{bottom:334.290000px;}
.y24{bottom:334.830000px;}
.ye2{bottom:335.190000px;}
.y107{bottom:345.090000px;}
.y56{bottom:345.270000px;}
.y83{bottom:355.710000px;}
.yb3{bottom:356.250000px;}
.ye1{bottom:357.150000px;}
.y23{bottom:357.510000px;}
.y55{bottom:365.970000px;}
.y106{bottom:367.770000px;}
.yb2{bottom:378.210000px;}
.ye0{bottom:379.110000px;}
.y82{bottom:381.450000px;}
.y54{bottom:386.490000px;}
.y22{bottom:390.450000px;}
.y105{bottom:392.070000px;}
.yb1{bottom:400.170000px;}
.ydf{bottom:401.115000px;}
.y53{bottom:407.235000px;}
.y81{bottom:409.935000px;}
.y21{bottom:412.275000px;}
.y104{bottom:414.255000px;}
.yb0{bottom:422.895000px;}
.yde{bottom:423.075000px;}
.y51{bottom:427.755000px;}
.y80{bottom:429.735000px;}
.y20{bottom:434.235000px;}
.y103{bottom:436.395000px;}
.ydd{bottom:445.575000px;}
.y4f{bottom:448.455000px;}
.y7f{bottom:450.075000px;}
.y1f{bottom:456.195000px;}
.y102{bottom:458.175000px;}
.yaf{bottom:459.615000px;}
.ydc{bottom:467.535000px;}
.y7e{bottom:472.935000px;}
.y1e{bottom:478.335000px;}
.y4e{bottom:479.055000px;}
.y101{bottom:481.035000px;}
.yae{bottom:481.395000px;}
.ydb{bottom:489.495000px;}
.y7d{bottom:495.795000px;}
.y4d{bottom:501.195000px;}
.yad{bottom:503.355000px;}
.y1d{bottom:505.335000px;}
.y100{bottom:505.515000px;}
.yda{bottom:511.455000px;}
.y7c{bottom:520.275000px;}
.yac{bottom:526.035000px;}
.y1c{bottom:527.115000px;}
.yff{bottom:527.475000px;}
.y4c{bottom:528.195000px;}
.yd9{bottom:533.955000px;}
.y7b{bottom:542.235000px;}
.yab{bottom:548.895000px;}
.y1b{bottom:549.075000px;}
.yfe{bottom:549.435000px;}
.y4b{bottom:549.975000px;}
.yd8{bottom:555.915000px;}
.y7a{bottom:564.195000px;}
.y1a{bottom:571.215000px;}
.yfd{bottom:571.395000px;}
.y4a{bottom:571.935000px;}
.yd7{bottom:578.055000px;}
.y79{bottom:586.155000px;}
.y49{bottom:593.895000px;}
.yfc{bottom:594.075000px;}
.yaa{bottom:594.975000px;}
.y19{bottom:598.215000px;}
.yd6{bottom:600.555000px;}
.y78{bottom:608.115000px;}
.y48{bottom:616.035000px;}
.ya9{bottom:618.015000px;}
.yfb{bottom:618.555000px;}
.y18{bottom:620.715000px;}
.yd5{bottom:622.335000px;}
.y77{bottom:630.075000px;}
.yfa{bottom:640.515000px;}
.ya8{bottom:641.055000px;}
.y47{bottom:642.855000px;}
.yd4{bottom:644.475000px;}
.y76{bottom:652.605000px;}
.y17{bottom:653.685000px;}
.yf9{bottom:662.505000px;}
.ya6{bottom:664.125000px;}
.y46{bottom:664.845000px;}
.yd3{bottom:667.005000px;}
.y16{bottom:675.645000px;}
.y75{bottom:683.385000px;}
.yf8{bottom:684.465000px;}
.y45{bottom:687.525000px;}
.yd2{bottom:688.965000px;}
.ya5{bottom:697.425000px;}
.y15{bottom:697.605000px;}
.y74{bottom:706.065000px;}
.yf7{bottom:707.145000px;}
.yd1{bottom:711.465000px;}
.ya4{bottom:719.385000px;}
.y14{bottom:719.565000px;}
.y44{bottom:724.245000px;}
.yf6{bottom:731.625000px;}
.yd0{bottom:733.425000px;}
.y73{bottom:734.325000px;}
.ya3{bottom:741.345000px;}
.y13{bottom:741.525000px;}
.y43{bottom:746.925000px;}
.yf5{bottom:753.585000px;}
.ycf{bottom:755.385000px;}
.y72{bottom:756.465000px;}
.ya2{bottom:763.305000px;}
.y12{bottom:763.485000px;}
.y42{bottom:775.185000px;}
.yce{bottom:777.885000px;}
.y71{bottom:778.965000px;}
.yf4{bottom:779.325000px;}
.ya1{bottom:785.265000px;}
.y11{bottom:785.445000px;}
.y41{bottom:797.145000px;}
.ycd{bottom:799.845000px;}
.y70{bottom:804.525000px;}
.ya0{bottom:807.225000px;}
.yf3{bottom:807.765000px;}
.y10{bottom:812.445000px;}
.y40{bottom:819.105000px;}
.ycc{bottom:821.985000px;}
.y9f{bottom:829.185000px;}
.yf2{bottom:829.545000px;}
.y6f{bottom:833.145000px;}
.yf{bottom:834.585000px;}
.ycb{bottom:844.485000px;}
.y3f{bottom:846.105000px;}
.y9e{bottom:851.865000px;}
.yf1{bottom:854.745000px;}
.y6e{bottom:856.365000px;}
.ye{bottom:857.085000px;}
.yca{bottom:866.265000px;}
.y3e{bottom:868.065000px;}
.y9d{bottom:876.345000px;}
.yd{bottom:879.585000px;}
.y6d{bottom:881.025000px;}
.yf0{bottom:883.185000px;}
.yc9{bottom:888.225000px;}
.y3d{bottom:890.025000px;}
.y9c{bottom:898.350000px;}
.yc{bottom:901.590000px;}
.y6c{bottom:903.570000px;}
.yef{bottom:905.190000px;}
.yc8{bottom:910.230000px;}
.y3c{bottom:917.070000px;}
.y9b{bottom:920.490000px;}
.yb{bottom:924.270000px;}
.y6b{bottom:926.070000px;}
.yee{bottom:930.210000px;}
.yc7{bottom:935.430000px;}
.y3b{bottom:939.030000px;}
.y9a{bottom:942.810000px;}
.ya{bottom:946.770000px;}
.y6a{bottom:948.750000px;}
.yed{bottom:958.830000px;}
.y3a{bottom:961.170000px;}
.yc6{bottom:963.870000px;}
.y99{bottom:965.670000px;}
.y9{bottom:969.270000px;}
.y69{bottom:971.250000px;}
.yc5{bottom:985.650000px;}
.y39{bottom:988.170000px;}
.y98{bottom:989.970000px;}
.y68{bottom:993.750000px;}
.yc4{bottom:1007.610000px;}
.y38{bottom:1009.950000px;}
.y97{bottom:1011.930000px;}
.y67{bottom:1015.890000px;}
.y8{bottom:1019.490000px;}
.yc3{bottom:1029.570000px;}
.y37{bottom:1032.090000px;}
.y96{bottom:1033.890000px;}
.y66{bottom:1038.390000px;}
.y7{bottom:1039.470000px;}
.yc2{bottom:1054.770000px;}
.y36{bottom:1059.090000px;}
.y6{bottom:1059.450000px;}
.y95{bottom:1059.630000px;}
.y65{bottom:1060.170000px;}
.y5{bottom:1079.430000px;}
.y35{bottom:1081.050000px;}
.y64{bottom:1082.130000px;}
.yc1{bottom:1083.210000px;}
.y94{bottom:1090.050000px;}
.y4{bottom:1101.930000px;}
.y34{bottom:1103.010000px;}
.y63{bottom:1104.270000px;}
.yc0{bottom:1104.990000px;}
.y93{bottom:1112.910000px;}
.y62{bottom:1126.770000px;}
.ybf{bottom:1126.950000px;}
.y33{bottom:1130.010000px;}
.y3{bottom:1138.110000px;}
.y92{bottom:1145.490000px;}
.ybe{bottom:1148.940000px;}
.y61{bottom:1149.480000px;}
.y32{bottom:1152.000000px;}
.y91{bottom:1168.200000px;}
.y31{bottom:1173.960000px;}
.ybd{bottom:1174.140000px;}
.y2f{bottom:1193.580000px;}
.y2{bottom:1213.560000px;}
.y2e{bottom:1215.720000px;}
.ha{height:19.440000px;}
.hb{height:19.476000px;}
.h8{height:19.800000px;}
.hc{height:19.980000px;}
.hd{height:20.016000px;}
.he{height:21.960000px;}
.h12{height:21.996000px;}
.h11{height:22.500000px;}
.h9{height:45.048516px;}
.h2{height:47.329453px;}
.hf{height:51.075352px;}
.h6{height:52.461562px;}
.h5{height:57.023438px;}
.h10{height:58.844458px;}
.h7{height:59.480156px;}
.h3{height:66.717422px;}
.h4{height:123.740859px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:70.776000px;}
.wc{width:106.416000px;}
.wd{width:109.620000px;}
.w3{width:123.156000px;}
.wb{width:123.300000px;}
.wf{width:127.116000px;}
.w9{width:131.796000px;}
.w7{width:132.696000px;}
.w6{width:158.430000px;}
.we{width:229.575000px;}
.w10{width:275.475000px;}
.w5{width:294.150000px;}
.w4{width:322.815000px;}
.w11{width:362.775000px;}
.w8{width:474.225000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.980000px;}
.xe{left:8.100000px;}
.x9{left:63.899987px;}
.x13{left:74.519987px;}
.xa{left:90.935987px;}
.x20{left:95.975987px;}
.x1f{left:97.235987px;}
.x14{left:101.555987px;}
.xb{left:117.935987px;}
.x1b{left:162.209987px;}
.x1c{left:168.869987px;}
.x6{left:171.389987px;}
.x2{left:176.249987px;}
.xf{left:187.050000px;}
.x5{left:191.369987px;}
.x16{left:195.690000px;}
.x1e{left:205.769987px;}
.x11{left:222.330000px;}
.xc{left:264.449987px;}
.x17{left:266.475000px;}
.x3{left:285.194987px;}
.x7{left:294.014987px;}
.x4{left:311.834987px;}
.x12{left:355.035000px;}
.x8{left:380.774987px;}
.x18{left:389.775000px;}
.x1{left:459.824987px;}
.x1d{left:466.485000px;}
.x19{left:496.185000px;}
.x10{left:509.865000px;}
.x1a{left:605.805000px;}
.xd{left:608.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.842667pt;}
.ls13{letter-spacing:-0.736000pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.lsa{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.024320pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.023040pt;}
.ls12{letter-spacing:0.024320pt;}
.ls17{letter-spacing:0.084480pt;}
.lsd{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.116480pt;}
.lsb{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.271360pt;}
.ls2{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.565760pt;}
.lsf{letter-spacing:16.911360pt;}
.ls3{letter-spacing:17.039360pt;}
.ls0{letter-spacing:25.216000pt;}
.ls1{letter-spacing:30.991360pt;}
.wsa{word-spacing:-80.842240pt;}
.wsf{word-spacing:-79.999573pt;}
.ws10{word-spacing:-69.418880pt;}
.ws6{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.640107pt;}
.ws9{word-spacing:-16.601707pt;}
.wsd{word-spacing:-16.465707pt;}
.ws4{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws8{word-spacing:-16.233173pt;}
.ws2{word-spacing:-16.097173pt;}
.wsc{word-spacing:-15.961707pt;}
.wse{word-spacing:-15.632640pt;}
.wsb{word-spacing:-14.055680pt;}
.ws11{word-spacing:-14.031360pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-80.842240pt;}
._b{margin-left:-4.226773pt;}
._8{margin-left:-2.937813pt;}
._5{margin-left:-1.991040pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.009280pt;}
._2{width:2.106667pt;}
._e{width:3.121920pt;}
._f{width:4.037120pt;}
._a{width:5.062187pt;}
._9{width:5.994240pt;}
._d{width:7.586560pt;}
._c{width:8.773120pt;}
._11{width:9.978880pt;}
._12{width:10.898773pt;}
._3{width:11.845973pt;}
._4{width:13.276800pt;}
._13{width:14.543360pt;}
._6{width:19.536640pt;}
._7{width:20.810027pt;}
._15{width:21.745493pt;}
._14{width:27.850240pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:4.000000pt;}
.y52{bottom:4.160000pt;}
.y8f{bottom:4.480000pt;}
.y8e{bottom:5.280000pt;}
.ya7{bottom:6.400000pt;}
.y1{bottom:26.720000pt;}
.y30{bottom:27.040000pt;}
.y90{bottom:79.360000pt;}
.yec{bottom:88.160000pt;}
.ybc{bottom:88.480000pt;}
.y8d{bottom:99.840000pt;}
.y60{bottom:106.560000pt;}
.yeb{bottom:107.680000pt;}
.ybb{bottom:108.000000pt;}
.y2d{bottom:112.960000pt;}
.y110{bottom:117.760000pt;}
.y8c{bottom:120.320000pt;}
.y5f{bottom:124.800000pt;}
.yea{bottom:127.040000pt;}
.yba{bottom:127.520000pt;}
.y2c{bottom:132.480000pt;}
.y10f{bottom:137.306667pt;}
.y5e{bottom:143.226667pt;}
.ye9{bottom:146.586667pt;}
.yb9{bottom:146.906667pt;}
.y8b{bottom:148.666667pt;}
.y2b{bottom:151.866667pt;}
.y10e{bottom:156.826667pt;}
.y5d{bottom:161.466667pt;}
.yb8{bottom:166.426667pt;}
.y8a{bottom:168.186667pt;}
.ye8{bottom:168.986667pt;}
.y2a{bottom:171.546667pt;}
.y10d{bottom:176.346667pt;}
.yb7{bottom:185.946667pt;}
.y89{bottom:187.706667pt;}
.y5c{bottom:188.826667pt;}
.ye7{bottom:194.266667pt;}
.y29{bottom:195.546667pt;}
.y10c{bottom:195.866667pt;}
.yb6{bottom:205.466667pt;}
.y88{bottom:207.226667pt;}
.y5b{bottom:208.346667pt;}
.y28{bottom:215.066667pt;}
.y10b{bottom:216.026667pt;}
.ye6{bottom:218.266667pt;}
.y5a{bottom:227.866667pt;}
.y87{bottom:230.106667pt;}
.y27{bottom:234.586667pt;}
.ye5{bottom:237.786667pt;}
.y10a{bottom:245.306667pt;}
.y59{bottom:247.386667pt;}
.yb5{bottom:253.146667pt;}
.y86{bottom:257.146667pt;}
.ye4{bottom:257.946667pt;}
.y26{bottom:258.586667pt;}
.y109{bottom:264.666667pt;}
.y58{bottom:271.386667pt;}
.y85{bottom:277.146667pt;}
.ye3{bottom:277.946667pt;}
.y25{bottom:278.106667pt;}
.y108{bottom:284.986667pt;}
.y57{bottom:288.666667pt;}
.y84{bottom:296.666667pt;}
.yb4{bottom:297.146667pt;}
.y24{bottom:297.626667pt;}
.ye2{bottom:297.946667pt;}
.y107{bottom:306.746667pt;}
.y56{bottom:306.906667pt;}
.y83{bottom:316.186667pt;}
.yb3{bottom:316.666667pt;}
.ye1{bottom:317.466667pt;}
.y23{bottom:317.786667pt;}
.y55{bottom:325.306667pt;}
.y106{bottom:326.906667pt;}
.yb2{bottom:336.186667pt;}
.ye0{bottom:336.986667pt;}
.y82{bottom:339.066667pt;}
.y54{bottom:343.546667pt;}
.y22{bottom:347.066667pt;}
.y105{bottom:348.506667pt;}
.yb1{bottom:355.706667pt;}
.ydf{bottom:356.546667pt;}
.y53{bottom:361.986667pt;}
.y81{bottom:364.386667pt;}
.y21{bottom:366.466667pt;}
.y104{bottom:368.226667pt;}
.yb0{bottom:375.906667pt;}
.yde{bottom:376.066667pt;}
.y51{bottom:380.226667pt;}
.y80{bottom:381.986667pt;}
.y20{bottom:385.986667pt;}
.y103{bottom:387.906667pt;}
.ydd{bottom:396.066667pt;}
.y4f{bottom:398.626667pt;}
.y7f{bottom:400.066667pt;}
.y1f{bottom:405.506667pt;}
.y102{bottom:407.266667pt;}
.yaf{bottom:408.546667pt;}
.ydc{bottom:415.586667pt;}
.y7e{bottom:420.386667pt;}
.y1e{bottom:425.186667pt;}
.y4e{bottom:425.826667pt;}
.y101{bottom:427.586667pt;}
.yae{bottom:427.906667pt;}
.ydb{bottom:435.106667pt;}
.y7d{bottom:440.706667pt;}
.y4d{bottom:445.506667pt;}
.yad{bottom:447.426667pt;}
.y1d{bottom:449.186667pt;}
.y100{bottom:449.346667pt;}
.yda{bottom:454.626667pt;}
.y7c{bottom:462.466667pt;}
.yac{bottom:467.586667pt;}
.y1c{bottom:468.546667pt;}
.yff{bottom:468.866667pt;}
.y4c{bottom:469.506667pt;}
.yd9{bottom:474.626667pt;}
.y7b{bottom:481.986667pt;}
.yab{bottom:487.906667pt;}
.y1b{bottom:488.066667pt;}
.yfe{bottom:488.386667pt;}
.y4b{bottom:488.866667pt;}
.yd8{bottom:494.146667pt;}
.y7a{bottom:501.506667pt;}
.y1a{bottom:507.746667pt;}
.yfd{bottom:507.906667pt;}
.y4a{bottom:508.386667pt;}
.yd7{bottom:513.826667pt;}
.y79{bottom:521.026667pt;}
.y49{bottom:527.906667pt;}
.yfc{bottom:528.066667pt;}
.yaa{bottom:528.866667pt;}
.y19{bottom:531.746667pt;}
.yd6{bottom:533.826667pt;}
.y78{bottom:540.546667pt;}
.y48{bottom:547.586667pt;}
.ya9{bottom:549.346667pt;}
.yfb{bottom:549.826667pt;}
.y18{bottom:551.746667pt;}
.yd5{bottom:553.186667pt;}
.y77{bottom:560.066667pt;}
.yfa{bottom:569.346667pt;}
.ya8{bottom:569.826667pt;}
.y47{bottom:571.426667pt;}
.yd4{bottom:572.866667pt;}
.y76{bottom:580.093333pt;}
.y17{bottom:581.053333pt;}
.yf9{bottom:588.893333pt;}
.ya6{bottom:590.333333pt;}
.y46{bottom:590.973333pt;}
.yd3{bottom:592.893333pt;}
.y16{bottom:600.573333pt;}
.y75{bottom:607.453333pt;}
.yf8{bottom:608.413333pt;}
.y45{bottom:611.133333pt;}
.yd2{bottom:612.413333pt;}
.ya5{bottom:619.933333pt;}
.y15{bottom:620.093333pt;}
.y74{bottom:627.613333pt;}
.yf7{bottom:628.573333pt;}
.yd1{bottom:632.413333pt;}
.ya4{bottom:639.453333pt;}
.y14{bottom:639.613333pt;}
.y44{bottom:643.773333pt;}
.yf6{bottom:650.333333pt;}
.yd0{bottom:651.933333pt;}
.y73{bottom:652.733333pt;}
.ya3{bottom:658.973333pt;}
.y13{bottom:659.133333pt;}
.y43{bottom:663.933333pt;}
.yf5{bottom:669.853333pt;}
.ycf{bottom:671.453333pt;}
.y72{bottom:672.413333pt;}
.ya2{bottom:678.493333pt;}
.y12{bottom:678.653333pt;}
.y42{bottom:689.053333pt;}
.yce{bottom:691.453333pt;}
.y71{bottom:692.413333pt;}
.yf4{bottom:692.733333pt;}
.ya1{bottom:698.013333pt;}
.y11{bottom:698.173333pt;}
.y41{bottom:708.573333pt;}
.ycd{bottom:710.973333pt;}
.y70{bottom:715.133333pt;}
.ya0{bottom:717.533333pt;}
.yf3{bottom:718.013333pt;}
.y10{bottom:722.173333pt;}
.y40{bottom:728.093333pt;}
.ycc{bottom:730.653333pt;}
.y9f{bottom:737.053333pt;}
.yf2{bottom:737.373333pt;}
.y6f{bottom:740.573333pt;}
.yf{bottom:741.853333pt;}
.ycb{bottom:750.653333pt;}
.y3f{bottom:752.093333pt;}
.y9e{bottom:757.213333pt;}
.yf1{bottom:759.773333pt;}
.y6e{bottom:761.213333pt;}
.ye{bottom:761.853333pt;}
.yca{bottom:770.013333pt;}
.y3e{bottom:771.613333pt;}
.y9d{bottom:778.973333pt;}
.yd{bottom:781.853333pt;}
.y6d{bottom:783.133333pt;}
.yf0{bottom:785.053333pt;}
.yc9{bottom:789.533333pt;}
.y3d{bottom:791.133333pt;}
.y9c{bottom:798.533333pt;}
.yc{bottom:801.413333pt;}
.y6c{bottom:803.173333pt;}
.yef{bottom:804.613333pt;}
.yc8{bottom:809.093333pt;}
.y3c{bottom:815.173333pt;}
.y9b{bottom:818.213333pt;}
.yb{bottom:821.573333pt;}
.y6b{bottom:823.173333pt;}
.yee{bottom:826.853333pt;}
.yc7{bottom:831.493333pt;}
.y3b{bottom:834.693333pt;}
.y9a{bottom:838.053333pt;}
.ya{bottom:841.573333pt;}
.y6a{bottom:843.333333pt;}
.yed{bottom:852.293333pt;}
.y3a{bottom:854.373333pt;}
.yc6{bottom:856.773333pt;}
.y99{bottom:858.373333pt;}
.y9{bottom:861.573333pt;}
.y69{bottom:863.333333pt;}
.yc5{bottom:876.133333pt;}
.y39{bottom:878.373333pt;}
.y98{bottom:879.973333pt;}
.y68{bottom:883.333333pt;}
.yc4{bottom:895.653333pt;}
.y38{bottom:897.733333pt;}
.y97{bottom:899.493333pt;}
.y67{bottom:903.013333pt;}
.y8{bottom:906.213333pt;}
.yc3{bottom:915.173333pt;}
.y37{bottom:917.413333pt;}
.y96{bottom:919.013333pt;}
.y66{bottom:923.013333pt;}
.y7{bottom:923.973333pt;}
.yc2{bottom:937.573333pt;}
.y36{bottom:941.413333pt;}
.y6{bottom:941.733333pt;}
.y95{bottom:941.893333pt;}
.y65{bottom:942.373333pt;}
.y5{bottom:959.493333pt;}
.y35{bottom:960.933333pt;}
.y64{bottom:961.893333pt;}
.yc1{bottom:962.853333pt;}
.y94{bottom:968.933333pt;}
.y4{bottom:979.493333pt;}
.y34{bottom:980.453333pt;}
.y63{bottom:981.573333pt;}
.yc0{bottom:982.213333pt;}
.y93{bottom:989.253333pt;}
.y62{bottom:1001.573333pt;}
.ybf{bottom:1001.733333pt;}
.y33{bottom:1004.453333pt;}
.y3{bottom:1011.653333pt;}
.y92{bottom:1018.213333pt;}
.ybe{bottom:1021.280000pt;}
.y61{bottom:1021.760000pt;}
.y32{bottom:1024.000000pt;}
.y91{bottom:1038.400000pt;}
.y31{bottom:1043.520000pt;}
.ybd{bottom:1043.680000pt;}
.y2f{bottom:1060.960000pt;}
.y2{bottom:1078.720000pt;}
.y2e{bottom:1080.640000pt;}
.ha{height:17.280000pt;}
.hb{height:17.312000pt;}
.h8{height:17.600000pt;}
.hc{height:17.760000pt;}
.hd{height:17.792000pt;}
.he{height:19.520000pt;}
.h12{height:19.552000pt;}
.h11{height:20.000000pt;}
.h9{height:40.043125pt;}
.h2{height:42.070625pt;}
.hf{height:45.400312pt;}
.h6{height:46.632500pt;}
.h5{height:50.687500pt;}
.h10{height:52.306185pt;}
.h7{height:52.871250pt;}
.h3{height:59.304375pt;}
.h4{height:109.991875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:62.912000pt;}
.wc{width:94.592000pt;}
.wd{width:97.440000pt;}
.w3{width:109.472000pt;}
.wb{width:109.600000pt;}
.wf{width:112.992000pt;}
.w9{width:117.152000pt;}
.w7{width:117.952000pt;}
.w6{width:140.826667pt;}
.we{width:204.066667pt;}
.w10{width:244.866667pt;}
.w5{width:261.466667pt;}
.w4{width:286.946667pt;}
.w11{width:322.466667pt;}
.w8{width:421.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.760000pt;}
.xe{left:7.200000pt;}
.x9{left:56.799988pt;}
.x13{left:66.239988pt;}
.xa{left:80.831988pt;}
.x20{left:85.311988pt;}
.x1f{left:86.431988pt;}
.x14{left:90.271988pt;}
.xb{left:104.831988pt;}
.x1b{left:144.186655pt;}
.x1c{left:150.106655pt;}
.x6{left:152.346655pt;}
.x2{left:156.666655pt;}
.xf{left:166.266667pt;}
.x5{left:170.106655pt;}
.x16{left:173.946667pt;}
.x1e{left:182.906655pt;}
.x11{left:197.626667pt;}
.xc{left:235.066655pt;}
.x17{left:236.866667pt;}
.x3{left:253.506655pt;}
.x7{left:261.346655pt;}
.x4{left:277.186655pt;}
.x12{left:315.586667pt;}
.x8{left:338.466655pt;}
.x18{left:346.466667pt;}
.x1{left:408.733322pt;}
.x1d{left:414.653333pt;}
.x19{left:441.053333pt;}
.x10{left:453.213333pt;}
.x1a{left:538.493333pt;}
.xd{left:540.893322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  