
    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_20c82a808ffac66146c094d9.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_d859dc3e79ffc32997eb6415.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_08ef5be8c100c4bdc07a39e9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24804eaa10e68bd4b111dc33.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_964011283e88c8bcc071c41c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_516b2a8f916845b8dd54ec07.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05eeae7e4fe145a2bbe4f88b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fe6f11247f4fbacbdb0a289f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1412d4b72dd59804ad6fb023.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_655afb17fe8dd4d744e282f7.woff')format("woff");}.ffb{font-family:ffb;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;}
.ls12{letter-spacing:-0.444600px;}
.ls11{letter-spacing:-0.391800px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.063600px;}
.lsc{letter-spacing:-0.057000px;}
.ls25{letter-spacing:-0.044640px;}
.ls1a{letter-spacing:-0.038880px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.037200px;}
.ls17{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.060480px;}
.ls19{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.081600px;}
.ls15{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.116400px;}
.ls8{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls20{letter-spacing:1.173600px;}
.ls4{letter-spacing:2.253600px;}
.ls23{letter-spacing:5.493600px;}
.ls22{letter-spacing:5.973600px;}
.ls16{letter-spacing:6.213600px;}
.ls21{letter-spacing:6.933600px;}
.ls24{letter-spacing:7.293600px;}
.ls1b{letter-spacing:8.013600px;}
.ls1d{letter-spacing:9.813600px;}
.ls1e{letter-spacing:10.893600px;}
.ls27{letter-spacing:47.726640px;}
.ls26{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;}
}
.ws2{word-spacing:-18.535200px;}
.ws3{word-spacing:-18.453600px;}
.ws4{word-spacing:-18.396600px;}
.wsa{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.181760px;}
.ws10{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.614200px;}
.wsb{word-spacing:-8.553600px;}
.wsc{word-spacing:0.000000px;}
.ws9{word-spacing:4.304880px;}
._8{margin-left:-3.787920px;}
._1{margin-left:-2.684412px;}
._0{margin-left:-1.110000px;}
._2{width:1.194635px;}
._5{width:2.344800px;}
._6{width:4.103564px;}
._7{width:5.353920px;}
._3{width:7.248600px;}
._4{width:8.382600px;}
._c{width:10.299480px;}
._d{width:11.692800px;}
._9{width:16.112400px;}
._a{width:17.494920px;}
._b{width:18.916320px;}
._e{width:22.995720px;}
.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;}
.y4e{bottom:7.830000px;}
.y72{bottom:7.860000px;}
.y4c{bottom:7.920000px;}
.y85{bottom:7.950000px;}
.y3c{bottom:8.730000px;}
.y57{bottom:8.820000px;}
.y8f{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y23{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y6d{bottom:108.930000px;}
.y49{bottom:115.140000px;}
.y91{bottom:126.930000px;}
.yad{bottom:129.630000px;}
.y6c{bottom:136.290000px;}
.yd4{bottom:141.060000px;}
.y48{bottom:146.910000px;}
.y90{bottom:154.290000px;}
.yd3{bottom:158.610000px;}
.y6b{bottom:163.650000px;}
.yac{bottom:165.180000px;}
.yd2{bottom:176.250000px;}
.y8e{bottom:181.650000px;}
.y47{bottom:182.550000px;}
.yab{bottom:182.820000px;}
.y6a{bottom:190.920000px;}
.yf3{bottom:191.370000px;}
.y21{bottom:193.530000px;}
.yd1{bottom:202.800000px;}
.y20{bottom:211.170000px;}
.y46{bottom:218.100000px;}
.y69{bottom:218.280000px;}
.yaa{bottom:218.370000px;}
.y8d{bottom:226.560000px;}
.y1f{bottom:228.720000px;}
.ya9{bottom:235.920000px;}
.yd0{bottom:238.440000px;}
.y45{bottom:244.650000px;}
.y1e{bottom:246.270000px;}
.ya8{bottom:253.560000px;}
.y8c{bottom:253.920000px;}
.yf2{bottom:255.630000px;}
.ycf{bottom:255.990000px;}
.y68{bottom:266.970000px;}
.y1d{bottom:273.180000px;}
.yce{bottom:273.540000px;}
.y44{bottom:280.290000px;}
.ya7{bottom:280.470000px;}
.y8b{bottom:281.190000px;}
.y67{bottom:291.000000px;}
.ycd{bottom:300.180000px;}
.yf1{bottom:303.870000px;}
.y43{bottom:306.840000px;}
.y66{bottom:318.270000px;}
.yf0{bottom:321.510000px;}
.y1c{bottom:321.780000px;}
.ya6{bottom:328.710000px;}
.y8a{bottom:329.880000px;}
.ycc{bottom:335.730000px;}
.yef{bottom:339.060000px;}
.y42{bottom:339.870000px;}
.y65{bottom:345.630000px;}
.ya5{bottom:346.350000px;}
.ycb{bottom:353.370000px;}
.y1b{bottom:358.860000px;}
.y89{bottom:365.520000px;}
.yee{bottom:365.970000px;}
.y41{bottom:368.040000px;}
.yca{bottom:370.920000px;}
.y64{bottom:372.990000px;}
.y1a{bottom:376.410000px;}
.ya4{bottom:379.290000px;}
.y88{bottom:380.460000px;}
.yc9{bottom:388.470000px;}
.y40{bottom:396.210000px;}
.yc8{bottom:406.110000px;}
.ya3{bottom:406.650000px;}
.y87{bottom:407.820000px;}
.y19{bottom:412.050000px;}
.yed{bottom:414.300000px;}
.y63{bottom:421.680000px;}
.y3f{bottom:424.470000px;}
.y18{bottom:429.600000px;}
.yec{bottom:431.850000px;}
.yc7{bottom:432.660000px;}
.ya2{bottom:433.920000px;}
.y86{bottom:435.180000px;}
.y62{bottom:448.230000px;}
.yeb{bottom:449.400000px;}
.y3e{bottom:452.640000px;}
.ya1{bottom:461.280000px;}
.y84{bottom:462.450000px;}
.y17{bottom:465.150000px;}
.yc6{bottom:468.300000px;}
.yea{bottom:476.070000px;}
.y3d{bottom:480.840000px;}
.y61{bottom:481.290000px;}
.y16{bottom:482.820000px;}
.yc5{bottom:485.880000px;}
.ya0{bottom:488.670000px;}
.y83{bottom:489.840000px;}
.y110{bottom:491.280000px;}
.yc4{bottom:503.430000px;}
.y60{bottom:508.560000px;}
.y10f{bottom:508.830000px;}
.y3b{bottom:509.100000px;}
.ye9{bottom:511.620000px;}
.y82{bottom:517.200000px;}
.y15{bottom:518.370000px;}
.yc3{bottom:521.070000px;}
.y10e{bottom:526.470000px;}
.ye8{bottom:529.260000px;}
.y14{bottom:535.920000px;}
.y9f{bottom:537.360000px;}
.yc2{bottom:538.620000px;}
.y81{bottom:544.560000px;}
.ye7{bottom:546.810000px;}
.y10d{bottom:553.020000px;}
.yc1{bottom:556.260000px;}
.y3a{bottom:558.600000px;}
.y5f{bottom:563.280000px;}
.y10c{bottom:570.660000px;}
.y13{bottom:571.560000px;}
.y9e{bottom:572.910000px;}
.ye6{bottom:573.360000px;}
.y9d{bottom:587.940000px;}
.y12{bottom:589.110000px;}
.y5e{bottom:590.640000px;}
.yc0{bottom:591.810000px;}
.y80{bottom:593.250000px;}
.y39{bottom:594.240000px;}
.y10b{bottom:597.210000px;}
.ye5{bottom:609.000000px;}
.ybf{bottom:609.360000px;}
.y10a{bottom:614.760000px;}
.y9c{bottom:615.210000px;}
.y5d{bottom:617.910000px;}
.y11{bottom:624.750000px;}
.ye4{bottom:626.550000px;}
.y7f{bottom:628.800000px;}
.y38{bottom:629.790000px;}
.ybe{bottom:636.000000px;}
.y109{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.y9b{bottom:642.570000px;}
.y7e{bottom:643.740000px;}
.y37{bottom:656.700000px;}
.y108{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.ye3{bottom:662.190000px;}
.y5c{bottom:666.600000px;}
.y9a{bottom:669.930000px;}
.y7d{bottom:671.100000px;}
.ybd{bottom:671.550000px;}
.ye{bottom:677.490000px;}
.ye2{bottom:679.740000px;}
.y107{bottom:685.590000px;}
.ybc{bottom:689.190000px;}
.y5b{bottom:690.630000px;}
.yd{bottom:695.040000px;}
.y99{bottom:697.290000px;}
.y7c{bottom:698.460000px;}
.y106{bottom:703.140000px;}
.y36{bottom:704.940000px;}
.ye1{bottom:706.290000px;}
.ybb{bottom:706.740000px;}
.yc{bottom:712.680000px;}
.y5a{bottom:717.900000px;}
.y35{bottom:722.580000px;}
.y7b{bottom:725.820000px;}
.y105{bottom:729.690000px;}
.yb{bottom:730.230000px;}
.yba{bottom:733.290000px;}
.ye0{bottom:741.930000px;}
.y59{bottom:745.260000px;}
.y98{bottom:745.980000px;}
.y104{bottom:747.330000px;}
.y34{bottom:749.490000px;}
.y7a{bottom:753.090000px;}
.ya{bottom:757.140000px;}
.ydf{bottom:759.480000px;}
.yb9{bottom:768.930000px;}
.y58{bottom:772.620000px;}
.y103{bottom:773.880000px;}
.y79{bottom:780.450000px;}
.y97{bottom:783.420000px;}
.y33{bottom:786.480000px;}
.y102{bottom:791.520000px;}
.yde{bottom:795.030000px;}
.y56{bottom:799.980000px;}
.y96{bottom:800.970000px;}
.yb8{bottom:804.030000px;}
.y9{bottom:805.380000px;}
.ydd{bottom:812.670000px;}
.y101{bottom:818.070000px;}
.yb7{bottom:821.670000px;}
.y32{bottom:822.030000px;}
.y55{bottom:828.330000px;}
.y78{bottom:829.140000px;}
.ydc{bottom:830.220000px;}
.y100{bottom:835.620000px;}
.y31{bottom:839.670000px;}
.y8{bottom:841.200000px;}
.yb6{bottom:848.220000px;}
.y54{bottom:855.600000px;}
.ydb{bottom:856.860000px;}
.y30{bottom:857.220000px;}
.yff{bottom:862.260000px;}
.y77{bottom:864.780000px;}
.y7{bottom:877.200000px;}
.yfe{bottom:879.810000px;}
.y76{bottom:882.330000px;}
.y95{bottom:882.960000px;}
.yb5{bottom:883.860000px;}
.yda{bottom:892.410000px;}
.y2f{bottom:892.860000px;}
.yb4{bottom:901.410000px;}
.y53{bottom:904.380000px;}
.yfd{bottom:906.450000px;}
.y75{bottom:909.240000px;}
.y94{bottom:910.320000px;}
.y2e{bottom:910.410000px;}
.y6{bottom:913.200000px;}
.yb3{bottom:918.960000px;}
.yfc{bottom:924.000000px;}
.y2d{bottom:927.960000px;}
.y52{bottom:928.320000px;}
.yb2{bottom:945.600000px;}
.y5{bottom:949.290000px;}
.yfb{bottom:950.550000px;}
.y74{bottom:954.870000px;}
.y51{bottom:955.680000px;}
.y93{bottom:959.010000px;}
.yd9{bottom:963.150000px;}
.y2c{bottom:963.600000px;}
.yfa{bottom:968.190000px;}
.y2b{bottom:981.150000px;}
.y73{bottom:982.230000px;}
.y50{bottom:982.950000px;}
.y4{bottom:987.630000px;}
.yd8{bottom:989.790000px;}
.y92{bottom:994.560000px;}
.yf9{bottom:994.740000px;}
.y2a{bottom:998.790000px;}
.y71{bottom:1009.590000px;}
.y4f{bottom:1010.340000px;}
.y3{bottom:1012.320000px;}
.yb1{bottom:1025.370000px;}
.y29{bottom:1034.370000px;}
.y70{bottom:1036.890000px;}
.y4d{bottom:1037.700000px;}
.yf8{bottom:1038.960000px;}
.yd7{bottom:1042.920000px;}
.y28{bottom:1051.920000px;}
.yf7{bottom:1056.510000px;}
.yd6{bottom:1060.560000px;}
.yb0{bottom:1060.920000px;}
.y6f{bottom:1064.250000px;}
.y4b{bottom:1064.970000px;}
.y27{bottom:1069.560000px;}
.yaf{bottom:1078.560000px;}
.yf6{bottom:1083.150000px;}
.yd5{bottom:1087.110000px;}
.y6e{bottom:1091.610000px;}
.yae{bottom:1096.110000px;}
.yf5{bottom:1100.700000px;}
.y26{bottom:1105.110000px;}
.y4a{bottom:1113.750000px;}
.y25{bottom:1122.750000px;}
.yf4{bottom:1127.610000px;}
.y24{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.h10{height:26.670000px;}
.h8{height:27.450000px;}
.h9{height:27.480000px;}
.he{height:27.540000px;}
.h2{height:30.022383px;}
.hb{height:32.918906px;}
.h3{height:38.100586px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h13{height:59.973223px;}
.h14{height:61.793886px;}
.ha{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:52.020000px;}
.w14{width:52.110000px;}
.w7{width:57.060000px;}
.w5{width:57.150000px;}
.w12{width:57.240000px;}
.we{width:57.330000px;}
.w1d{width:70.650000px;}
.w15{width:92.880000px;}
.w1b{width:92.910000px;}
.w1c{width:92.970000px;}
.w18{width:93.000000px;}
.w10{width:108.450000px;}
.wf{width:108.480000px;}
.w1a{width:127.170000px;}
.wc{width:130.620000px;}
.w17{width:138.510000px;}
.w1f{width:140.490000px;}
.w19{width:141.210000px;}
.wb{width:141.240000px;}
.wa{width:142.680000px;}
.w6{width:151.680000px;}
.w11{width:168.030000px;}
.wd{width:230.940000px;}
.w1e{width:231.780000px;}
.w3{width:308.820000px;}
.w8{width:351.840000px;}
.w4{width:358.050000px;}
.w13{width:462.750000px;}
.w9{width:495.480000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x2d{left:111.239987px;}
.x4{left:117.360000px;}
.x11{left:163.920000px;}
.xb{left:169.950000px;}
.x2{left:192.719987px;}
.x16{left:195.330000px;}
.x2a{left:224.400000px;}
.xc{left:227.820000px;}
.x22{left:229.530000px;}
.x1e{left:230.880000px;}
.x27{left:236.550000px;}
.x9{left:241.860000px;}
.x2b{left:295.860000px;}
.xa{left:299.640000px;}
.x7{left:341.850000px;}
.xd{left:346.350000px;}
.xf{left:352.380000px;}
.x17{left:364.080000px;}
.x1f{left:370.200000px;}
.x23{left:371.460000px;}
.x12{left:395.580000px;}
.x8{left:399.720000px;}
.xe{left:404.220000px;}
.x10{left:410.250000px;}
.x28{left:417.270000px;}
.x18{left:422.130000px;}
.x24{left:424.290000px;}
.x6{left:426.900000px;}
.x13{left:453.630000px;}
.x29{left:510.990000px;}
.x20{left:516.660000px;}
.x25{left:518.010000px;}
.x2c{left:528.360000px;}
.x19{left:531.420000px;}
.x14{left:562.830000px;}
.x21{left:569.490000px;}
.x26{left:570.840000px;}
.x1b{left:585.060000px;}
.x1a{left:589.470000px;}
.x15{left:620.880000px;}
.x1c{left:678.750000px;}
.x1d{left:731.580000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.395200pt;}
.ls11{letter-spacing:-0.348267pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.056533pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls25{letter-spacing:-0.039680pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.033067pt;}
.ls17{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.053760pt;}
.ls19{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.072533pt;}
.ls15{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.103467pt;}
.ls8{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls20{letter-spacing:1.043200pt;}
.ls4{letter-spacing:2.003200pt;}
.ls23{letter-spacing:4.883200pt;}
.ls22{letter-spacing:5.309867pt;}
.ls16{letter-spacing:5.523200pt;}
.ls21{letter-spacing:6.163200pt;}
.ls24{letter-spacing:6.483200pt;}
.ls1b{letter-spacing:7.123200pt;}
.ls1d{letter-spacing:8.723200pt;}
.ls1e{letter-spacing:9.683200pt;}
.ls27{letter-spacing:42.423680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.475733pt;}
.ws3{word-spacing:-16.403200pt;}
.ws4{word-spacing:-16.352533pt;}
.wsa{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.717120pt;}
.ws10{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.657067pt;}
.wsb{word-spacing:-7.603200pt;}
.wsc{word-spacing:0.000000pt;}
.ws9{word-spacing:3.826560pt;}
._8{margin-left:-3.367040pt;}
._1{margin-left:-2.386144pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.061898pt;}
._5{width:2.084267pt;}
._6{width:3.647613pt;}
._7{width:4.759040pt;}
._3{width:6.443200pt;}
._4{width:7.451200pt;}
._c{width:9.155093pt;}
._d{width:10.393600pt;}
._9{width:14.322134pt;}
._a{width:15.551040pt;}
._b{width:16.814507pt;}
._e{width:20.440640pt;}
.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;}
.y4e{bottom:6.960000pt;}
.y72{bottom:6.986667pt;}
.y4c{bottom:7.040000pt;}
.y85{bottom:7.066667pt;}
.y3c{bottom:7.760000pt;}
.y57{bottom:7.840000pt;}
.y8f{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y6d{bottom:96.826667pt;}
.y49{bottom:102.346667pt;}
.y91{bottom:112.826667pt;}
.yad{bottom:115.226667pt;}
.y6c{bottom:121.146667pt;}
.yd4{bottom:125.386667pt;}
.y48{bottom:130.586667pt;}
.y90{bottom:137.146667pt;}
.yd3{bottom:140.986667pt;}
.y6b{bottom:145.466667pt;}
.yac{bottom:146.826667pt;}
.yd2{bottom:156.666667pt;}
.y8e{bottom:161.466667pt;}
.y47{bottom:162.266667pt;}
.yab{bottom:162.506667pt;}
.y6a{bottom:169.706667pt;}
.yf3{bottom:170.106667pt;}
.y21{bottom:172.026667pt;}
.yd1{bottom:180.266667pt;}
.y20{bottom:187.706667pt;}
.y46{bottom:193.866667pt;}
.y69{bottom:194.026667pt;}
.yaa{bottom:194.106667pt;}
.y8d{bottom:201.386667pt;}
.y1f{bottom:203.306667pt;}
.ya9{bottom:209.706667pt;}
.yd0{bottom:211.946667pt;}
.y45{bottom:217.466667pt;}
.y1e{bottom:218.906667pt;}
.ya8{bottom:225.386667pt;}
.y8c{bottom:225.706667pt;}
.yf2{bottom:227.226667pt;}
.ycf{bottom:227.546667pt;}
.y68{bottom:237.306667pt;}
.y1d{bottom:242.826667pt;}
.yce{bottom:243.146667pt;}
.y44{bottom:249.146667pt;}
.ya7{bottom:249.306667pt;}
.y8b{bottom:249.946667pt;}
.y67{bottom:258.666667pt;}
.ycd{bottom:266.826667pt;}
.yf1{bottom:270.106667pt;}
.y43{bottom:272.746667pt;}
.y66{bottom:282.906667pt;}
.yf0{bottom:285.786667pt;}
.y1c{bottom:286.026667pt;}
.ya6{bottom:292.186667pt;}
.y8a{bottom:293.226667pt;}
.ycc{bottom:298.426667pt;}
.yef{bottom:301.386667pt;}
.y42{bottom:302.106667pt;}
.y65{bottom:307.226667pt;}
.ya5{bottom:307.866667pt;}
.ycb{bottom:314.106667pt;}
.y1b{bottom:318.986667pt;}
.y89{bottom:324.906667pt;}
.yee{bottom:325.306667pt;}
.y41{bottom:327.146667pt;}
.yca{bottom:329.706667pt;}
.y64{bottom:331.546667pt;}
.y1a{bottom:334.586667pt;}
.ya4{bottom:337.146667pt;}
.y88{bottom:338.186667pt;}
.yc9{bottom:345.306667pt;}
.y40{bottom:352.186667pt;}
.yc8{bottom:360.986667pt;}
.ya3{bottom:361.466667pt;}
.y87{bottom:362.506667pt;}
.y19{bottom:366.266667pt;}
.yed{bottom:368.266667pt;}
.y63{bottom:374.826667pt;}
.y3f{bottom:377.306667pt;}
.y18{bottom:381.866667pt;}
.yec{bottom:383.866667pt;}
.yc7{bottom:384.586667pt;}
.ya2{bottom:385.706667pt;}
.y86{bottom:386.826667pt;}
.y62{bottom:398.426667pt;}
.yeb{bottom:399.466667pt;}
.y3e{bottom:402.346667pt;}
.ya1{bottom:410.026667pt;}
.y84{bottom:411.066667pt;}
.y17{bottom:413.466667pt;}
.yc6{bottom:416.266667pt;}
.yea{bottom:423.173333pt;}
.y3d{bottom:427.413333pt;}
.y61{bottom:427.813333pt;}
.y16{bottom:429.173333pt;}
.yc5{bottom:431.893333pt;}
.ya0{bottom:434.373333pt;}
.y83{bottom:435.413333pt;}
.y110{bottom:436.693333pt;}
.yc4{bottom:447.493333pt;}
.y60{bottom:452.053333pt;}
.y10f{bottom:452.293333pt;}
.y3b{bottom:452.533333pt;}
.ye9{bottom:454.773333pt;}
.y82{bottom:459.733333pt;}
.y15{bottom:460.773333pt;}
.yc3{bottom:463.173333pt;}
.y10e{bottom:467.973333pt;}
.ye8{bottom:470.453333pt;}
.y14{bottom:476.373333pt;}
.y9f{bottom:477.653333pt;}
.yc2{bottom:478.773333pt;}
.y81{bottom:484.053333pt;}
.ye7{bottom:486.053333pt;}
.y10d{bottom:491.573333pt;}
.yc1{bottom:494.453333pt;}
.y3a{bottom:496.533333pt;}
.y5f{bottom:500.693333pt;}
.y10c{bottom:507.253333pt;}
.y13{bottom:508.053333pt;}
.y9e{bottom:509.253333pt;}
.ye6{bottom:509.653333pt;}
.y9d{bottom:522.613333pt;}
.y12{bottom:523.653333pt;}
.y5e{bottom:525.013333pt;}
.yc0{bottom:526.053333pt;}
.y80{bottom:527.333333pt;}
.y39{bottom:528.213333pt;}
.y10b{bottom:530.853333pt;}
.ye5{bottom:541.333333pt;}
.ybf{bottom:541.653333pt;}
.y10a{bottom:546.453333pt;}
.y9c{bottom:546.853333pt;}
.y5d{bottom:549.253333pt;}
.y11{bottom:555.333333pt;}
.ye4{bottom:556.933333pt;}
.y7f{bottom:558.933333pt;}
.y38{bottom:559.813333pt;}
.ybe{bottom:565.333333pt;}
.y109{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.y9b{bottom:571.173333pt;}
.y7e{bottom:572.213333pt;}
.y37{bottom:583.733333pt;}
.y108{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.ye3{bottom:588.613333pt;}
.y5c{bottom:592.533333pt;}
.y9a{bottom:595.493333pt;}
.y7d{bottom:596.533333pt;}
.ybd{bottom:596.933333pt;}
.ye{bottom:602.213333pt;}
.ye2{bottom:604.213333pt;}
.y107{bottom:609.413333pt;}
.ybc{bottom:612.613333pt;}
.y5b{bottom:613.893333pt;}
.yd{bottom:617.813333pt;}
.y99{bottom:619.813333pt;}
.y7c{bottom:620.853333pt;}
.y106{bottom:625.013333pt;}
.y36{bottom:626.613333pt;}
.ye1{bottom:627.813333pt;}
.ybb{bottom:628.213333pt;}
.yc{bottom:633.493333pt;}
.y5a{bottom:638.133333pt;}
.y35{bottom:642.293333pt;}
.y7b{bottom:645.173333pt;}
.y105{bottom:648.613333pt;}
.yb{bottom:649.093333pt;}
.yba{bottom:651.813333pt;}
.ye0{bottom:659.493333pt;}
.y59{bottom:662.453333pt;}
.y98{bottom:663.093333pt;}
.y104{bottom:664.293333pt;}
.y34{bottom:666.213333pt;}
.y7a{bottom:669.413333pt;}
.ya{bottom:673.013333pt;}
.ydf{bottom:675.093333pt;}
.yb9{bottom:683.493333pt;}
.y58{bottom:686.773333pt;}
.y103{bottom:687.893333pt;}
.y79{bottom:693.733333pt;}
.y97{bottom:696.373333pt;}
.y33{bottom:699.093333pt;}
.y102{bottom:703.573333pt;}
.yde{bottom:706.693333pt;}
.y56{bottom:711.093333pt;}
.y96{bottom:711.973333pt;}
.yb8{bottom:714.693333pt;}
.y9{bottom:715.893333pt;}
.ydd{bottom:722.373333pt;}
.y101{bottom:727.173333pt;}
.yb7{bottom:730.373333pt;}
.y32{bottom:730.693333pt;}
.y55{bottom:736.293333pt;}
.y78{bottom:737.013333pt;}
.ydc{bottom:737.973333pt;}
.y100{bottom:742.773333pt;}
.y31{bottom:746.373333pt;}
.y8{bottom:747.733333pt;}
.yb6{bottom:753.973333pt;}
.y54{bottom:760.533333pt;}
.ydb{bottom:761.653333pt;}
.y30{bottom:761.973333pt;}
.yff{bottom:766.453333pt;}
.y77{bottom:768.693333pt;}
.y7{bottom:779.733333pt;}
.yfe{bottom:782.053333pt;}
.y76{bottom:784.293333pt;}
.y95{bottom:784.853333pt;}
.yb5{bottom:785.653333pt;}
.yda{bottom:793.253333pt;}
.y2f{bottom:793.653333pt;}
.yb4{bottom:801.253333pt;}
.y53{bottom:803.893333pt;}
.yfd{bottom:805.733333pt;}
.y75{bottom:808.213333pt;}
.y94{bottom:809.173333pt;}
.y2e{bottom:809.253333pt;}
.y6{bottom:811.733333pt;}
.yb3{bottom:816.853333pt;}
.yfc{bottom:821.333333pt;}
.y2d{bottom:824.853333pt;}
.y52{bottom:825.173333pt;}
.yb2{bottom:840.533333pt;}
.y5{bottom:843.813333pt;}
.yfb{bottom:844.933333pt;}
.y74{bottom:848.773333pt;}
.y51{bottom:849.493333pt;}
.y93{bottom:852.453333pt;}
.yd9{bottom:856.133333pt;}
.y2c{bottom:856.533333pt;}
.yfa{bottom:860.613333pt;}
.y2b{bottom:872.133333pt;}
.y73{bottom:873.093333pt;}
.y50{bottom:873.733333pt;}
.y4{bottom:877.893333pt;}
.yd8{bottom:879.813333pt;}
.y92{bottom:884.053333pt;}
.yf9{bottom:884.213333pt;}
.y2a{bottom:887.813333pt;}
.y71{bottom:897.413333pt;}
.y4f{bottom:898.080000pt;}
.y3{bottom:899.840000pt;}
.yb1{bottom:911.440000pt;}
.y29{bottom:919.440000pt;}
.y70{bottom:921.680000pt;}
.y4d{bottom:922.400000pt;}
.yf8{bottom:923.520000pt;}
.yd7{bottom:927.040000pt;}
.y28{bottom:935.040000pt;}
.yf7{bottom:939.120000pt;}
.yd6{bottom:942.720000pt;}
.yb0{bottom:943.040000pt;}
.y6f{bottom:946.000000pt;}
.y4b{bottom:946.640000pt;}
.y27{bottom:950.720000pt;}
.yaf{bottom:958.720000pt;}
.yf6{bottom:962.800000pt;}
.yd5{bottom:966.320000pt;}
.y6e{bottom:970.320000pt;}
.yae{bottom:974.320000pt;}
.yf5{bottom:978.400000pt;}
.y26{bottom:982.320000pt;}
.y4a{bottom:990.000000pt;}
.y25{bottom:998.000000pt;}
.yf4{bottom:1002.320000pt;}
.y24{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.h10{height:23.706667pt;}
.h8{height:24.400000pt;}
.h9{height:24.426667pt;}
.he{height:24.480000pt;}
.h2{height:26.686562pt;}
.hb{height:29.261250pt;}
.h3{height:33.867188pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h13{height:53.309531pt;}
.h14{height:54.927899pt;}
.ha{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:46.240000pt;}
.w14{width:46.320000pt;}
.w7{width:50.720000pt;}
.w5{width:50.800000pt;}
.w12{width:50.880000pt;}
.we{width:50.960000pt;}
.w1d{width:62.800000pt;}
.w15{width:82.560000pt;}
.w1b{width:82.586667pt;}
.w1c{width:82.640000pt;}
.w18{width:82.666667pt;}
.w10{width:96.400000pt;}
.wf{width:96.426667pt;}
.w1a{width:113.040000pt;}
.wc{width:116.106667pt;}
.w17{width:123.120000pt;}
.w1f{width:124.880000pt;}
.w19{width:125.520000pt;}
.wb{width:125.546667pt;}
.wa{width:126.826667pt;}
.w6{width:134.826667pt;}
.w11{width:149.360000pt;}
.wd{width:205.280000pt;}
.w1e{width:206.026667pt;}
.w3{width:274.506667pt;}
.w8{width:312.746667pt;}
.w4{width:318.266667pt;}
.w13{width:411.333333pt;}
.w9{width:440.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2d{left:98.879988pt;}
.x4{left:104.320000pt;}
.x11{left:145.706667pt;}
.xb{left:151.066667pt;}
.x2{left:171.306655pt;}
.x16{left:173.626667pt;}
.x2a{left:199.466667pt;}
.xc{left:202.506667pt;}
.x22{left:204.026667pt;}
.x1e{left:205.226667pt;}
.x27{left:210.266667pt;}
.x9{left:214.986667pt;}
.x2b{left:262.986667pt;}
.xa{left:266.346667pt;}
.x7{left:303.866667pt;}
.xd{left:307.866667pt;}
.xf{left:313.226667pt;}
.x17{left:323.626667pt;}
.x1f{left:329.066667pt;}
.x23{left:330.186667pt;}
.x12{left:351.626667pt;}
.x8{left:355.306667pt;}
.xe{left:359.306667pt;}
.x10{left:364.666667pt;}
.x28{left:370.906667pt;}
.x18{left:375.226667pt;}
.x24{left:377.146667pt;}
.x6{left:379.466667pt;}
.x13{left:403.226667pt;}
.x29{left:454.213333pt;}
.x20{left:459.253333pt;}
.x25{left:460.453333pt;}
.x2c{left:469.653333pt;}
.x19{left:472.373333pt;}
.x14{left:500.293333pt;}
.x21{left:506.213333pt;}
.x26{left:507.413333pt;}
.x1b{left:520.053333pt;}
.x1a{left:523.973333pt;}
.x15{left:551.893333pt;}
.x1c{left:603.333333pt;}
.x1d{left:650.293333pt;}
.x3{left:711.413322pt;}
}




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