
    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_5b223faf76fd88003813c667.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_8f2d522613cdf25efb29f62e.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_be288ec1579591f6596abdff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_fb3a1aca556ea69a39c5a3bc.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_ec3dbb183cf2e49c4a82648d.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_5b2a736512e562f6420975fb.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls1b{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.178800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.037800px;}
.lsf{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls14{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls10{letter-spacing:0.428400px;}
.ls4{letter-spacing:12.000000px;}
.ls18{letter-spacing:47.726640px;}
.ls16{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;}
}
.wsa{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws13{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.188600px;}
.wsf{word-spacing:-13.072800px;}
.ws11{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.222000px;}
.ws3{word-spacing:4.304880px;}
._1{margin-left:-3.659400px;}
._12{margin-left:-2.464920px;}
._0{margin-left:-1.110000px;}
._2{width:1.404120px;}
._7{width:3.306600px;}
._8{width:4.624200px;}
._e{width:5.831400px;}
._5{width:7.274400px;}
._6{width:8.324400px;}
._a{width:9.337800px;}
._9{width:10.521000px;}
._d{width:11.824199px;}
._10{width:14.242920px;}
._b{width:15.871800px;}
._c{width:17.224080px;}
._f{width:18.368162px;}
._1e{width:19.370865px;}
._3{width:20.380800px;}
._4{width:22.089959px;}
._14{width:23.732880px;}
._11{width:24.889680px;}
._26{width:26.452800px;}
._29{width:29.037960px;}
._25{width:30.060000px;}
._13{width:31.382640px;}
._1f{width:32.705280px;}
._28{width:38.597040px;}
._2f{width:39.979800px;}
._1d{width:43.045920px;}
._19{width:46.893600px;}
._3a{width:48.284880px;}
._38{width:49.328280px;}
._39{width:50.381280px;}
._23{width:56.392560px;}
._37{width:57.534840px;}
._21{width:63.727200px;}
._15{width:65.470680px;}
._2b{width:67.454640px;}
._32{width:73.226160px;}
._2e{width:78.510240px;}
._22{width:80.139960px;}
._18{width:83.085840px;}
._1a{width:104.849280px;}
._33{width:105.871320px;}
._2a{width:114.949440px;}
._1b{width:124.268040px;}
._20{width:133.767000px;}
._27{width:136.592640px;}
._30{width:137.674800px;}
._2c{width:145.791000px;}
._35{width:152.071320px;}
._2d{width:164.849040px;}
._17{width:184.508280px;}
._1c{width:195.747120px;}
._34{width:214.147440px;}
._16{width:215.289720px;}
._31{width:235.670400px;}
._24{width:296.752320px;}
._36{width:387.681600px;}
.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;}
.y68{bottom:7.830000px;}
.y6b{bottom:7.920000px;}
.yee{bottom:25.380000px;}
.y6a{bottom:25.470000px;}
.y70{bottom:25.500000px;}
.yd2{bottom:43.020000px;}
.yf1{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y112{bottom:113.790000px;}
.ycc{bottom:117.030000px;}
.ya0{bottom:118.650000px;}
.y80{bottom:124.860000px;}
.yde{bottom:126.750000px;}
.y111{bottom:131.340000px;}
.y5f{bottom:131.790000px;}
.ycb{bottom:134.670000px;}
.y9f{bottom:136.200000px;}
.y28{bottom:140.610000px;}
.y7f{bottom:142.500000px;}
.ydd{bottom:144.390000px;}
.y110{bottom:148.980000px;}
.y5e{bottom:149.340000px;}
.yca{bottom:152.220000px;}
.y9e{bottom:153.840000px;}
.y27{bottom:158.250000px;}
.y7e{bottom:160.050000px;}
.ydc{bottom:161.940000px;}
.y10f{bottom:166.530000px;}
.y5d{bottom:166.980000px;}
.y104{bottom:169.770000px;}
.y9d{bottom:171.390000px;}
.y26{bottom:175.800000px;}
.y7d{bottom:177.600000px;}
.ydb{bottom:179.580000px;}
.y10e{bottom:184.170000px;}
.y5c{bottom:184.530000px;}
.y103{bottom:187.410000px;}
.yc9{bottom:187.770000px;}
.y9c{bottom:188.940000px;}
.y7c{bottom:195.240000px;}
.yda{bottom:197.130000px;}
.y10d{bottom:201.720000px;}
.y5b{bottom:202.170000px;}
.y102{bottom:204.960000px;}
.yc8{bottom:205.410000px;}
.y9b{bottom:206.580000px;}
.y25{bottom:211.350000px;}
.y7b{bottom:212.790000px;}
.yd9{bottom:214.680000px;}
.y5a{bottom:219.720000px;}
.y101{bottom:222.600000px;}
.yc7{bottom:222.960000px;}
.y9a{bottom:224.130000px;}
.y10c{bottom:228.630000px;}
.y24{bottom:228.990000px;}
.y7a{bottom:230.430000px;}
.yd8{bottom:232.320000px;}
.y59{bottom:237.270000px;}
.y100{bottom:240.150000px;}
.yc6{bottom:240.600000px;}
.y99{bottom:241.680000px;}
.y23{bottom:246.540000px;}
.y79{bottom:247.980000px;}
.yd7{bottom:249.870000px;}
.y58{bottom:254.910000px;}
.yff{bottom:257.700000px;}
.yc5{bottom:258.150000px;}
.y98{bottom:259.320000px;}
.y22{bottom:264.090000px;}
.yd6{bottom:267.510000px;}
.y57{bottom:272.460000px;}
.yfe{bottom:275.340000px;}
.yc4{bottom:275.700000px;}
.y97{bottom:276.870000px;}
.y21{bottom:281.730000px;}
.y78{bottom:283.530000px;}
.yd5{bottom:285.060000px;}
.y56{bottom:290.100000px;}
.yfd{bottom:292.890000px;}
.yc3{bottom:293.340000px;}
.y96{bottom:294.510000px;}
.y20{bottom:299.280000px;}
.y77{bottom:301.170000px;}
.y55{bottom:307.650000px;}
.yfc{bottom:310.440000px;}
.yc2{bottom:310.890000px;}
.yd4{bottom:311.970000px;}
.y95{bottom:312.060000px;}
.y1f{bottom:316.920000px;}
.y76{bottom:318.720000px;}
.y54{bottom:325.200000px;}
.yfb{bottom:328.080000px;}
.yc1{bottom:328.440000px;}
.y94{bottom:329.610000px;}
.ye7{bottom:330.060000px;}
.y1e{bottom:334.470000px;}
.y75{bottom:336.360000px;}
.y53{bottom:342.840000px;}
.yc0{bottom:346.080000px;}
.y93{bottom:347.250000px;}
.ye6{bottom:347.610000px;}
.y1d{bottom:352.020000px;}
.y74{bottom:353.910000px;}
.yd3{bottom:357.600000px;}
.y52{bottom:360.390000px;}
.ybf{bottom:363.630000px;}
.y10b{bottom:364.800000px;}
.ye5{bottom:365.250000px;}
.y133{bottom:368.130000px;}
.y1c{bottom:369.660000px;}
.y73{bottom:371.460000px;}
.y51{bottom:377.940000px;}
.ybe{bottom:381.270000px;}
.y10a{bottom:382.440000px;}
.y92{bottom:382.800000px;}
.y132{bottom:385.770000px;}
.y1b{bottom:387.210000px;}
.y72{bottom:389.100000px;}
.ybd{bottom:398.820000px;}
.y109{bottom:399.990000px;}
.y91{bottom:400.440000px;}
.y131{bottom:412.320000px;}
.y50{bottom:413.580000px;}
.y1a{bottom:414.120000px;}
.y71{bottom:416.010000px;}
.yfa{bottom:416.370000px;}
.y108{bottom:417.540000px;}
.y90{bottom:417.990000px;}
.yd1{bottom:420.150000px;}
.y130{bottom:429.870000px;}
.y4f{bottom:431.130000px;}
.yf9{bottom:434.010000px;}
.ybc{bottom:434.370000px;}
.y8f{bottom:435.540000px;}
.y12f{bottom:447.510000px;}
.y4e{bottom:448.770000px;}
.yf8{bottom:451.560000px;}
.ybb{bottom:452.010000px;}
.y8e{bottom:453.180000px;}
.y6f{bottom:461.640000px;}
.y19{bottom:462.450000px;}
.y12e{bottom:465.060000px;}
.y4d{bottom:466.320000px;}
.yf7{bottom:469.200000px;}
.yba{bottom:469.560000px;}
.y8d{bottom:470.760000px;}
.y18{bottom:480.390000px;}
.yd0{bottom:482.640000px;}
.y4c{bottom:483.900000px;}
.yf6{bottom:486.780000px;}
.yb9{bottom:487.230000px;}
.y8c{bottom:488.400000px;}
.y12d{bottom:491.730000px;}
.y4b{bottom:501.540000px;}
.yf5{bottom:504.330000px;}
.yb8{bottom:504.780000px;}
.y8b{bottom:505.950000px;}
.y6e{bottom:506.580000px;}
.y12c{bottom:509.280000px;}
.y17{bottom:517.380000px;}
.y4a{bottom:519.090000px;}
.yf4{bottom:521.970000px;}
.yb7{bottom:522.330000px;}
.y8a{bottom:523.500000px;}
.ye4{bottom:523.950000px;}
.ycf{bottom:527.550000px;}
.y16{bottom:534.930000px;}
.y12b{bottom:535.830000px;}
.y49{bottom:536.730000px;}
.yf3{bottom:539.520000px;}
.yb6{bottom:539.970000px;}
.y89{bottom:541.140000px;}
.ye3{bottom:541.500000px;}
.y6d{bottom:551.490000px;}
.y15{bottom:552.570000px;}
.y12a{bottom:553.470000px;}
.y48{bottom:554.280000px;}
.yb5{bottom:557.520000px;}
.y88{bottom:558.690000px;}
.ye2{bottom:559.140000px;}
.yf2{bottom:566.430000px;}
.y14{bottom:570.120000px;}
.y47{bottom:571.830000px;}
.yb4{bottom:575.160000px;}
.y87{bottom:576.330000px;}
.ye1{bottom:576.690000px;}
.y129{bottom:580.020000px;}
.y13{bottom:587.670000px;}
.y46{bottom:589.470000px;}
.yb3{bottom:592.710000px;}
.y86{bottom:593.880000px;}
.ye0{bottom:594.330000px;}
.y6c{bottom:596.400000px;}
.y128{bottom:597.660000px;}
.y12{bottom:605.310000px;}
.yb2{bottom:610.260000px;}
.y85{bottom:611.430000px;}
.ydf{bottom:611.880000px;}
.yf0{bottom:612.060000px;}
.y127{bottom:615.210000px;}
.y45{bottom:616.380000px;}
.y11{bottom:622.860000px;}
.yb1{bottom:627.900000px;}
.y84{bottom:629.070000px;}
.yce{bottom:629.430000px;}
.y10{bottom:640.500000px;}
.y69{bottom:641.310000px;}
.y126{bottom:641.760000px;}
.yb0{bottom:645.450000px;}
.ycd{bottom:647.070000px;}
.yf{bottom:658.050000px;}
.y125{bottom:659.400000px;}
.y44{bottom:664.620000px;}
.yef{bottom:674.610000px;}
.ye{bottom:675.600000px;}
.y124{bottom:676.950000px;}
.yaf{bottom:681.090000px;}
.y43{bottom:682.260000px;}
.y67{bottom:686.310000px;}
.yd{bottom:693.240000px;}
.yae{bottom:698.640000px;}
.y42{bottom:699.810000px;}
.y123{bottom:703.590000px;}
.yc{bottom:710.790000px;}
.yad{bottom:716.190000px;}
.y41{bottom:717.360000px;}
.y122{bottom:721.140000px;}
.yb{bottom:728.430000px;}
.yac{bottom:733.830000px;}
.y40{bottom:735.000000px;}
.yed{bottom:737.160000px;}
.y121{bottom:738.690000px;}
.yab{bottom:751.380000px;}
.y3f{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y120{bottom:765.330000px;}
.yaa{bottom:769.020000px;}
.y3e{bottom:770.190000px;}
.y66{bottom:770.550000px;}
.y11f{bottom:782.880000px;}
.ya9{bottom:786.570000px;}
.y3d{bottom:787.740000px;}
.y65{bottom:788.190000px;}
.yec{bottom:799.620000px;}
.y9{bottom:803.580000px;}
.ya8{bottom:804.120000px;}
.y3c{bottom:805.290000px;}
.y64{bottom:805.740000px;}
.y11e{bottom:809.520000px;}
.ya7{bottom:821.760000px;}
.y107{bottom:822.930000px;}
.y63{bottom:823.290000px;}
.y11d{bottom:827.070000px;}
.y8{bottom:839.130000px;}
.y106{bottom:840.480000px;}
.y3b{bottom:840.930000px;}
.yeb{bottom:844.530000px;}
.y11c{bottom:844.620000px;}
.ya6{bottom:848.670000px;}
.y3a{bottom:858.480000px;}
.y11b{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.y39{bottom:876.030000px;}
.y11a{bottom:888.810000px;}
.yea{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.ya5{bottom:894.300000px;}
.y119{bottom:906.450000px;}
.y6{bottom:910.950000px;}
.y37{bottom:911.220000px;}
.y118{bottom:924.000000px;}
.y36{bottom:928.860000px;}
.ya4{bottom:939.210000px;}
.y35{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y117{bottom:950.550000px;}
.y34{bottom:963.960000px;}
.y62{bottom:964.410000px;}
.y116{bottom:968.190000px;}
.y33{bottom:981.600000px;}
.y61{bottom:981.960000px;}
.ya3{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.y115{bottom:994.740000px;}
.y83{bottom:999.150000px;}
.y60{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.y114{bottom:1012.320000px;}
.y82{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.ya2{bottom:1029.060000px;}
.y81{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y113{bottom:1039.230000px;}
.ye9{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.ye8{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.ya1{bottom:1073.970000px;}
.y105{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:41.978320px;}
.hb{height:44.190000px;}
.hc{height:44.220000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.he{height:61.740000px;}
.hd{height:61.770000px;}
.h11{height:61.793886px;}
.h10{height:61.830000px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:96.150000px;}
.w7{width:101.640000px;}
.w8{width:135.270000px;}
.w3{width:144.300000px;}
.wf{width:147.540000px;}
.w5{width:165.990000px;}
.we{width:168.750000px;}
.w10{width:181.980000px;}
.w6{width:199.260000px;}
.w12{width:204.120000px;}
.wd{width:217.560000px;}
.w11{width:219.810000px;}
.wa{width:223.920000px;}
.w4{width:243.990000px;}
.wc{width:271.080000px;}
.w9{width:292.530000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xb{left:165.630000px;}
.x8{left:171.210000px;}
.x2{left:202.799987px;}
.x5{left:213.780000px;}
.xe{left:217.020000px;}
.x9{left:307.200000px;}
.xf{left:399.720000px;}
.xc{left:437.430000px;}
.x6{left:458.490000px;}
.xa{left:600.540000px;}
.x10{left:620.340000px;}
.x7{left:625.200000px;}
.xd{left:655.710000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.158933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.033600pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls14{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls10{letter-spacing:0.380800pt;}
.ls4{letter-spacing:10.666667pt;}
.ls18{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws13{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.723200pt;}
.wsf{word-spacing:-11.620267pt;}
.ws11{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.197333pt;}
.ws3{word-spacing:3.826560pt;}
._1{margin-left:-3.252800pt;}
._12{margin-left:-2.191040pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.248107pt;}
._7{width:2.939200pt;}
._8{width:4.110400pt;}
._e{width:5.183466pt;}
._5{width:6.466133pt;}
._6{width:7.399467pt;}
._a{width:8.300267pt;}
._9{width:9.352000pt;}
._d{width:10.510399pt;}
._10{width:12.660374pt;}
._b{width:14.108267pt;}
._c{width:15.310293pt;}
._f{width:16.327255pt;}
._1e{width:17.218546pt;}
._3{width:18.116267pt;}
._4{width:19.635519pt;}
._14{width:21.095893pt;}
._11{width:22.124160pt;}
._26{width:23.513600pt;}
._29{width:25.811520pt;}
._25{width:26.720000pt;}
._13{width:27.895680pt;}
._1f{width:29.071360pt;}
._28{width:34.308480pt;}
._2f{width:35.537600pt;}
._1d{width:38.263040pt;}
._19{width:41.683200pt;}
._3a{width:42.919893pt;}
._38{width:43.847360pt;}
._39{width:44.783360pt;}
._23{width:50.126720pt;}
._37{width:51.142080pt;}
._21{width:56.646400pt;}
._15{width:58.196160pt;}
._2b{width:59.959680pt;}
._32{width:65.089920pt;}
._2e{width:69.786880pt;}
._22{width:71.235520pt;}
._18{width:73.854080pt;}
._1a{width:93.199360pt;}
._33{width:94.107840pt;}
._2a{width:102.177280pt;}
._1b{width:110.460480pt;}
._20{width:118.904000pt;}
._27{width:121.415680pt;}
._30{width:122.377600pt;}
._2c{width:129.592000pt;}
._35{width:135.174507pt;}
._2d{width:146.532480pt;}
._17{width:164.007360pt;}
._1c{width:173.997440pt;}
._34{width:190.353280pt;}
._16{width:191.368640pt;}
._31{width:209.484800pt;}
._24{width:263.779840pt;}
._36{width:344.605867pt;}
.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;}
.y68{bottom:6.960000pt;}
.y6b{bottom:7.040000pt;}
.yee{bottom:22.560000pt;}
.y6a{bottom:22.640000pt;}
.y70{bottom:22.666667pt;}
.yd2{bottom:38.240000pt;}
.yf1{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y112{bottom:101.146667pt;}
.ycc{bottom:104.026667pt;}
.ya0{bottom:105.466667pt;}
.y80{bottom:110.986667pt;}
.yde{bottom:112.666667pt;}
.y111{bottom:116.746667pt;}
.y5f{bottom:117.146667pt;}
.ycb{bottom:119.706667pt;}
.y9f{bottom:121.066667pt;}
.y28{bottom:124.986667pt;}
.y7f{bottom:126.666667pt;}
.ydd{bottom:128.346667pt;}
.y110{bottom:132.426667pt;}
.y5e{bottom:132.746667pt;}
.yca{bottom:135.306667pt;}
.y9e{bottom:136.746667pt;}
.y27{bottom:140.666667pt;}
.y7e{bottom:142.266667pt;}
.ydc{bottom:143.946667pt;}
.y10f{bottom:148.026667pt;}
.y5d{bottom:148.426667pt;}
.y104{bottom:150.906667pt;}
.y9d{bottom:152.346667pt;}
.y26{bottom:156.266667pt;}
.y7d{bottom:157.866667pt;}
.ydb{bottom:159.626667pt;}
.y10e{bottom:163.706667pt;}
.y5c{bottom:164.026667pt;}
.y103{bottom:166.586667pt;}
.yc9{bottom:166.906667pt;}
.y9c{bottom:167.946667pt;}
.y7c{bottom:173.546667pt;}
.yda{bottom:175.226667pt;}
.y10d{bottom:179.306667pt;}
.y5b{bottom:179.706667pt;}
.y102{bottom:182.186667pt;}
.yc8{bottom:182.586667pt;}
.y9b{bottom:183.626667pt;}
.y25{bottom:187.866667pt;}
.y7b{bottom:189.146667pt;}
.yd9{bottom:190.826667pt;}
.y5a{bottom:195.306667pt;}
.y101{bottom:197.866667pt;}
.yc7{bottom:198.186667pt;}
.y9a{bottom:199.226667pt;}
.y10c{bottom:203.226667pt;}
.y24{bottom:203.546667pt;}
.y7a{bottom:204.826667pt;}
.yd8{bottom:206.506667pt;}
.y59{bottom:210.906667pt;}
.y100{bottom:213.466667pt;}
.yc6{bottom:213.866667pt;}
.y99{bottom:214.826667pt;}
.y23{bottom:219.146667pt;}
.y79{bottom:220.426667pt;}
.yd7{bottom:222.106667pt;}
.y58{bottom:226.586667pt;}
.yff{bottom:229.066667pt;}
.yc5{bottom:229.466667pt;}
.y98{bottom:230.506667pt;}
.y22{bottom:234.746667pt;}
.yd6{bottom:237.786667pt;}
.y57{bottom:242.186667pt;}
.yfe{bottom:244.746667pt;}
.yc4{bottom:245.066667pt;}
.y97{bottom:246.106667pt;}
.y21{bottom:250.426667pt;}
.y78{bottom:252.026667pt;}
.yd5{bottom:253.386667pt;}
.y56{bottom:257.866667pt;}
.yfd{bottom:260.346667pt;}
.yc3{bottom:260.746667pt;}
.y96{bottom:261.786667pt;}
.y20{bottom:266.026667pt;}
.y77{bottom:267.706667pt;}
.y55{bottom:273.466667pt;}
.yfc{bottom:275.946667pt;}
.yc2{bottom:276.346667pt;}
.yd4{bottom:277.306667pt;}
.y95{bottom:277.386667pt;}
.y1f{bottom:281.706667pt;}
.y76{bottom:283.306667pt;}
.y54{bottom:289.066667pt;}
.yfb{bottom:291.626667pt;}
.yc1{bottom:291.946667pt;}
.y94{bottom:292.986667pt;}
.ye7{bottom:293.386667pt;}
.y1e{bottom:297.306667pt;}
.y75{bottom:298.986667pt;}
.y53{bottom:304.746667pt;}
.yc0{bottom:307.626667pt;}
.y93{bottom:308.666667pt;}
.ye6{bottom:308.986667pt;}
.y1d{bottom:312.906667pt;}
.y74{bottom:314.586667pt;}
.yd3{bottom:317.866667pt;}
.y52{bottom:320.346667pt;}
.ybf{bottom:323.226667pt;}
.y10b{bottom:324.266667pt;}
.ye5{bottom:324.666667pt;}
.y133{bottom:327.226667pt;}
.y1c{bottom:328.586667pt;}
.y73{bottom:330.186667pt;}
.y51{bottom:335.946667pt;}
.ybe{bottom:338.906667pt;}
.y10a{bottom:339.946667pt;}
.y92{bottom:340.266667pt;}
.y132{bottom:342.906667pt;}
.y1b{bottom:344.186667pt;}
.y72{bottom:345.866667pt;}
.ybd{bottom:354.506667pt;}
.y109{bottom:355.546667pt;}
.y91{bottom:355.946667pt;}
.y131{bottom:366.506667pt;}
.y50{bottom:367.626667pt;}
.y1a{bottom:368.106667pt;}
.y71{bottom:369.786667pt;}
.yfa{bottom:370.106667pt;}
.y108{bottom:371.146667pt;}
.y90{bottom:371.546667pt;}
.yd1{bottom:373.466667pt;}
.y130{bottom:382.106667pt;}
.y4f{bottom:383.226667pt;}
.yf9{bottom:385.786667pt;}
.ybc{bottom:386.106667pt;}
.y8f{bottom:387.146667pt;}
.y12f{bottom:397.786667pt;}
.y4e{bottom:398.906667pt;}
.yf8{bottom:401.386667pt;}
.ybb{bottom:401.786667pt;}
.y8e{bottom:402.826667pt;}
.y6f{bottom:410.346667pt;}
.y19{bottom:411.066667pt;}
.y12e{bottom:413.386667pt;}
.y4d{bottom:414.506667pt;}
.yf7{bottom:417.066667pt;}
.yba{bottom:417.386667pt;}
.y8d{bottom:418.453333pt;}
.y18{bottom:427.013333pt;}
.yd0{bottom:429.013333pt;}
.y4c{bottom:430.133333pt;}
.yf6{bottom:432.693333pt;}
.yb9{bottom:433.093333pt;}
.y8c{bottom:434.133333pt;}
.y12d{bottom:437.093333pt;}
.y4b{bottom:445.813333pt;}
.yf5{bottom:448.293333pt;}
.yb8{bottom:448.693333pt;}
.y8b{bottom:449.733333pt;}
.y6e{bottom:450.293333pt;}
.y12c{bottom:452.693333pt;}
.y17{bottom:459.893333pt;}
.y4a{bottom:461.413333pt;}
.yf4{bottom:463.973333pt;}
.yb7{bottom:464.293333pt;}
.y8a{bottom:465.333333pt;}
.ye4{bottom:465.733333pt;}
.ycf{bottom:468.933333pt;}
.y16{bottom:475.493333pt;}
.y12b{bottom:476.293333pt;}
.y49{bottom:477.093333pt;}
.yf3{bottom:479.573333pt;}
.yb6{bottom:479.973333pt;}
.y89{bottom:481.013333pt;}
.ye3{bottom:481.333333pt;}
.y6d{bottom:490.213333pt;}
.y15{bottom:491.173333pt;}
.y12a{bottom:491.973333pt;}
.y48{bottom:492.693333pt;}
.yb5{bottom:495.573333pt;}
.y88{bottom:496.613333pt;}
.ye2{bottom:497.013333pt;}
.yf2{bottom:503.493333pt;}
.y14{bottom:506.773333pt;}
.y47{bottom:508.293333pt;}
.yb4{bottom:511.253333pt;}
.y87{bottom:512.293333pt;}
.ye1{bottom:512.613333pt;}
.y129{bottom:515.573333pt;}
.y13{bottom:522.373333pt;}
.y46{bottom:523.973333pt;}
.yb3{bottom:526.853333pt;}
.y86{bottom:527.893333pt;}
.ye0{bottom:528.293333pt;}
.y6c{bottom:530.133333pt;}
.y128{bottom:531.253333pt;}
.y12{bottom:538.053333pt;}
.yb2{bottom:542.453333pt;}
.y85{bottom:543.493333pt;}
.ydf{bottom:543.893333pt;}
.yf0{bottom:544.053333pt;}
.y127{bottom:546.853333pt;}
.y45{bottom:547.893333pt;}
.y11{bottom:553.653333pt;}
.yb1{bottom:558.133333pt;}
.y84{bottom:559.173333pt;}
.yce{bottom:559.493333pt;}
.y10{bottom:569.333333pt;}
.y69{bottom:570.053333pt;}
.y126{bottom:570.453333pt;}
.yb0{bottom:573.733333pt;}
.ycd{bottom:575.173333pt;}
.yf{bottom:584.933333pt;}
.y125{bottom:586.133333pt;}
.y44{bottom:590.773333pt;}
.yef{bottom:599.653333pt;}
.ye{bottom:600.533333pt;}
.y124{bottom:601.733333pt;}
.yaf{bottom:605.413333pt;}
.y43{bottom:606.453333pt;}
.y67{bottom:610.053333pt;}
.yd{bottom:616.213333pt;}
.yae{bottom:621.013333pt;}
.y42{bottom:622.053333pt;}
.y123{bottom:625.413333pt;}
.yc{bottom:631.813333pt;}
.yad{bottom:636.613333pt;}
.y41{bottom:637.653333pt;}
.y122{bottom:641.013333pt;}
.yb{bottom:647.493333pt;}
.yac{bottom:652.293333pt;}
.y40{bottom:653.333333pt;}
.yed{bottom:655.253333pt;}
.y121{bottom:656.613333pt;}
.yab{bottom:667.893333pt;}
.y3f{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y120{bottom:680.293333pt;}
.yaa{bottom:683.573333pt;}
.y3e{bottom:684.613333pt;}
.y66{bottom:684.933333pt;}
.y11f{bottom:695.893333pt;}
.ya9{bottom:699.173333pt;}
.y3d{bottom:700.213333pt;}
.y65{bottom:700.613333pt;}
.yec{bottom:710.773333pt;}
.y9{bottom:714.293333pt;}
.ya8{bottom:714.773333pt;}
.y3c{bottom:715.813333pt;}
.y64{bottom:716.213333pt;}
.y11e{bottom:719.573333pt;}
.ya7{bottom:730.453333pt;}
.y107{bottom:731.493333pt;}
.y63{bottom:731.813333pt;}
.y11d{bottom:735.173333pt;}
.y8{bottom:745.893333pt;}
.y106{bottom:747.093333pt;}
.y3b{bottom:747.493333pt;}
.yeb{bottom:750.693333pt;}
.y11c{bottom:750.773333pt;}
.ya6{bottom:754.373333pt;}
.y3a{bottom:763.093333pt;}
.y11b{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.y39{bottom:778.693333pt;}
.y11a{bottom:790.053333pt;}
.yea{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.ya5{bottom:794.933333pt;}
.y119{bottom:805.733333pt;}
.y6{bottom:809.733333pt;}
.y37{bottom:809.973333pt;}
.y118{bottom:821.333333pt;}
.y36{bottom:825.653333pt;}
.ya4{bottom:834.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y117{bottom:844.933333pt;}
.y34{bottom:856.853333pt;}
.y62{bottom:857.253333pt;}
.y116{bottom:860.613333pt;}
.y33{bottom:872.533333pt;}
.y61{bottom:872.853333pt;}
.ya3{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.y115{bottom:884.213333pt;}
.y83{bottom:888.133333pt;}
.y60{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.y114{bottom:899.840000pt;}
.y82{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.ya2{bottom:914.720000pt;}
.y81{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y113{bottom:923.760000pt;}
.ye9{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.ye8{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.ya1{bottom:954.640000pt;}
.y105{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:37.314062pt;}
.hb{height:39.280000pt;}
.hc{height:39.306667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.he{height:54.880000pt;}
.hd{height:54.906667pt;}
.h11{height:54.927899pt;}
.h10{height:54.960000pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:85.466667pt;}
.w7{width:90.346667pt;}
.w8{width:120.240000pt;}
.w3{width:128.266667pt;}
.wf{width:131.146667pt;}
.w5{width:147.546667pt;}
.we{width:150.000000pt;}
.w10{width:161.760000pt;}
.w6{width:177.120000pt;}
.w12{width:181.440000pt;}
.wd{width:193.386667pt;}
.w11{width:195.386667pt;}
.wa{width:199.040000pt;}
.w4{width:216.880000pt;}
.wc{width:240.960000pt;}
.w9{width:260.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xb{left:147.226667pt;}
.x8{left:152.186667pt;}
.x2{left:180.266655pt;}
.x5{left:190.026667pt;}
.xe{left:192.906667pt;}
.x9{left:273.066667pt;}
.xf{left:355.306667pt;}
.xc{left:388.826667pt;}
.x6{left:407.546667pt;}
.xa{left:533.813333pt;}
.x10{left:551.413333pt;}
.x7{left:555.733333pt;}
.xd{left:582.853333pt;}
.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; }
  