
    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_e84f5b12b7b3da328e7acb19.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_621d7e2b2e6ef42b57ed765c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1344bac5fc08139ca4269ac7.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_cbf68e2728db6d99f1a88bd1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbc5e2045a95d3ee640212fb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_7e8a3971532177e419a3a92d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_33a97aecf85addc6e70cc539.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_e4cdbc9f12599ffa2e237d89.woff')format("woff");}.ff9{font-family:ff9;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;}
.ls23{letter-spacing:-1.812000px;}
.ls1d{letter-spacing:-1.680000px;}
.ls21{letter-spacing:-1.446000px;}
.ls22{letter-spacing:-1.332000px;}
.ls1e{letter-spacing:-1.326000px;}
.ls1b{letter-spacing:-1.320000px;}
.ls1f{letter-spacing:-1.266000px;}
.ls20{letter-spacing:-0.906000px;}
.ls18{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls24{letter-spacing:-0.159600px;}
.ls19{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.067200px;}
.lsb{letter-spacing:-0.031800px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.068400px;}
.lse{letter-spacing:0.074160px;}
.ls17{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.173520px;}
.ls26{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls13{letter-spacing:0.453600px;}
.ls14{letter-spacing:2.613600px;}
.ls27{letter-spacing:47.726640px;}
.ls25{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;}
}
.ws13{word-spacing:-60.120000px;}
.ws19{word-spacing:-58.308000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.424400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.159200px;}
.wsf{word-spacing:-13.072800px;}
.ws1a{word-spacing:-13.066800px;}
.wsc{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws16{word-spacing:-12.320400px;}
.ws15{word-spacing:-11.960400px;}
.ws11{word-spacing:-11.906400px;}
.ws14{word-spacing:-11.900400px;}
.ws18{word-spacing:-11.894400px;}
.ws17{word-spacing:-11.780400px;}
.ws12{word-spacing:-11.546400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._10{margin-left:-3.985800px;}
._4{margin-left:-2.726760px;}
._0{margin-left:-1.110000px;}
._3{width:1.070124px;}
._6{width:2.311573px;}
._a{width:3.314156px;}
._1{width:4.362012px;}
._2{width:5.451613px;}
._7{width:6.945264px;}
._f{width:7.961280px;}
._c{width:9.441240px;}
._b{width:10.521000px;}
._5{width:11.783400px;}
._11{width:14.549040px;}
._d{width:16.533000px;}
._e{width:17.675280px;}
._9{width:19.492200px;}
._8{width:21.447360px;}
._12{width:36.853560px;}
._14{width:42.648840px;}
._13{width:99.137880px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:7.830000px;}
.y7e{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ycc{bottom:111.720000px;}
.y5c{bottom:117.840000px;}
.y7f{bottom:123.420000px;}
.ycb{bottom:129.270000px;}
.y5b{bottom:135.390000px;}
.y7d{bottom:135.570000px;}
.yca{bottom:146.910000px;}
.y112{bottom:151.680000px;}
.y5a{bottom:152.940000px;}
.y25{bottom:160.680000px;}
.y7c{bottom:162.930000px;}
.yc9{bottom:164.460000px;}
.y59{bottom:170.580000px;}
.ya2{bottom:175.260000px;}
.y24{bottom:178.320000px;}
.yc8{bottom:182.100000px;}
.ya1{bottom:187.410000px;}
.y58{bottom:188.130000px;}
.y7a{bottom:190.290000px;}
.y111{bottom:195.870000px;}
.yf3{bottom:202.710000px;}
.y57{bottom:205.680000px;}
.y23{bottom:213.870000px;}
.ya0{bottom:214.770000px;}
.yc7{bottom:217.650000px;}
.yf2{bottom:220.350000px;}
.y110{bottom:222.420000px;}
.y56{bottom:223.320000px;}
.y22{bottom:231.510000px;}
.yc6{bottom:235.200000px;}
.yf1{bottom:237.900000px;}
.y79{bottom:238.980000px;}
.y10f{bottom:240.060000px;}
.y55{bottom:240.870000px;}
.y9f{bottom:242.040000px;}
.y21{bottom:249.060000px;}
.yc5{bottom:252.840000px;}
.yf0{bottom:255.450000px;}
.y10e{bottom:257.610000px;}
.y9e{bottom:269.400000px;}
.yc4{bottom:270.390000px;}
.y78{bottom:274.530000px;}
.y54{bottom:276.510000px;}
.y10d{bottom:284.250000px;}
.y20{bottom:284.610000px;}
.yc3{bottom:287.940000px;}
.yef{bottom:291.090000px;}
.y77{bottom:292.170000px;}
.y53{bottom:294.060000px;}
.y9d{bottom:296.760000px;}
.y10c{bottom:301.800000px;}
.y1f{bottom:302.250000px;}
.yc2{bottom:305.580000px;}
.yee{bottom:308.640000px;}
.y76{bottom:309.720000px;}
.y52{bottom:311.610000px;}
.y1e{bottom:319.800000px;}
.yc1{bottom:323.130000px;}
.y9c{bottom:324.120000px;}
.yed{bottom:326.190000px;}
.y75{bottom:327.360000px;}
.y10b{bottom:328.350000px;}
.y51{bottom:329.250000px;}
.y1d{bottom:337.440000px;}
.yec{bottom:343.830000px;}
.y10a{bottom:345.990000px;}
.y50{bottom:346.800000px;}
.y9b{bottom:351.390000px;}
.y74{bottom:354.180000px;}
.yc0{bottom:358.770000px;}
.y109{bottom:363.540000px;}
.y4f{bottom:364.440000px;}
.y1c{bottom:372.990000px;}
.ybf{bottom:376.320000px;}
.y9a{bottom:378.750000px;}
.yeb{bottom:379.380000px;}
.y108{bottom:390.090000px;}
.y1b{bottom:390.540000px;}
.ybe{bottom:393.870000px;}
.yea{bottom:397.020000px;}
.y4e{bottom:399.990000px;}
.y73{bottom:402.510000px;}
.y99{bottom:406.110000px;}
.y107{bottom:407.730000px;}
.y1a{bottom:408.180000px;}
.ye9{bottom:414.570000px;}
.y4d{bottom:417.540000px;}
.y19{bottom:425.730000px;}
.ybd{bottom:429.510000px;}
.ye8{bottom:432.120000px;}
.y106{bottom:434.280000px;}
.y4c{bottom:435.180000px;}
.y72{bottom:438.060000px;}
.ybc{bottom:447.060000px;}
.ye7{bottom:449.760000px;}
.y105{bottom:451.920000px;}
.y18{bottom:452.640000px;}
.y4b{bottom:452.730000px;}
.y98{bottom:454.800000px;}
.y71{bottom:455.700000px;}
.ybb{bottom:464.700000px;}
.y4a{bottom:470.400000px;}
.y104{bottom:478.500000px;}
.y70{bottom:482.280000px;}
.ye6{bottom:485.340000px;}
.y49{bottom:487.950000px;}
.y97{bottom:490.380000px;}
.y103{bottom:496.050000px;}
.y17{bottom:500.910000px;}
.ye5{bottom:502.980000px;}
.y48{bottom:505.500000px;}
.y96{bottom:508.020000px;}
.y102{bottom:513.690000px;}
.y6f{bottom:517.830000px;}
.y16{bottom:518.820000px;}
.ye4{bottom:520.530000px;}
.y95{bottom:525.570000px;}
.y101{bottom:531.240000px;}
.y6e{bottom:535.470000px;}
.ye3{bottom:538.080000px;}
.y47{bottom:541.140000px;}
.y94{bottom:543.120000px;}
.y6d{bottom:553.020000px;}
.ye2{bottom:555.720000px;}
.y15{bottom:555.900000px;}
.y100{bottom:557.880000px;}
.y46{bottom:558.690000px;}
.y6c{bottom:570.660000px;}
.y14{bottom:573.450000px;}
.y93{bottom:576.150000px;}
.y45{bottom:576.330000px;}
.ye1{bottom:582.630000px;}
.yff{bottom:584.430000px;}
.yba{bottom:588.660000px;}
.y13{bottom:591.090000px;}
.y44{bottom:593.880000px;}
.y6b{bottom:597.210000px;}
.yfe{bottom:601.980000px;}
.y92{bottom:603.420000px;}
.yb9{bottom:606.210000px;}
.y12{bottom:608.640000px;}
.y43{bottom:611.430000px;}
.ye0{bottom:619.620000px;}
.yb8{bottom:623.760000px;}
.y11{bottom:626.190000px;}
.yfd{bottom:628.890000px;}
.y42{bottom:629.070000px;}
.y91{bottom:630.780000px;}
.y6a{bottom:632.760000px;}
.ydf{bottom:637.260000px;}
.yb7{bottom:641.400000px;}
.y10{bottom:643.830000px;}
.y41{bottom:646.620000px;}
.y69{bottom:650.400000px;}
.yde{bottom:654.810000px;}
.y90{bottom:658.140000px;}
.yb6{bottom:658.950000px;}
.yf{bottom:661.380000px;}
.y68{bottom:667.950000px;}
.ydd{bottom:672.360000px;}
.yb5{bottom:676.590000px;}
.yfc{bottom:677.220000px;}
.ye{bottom:679.020000px;}
.y40{bottom:682.260000px;}
.y67{bottom:685.590000px;}
.ydc{bottom:690.000000px;}
.yb4{bottom:694.140000px;}
.yd{bottom:696.570000px;}
.y3f{bottom:699.810000px;}
.y66{bottom:703.140000px;}
.yfb{bottom:704.130000px;}
.y8f{bottom:706.830000px;}
.ydb{bottom:707.550000px;}
.yc{bottom:714.120000px;}
.y3e{bottom:717.360000px;}
.yda{bottom:725.190000px;}
.y65{bottom:729.690000px;}
.yb{bottom:731.760000px;}
.y3d{bottom:735.000000px;}
.yfa{bottom:741.120000px;}
.y8e{bottom:742.380000px;}
.yb3{bottom:747.330000px;}
.y3c{bottom:752.550000px;}
.ya{bottom:758.670000px;}
.y8d{bottom:760.020000px;}
.yd9{bottom:760.740000px;}
.yb2{bottom:764.880000px;}
.y64{bottom:765.330000px;}
.yf9{bottom:768.030000px;}
.y3b{bottom:770.190000px;}
.y8c{bottom:777.570000px;}
.yd8{bottom:778.290000px;}
.yb1{bottom:782.520000px;}
.y63{bottom:782.880000px;}
.y3a{bottom:787.740000px;}
.yd7{bottom:795.930000px;}
.yb0{bottom:800.070000px;}
.y62{bottom:800.520000px;}
.y39{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y8b{bottom:813.210000px;}
.yd6{bottom:813.480000px;}
.y61{bottom:818.070000px;}
.y11c{bottom:822.480000px;}
.y8a{bottom:830.760000px;}
.yd5{bottom:831.030000px;}
.yaf{bottom:835.620000px;}
.y11b{bottom:840.030000px;}
.y38{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y60{bottom:844.620000px;}
.y89{bottom:848.310000px;}
.yd4{bottom:848.670000px;}
.yae{bottom:853.260000px;}
.yf8{bottom:853.620000px;}
.y37{bottom:858.480000px;}
.y88{bottom:865.950000px;}
.y11a{bottom:866.670000px;}
.yf7{bottom:871.260000px;}
.y36{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y5f{bottom:880.530000px;}
.yd3{bottom:884.220000px;}
.yad{bottom:888.810000px;}
.y35{bottom:893.670000px;}
.y87{bottom:900.780000px;}
.yd2{bottom:901.860000px;}
.yac{bottom:906.450000px;}
.y119{bottom:910.860000px;}
.y34{bottom:911.220000px;}
.y86{bottom:912.930000px;}
.y6{bottom:913.200000px;}
.yd1{bottom:919.410000px;}
.yab{bottom:924.000000px;}
.y118{bottom:928.410000px;}
.y33{bottom:928.860000px;}
.yd0{bottom:936.960000px;}
.y85{bottom:940.290000px;}
.yaa{bottom:941.550000px;}
.y32{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ycf{bottom:954.600000px;}
.y117{bottom:954.960000px;}
.yf6{bottom:959.550000px;}
.y31{bottom:963.960000px;}
.y84{bottom:967.650000px;}
.yce{bottom:972.150000px;}
.y116{bottom:972.600000px;}
.ya9{bottom:977.190000px;}
.y30{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y115{bottom:990.150000px;}
.ya8{bottom:994.740000px;}
.ycd{bottom:998.790000px;}
.y2f{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y83{bottom:1016.370000px;}
.y5e{bottom:1016.820000px;}
.ya7{bottom:1029.960000px;}
.yf5{bottom:1030.320000px;}
.y5d{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.yf4{bottom:1047.960000px;}
.y82{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.ya6{bottom:1065.510000px;}
.y81{bottom:1069.560000px;}
.y2c{bottom:1069.920000px;}
.y114{bottom:1078.560000px;}
.ya5{bottom:1083.150000px;}
.y80{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y113{bottom:1096.110000px;}
.ya4{bottom:1100.700000px;}
.y2a{bottom:1105.110000px;}
.y29{bottom:1122.750000px;}
.ya3{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hd{height:41.661211px;}
.he{height:50.667539px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:16.020000px;}
.w12{width:20.880000px;}
.w4{width:32.850000px;}
.w19{width:44.100000px;}
.w6{width:44.130000px;}
.wb{width:51.030000px;}
.w15{width:51.480000px;}
.w14{width:51.570000px;}
.w5{width:52.380000px;}
.w7{width:55.530000px;}
.wc{width:56.070000px;}
.wa{width:59.130000px;}
.wd{width:59.250000px;}
.wf{width:62.730000px;}
.w16{width:71.550000px;}
.w9{width:92.610000px;}
.w13{width:94.890000px;}
.w11{width:110.250000px;}
.w1a{width:114.840000px;}
.w3{width:118.080000px;}
.w18{width:119.370000px;}
.we{width:120.510000px;}
.w10{width:136.980000px;}
.w17{width:236.010000px;}
.w1b{width:569.760000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.xd{left:7.740000px;}
.x1{left:68.040000px;}
.x20{left:111.239987px;}
.x1b{left:161.730000px;}
.x15{left:175.530000px;}
.xc{left:193.710000px;}
.x2{left:202.799987px;}
.x4{left:285.330000px;}
.xe{left:287.130000px;}
.x1f{left:296.579987px;}
.xb{left:312.509987px;}
.xf{left:346.980000px;}
.x14{left:348.689987px;}
.x10{left:398.730000px;}
.x6{left:404.130000px;}
.x16{left:424.290000px;}
.x7{left:437.700000px;}
.x17{left:445.980000px;}
.x11{left:455.520000px;}
.x8{left:490.890000px;}
.x12{left:515.490000px;}
.x1c{left:518.550000px;}
.x9{left:535.740000px;}
.x18{left:541.590000px;}
.x1d{left:563.460000px;}
.xa{left:591.990000px;}
.x19{left:593.880000px;}
.x13{left:636.810000px;}
.x1a{left:646.170000px;}
.x1e{left:679.110000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls23{letter-spacing:-1.610667pt;}
.ls1d{letter-spacing:-1.493333pt;}
.ls21{letter-spacing:-1.285333pt;}
.ls22{letter-spacing:-1.184000pt;}
.ls1e{letter-spacing:-1.178667pt;}
.ls1b{letter-spacing:-1.173333pt;}
.ls1f{letter-spacing:-1.125333pt;}
.ls20{letter-spacing:-0.805333pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls24{letter-spacing:-0.141867pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.059733pt;}
.lsb{letter-spacing:-0.028267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.060800pt;}
.lse{letter-spacing:0.065920pt;}
.ls17{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.154240pt;}
.ls26{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls13{letter-spacing:0.403200pt;}
.ls14{letter-spacing:2.323200pt;}
.ls27{letter-spacing:42.423680pt;}
.ls25{letter-spacing:71.863680pt;}
.ws13{word-spacing:-53.440000pt;}
.ws19{word-spacing:-51.829333pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.932800pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.697067pt;}
.wsf{word-spacing:-11.620267pt;}
.ws1a{word-spacing:-11.614933pt;}
.wsc{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws16{word-spacing:-10.951467pt;}
.ws15{word-spacing:-10.631467pt;}
.ws11{word-spacing:-10.583467pt;}
.ws14{word-spacing:-10.578133pt;}
.ws18{word-spacing:-10.572800pt;}
.ws17{word-spacing:-10.471467pt;}
.ws12{word-spacing:-10.263467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._10{margin-left:-3.542933pt;}
._4{margin-left:-2.423787pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.951221pt;}
._6{width:2.054732pt;}
._a{width:2.945917pt;}
._1{width:3.877344pt;}
._2{width:4.845878pt;}
._7{width:6.173568pt;}
._f{width:7.076693pt;}
._c{width:8.392213pt;}
._b{width:9.352000pt;}
._5{width:10.474133pt;}
._11{width:12.932480pt;}
._d{width:14.696000pt;}
._e{width:15.711360pt;}
._9{width:17.326400pt;}
._8{width:19.064320pt;}
._12{width:32.758720pt;}
._14{width:37.910080pt;}
._13{width:88.122560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:6.960000pt;}
.y7e{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ycc{bottom:99.306667pt;}
.y5c{bottom:104.746667pt;}
.y7f{bottom:109.706667pt;}
.ycb{bottom:114.906667pt;}
.y5b{bottom:120.346667pt;}
.y7d{bottom:120.506667pt;}
.yca{bottom:130.586667pt;}
.y112{bottom:134.826667pt;}
.y5a{bottom:135.946667pt;}
.y25{bottom:142.826667pt;}
.y7c{bottom:144.826667pt;}
.yc9{bottom:146.186667pt;}
.y59{bottom:151.626667pt;}
.ya2{bottom:155.786667pt;}
.y24{bottom:158.506667pt;}
.yc8{bottom:161.866667pt;}
.ya1{bottom:166.586667pt;}
.y58{bottom:167.226667pt;}
.y7a{bottom:169.146667pt;}
.y111{bottom:174.106667pt;}
.yf3{bottom:180.186667pt;}
.y57{bottom:182.826667pt;}
.y23{bottom:190.106667pt;}
.ya0{bottom:190.906667pt;}
.yc7{bottom:193.466667pt;}
.yf2{bottom:195.866667pt;}
.y110{bottom:197.706667pt;}
.y56{bottom:198.506667pt;}
.y22{bottom:205.786667pt;}
.yc6{bottom:209.066667pt;}
.yf1{bottom:211.466667pt;}
.y79{bottom:212.426667pt;}
.y10f{bottom:213.386667pt;}
.y55{bottom:214.106667pt;}
.y9f{bottom:215.146667pt;}
.y21{bottom:221.386667pt;}
.yc5{bottom:224.746667pt;}
.yf0{bottom:227.066667pt;}
.y10e{bottom:228.986667pt;}
.y9e{bottom:239.466667pt;}
.yc4{bottom:240.346667pt;}
.y78{bottom:244.026667pt;}
.y54{bottom:245.786667pt;}
.y10d{bottom:252.666667pt;}
.y20{bottom:252.986667pt;}
.yc3{bottom:255.946667pt;}
.yef{bottom:258.746667pt;}
.y77{bottom:259.706667pt;}
.y53{bottom:261.386667pt;}
.y9d{bottom:263.786667pt;}
.y10c{bottom:268.266667pt;}
.y1f{bottom:268.666667pt;}
.yc2{bottom:271.626667pt;}
.yee{bottom:274.346667pt;}
.y76{bottom:275.306667pt;}
.y52{bottom:276.986667pt;}
.y1e{bottom:284.266667pt;}
.yc1{bottom:287.226667pt;}
.y9c{bottom:288.106667pt;}
.yed{bottom:289.946667pt;}
.y75{bottom:290.986667pt;}
.y10b{bottom:291.866667pt;}
.y51{bottom:292.666667pt;}
.y1d{bottom:299.946667pt;}
.yec{bottom:305.626667pt;}
.y10a{bottom:307.546667pt;}
.y50{bottom:308.266667pt;}
.y9b{bottom:312.346667pt;}
.y74{bottom:314.826667pt;}
.yc0{bottom:318.906667pt;}
.y109{bottom:323.146667pt;}
.y4f{bottom:323.946667pt;}
.y1c{bottom:331.546667pt;}
.ybf{bottom:334.506667pt;}
.y9a{bottom:336.666667pt;}
.yeb{bottom:337.226667pt;}
.y108{bottom:346.746667pt;}
.y1b{bottom:347.146667pt;}
.ybe{bottom:350.106667pt;}
.yea{bottom:352.906667pt;}
.y4e{bottom:355.546667pt;}
.y73{bottom:357.786667pt;}
.y99{bottom:360.986667pt;}
.y107{bottom:362.426667pt;}
.y1a{bottom:362.826667pt;}
.ye9{bottom:368.506667pt;}
.y4d{bottom:371.146667pt;}
.y19{bottom:378.426667pt;}
.ybd{bottom:381.786667pt;}
.ye8{bottom:384.106667pt;}
.y106{bottom:386.026667pt;}
.y4c{bottom:386.826667pt;}
.y72{bottom:389.386667pt;}
.ybc{bottom:397.386667pt;}
.ye7{bottom:399.786667pt;}
.y105{bottom:401.706667pt;}
.y18{bottom:402.346667pt;}
.y4b{bottom:402.426667pt;}
.y98{bottom:404.266667pt;}
.y71{bottom:405.066667pt;}
.ybb{bottom:413.066667pt;}
.y4a{bottom:418.133333pt;}
.y104{bottom:425.333333pt;}
.y70{bottom:428.693333pt;}
.ye6{bottom:431.413333pt;}
.y49{bottom:433.733333pt;}
.y97{bottom:435.893333pt;}
.y103{bottom:440.933333pt;}
.y17{bottom:445.253333pt;}
.ye5{bottom:447.093333pt;}
.y48{bottom:449.333333pt;}
.y96{bottom:451.573333pt;}
.y102{bottom:456.613333pt;}
.y6f{bottom:460.293333pt;}
.y16{bottom:461.173333pt;}
.ye4{bottom:462.693333pt;}
.y95{bottom:467.173333pt;}
.y101{bottom:472.213333pt;}
.y6e{bottom:475.973333pt;}
.ye3{bottom:478.293333pt;}
.y47{bottom:481.013333pt;}
.y94{bottom:482.773333pt;}
.y6d{bottom:491.573333pt;}
.ye2{bottom:493.973333pt;}
.y15{bottom:494.133333pt;}
.y100{bottom:495.893333pt;}
.y46{bottom:496.613333pt;}
.y6c{bottom:507.253333pt;}
.y14{bottom:509.733333pt;}
.y93{bottom:512.133333pt;}
.y45{bottom:512.293333pt;}
.ye1{bottom:517.893333pt;}
.yff{bottom:519.493333pt;}
.yba{bottom:523.253333pt;}
.y13{bottom:525.413333pt;}
.y44{bottom:527.893333pt;}
.y6b{bottom:530.853333pt;}
.yfe{bottom:535.093333pt;}
.y92{bottom:536.373333pt;}
.yb9{bottom:538.853333pt;}
.y12{bottom:541.013333pt;}
.y43{bottom:543.493333pt;}
.ye0{bottom:550.773333pt;}
.yb8{bottom:554.453333pt;}
.y11{bottom:556.613333pt;}
.yfd{bottom:559.013333pt;}
.y42{bottom:559.173333pt;}
.y91{bottom:560.693333pt;}
.y6a{bottom:562.453333pt;}
.ydf{bottom:566.453333pt;}
.yb7{bottom:570.133333pt;}
.y10{bottom:572.293333pt;}
.y41{bottom:574.773333pt;}
.y69{bottom:578.133333pt;}
.yde{bottom:582.053333pt;}
.y90{bottom:585.013333pt;}
.yb6{bottom:585.733333pt;}
.yf{bottom:587.893333pt;}
.y68{bottom:593.733333pt;}
.ydd{bottom:597.653333pt;}
.yb5{bottom:601.413333pt;}
.yfc{bottom:601.973333pt;}
.ye{bottom:603.573333pt;}
.y40{bottom:606.453333pt;}
.y67{bottom:609.413333pt;}
.ydc{bottom:613.333333pt;}
.yb4{bottom:617.013333pt;}
.yd{bottom:619.173333pt;}
.y3f{bottom:622.053333pt;}
.y66{bottom:625.013333pt;}
.yfb{bottom:625.893333pt;}
.y8f{bottom:628.293333pt;}
.ydb{bottom:628.933333pt;}
.yc{bottom:634.773333pt;}
.y3e{bottom:637.653333pt;}
.yda{bottom:644.613333pt;}
.y65{bottom:648.613333pt;}
.yb{bottom:650.453333pt;}
.y3d{bottom:653.333333pt;}
.yfa{bottom:658.773333pt;}
.y8e{bottom:659.893333pt;}
.yb3{bottom:664.293333pt;}
.y3c{bottom:668.933333pt;}
.ya{bottom:674.373333pt;}
.y8d{bottom:675.573333pt;}
.yd9{bottom:676.213333pt;}
.yb2{bottom:679.893333pt;}
.y64{bottom:680.293333pt;}
.yf9{bottom:682.693333pt;}
.y3b{bottom:684.613333pt;}
.y8c{bottom:691.173333pt;}
.yd8{bottom:691.813333pt;}
.yb1{bottom:695.573333pt;}
.y63{bottom:695.893333pt;}
.y3a{bottom:700.213333pt;}
.yd7{bottom:707.493333pt;}
.yb0{bottom:711.173333pt;}
.y62{bottom:711.573333pt;}
.y39{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y8b{bottom:722.853333pt;}
.yd6{bottom:723.093333pt;}
.y61{bottom:727.173333pt;}
.y11c{bottom:731.093333pt;}
.y8a{bottom:738.453333pt;}
.yd5{bottom:738.693333pt;}
.yaf{bottom:742.773333pt;}
.y11b{bottom:746.693333pt;}
.y38{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y60{bottom:750.773333pt;}
.y89{bottom:754.053333pt;}
.yd4{bottom:754.373333pt;}
.yae{bottom:758.453333pt;}
.yf8{bottom:758.773333pt;}
.y37{bottom:763.093333pt;}
.y88{bottom:769.733333pt;}
.y11a{bottom:770.373333pt;}
.yf7{bottom:774.453333pt;}
.y36{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y5f{bottom:782.693333pt;}
.yd3{bottom:785.973333pt;}
.yad{bottom:790.053333pt;}
.y35{bottom:794.373333pt;}
.y87{bottom:800.693333pt;}
.yd2{bottom:801.653333pt;}
.yac{bottom:805.733333pt;}
.y119{bottom:809.653333pt;}
.y34{bottom:809.973333pt;}
.y86{bottom:811.493333pt;}
.y6{bottom:811.733333pt;}
.yd1{bottom:817.253333pt;}
.yab{bottom:821.333333pt;}
.y118{bottom:825.253333pt;}
.y33{bottom:825.653333pt;}
.yd0{bottom:832.853333pt;}
.y85{bottom:835.813333pt;}
.yaa{bottom:836.933333pt;}
.y32{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ycf{bottom:848.533333pt;}
.y117{bottom:848.853333pt;}
.yf6{bottom:852.933333pt;}
.y31{bottom:856.853333pt;}
.y84{bottom:860.133333pt;}
.yce{bottom:864.133333pt;}
.y116{bottom:864.533333pt;}
.ya9{bottom:868.613333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y115{bottom:880.133333pt;}
.ya8{bottom:884.213333pt;}
.ycd{bottom:887.813333pt;}
.y2f{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y83{bottom:903.440000pt;}
.y5e{bottom:903.840000pt;}
.ya7{bottom:915.520000pt;}
.yf5{bottom:915.840000pt;}
.y5d{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.yf4{bottom:931.520000pt;}
.y82{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.ya6{bottom:947.120000pt;}
.y81{bottom:950.720000pt;}
.y2c{bottom:951.040000pt;}
.y114{bottom:958.720000pt;}
.ya5{bottom:962.800000pt;}
.y80{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y113{bottom:974.320000pt;}
.ya4{bottom:978.400000pt;}
.y2a{bottom:982.320000pt;}
.y29{bottom:998.000000pt;}
.ya3{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hd{height:37.032187pt;}
.he{height:45.037812pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:14.240000pt;}
.w12{width:18.560000pt;}
.w4{width:29.200000pt;}
.w19{width:39.200000pt;}
.w6{width:39.226667pt;}
.wb{width:45.360000pt;}
.w15{width:45.760000pt;}
.w14{width:45.840000pt;}
.w5{width:46.560000pt;}
.w7{width:49.360000pt;}
.wc{width:49.840000pt;}
.wa{width:52.560000pt;}
.wd{width:52.666667pt;}
.wf{width:55.760000pt;}
.w16{width:63.600000pt;}
.w9{width:82.320000pt;}
.w13{width:84.346667pt;}
.w11{width:98.000000pt;}
.w1a{width:102.080000pt;}
.w3{width:104.960000pt;}
.w18{width:106.106667pt;}
.we{width:107.120000pt;}
.w10{width:121.760000pt;}
.w17{width:209.786667pt;}
.w1b{width:506.453333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.xd{left:6.880000pt;}
.x1{left:60.480000pt;}
.x20{left:98.879988pt;}
.x1b{left:143.760000pt;}
.x15{left:156.026667pt;}
.xc{left:172.186667pt;}
.x2{left:180.266655pt;}
.x4{left:253.626667pt;}
.xe{left:255.226667pt;}
.x1f{left:263.626655pt;}
.xb{left:277.786655pt;}
.xf{left:308.426667pt;}
.x14{left:309.946655pt;}
.x10{left:354.426667pt;}
.x6{left:359.226667pt;}
.x16{left:377.146667pt;}
.x7{left:389.066667pt;}
.x17{left:396.426667pt;}
.x11{left:404.906667pt;}
.x8{left:436.346667pt;}
.x12{left:458.213333pt;}
.x1c{left:460.933333pt;}
.x9{left:476.213333pt;}
.x18{left:481.413333pt;}
.x1d{left:500.853333pt;}
.xa{left:526.213333pt;}
.x19{left:527.893333pt;}
.x13{left:566.053333pt;}
.x1a{left:574.373333pt;}
.x1e{left:603.653333pt;}
.x3{left:704.053322pt;}
}




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