
    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_44ab2ef4ff2bc355e74aa6bc.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_9824ee07740dffe11fc6b991.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_0684586bfadbea0c70a68fb0.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_bb877f4fa09b9df337823df8.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_b45a4685d552b2870b775d7b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2e715d581def4ae2226f0d39.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de1a8662d8aea66de873d794.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_a942e839bf4995e3d000c5d4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_102e1a02f905a5f0dfcd76b2.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls19{letter-spacing:-0.125400px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.042480px;}
.ls11{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.074160px;}
.ls13{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.199200px;}
.ls1a{letter-spacing:0.201600px;}
.ls12{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls17{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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.428000px;}
.ws3{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.268880px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.101000px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._c{margin-left:-4.184880px;}
._b{margin-left:-3.066120px;}
._0{margin-left:-1.110000px;}
._1{width:1.006728px;}
._2{width:2.074944px;}
._a{width:3.137771px;}
._6{width:4.237202px;}
._5{width:5.530800px;}
._9{width:6.674880px;}
._4{width:8.476800px;}
._3{width:9.559200px;}
._7{width:10.979760px;}
._8{width:12.188880px;}
._d{width:14.894040px;}
._e{width:17.314560px;}
._f{width:168.877080px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y81{bottom:7.830000px;}
.y83{bottom:7.920000px;}
.y9b{bottom:7.950000px;}
.y9d{bottom:9.000000px;}
.y98{bottom:10.800000px;}
.y84{bottom:35.190000px;}
.y7f{bottom:40.410000px;}
.y7e{bottom:62.460000px;}
.y2{bottom:73.380000px;}
.y22{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y95{bottom:113.880000px;}
.y116{bottom:114.060000px;}
.y50{bottom:114.870000px;}
.yba{bottom:116.400000px;}
.y6e{bottom:123.960000px;}
.y115{bottom:131.610000px;}
.y4f{bottom:132.510000px;}
.yf7{bottom:132.690000px;}
.yd7{bottom:134.040000px;}
.y131{bottom:136.200000px;}
.y6d{bottom:141.510000px;}
.yb9{bottom:143.760000px;}
.yd6{bottom:148.980000px;}
.y94{bottom:149.520000px;}
.yf6{bottom:150.240000px;}
.y130{bottom:153.840000px;}
.y114{bottom:158.250000px;}
.y93{bottom:167.070000px;}
.y4e{bottom:168.060000px;}
.yb8{bottom:171.120000px;}
.yd5{bottom:176.340000px;}
.y12f{bottom:180.750000px;}
.y4d{bottom:185.610000px;}
.yf5{bottom:185.790000px;}
.y20{bottom:193.170000px;}
.y113{bottom:193.800000px;}
.yb7{bottom:198.390000px;}
.y92{bottom:200.010000px;}
.yf4{bottom:203.430000px;}
.yd4{bottom:203.610000px;}
.y6c{bottom:203.700000px;}
.y1f{bottom:210.720000px;}
.y112{bottom:211.440000px;}
.y4c{bottom:221.250000px;}
.yb6{bottom:225.750000px;}
.y91{bottom:227.370000px;}
.y1e{bottom:228.270000px;}
.y111{bottom:228.990000px;}
.yd3{bottom:230.970000px;}
.y4b{bottom:238.800000px;}
.yf3{bottom:238.980000px;}
.y110{bottom:246.540000px;}
.yb5{bottom:253.110000px;}
.y90{bottom:254.730000px;}
.y4a{bottom:256.440000px;}
.yf2{bottom:256.620000px;}
.yd2{bottom:258.330000px;}
.y1d{bottom:263.910000px;}
.y12e{bottom:264.180000px;}
.y6b{bottom:265.440000px;}
.y49{bottom:273.990000px;}
.y1c{bottom:281.460000px;}
.y12d{bottom:281.730000px;}
.y8f{bottom:282.090000px;}
.y10f{bottom:282.180000px;}
.y152{bottom:283.980000px;}
.y48{bottom:291.540000px;}
.yf1{bottom:292.170000px;}
.y6a{bottom:301.350000px;}
.y151{bottom:301.530000px;}
.yb4{bottom:301.800000px;}
.yd1{bottom:307.020000px;}
.y10e{bottom:308.730000px;}
.y47{bottom:309.180000px;}
.y8e{bottom:309.360000px;}
.yf0{bottom:309.720000px;}
.y1b{bottom:317.100000px;}
.y12c{bottom:317.370000px;}
.y46{bottom:326.730000px;}
.y150{bottom:328.170000px;}
.yb3{bottom:328.350000px;}
.yd0{bottom:333.570000px;}
.y1a{bottom:334.650000px;}
.y12b{bottom:334.920000px;}
.yef{bottom:336.270000px;}
.y10d{bottom:344.370000px;}
.y14f{bottom:345.720000px;}
.y69{bottom:349.590000px;}
.y12a{bottom:352.470000px;}
.y8d{bottom:358.050000px;}
.y19{bottom:361.560000px;}
.y10c{bottom:361.920000px;}
.y45{bottom:362.370000px;}
.yb2{bottom:363.990000px;}
.y68{bottom:367.230000px;}
.yee{bottom:368.940000px;}
.ycf{bottom:369.210000px;}
.y14e{bottom:372.270000px;}
.y10b{bottom:379.470000px;}
.y44{bottom:379.920000px;}
.yb1{bottom:381.540000px;}
.y8c{bottom:384.690000px;}
.yce{bottom:386.760000px;}
.y129{bottom:388.110000px;}
.y14d{bottom:389.910000px;}
.y10a{bottom:397.110000px;}
.y43{bottom:397.470000px;}
.yb0{bottom:399.090000px;}
.y67{bottom:402.780000px;}
.yed{bottom:404.490000px;}
.y128{bottom:405.660000px;}
.y18{bottom:410.160000px;}
.ycd{bottom:413.310000px;}
.y109{bottom:414.660000px;}
.y14c{bottom:416.460000px;}
.y8b{bottom:420.240000px;}
.y66{bottom:420.330000px;}
.y127{bottom:423.300000px;}
.yaf{bottom:432.120000px;}
.y42{bottom:433.110000px;}
.y8a{bottom:437.880000px;}
.y65{bottom:437.970000px;}
.yec{bottom:440.130000px;}
.y14b{bottom:443.100000px;}
.y17{bottom:447.150000px;}
.ycc{bottom:448.950000px;}
.y126{bottom:449.850000px;}
.y108{bottom:450.300000px;}
.y41{bottom:450.660000px;}
.yeb{bottom:457.680000px;}
.yae{bottom:459.480000px;}
.y14a{bottom:460.650000px;}
.y16{bottom:464.790000px;}
.ycb{bottom:466.500000px;}
.y107{bottom:467.850000px;}
.y40{bottom:468.300000px;}
.y89{bottom:470.850000px;}
.y64{bottom:473.550000px;}
.y15{bottom:482.370000px;}
.yea{bottom:484.260000px;}
.y106{bottom:485.430000px;}
.y3f{bottom:485.880000px;}
.yad{bottom:486.780000px;}
.y149{bottom:487.230000px;}
.y63{bottom:491.190000px;}
.yca{bottom:493.170000px;}
.y88{bottom:498.210000px;}
.y105{bottom:503.070000px;}
.y148{bottom:513.870000px;}
.yac{bottom:514.140000px;}
.y14{bottom:517.920000px;}
.ye9{bottom:519.900000px;}
.y104{bottom:520.620000px;}
.y3e{bottom:521.430000px;}
.y87{bottom:525.480000px;}
.y62{bottom:526.740000px;}
.yc9{bottom:528.720000px;}
.ye8{bottom:537.450000px;}
.y125{bottom:538.260000px;}
.y3d{bottom:539.070000px;}
.y147{bottom:540.420000px;}
.y86{bottom:552.840000px;}
.y13{bottom:553.560000px;}
.ye7{bottom:555.090000px;}
.y124{bottom:555.810000px;}
.y103{bottom:556.260000px;}
.y3c{bottom:556.620000px;}
.y146{bottom:558.060000px;}
.yc8{bottom:561.660000px;}
.y61{bottom:562.290000px;}
.yab{bottom:562.830000px;}
.y102{bottom:573.810000px;}
.y3b{bottom:574.260000px;}
.y60{bottom:579.930000px;}
.y85{bottom:580.200000px;}
.y145{bottom:584.610000px;}
.yc7{bottom:589.020000px;}
.y12{bottom:589.110000px;}
.yaa{bottom:589.380000px;}
.ye6{bottom:590.640000px;}
.y123{bottom:591.360000px;}
.y5f{bottom:597.480000px;}
.y101{bottom:600.360000px;}
.y144{bottom:602.160000px;}
.y11{bottom:606.750000px;}
.y7d{bottom:607.560000px;}
.ye5{bottom:608.190000px;}
.y122{bottom:609.000000px;}
.y3a{bottom:609.810000px;}
.yc6{bottom:616.380000px;}
.y143{bottom:619.800000px;}
.y5e{bottom:624.120000px;}
.ya9{bottom:625.020000px;}
.y121{bottom:626.550000px;}
.y39{bottom:627.360000px;}
.y82{bottom:634.830000px;}
.y100{bottom:636.000000px;}
.y10{bottom:642.300000px;}
.ya8{bottom:642.570000px;}
.yc5{bottom:643.740000px;}
.y120{bottom:644.190000px;}
.y38{bottom:645.000000px;}
.y142{bottom:646.350000px;}
.yff{bottom:653.550000px;}
.y5d{bottom:659.670000px;}
.yf{bottom:659.850000px;}
.y80{bottom:662.190000px;}
.y37{bottom:662.550000px;}
.ye4{bottom:670.380000px;}
.yc4{bottom:671.010000px;}
.y141{bottom:673.260000px;}
.ya7{bottom:675.600000px;}
.y5c{bottom:677.220000px;}
.ye{bottom:677.490000px;}
.y11f{bottom:679.740000px;}
.y36{bottom:680.190000px;}
.yfe{bottom:689.190000px;}
.y5b{bottom:694.770000px;}
.yd{bottom:695.040000px;}
.y11e{bottom:697.290000px;}
.ya6{bottom:702.870000px;}
.ye3{bottom:706.020000px;}
.yfd{bottom:706.740000px;}
.y7c{bottom:710.880000px;}
.yc{bottom:712.680000px;}
.y35{bottom:715.740000px;}
.yc3{bottom:719.700000px;}
.y140{bottom:721.590000px;}
.y5a{bottom:722.220000px;}
.ye2{bottom:723.570000px;}
.yfc{bottom:724.290000px;}
.ya5{bottom:730.230000px;}
.y11d{bottom:732.930000px;}
.y34{bottom:733.290000px;}
.y7b{bottom:737.520000px;}
.yb{bottom:739.590000px;}
.yc2{bottom:746.340000px;}
.y13f{bottom:748.410000px;}
.ye1{bottom:750.120000px;}
.y11c{bottom:750.480000px;}
.yfb{bottom:750.930000px;}
.ya4{bottom:757.590000px;}
.y59{bottom:757.860000px;}
.y33{bottom:768.930000px;}
.y7a{bottom:773.340000px;}
.y58{bottom:775.410000px;}
.y11b{bottom:777.030000px;}
.yc1{bottom:781.890000px;}
.ya3{bottom:784.950000px;}
.y13e{bottom:785.490000px;}
.ye0{bottom:786.030000px;}
.y32{bottom:786.480000px;}
.ya{bottom:787.830000px;}
.yc0{bottom:799.530000px;}
.y57{bottom:802.860000px;}
.y31{bottom:804.030000px;}
.y13d{bottom:812.400000px;}
.y11a{bottom:812.670000px;}
.y79{bottom:821.670000px;}
.y9{bottom:823.380000px;}
.y119{bottom:830.220000px;}
.ybf{bottom:832.470000px;}
.ya2{bottom:833.640000px;}
.ydf{bottom:834.360000px;}
.y56{bottom:838.410000px;}
.y78{bottom:839.220000px;}
.y30{bottom:839.670000px;}
.y13c{bottom:849.390000px;}
.yde{bottom:851.910000px;}
.y55{bottom:855.960000px;}
.y2f{bottom:857.220000px;}
.y8{bottom:859.200000px;}
.ybe{bottom:859.830000px;}
.ya1{bottom:860.190000px;}
.y77{bottom:865.860000px;}
.ydd{bottom:869.460000px;}
.y2e{bottom:874.860000px;}
.y13b{bottom:876.300000px;}
.y118{bottom:883.410000px;}
.ybd{bottom:887.100000px;}
.y2d{bottom:892.410000px;}
.ya0{bottom:892.770000px;}
.y7{bottom:898.980000px;}
.y76{bottom:901.410000px;}
.ydc{bottom:902.490000px;}
.y13a{bottom:913.650000px;}
.ybc{bottom:914.460000px;}
.y6{bottom:916.980000px;}
.yfa{bottom:918.960000px;}
.y2c{bottom:927.960000px;}
.y9f{bottom:928.320000px;}
.ydb{bottom:929.850000px;}
.y117{bottom:936.600000px;}
.y75{bottom:936.960000px;}
.y2b{bottom:945.600000px;}
.y9e{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y74{bottom:954.600000px;}
.yda{bottom:957.120000px;}
.y139{bottom:961.890000px;}
.y2a{bottom:963.150000px;}
.y54{bottom:963.600000px;}
.y73{bottom:972.150000px;}
.y9c{bottom:978.900000px;}
.y138{bottom:979.530000px;}
.y53{bottom:981.150000px;}
.yd9{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.ybb{bottom:989.790000px;}
.y137{bottom:997.080000px;}
.y29{bottom:998.790000px;}
.y9a{bottom:1007.340000px;}
.y72{bottom:1007.790000px;}
.yd8{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y28{bottom:1016.370000px;}
.y71{bottom:1025.370000px;}
.y136{bottom:1032.750000px;}
.y52{bottom:1034.370000px;}
.y99{bottom:1034.730000px;}
.y70{bottom:1042.920000px;}
.y135{bottom:1050.300000px;}
.y27{bottom:1051.920000px;}
.y6f{bottom:1060.560000px;}
.y97{bottom:1062.090000px;}
.y134{bottom:1068.750000px;}
.y26{bottom:1069.560000px;}
.yf9{bottom:1078.560000px;}
.y133{bottom:1086.300000px;}
.y51{bottom:1087.110000px;}
.yf8{bottom:1096.110000px;}
.y132{bottom:1103.850000px;}
.y25{bottom:1105.110000px;}
.y96{bottom:1113.750000px;}
.y24{bottom:1122.750000px;}
.y23{bottom:1140.300000px;}
.y21{bottom:1194.300000px;}
.he{height:26.550000px;}
.h15{height:26.580000px;}
.hf{height:26.640000px;}
.h12{height:26.670000px;}
.h13{height:27.720000px;}
.h11{height:29.520000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h10{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:59.973223px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:81.180000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:31.320000px;}
.w19{width:32.040000px;}
.w21{width:32.130000px;}
.w13{width:32.160000px;}
.w1c{width:35.370000px;}
.wd{width:35.400000px;}
.w10{width:35.460000px;}
.w8{width:40.050000px;}
.w1a{width:43.470000px;}
.w11{width:43.500000px;}
.w1d{width:43.590000px;}
.w17{width:45.540000px;}
.w22{width:46.800000px;}
.w9{width:49.050000px;}
.w14{width:50.400000px;}
.we{width:53.370000px;}
.wb{width:60.660000px;}
.wa{width:60.690000px;}
.w6{width:89.820000px;}
.w3{width:98.640000px;}
.w5{width:101.430000px;}
.w7{width:101.550000px;}
.w1b{width:103.950000px;}
.w1f{width:109.710000px;}
.wf{width:110.970000px;}
.wc{width:141.030000px;}
.w12{width:145.620000px;}
.w1e{width:187.740000px;}
.w4{width:192.090000px;}
.w15{width:269.760000px;}
.w18{width:418.440000px;}
.w20{width:486.660000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x24{left:111.239987px;}
.x5{left:122.039987px;}
.x22{left:163.110000px;}
.x19{left:198.840000px;}
.x2{left:202.799987px;}
.x6{left:249.780000px;}
.x16{left:272.550000px;}
.x1f{left:314.220000px;}
.xe{left:330.960000px;}
.x8{left:349.230000px;}
.x11{left:350.940000px;}
.x1c{left:354.450000px;}
.xb{left:390.000000px;}
.xa{left:439.770000px;}
.x1d{left:459.210000px;}
.x12{left:462.630000px;}
.xf{left:472.710000px;}
.x14{left:478.200000px;}
.xc{left:480.630000px;}
.x1e{left:495.300000px;}
.x13{left:498.810000px;}
.x20{left:502.680000px;}
.x10{left:508.920000px;}
.x15{left:511.080000px;}
.x21{left:535.560000px;}
.x9{left:542.040000px;}
.x17{left:543.120000px;}
.x18{left:575.160000px;}
.xd{left:582.810000px;}
.x1a{left:618.090000px;}
.x1b{left:650.940000px;}
.x23{left:683.340000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls19{letter-spacing:-0.111467pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.037760pt;}
.ls11{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.065920pt;}
.ls13{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.177067pt;}
.ls1a{letter-spacing:0.179200pt;}
.ls12{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.936000pt;}
.ws3{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.794560pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.645333pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._c{margin-left:-3.719893pt;}
._b{margin-left:-2.725440pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894869pt;}
._2{width:1.844395pt;}
._a{width:2.789130pt;}
._6{width:3.766402pt;}
._5{width:4.916266pt;}
._9{width:5.933227pt;}
._4{width:7.534933pt;}
._3{width:8.497067pt;}
._7{width:9.759787pt;}
._8{width:10.834560pt;}
._d{width:13.239146pt;}
._e{width:15.390720pt;}
._f{width:150.112960pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:6.960000pt;}
.y83{bottom:7.040000pt;}
.y9b{bottom:7.066667pt;}
.y9d{bottom:8.000000pt;}
.y98{bottom:9.600000pt;}
.y84{bottom:31.280000pt;}
.y7f{bottom:35.920000pt;}
.y7e{bottom:55.520000pt;}
.y2{bottom:65.226667pt;}
.y22{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y95{bottom:101.226667pt;}
.y116{bottom:101.386667pt;}
.y50{bottom:102.106667pt;}
.yba{bottom:103.466667pt;}
.y6e{bottom:110.186667pt;}
.y115{bottom:116.986667pt;}
.y4f{bottom:117.786667pt;}
.yf7{bottom:117.946667pt;}
.yd7{bottom:119.146667pt;}
.y131{bottom:121.066667pt;}
.y6d{bottom:125.786667pt;}
.yb9{bottom:127.786667pt;}
.yd6{bottom:132.426667pt;}
.y94{bottom:132.906667pt;}
.yf6{bottom:133.546667pt;}
.y130{bottom:136.746667pt;}
.y114{bottom:140.666667pt;}
.y93{bottom:148.506667pt;}
.y4e{bottom:149.386667pt;}
.yb8{bottom:152.106667pt;}
.yd5{bottom:156.746667pt;}
.y12f{bottom:160.666667pt;}
.y4d{bottom:164.986667pt;}
.yf5{bottom:165.146667pt;}
.y20{bottom:171.706667pt;}
.y113{bottom:172.266667pt;}
.yb7{bottom:176.346667pt;}
.y92{bottom:177.786667pt;}
.yf4{bottom:180.826667pt;}
.yd4{bottom:180.986667pt;}
.y6c{bottom:181.066667pt;}
.y1f{bottom:187.306667pt;}
.y112{bottom:187.946667pt;}
.y4c{bottom:196.666667pt;}
.yb6{bottom:200.666667pt;}
.y91{bottom:202.106667pt;}
.y1e{bottom:202.906667pt;}
.y111{bottom:203.546667pt;}
.yd3{bottom:205.306667pt;}
.y4b{bottom:212.266667pt;}
.yf3{bottom:212.426667pt;}
.y110{bottom:219.146667pt;}
.yb5{bottom:224.986667pt;}
.y90{bottom:226.426667pt;}
.y4a{bottom:227.946667pt;}
.yf2{bottom:228.106667pt;}
.yd2{bottom:229.626667pt;}
.y1d{bottom:234.586667pt;}
.y12e{bottom:234.826667pt;}
.y6b{bottom:235.946667pt;}
.y49{bottom:243.546667pt;}
.y1c{bottom:250.186667pt;}
.y12d{bottom:250.426667pt;}
.y8f{bottom:250.746667pt;}
.y10f{bottom:250.826667pt;}
.y152{bottom:252.426667pt;}
.y48{bottom:259.146667pt;}
.yf1{bottom:259.706667pt;}
.y6a{bottom:267.866667pt;}
.y151{bottom:268.026667pt;}
.yb4{bottom:268.266667pt;}
.yd1{bottom:272.906667pt;}
.y10e{bottom:274.426667pt;}
.y47{bottom:274.826667pt;}
.y8e{bottom:274.986667pt;}
.yf0{bottom:275.306667pt;}
.y1b{bottom:281.866667pt;}
.y12c{bottom:282.106667pt;}
.y46{bottom:290.426667pt;}
.y150{bottom:291.706667pt;}
.yb3{bottom:291.866667pt;}
.yd0{bottom:296.506667pt;}
.y1a{bottom:297.466667pt;}
.y12b{bottom:297.706667pt;}
.yef{bottom:298.906667pt;}
.y10d{bottom:306.106667pt;}
.y14f{bottom:307.306667pt;}
.y69{bottom:310.746667pt;}
.y12a{bottom:313.306667pt;}
.y8d{bottom:318.266667pt;}
.y19{bottom:321.386667pt;}
.y10c{bottom:321.706667pt;}
.y45{bottom:322.106667pt;}
.yb2{bottom:323.546667pt;}
.y68{bottom:326.426667pt;}
.yee{bottom:327.946667pt;}
.ycf{bottom:328.186667pt;}
.y14e{bottom:330.906667pt;}
.y10b{bottom:337.306667pt;}
.y44{bottom:337.706667pt;}
.yb1{bottom:339.146667pt;}
.y8c{bottom:341.946667pt;}
.yce{bottom:343.786667pt;}
.y129{bottom:344.986667pt;}
.y14d{bottom:346.586667pt;}
.y10a{bottom:352.986667pt;}
.y43{bottom:353.306667pt;}
.yb0{bottom:354.746667pt;}
.y67{bottom:358.026667pt;}
.yed{bottom:359.546667pt;}
.y128{bottom:360.586667pt;}
.y18{bottom:364.586667pt;}
.ycd{bottom:367.386667pt;}
.y109{bottom:368.586667pt;}
.y14c{bottom:370.186667pt;}
.y8b{bottom:373.546667pt;}
.y66{bottom:373.626667pt;}
.y127{bottom:376.266667pt;}
.yaf{bottom:384.106667pt;}
.y42{bottom:384.986667pt;}
.y8a{bottom:389.226667pt;}
.y65{bottom:389.306667pt;}
.yec{bottom:391.226667pt;}
.y14b{bottom:393.866667pt;}
.y17{bottom:397.466667pt;}
.ycc{bottom:399.066667pt;}
.y126{bottom:399.866667pt;}
.y108{bottom:400.266667pt;}
.y41{bottom:400.586667pt;}
.yeb{bottom:406.826667pt;}
.yae{bottom:408.426667pt;}
.y14a{bottom:409.466667pt;}
.y16{bottom:413.146667pt;}
.ycb{bottom:414.666667pt;}
.y107{bottom:415.866667pt;}
.y40{bottom:416.266667pt;}
.y89{bottom:418.533333pt;}
.y64{bottom:420.933333pt;}
.y15{bottom:428.773333pt;}
.yea{bottom:430.453333pt;}
.y106{bottom:431.493333pt;}
.y3f{bottom:431.893333pt;}
.yad{bottom:432.693333pt;}
.y149{bottom:433.093333pt;}
.y63{bottom:436.613333pt;}
.yca{bottom:438.373333pt;}
.y88{bottom:442.853333pt;}
.y105{bottom:447.173333pt;}
.y148{bottom:456.773333pt;}
.yac{bottom:457.013333pt;}
.y14{bottom:460.373333pt;}
.ye9{bottom:462.133333pt;}
.y104{bottom:462.773333pt;}
.y3e{bottom:463.493333pt;}
.y87{bottom:467.093333pt;}
.y62{bottom:468.213333pt;}
.yc9{bottom:469.973333pt;}
.ye8{bottom:477.733333pt;}
.y125{bottom:478.453333pt;}
.y3d{bottom:479.173333pt;}
.y147{bottom:480.373333pt;}
.y86{bottom:491.413333pt;}
.y13{bottom:492.053333pt;}
.ye7{bottom:493.413333pt;}
.y124{bottom:494.053333pt;}
.y103{bottom:494.453333pt;}
.y3c{bottom:494.773333pt;}
.y146{bottom:496.053333pt;}
.yc8{bottom:499.253333pt;}
.y61{bottom:499.813333pt;}
.yab{bottom:500.293333pt;}
.y102{bottom:510.053333pt;}
.y3b{bottom:510.453333pt;}
.y60{bottom:515.493333pt;}
.y85{bottom:515.733333pt;}
.y145{bottom:519.653333pt;}
.yc7{bottom:523.573333pt;}
.y12{bottom:523.653333pt;}
.yaa{bottom:523.893333pt;}
.ye6{bottom:525.013333pt;}
.y123{bottom:525.653333pt;}
.y5f{bottom:531.093333pt;}
.y101{bottom:533.653333pt;}
.y144{bottom:535.253333pt;}
.y11{bottom:539.333333pt;}
.y7d{bottom:540.053333pt;}
.ye5{bottom:540.613333pt;}
.y122{bottom:541.333333pt;}
.y3a{bottom:542.053333pt;}
.yc6{bottom:547.893333pt;}
.y143{bottom:550.933333pt;}
.y5e{bottom:554.773333pt;}
.ya9{bottom:555.573333pt;}
.y121{bottom:556.933333pt;}
.y39{bottom:557.653333pt;}
.y82{bottom:564.293333pt;}
.y100{bottom:565.333333pt;}
.y10{bottom:570.933333pt;}
.ya8{bottom:571.173333pt;}
.yc5{bottom:572.213333pt;}
.y120{bottom:572.613333pt;}
.y38{bottom:573.333333pt;}
.y142{bottom:574.533333pt;}
.yff{bottom:580.933333pt;}
.y5d{bottom:586.373333pt;}
.yf{bottom:586.533333pt;}
.y80{bottom:588.613333pt;}
.y37{bottom:588.933333pt;}
.ye4{bottom:595.893333pt;}
.yc4{bottom:596.453333pt;}
.y141{bottom:598.453333pt;}
.ya7{bottom:600.533333pt;}
.y5c{bottom:601.973333pt;}
.ye{bottom:602.213333pt;}
.y11f{bottom:604.213333pt;}
.y36{bottom:604.613333pt;}
.yfe{bottom:612.613333pt;}
.y5b{bottom:617.573333pt;}
.yd{bottom:617.813333pt;}
.y11e{bottom:619.813333pt;}
.ya6{bottom:624.773333pt;}
.ye3{bottom:627.573333pt;}
.yfd{bottom:628.213333pt;}
.y7c{bottom:631.893333pt;}
.yc{bottom:633.493333pt;}
.y35{bottom:636.213333pt;}
.yc3{bottom:639.733333pt;}
.y140{bottom:641.413333pt;}
.y5a{bottom:641.973333pt;}
.ye2{bottom:643.173333pt;}
.yfc{bottom:643.813333pt;}
.ya5{bottom:649.093333pt;}
.y11d{bottom:651.493333pt;}
.y34{bottom:651.813333pt;}
.y7b{bottom:655.573333pt;}
.yb{bottom:657.413333pt;}
.yc2{bottom:663.413333pt;}
.y13f{bottom:665.253333pt;}
.ye1{bottom:666.773333pt;}
.y11c{bottom:667.093333pt;}
.yfb{bottom:667.493333pt;}
.ya4{bottom:673.413333pt;}
.y59{bottom:673.653333pt;}
.y33{bottom:683.493333pt;}
.y7a{bottom:687.413333pt;}
.y58{bottom:689.253333pt;}
.y11b{bottom:690.693333pt;}
.yc1{bottom:695.013333pt;}
.ya3{bottom:697.733333pt;}
.y13e{bottom:698.213333pt;}
.ye0{bottom:698.693333pt;}
.y32{bottom:699.093333pt;}
.ya{bottom:700.293333pt;}
.yc0{bottom:710.693333pt;}
.y57{bottom:713.653333pt;}
.y31{bottom:714.693333pt;}
.y13d{bottom:722.133333pt;}
.y11a{bottom:722.373333pt;}
.y79{bottom:730.373333pt;}
.y9{bottom:731.893333pt;}
.y119{bottom:737.973333pt;}
.ybf{bottom:739.973333pt;}
.ya2{bottom:741.013333pt;}
.ydf{bottom:741.653333pt;}
.y56{bottom:745.253333pt;}
.y78{bottom:745.973333pt;}
.y30{bottom:746.373333pt;}
.y13c{bottom:755.013333pt;}
.yde{bottom:757.253333pt;}
.y55{bottom:760.853333pt;}
.y2f{bottom:761.973333pt;}
.y8{bottom:763.733333pt;}
.ybe{bottom:764.293333pt;}
.ya1{bottom:764.613333pt;}
.y77{bottom:769.653333pt;}
.ydd{bottom:772.853333pt;}
.y2e{bottom:777.653333pt;}
.y13b{bottom:778.933333pt;}
.y118{bottom:785.253333pt;}
.ybd{bottom:788.533333pt;}
.y2d{bottom:793.253333pt;}
.ya0{bottom:793.573333pt;}
.y7{bottom:799.093333pt;}
.y76{bottom:801.253333pt;}
.ydc{bottom:802.213333pt;}
.y13a{bottom:812.133333pt;}
.ybc{bottom:812.853333pt;}
.y6{bottom:815.093333pt;}
.yfa{bottom:816.853333pt;}
.y2c{bottom:824.853333pt;}
.y9f{bottom:825.173333pt;}
.ydb{bottom:826.533333pt;}
.y117{bottom:832.533333pt;}
.y75{bottom:832.853333pt;}
.y2b{bottom:840.533333pt;}
.y9e{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y74{bottom:848.533333pt;}
.yda{bottom:850.773333pt;}
.y139{bottom:855.013333pt;}
.y2a{bottom:856.133333pt;}
.y54{bottom:856.533333pt;}
.y73{bottom:864.133333pt;}
.y9c{bottom:870.133333pt;}
.y138{bottom:870.693333pt;}
.y53{bottom:872.133333pt;}
.yd9{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.ybb{bottom:879.813333pt;}
.y137{bottom:886.293333pt;}
.y29{bottom:887.813333pt;}
.y9a{bottom:895.413333pt;}
.y72{bottom:895.813333pt;}
.yd8{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y28{bottom:903.440000pt;}
.y71{bottom:911.440000pt;}
.y136{bottom:918.000000pt;}
.y52{bottom:919.440000pt;}
.y99{bottom:919.760000pt;}
.y70{bottom:927.040000pt;}
.y135{bottom:933.600000pt;}
.y27{bottom:935.040000pt;}
.y6f{bottom:942.720000pt;}
.y97{bottom:944.080000pt;}
.y134{bottom:950.000000pt;}
.y26{bottom:950.720000pt;}
.yf9{bottom:958.720000pt;}
.y133{bottom:965.600000pt;}
.y51{bottom:966.320000pt;}
.yf8{bottom:974.320000pt;}
.y132{bottom:981.200000pt;}
.y25{bottom:982.320000pt;}
.y96{bottom:990.000000pt;}
.y24{bottom:998.000000pt;}
.y23{bottom:1013.600000pt;}
.y21{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h15{height:23.626667pt;}
.hf{height:23.680000pt;}
.h12{height:23.706667pt;}
.h13{height:24.640000pt;}
.h11{height:26.240000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h10{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:53.309531pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:72.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:27.840000pt;}
.w19{width:28.480000pt;}
.w21{width:28.560000pt;}
.w13{width:28.586667pt;}
.w1c{width:31.440000pt;}
.wd{width:31.466667pt;}
.w10{width:31.520000pt;}
.w8{width:35.600000pt;}
.w1a{width:38.640000pt;}
.w11{width:38.666667pt;}
.w1d{width:38.746667pt;}
.w17{width:40.480000pt;}
.w22{width:41.600000pt;}
.w9{width:43.600000pt;}
.w14{width:44.800000pt;}
.we{width:47.440000pt;}
.wb{width:53.920000pt;}
.wa{width:53.946667pt;}
.w6{width:79.840000pt;}
.w3{width:87.680000pt;}
.w5{width:90.160000pt;}
.w7{width:90.266667pt;}
.w1b{width:92.400000pt;}
.w1f{width:97.520000pt;}
.wf{width:98.640000pt;}
.wc{width:125.360000pt;}
.w12{width:129.440000pt;}
.w1e{width:166.880000pt;}
.w4{width:170.746667pt;}
.w15{width:239.786667pt;}
.w18{width:371.946667pt;}
.w20{width:432.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x24{left:98.879988pt;}
.x5{left:108.479988pt;}
.x22{left:144.986667pt;}
.x19{left:176.746667pt;}
.x2{left:180.266655pt;}
.x6{left:222.026667pt;}
.x16{left:242.266667pt;}
.x1f{left:279.306667pt;}
.xe{left:294.186667pt;}
.x8{left:310.426667pt;}
.x11{left:311.946667pt;}
.x1c{left:315.066667pt;}
.xb{left:346.666667pt;}
.xa{left:390.906667pt;}
.x1d{left:408.186667pt;}
.x12{left:411.226667pt;}
.xf{left:420.186667pt;}
.x14{left:425.066667pt;}
.xc{left:427.226667pt;}
.x1e{left:440.266667pt;}
.x13{left:443.386667pt;}
.x20{left:446.826667pt;}
.x10{left:452.373333pt;}
.x15{left:454.293333pt;}
.x21{left:476.053333pt;}
.x9{left:481.813333pt;}
.x17{left:482.773333pt;}
.x18{left:511.253333pt;}
.xd{left:518.053333pt;}
.x1a{left:549.413333pt;}
.x1b{left:578.613333pt;}
.x23{left:607.413333pt;}
.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; }
  