
    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_068d982c5c689d08bf65e992.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_632e7a199de2f2fe688a499f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a5d448b398f284a5d667aefc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_68aba3d232f9bc007e6464c8.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1a492846a8746bf8e68e7863.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8073219e29823915190465a9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls25{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.579600px;}
.ls5{letter-spacing:-0.570000px;}
.ls4{letter-spacing:-0.463800px;}
.ls18{letter-spacing:-0.414000px;}
.ls7{letter-spacing:-0.303000px;}
.lsb{letter-spacing:-0.286800px;}
.ls15{letter-spacing:-0.272400px;}
.lsd{letter-spacing:-0.240600px;}
.ls6{letter-spacing:-0.226200px;}
.ls1a{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.175800px;}
.ls3{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.049680px;}
.ls1b{letter-spacing:-0.041040px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.ls12{letter-spacing:0.060600px;}
.ls23{letter-spacing:0.064200px;}
.ls8{letter-spacing:0.066000px;}
.ls0{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.174000px;}
.ls10{letter-spacing:0.175200px;}
.ls1f{letter-spacing:0.179280px;}
.ls13{letter-spacing:0.209520px;}
.lsf{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.433200px;}
.ls19{letter-spacing:0.479400px;}
.ls20{letter-spacing:0.479520px;}
.ls22{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.780000px;}
.lsc{letter-spacing:1.026000px;}
.ls21{letter-spacing:12.186720px;}
.ls1e{letter-spacing:42.426720px;}
.ls14{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws14{word-spacing:-14.165760px;}
.ws9{word-spacing:-13.938960px;}
.wsc{word-spacing:-13.811760px;}
.ws15{word-spacing:-13.685040px;}
.wsf{word-spacing:-13.680960px;}
.ws16{word-spacing:-13.569960px;}
.wse{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.464720px;}
.ws13{word-spacing:-13.456080px;}
.wsb{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.440960px;}
.ws8{word-spacing:-13.396560px;}
.ws11{word-spacing:-13.319160px;}
.wsa{word-spacing:-13.218960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws10{word-spacing:-8.514480px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-533.278560px;}
._1d{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._17{margin-left:-200.514720px;}
._1f{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._23{margin-left:-169.507200px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._10{margin-left:-145.646400px;}
._c{margin-left:-134.192160px;}
._1e{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._22{margin-left:-109.266240px;}
._1b{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1a{margin-left:-86.399760px;}
._19{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._20{margin-left:-48.382560px;}
._21{margin-left:-35.130240px;}
._18{margin-left:-32.468640px;}
._26{margin-left:-4.441920px;}
._24{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._25{width:1.317240px;}
._28{width:2.545080px;}
._2a{width:3.764880px;}
._2d{width:5.129520px;}
._2e{width:6.612480px;}
._2c{width:7.888320px;}
._2f{width:9.621360px;}
._31{width:10.621920px;}
._29{width:11.622240px;}
._27{width:12.640320px;}
._33{width:14.802240px;}
._2b{width:15.896160px;}
._30{width:17.540040px;}
._35{width:19.123200px;}
._34{width:20.318400px;}
._32{width:21.618240px;}
._3a{width:31.792320px;}
._3b{width:33.318120px;}
._38{width:70.282800px;}
._37{width:71.570880px;}
._39{width:72.876840px;}
._36{width:315.948000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(47,85,151);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:60.480000px;}
.fsa{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:6.120000px;}
.y84{bottom:6.660000px;}
.yd5{bottom:11.670000px;}
.ya5{bottom:21.060000px;}
.ya3{bottom:21.090000px;}
.ycc{bottom:32.790000px;}
.y6{bottom:61.560000px;}
.ycd{bottom:61.740000px;}
.yce{bottom:90.645000px;}
.y65{bottom:91.260000px;}
.y82{bottom:94.320000px;}
.y7e{bottom:103.320000px;}
.yf6{bottom:106.380000px;}
.y64{bottom:112.320000px;}
.y81{bottom:115.380000px;}
.ya4{bottom:116.280000px;}
.yca{bottom:117.180000px;}
.ycf{bottom:119.595000px;}
.y30{bottom:120.780000px;}
.y7d{bottom:124.380000px;}
.yf5{bottom:127.440000px;}
.yf7{bottom:129.960000px;}
.y63{bottom:133.380000px;}
.y80{bottom:136.440000px;}
.ya2{bottom:138.060000px;}
.yc9{bottom:138.240000px;}
.y2f{bottom:141.840000px;}
.y7c{bottom:145.440000px;}
.yf4{bottom:148.500000px;}
.yd0{bottom:148.530000px;}
.y62{bottom:154.470000px;}
.y7f{bottom:157.530000px;}
.yd8{bottom:157.650000px;}
.yc8{bottom:159.330000px;}
.ya1{bottom:159.870000px;}
.y2e{bottom:162.930000px;}
.y7b{bottom:166.530000px;}
.yf3{bottom:169.590000px;}
.y61{bottom:175.530000px;}
.yd1{bottom:177.450000px;}
.yc7{bottom:180.390000px;}
.yd7{bottom:180.750000px;}
.y2d{bottom:183.990000px;}
.y7a{bottom:187.590000px;}
.ya0{bottom:188.310000px;}
.yf2{bottom:190.650000px;}
.y60{bottom:196.590000px;}
.yc6{bottom:201.450000px;}
.y2c{bottom:205.050000px;}
.yd2{bottom:206.385000px;}
.y79{bottom:208.650000px;}
.y9f{bottom:209.370000px;}
.yf1{bottom:211.710000px;}
.y5f{bottom:217.650000px;}
.yc5{bottom:222.510000px;}
.y2b{bottom:226.110000px;}
.y78{bottom:229.710000px;}
.y9e{bottom:230.430000px;}
.yf0{bottom:232.770000px;}
.yd3{bottom:235.290000px;}
.y5e{bottom:238.710000px;}
.yc4{bottom:243.570000px;}
.y2a{bottom:247.170000px;}
.y77{bottom:250.770000px;}
.y9d{bottom:251.490000px;}
.yef{bottom:253.830000px;}
.y5d{bottom:259.770000px;}
.yd4{bottom:264.240000px;}
.yc3{bottom:264.630000px;}
.y29{bottom:268.230000px;}
.y76{bottom:271.830000px;}
.y9c{bottom:272.550000px;}
.yee{bottom:274.890000px;}
.y5c{bottom:280.830000px;}
.yc2{bottom:285.690000px;}
.y28{bottom:289.290000px;}
.y75{bottom:292.890000px;}
.y9b{bottom:293.610000px;}
.yed{bottom:295.950000px;}
.y5b{bottom:301.890000px;}
.yc1{bottom:306.750000px;}
.y27{bottom:310.350000px;}
.y74{bottom:313.950000px;}
.y9a{bottom:314.670000px;}
.yec{bottom:317.010000px;}
.y5a{bottom:322.950000px;}
.yc0{bottom:327.810000px;}
.y26{bottom:331.410000px;}
.y73{bottom:335.010000px;}
.y99{bottom:335.730000px;}
.yeb{bottom:338.070000px;}
.y59{bottom:344.010000px;}
.ybf{bottom:348.870000px;}
.y25{bottom:352.470000px;}
.y72{bottom:356.070000px;}
.y98{bottom:356.790000px;}
.yea{bottom:359.130000px;}
.ybe{bottom:363.990000px;}
.y58{bottom:365.070000px;}
.y24{bottom:373.530000px;}
.y71{bottom:377.130000px;}
.y97{bottom:377.850000px;}
.ye9{bottom:380.190000px;}
.ybd{bottom:385.770000px;}
.y57{bottom:386.130000px;}
.y23{bottom:394.410000px;}
.y70{bottom:398.190000px;}
.y96{bottom:398.910000px;}
.ye8{bottom:401.295000px;}
.y56{bottom:407.235000px;}
.ybc{bottom:407.595000px;}
.y22{bottom:415.515000px;}
.y6f{bottom:419.295000px;}
.y95{bottom:420.015000px;}
.ye7{bottom:422.355000px;}
.y55{bottom:428.295000px;}
.ybb{bottom:429.375000px;}
.y21{bottom:436.575000px;}
.y6e{bottom:440.355000px;}
.y94{bottom:441.075000px;}
.ye6{bottom:443.415000px;}
.y54{bottom:449.355000px;}
.yba{bottom:451.155000px;}
.y20{bottom:457.635000px;}
.y6d{bottom:461.415000px;}
.y93{bottom:462.135000px;}
.y53{bottom:470.415000px;}
.y92{bottom:477.255000px;}
.y1f{bottom:478.695000px;}
.yb9{bottom:479.775000px;}
.y6c{bottom:482.475000px;}
.y52{bottom:491.475000px;}
.y91{bottom:499.035000px;}
.y1e{bottom:499.755000px;}
.yb8{bottom:500.835000px;}
.y6b{bottom:503.535000px;}
.y51{bottom:512.535000px;}
.y1d{bottom:520.815000px;}
.yb7{bottom:521.895000px;}
.y6a{bottom:524.595000px;}
.y50{bottom:533.595000px;}
.y90{bottom:542.595000px;}
.yb6{bottom:542.955000px;}
.y1c{bottom:544.395000px;}
.y69{bottom:545.655000px;}
.y4f{bottom:554.655000px;}
.yb5{bottom:564.015000px;}
.y1b{bottom:565.275000px;}
.y68{bottom:566.715000px;}
.y8f{bottom:571.215000px;}
.y4e{bottom:575.715000px;}
.yb4{bottom:585.075000px;}
.y67{bottom:587.775000px;}
.y8e{bottom:592.275000px;}
.y1a{bottom:595.335000px;}
.y4d{bottom:596.775000px;}
.yb3{bottom:601.995000px;}
.ycb{bottom:604.080000px;}
.y66{bottom:608.835000px;}
.y8d{bottom:613.335000px;}
.y19{bottom:616.395000px;}
.y4c{bottom:617.835000px;}
.ye5{bottom:629.895000px;}
.y8c{bottom:634.395000px;}
.y18{bottom:637.455000px;}
.y4b{bottom:638.895000px;}
.ye4{bottom:650.805000px;}
.y8b{bottom:655.305000px;}
.y17{bottom:658.545000px;}
.y4a{bottom:659.805000px;}
.ye3{bottom:671.865000px;}
.y8a{bottom:676.365000px;}
.y16{bottom:679.605000px;}
.y49{bottom:680.865000px;}
.ye2{bottom:692.925000px;}
.y89{bottom:697.425000px;}
.y15{bottom:700.665000px;}
.y48{bottom:701.925000px;}
.y88{bottom:712.725000px;}
.ye1{bottom:713.985000px;}
.y14{bottom:721.725000px;}
.y47{bottom:722.985000px;}
.y87{bottom:734.505000px;}
.ye0{bottom:735.045000px;}
.y13{bottom:742.785000px;}
.y46{bottom:744.045000px;}
.ydf{bottom:756.105000px;}
.y86{bottom:756.285000px;}
.y12{bottom:763.845000px;}
.y45{bottom:765.105000px;}
.yde{bottom:777.165000px;}
.y85{bottom:778.065000px;}
.y11{bottom:784.905000px;}
.y44{bottom:786.165000px;}
.ydd{bottom:798.225000px;}
.y83{bottom:799.845000px;}
.y10{bottom:805.965000px;}
.y43{bottom:807.225000px;}
.ydc{bottom:819.285000px;}
.yf{bottom:827.025000px;}
.y42{bottom:828.285000px;}
.ydb{bottom:840.345000px;}
.ye{bottom:848.085000px;}
.y41{bottom:849.345000px;}
.yda{bottom:861.405000px;}
.yd{bottom:869.145000px;}
.y40{bottom:870.405000px;}
.yd9{bottom:882.465000px;}
.y3f{bottom:891.465000px;}
.yc{bottom:892.365000px;}
.yb2{bottom:903.570000px;}
.y3e{bottom:912.570000px;}
.yb{bottom:918.690000px;}
.yb1{bottom:924.630000px;}
.y3d{bottom:933.630000px;}
.ya{bottom:935.430000px;}
.yb0{bottom:939.750000px;}
.y3c{bottom:954.690000px;}
.y9{bottom:957.750000px;}
.yaf{bottom:961.710000px;}
.y3b{bottom:975.750000px;}
.y8{bottom:982.950000px;}
.yae{bottom:983.490000px;}
.y3a{bottom:996.810000px;}
.yad{bottom:1005.270000px;}
.y7{bottom:1016.610000px;}
.y39{bottom:1017.870000px;}
.yac{bottom:1027.050000px;}
.y38{bottom:1038.930000px;}
.yab{bottom:1048.830000px;}
.y5{bottom:1055.310000px;}
.y37{bottom:1059.990000px;}
.yaa{bottom:1070.610000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1086.090000px;}
.ya9{bottom:1092.390000px;}
.y35{bottom:1102.110000px;}
.ya8{bottom:1114.350000px;}
.y3{bottom:1116.870000px;}
.y34{bottom:1123.170000px;}
.ya7{bottom:1136.130000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1147.500000px;}
.ya6{bottom:1157.940000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h9{height:21.060000px;}
.ha{height:21.096000px;}
.h7{height:38.671172px;}
.hf{height:42.229688px;}
.h10{height:42.330234px;}
.hc{height:50.273438px;}
.hd{height:50.373984px;}
.he{height:58.920469px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.hb{height:292.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:34.596000px;}
.w4{width:41.940000px;}
.w8{width:49.320000px;}
.w7{width:49.356000px;}
.w6{width:49.500000px;}
.w9{width:66.996000px;}
.w12{width:71.496000px;}
.wb{width:83.556000px;}
.wc{width:84.060000px;}
.w13{width:101.700000px;}
.wd{width:114.336000px;}
.w11{width:121.860000px;}
.wf{width:122.796000px;}
.wa{width:143.280000px;}
.w10{width:152.850000px;}
.we{width:173.910000px;}
.w3{width:188.670000px;}
.w14{width:514.620000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1e{left:27.690000px;}
.x1d{left:41.220000px;}
.x6{left:53.999987px;}
.x8{left:80.999987px;}
.x18{left:89.135987px;}
.x1f{left:105.735000px;}
.x7{left:108.035987px;}
.x5{left:168.509987px;}
.x1c{left:188.820000px;}
.x10{left:198.930000px;}
.x9{left:212.790000px;}
.x14{left:221.070000px;}
.x11{left:266.835000px;}
.x3{left:272.414987px;}
.x19{left:298.335000px;}
.x2{left:350.714987px;}
.x15{left:395.715000px;}
.xb{left:402.375000px;}
.x12{left:410.835000px;}
.x4{left:419.294987px;}
.x1a{left:420.915000px;}
.x20{left:422.100000px;}
.xc{left:445.035000px;}
.x1{left:479.444987px;}
.x1b{left:493.125000px;}
.x13{left:495.105000px;}
.x16{left:519.225000px;}
.xd{left:530.565000px;}
.xe{left:580.785000px;}
.xf{left:631.050000px;}
.x17{left:704.129987px;}
.x21{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls25{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.515200pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls18{letter-spacing:-0.368000pt;}
.ls7{letter-spacing:-0.269333pt;}
.lsb{letter-spacing:-0.254933pt;}
.ls15{letter-spacing:-0.242133pt;}
.lsd{letter-spacing:-0.213867pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls1a{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.156267pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.044160pt;}
.ls1b{letter-spacing:-0.036480pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.ls12{letter-spacing:0.053867pt;}
.ls23{letter-spacing:0.057067pt;}
.ls8{letter-spacing:0.058667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.154667pt;}
.ls10{letter-spacing:0.155733pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls13{letter-spacing:0.186240pt;}
.lsf{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.385067pt;}
.ls19{letter-spacing:0.426133pt;}
.ls20{letter-spacing:0.426240pt;}
.ls22{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.693333pt;}
.lsc{letter-spacing:0.912000pt;}
.ls21{letter-spacing:10.832640pt;}
.ls1e{letter-spacing:37.712640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.591787pt;}
.ws9{word-spacing:-12.390187pt;}
.wsc{word-spacing:-12.277120pt;}
.ws15{word-spacing:-12.164480pt;}
.wsf{word-spacing:-12.160853pt;}
.ws16{word-spacing:-12.062187pt;}
.wse{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.968640pt;}
.ws13{word-spacing:-11.960960pt;}
.wsb{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.947520pt;}
.ws8{word-spacing:-11.908053pt;}
.ws11{word-spacing:-11.839253pt;}
.wsa{word-spacing:-11.750187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws10{word-spacing:-7.568427pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-474.025387pt;}
._1d{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._17{margin-left:-178.235307pt;}
._1f{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._23{margin-left:-150.673067pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._10{margin-left:-129.463467pt;}
._c{margin-left:-119.281920pt;}
._1e{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._22{margin-left:-97.125547pt;}
._1b{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1a{margin-left:-76.799787pt;}
._19{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._20{margin-left:-43.006720pt;}
._21{margin-left:-31.226880pt;}
._18{margin-left:-28.861013pt;}
._26{margin-left:-3.948373pt;}
._24{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._25{width:1.170880pt;}
._28{width:2.262293pt;}
._2a{width:3.346560pt;}
._2d{width:4.559573pt;}
._2e{width:5.877760pt;}
._2c{width:7.011840pt;}
._2f{width:8.552320pt;}
._31{width:9.441707pt;}
._29{width:10.330880pt;}
._27{width:11.235840pt;}
._33{width:13.157547pt;}
._2b{width:14.129920pt;}
._30{width:15.591147pt;}
._35{width:16.998400pt;}
._34{width:18.060800pt;}
._32{width:19.216213pt;}
._3a{width:28.259840pt;}
._3b{width:29.616107pt;}
._38{width:62.473600pt;}
._37{width:63.618560pt;}
._39{width:64.779413pt;}
._36{width:280.842667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.760000pt;}
.fsa{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:5.440000pt;}
.y84{bottom:5.920000pt;}
.yd5{bottom:10.373333pt;}
.ya5{bottom:18.720000pt;}
.ya3{bottom:18.746667pt;}
.ycc{bottom:29.146667pt;}
.y6{bottom:54.720000pt;}
.ycd{bottom:54.880000pt;}
.yce{bottom:80.573333pt;}
.y65{bottom:81.120000pt;}
.y82{bottom:83.840000pt;}
.y7e{bottom:91.840000pt;}
.yf6{bottom:94.560000pt;}
.y64{bottom:99.840000pt;}
.y81{bottom:102.560000pt;}
.ya4{bottom:103.360000pt;}
.yca{bottom:104.160000pt;}
.ycf{bottom:106.306667pt;}
.y30{bottom:107.360000pt;}
.y7d{bottom:110.560000pt;}
.yf5{bottom:113.280000pt;}
.yf7{bottom:115.520000pt;}
.y63{bottom:118.560000pt;}
.y80{bottom:121.280000pt;}
.ya2{bottom:122.720000pt;}
.yc9{bottom:122.880000pt;}
.y2f{bottom:126.080000pt;}
.y7c{bottom:129.280000pt;}
.yf4{bottom:132.000000pt;}
.yd0{bottom:132.026667pt;}
.y62{bottom:137.306667pt;}
.y7f{bottom:140.026667pt;}
.yd8{bottom:140.133333pt;}
.yc8{bottom:141.626667pt;}
.ya1{bottom:142.106667pt;}
.y2e{bottom:144.826667pt;}
.y7b{bottom:148.026667pt;}
.yf3{bottom:150.746667pt;}
.y61{bottom:156.026667pt;}
.yd1{bottom:157.733333pt;}
.yc7{bottom:160.346667pt;}
.yd7{bottom:160.666667pt;}
.y2d{bottom:163.546667pt;}
.y7a{bottom:166.746667pt;}
.ya0{bottom:167.386667pt;}
.yf2{bottom:169.466667pt;}
.y60{bottom:174.746667pt;}
.yc6{bottom:179.066667pt;}
.y2c{bottom:182.266667pt;}
.yd2{bottom:183.453333pt;}
.y79{bottom:185.466667pt;}
.y9f{bottom:186.106667pt;}
.yf1{bottom:188.186667pt;}
.y5f{bottom:193.466667pt;}
.yc5{bottom:197.786667pt;}
.y2b{bottom:200.986667pt;}
.y78{bottom:204.186667pt;}
.y9e{bottom:204.826667pt;}
.yf0{bottom:206.906667pt;}
.yd3{bottom:209.146667pt;}
.y5e{bottom:212.186667pt;}
.yc4{bottom:216.506667pt;}
.y2a{bottom:219.706667pt;}
.y77{bottom:222.906667pt;}
.y9d{bottom:223.546667pt;}
.yef{bottom:225.626667pt;}
.y5d{bottom:230.906667pt;}
.yd4{bottom:234.880000pt;}
.yc3{bottom:235.226667pt;}
.y29{bottom:238.426667pt;}
.y76{bottom:241.626667pt;}
.y9c{bottom:242.266667pt;}
.yee{bottom:244.346667pt;}
.y5c{bottom:249.626667pt;}
.yc2{bottom:253.946667pt;}
.y28{bottom:257.146667pt;}
.y75{bottom:260.346667pt;}
.y9b{bottom:260.986667pt;}
.yed{bottom:263.066667pt;}
.y5b{bottom:268.346667pt;}
.yc1{bottom:272.666667pt;}
.y27{bottom:275.866667pt;}
.y74{bottom:279.066667pt;}
.y9a{bottom:279.706667pt;}
.yec{bottom:281.786667pt;}
.y5a{bottom:287.066667pt;}
.yc0{bottom:291.386667pt;}
.y26{bottom:294.586667pt;}
.y73{bottom:297.786667pt;}
.y99{bottom:298.426667pt;}
.yeb{bottom:300.506667pt;}
.y59{bottom:305.786667pt;}
.ybf{bottom:310.106667pt;}
.y25{bottom:313.306667pt;}
.y72{bottom:316.506667pt;}
.y98{bottom:317.146667pt;}
.yea{bottom:319.226667pt;}
.ybe{bottom:323.546667pt;}
.y58{bottom:324.506667pt;}
.y24{bottom:332.026667pt;}
.y71{bottom:335.226667pt;}
.y97{bottom:335.866667pt;}
.ye9{bottom:337.946667pt;}
.ybd{bottom:342.906667pt;}
.y57{bottom:343.226667pt;}
.y23{bottom:350.586667pt;}
.y70{bottom:353.946667pt;}
.y96{bottom:354.586667pt;}
.ye8{bottom:356.706667pt;}
.y56{bottom:361.986667pt;}
.ybc{bottom:362.306667pt;}
.y22{bottom:369.346667pt;}
.y6f{bottom:372.706667pt;}
.y95{bottom:373.346667pt;}
.ye7{bottom:375.426667pt;}
.y55{bottom:380.706667pt;}
.ybb{bottom:381.666667pt;}
.y21{bottom:388.066667pt;}
.y6e{bottom:391.426667pt;}
.y94{bottom:392.066667pt;}
.ye6{bottom:394.146667pt;}
.y54{bottom:399.426667pt;}
.yba{bottom:401.026667pt;}
.y20{bottom:406.786667pt;}
.y6d{bottom:410.146667pt;}
.y93{bottom:410.786667pt;}
.y53{bottom:418.146667pt;}
.y92{bottom:424.226667pt;}
.y1f{bottom:425.506667pt;}
.yb9{bottom:426.466667pt;}
.y6c{bottom:428.866667pt;}
.y52{bottom:436.866667pt;}
.y91{bottom:443.586667pt;}
.y1e{bottom:444.226667pt;}
.yb8{bottom:445.186667pt;}
.y6b{bottom:447.586667pt;}
.y51{bottom:455.586667pt;}
.y1d{bottom:462.946667pt;}
.yb7{bottom:463.906667pt;}
.y6a{bottom:466.306667pt;}
.y50{bottom:474.306667pt;}
.y90{bottom:482.306667pt;}
.yb6{bottom:482.626667pt;}
.y1c{bottom:483.906667pt;}
.y69{bottom:485.026667pt;}
.y4f{bottom:493.026667pt;}
.yb5{bottom:501.346667pt;}
.y1b{bottom:502.466667pt;}
.y68{bottom:503.746667pt;}
.y8f{bottom:507.746667pt;}
.y4e{bottom:511.746667pt;}
.yb4{bottom:520.066667pt;}
.y67{bottom:522.466667pt;}
.y8e{bottom:526.466667pt;}
.y1a{bottom:529.186667pt;}
.y4d{bottom:530.466667pt;}
.yb3{bottom:535.106667pt;}
.ycb{bottom:536.960000pt;}
.y66{bottom:541.186667pt;}
.y8d{bottom:545.186667pt;}
.y19{bottom:547.906667pt;}
.y4c{bottom:549.186667pt;}
.ye5{bottom:559.906667pt;}
.y8c{bottom:563.906667pt;}
.y18{bottom:566.626667pt;}
.y4b{bottom:567.906667pt;}
.ye4{bottom:578.493333pt;}
.y8b{bottom:582.493333pt;}
.y17{bottom:585.373333pt;}
.y4a{bottom:586.493333pt;}
.ye3{bottom:597.213333pt;}
.y8a{bottom:601.213333pt;}
.y16{bottom:604.093333pt;}
.y49{bottom:605.213333pt;}
.ye2{bottom:615.933333pt;}
.y89{bottom:619.933333pt;}
.y15{bottom:622.813333pt;}
.y48{bottom:623.933333pt;}
.y88{bottom:633.533333pt;}
.ye1{bottom:634.653333pt;}
.y14{bottom:641.533333pt;}
.y47{bottom:642.653333pt;}
.y87{bottom:652.893333pt;}
.ye0{bottom:653.373333pt;}
.y13{bottom:660.253333pt;}
.y46{bottom:661.373333pt;}
.ydf{bottom:672.093333pt;}
.y86{bottom:672.253333pt;}
.y12{bottom:678.973333pt;}
.y45{bottom:680.093333pt;}
.yde{bottom:690.813333pt;}
.y85{bottom:691.613333pt;}
.y11{bottom:697.693333pt;}
.y44{bottom:698.813333pt;}
.ydd{bottom:709.533333pt;}
.y83{bottom:710.973333pt;}
.y10{bottom:716.413333pt;}
.y43{bottom:717.533333pt;}
.ydc{bottom:728.253333pt;}
.yf{bottom:735.133333pt;}
.y42{bottom:736.253333pt;}
.ydb{bottom:746.973333pt;}
.ye{bottom:753.853333pt;}
.y41{bottom:754.973333pt;}
.yda{bottom:765.693333pt;}
.yd{bottom:772.573333pt;}
.y40{bottom:773.693333pt;}
.yd9{bottom:784.413333pt;}
.y3f{bottom:792.413333pt;}
.yc{bottom:793.213333pt;}
.yb2{bottom:803.173333pt;}
.y3e{bottom:811.173333pt;}
.yb{bottom:816.613333pt;}
.yb1{bottom:821.893333pt;}
.y3d{bottom:829.893333pt;}
.ya{bottom:831.493333pt;}
.yb0{bottom:835.333333pt;}
.y3c{bottom:848.613333pt;}
.y9{bottom:851.333333pt;}
.yaf{bottom:854.853333pt;}
.y3b{bottom:867.333333pt;}
.y8{bottom:873.733333pt;}
.yae{bottom:874.213333pt;}
.y3a{bottom:886.053333pt;}
.yad{bottom:893.573333pt;}
.y7{bottom:903.653333pt;}
.y39{bottom:904.773333pt;}
.yac{bottom:912.933333pt;}
.y38{bottom:923.493333pt;}
.yab{bottom:932.293333pt;}
.y5{bottom:938.053333pt;}
.y37{bottom:942.213333pt;}
.yaa{bottom:951.653333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:965.413333pt;}
.ya9{bottom:971.013333pt;}
.y35{bottom:979.653333pt;}
.ya8{bottom:990.533333pt;}
.y3{bottom:992.773333pt;}
.y34{bottom:998.373333pt;}
.ya7{bottom:1009.893333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1020.000000pt;}
.ya6{bottom:1029.280000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h9{height:18.720000pt;}
.ha{height:18.752000pt;}
.h7{height:34.374375pt;}
.hf{height:37.537500pt;}
.h10{height:37.626875pt;}
.hc{height:44.687500pt;}
.hd{height:44.776875pt;}
.he{height:52.373750pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.hb{height:260.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:30.752000pt;}
.w4{width:37.280000pt;}
.w8{width:43.840000pt;}
.w7{width:43.872000pt;}
.w6{width:44.000000pt;}
.w9{width:59.552000pt;}
.w12{width:63.552000pt;}
.wb{width:74.272000pt;}
.wc{width:74.720000pt;}
.w13{width:90.400000pt;}
.wd{width:101.632000pt;}
.w11{width:108.320000pt;}
.wf{width:109.152000pt;}
.wa{width:127.360000pt;}
.w10{width:135.866667pt;}
.we{width:154.586667pt;}
.w3{width:167.706667pt;}
.w14{width:457.440000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1e{left:24.613333pt;}
.x1d{left:36.640000pt;}
.x6{left:47.999988pt;}
.x8{left:71.999988pt;}
.x18{left:79.231988pt;}
.x1f{left:93.986667pt;}
.x7{left:96.031988pt;}
.x5{left:149.786655pt;}
.x1c{left:167.840000pt;}
.x10{left:176.826667pt;}
.x9{left:189.146667pt;}
.x14{left:196.506667pt;}
.x11{left:237.186667pt;}
.x3{left:242.146655pt;}
.x19{left:265.186667pt;}
.x2{left:311.746655pt;}
.x15{left:351.746667pt;}
.xb{left:357.666667pt;}
.x12{left:365.186667pt;}
.x4{left:372.706655pt;}
.x1a{left:374.146667pt;}
.x20{left:375.200000pt;}
.xc{left:395.586667pt;}
.x1{left:426.173322pt;}
.x1b{left:438.333333pt;}
.x13{left:440.093333pt;}
.x16{left:461.533333pt;}
.xd{left:471.613333pt;}
.xe{left:516.253333pt;}
.xf{left:560.933333pt;}
.x17{left:625.893322pt;}
.x21{left:746.079988pt;}
}




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