
    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_1f1c8d17dce0b964c284578c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_3af00135ea9b6255126d9389.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_bc3a20ff6759768aac397a2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_cea96462c5935e98e5f6d1a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9ff0e8ca6814bd2b550e41ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_4a742e7aeb5c80ead2db3b53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.223200px;}
.ls13{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.153360px;}
.ls12{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.900000px;}
.ls1a{letter-spacing:8.820000px;}
.ls18{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.ls7{letter-spacing:46.170720px;}
.ls14{letter-spacing:49.770720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.716800px;}
.ws8{word-spacing:-14.686800px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-9.668160px;}
._15{margin-left:-3.380640px;}
._b{margin-left:-2.203200px;}
._0{margin-left:-1.080000px;}
._12{width:1.149120px;}
._1{width:2.220000px;}
._13{width:3.279360px;}
._17{width:5.098320px;}
._16{width:6.215040px;}
._18{width:7.377120px;}
._1e{width:8.551440px;}
._14{width:9.570240px;}
._6{width:10.800000px;}
._1b{width:11.801520px;}
._19{width:13.677120px;}
._1a{width:16.101360px;}
._10{width:18.948000px;}
._1f{width:20.557440px;}
._20{width:31.374000px;}
._24{width:35.796240px;}
._23{width:37.469520px;}
._25{width:50.779440px;}
._26{width:52.037280px;}
._7{width:76.284960px;}
._11{width:99.660000px;}
._8{width:154.080000px;}
._21{width:159.320160px;}
._1c{width:186.264000px;}
._d{width:195.120000px;}
._f{width:199.584000px;}
._1d{width:201.036000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._e{width:637.320000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:3.060000px;}
.ye{bottom:5.760000px;}
.yc7{bottom:5.790000px;}
.y87{bottom:5.940000px;}
.y91{bottom:6.300000px;}
.yba{bottom:6.480000px;}
.y8c{bottom:8.280000px;}
.y88{bottom:9.900000px;}
.yb5{bottom:10.800000px;}
.ya9{bottom:11.340000px;}
.y6{bottom:12.420000px;}
.y8d{bottom:15.660000px;}
.y89{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y8b{bottom:25.560000px;}
.y86{bottom:25.740000px;}
.ye8{bottom:25.770000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y9f{bottom:45.360000px;}
.yf0{bottom:45.540000px;}
.ye9{bottom:45.570000px;}
.yb{bottom:60.300000px;}
.y9e{bottom:65.160000px;}
.yef{bottom:65.340000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y9d{bottom:85.140000px;}
.y3{bottom:96.330000px;}
.yee{bottom:104.940000px;}
.y100{bottom:105.120000px;}
.ye0{bottom:105.840000px;}
.y67{bottom:109.260000px;}
.y92{bottom:111.240000px;}
.y144{bottom:112.320000px;}
.y129{bottom:120.060000px;}
.ydf{bottom:120.600000px;}
.yb3{bottom:120.780000px;}
.yff{bottom:124.920000px;}
.y2{bottom:125.670000px;}
.y90{bottom:126.000000px;}
.y66{bottom:129.060000px;}
.y3a{bottom:130.320000px;}
.y143{bottom:132.120000px;}
.y128{bottom:139.860000px;}
.yb2{bottom:140.580000px;}
.yde{bottom:141.120000px;}
.yfe{bottom:144.720000px;}
.y65{bottom:148.860000px;}
.y39{bottom:150.120000px;}
.y142{bottom:151.950000px;}
.y127{bottom:159.690000px;}
.yb1{bottom:160.410000px;}
.ydd{bottom:161.850000px;}
.y8e{bottom:166.350000px;}
.y64{bottom:168.690000px;}
.y38{bottom:169.950000px;}
.yfd{bottom:173.550000px;}
.y141{bottom:174.090000px;}
.y126{bottom:179.670000px;}
.yb0{bottom:180.390000px;}
.ydc{bottom:188.130000px;}
.y37{bottom:189.750000px;}
.yfc{bottom:193.350000px;}
.y140{bottom:193.890000px;}
.y63{bottom:197.670000px;}
.y125{bottom:199.470000px;}
.yaf{bottom:200.190000px;}
.ydb{bottom:205.410000px;}
.y8a{bottom:206.850000px;}
.y36{bottom:209.730000px;}
.yfb{bottom:213.330000px;}
.y13f{bottom:213.690000px;}
.y62{bottom:217.470000px;}
.y124{bottom:219.270000px;}
.yae{bottom:219.990000px;}
.yda{bottom:225.210000px;}
.y35{bottom:229.530000px;}
.yfa{bottom:233.130000px;}
.y13e{bottom:233.670000px;}
.yad{bottom:234.750000px;}
.y61{bottom:237.270000px;}
.y123{bottom:239.070000px;}
.yd9{bottom:245.010000px;}
.y85{bottom:247.170000px;}
.y34{bottom:249.330000px;}
.yf9{bottom:252.930000px;}
.y13d{bottom:253.470000px;}
.yac{bottom:255.270000px;}
.yd8{bottom:264.990000px;}
.y60{bottom:266.070000px;}
.y122{bottom:267.870000px;}
.y33{bottom:269.130000px;}
.yf8{bottom:272.730000px;}
.y13c{bottom:273.270000px;}
.yab{bottom:275.970000px;}
.yd7{bottom:284.790000px;}
.y5f{bottom:285.870000px;}
.y84{bottom:287.670000px;}
.y121{bottom:287.850000px;}
.y32{bottom:288.930000px;}
.yf7{bottom:292.530000px;}
.y13b{bottom:293.070000px;}
.yaa{bottom:296.490000px;}
.yd6{bottom:304.590000px;}
.y5e{bottom:305.850000px;}
.y120{bottom:307.650000px;}
.y31{bottom:308.910000px;}
.yf6{bottom:309.810000px;}
.y13a{bottom:312.870000px;}
.y83{bottom:314.130000px;}
.ya8{bottom:317.190000px;}
.yd5{bottom:324.390000px;}
.y5d{bottom:325.650000px;}
.y11f{bottom:327.450000px;}
.y30{bottom:328.710000px;}
.yf5{bottom:329.790000px;}
.y139{bottom:332.850000px;}
.y82{bottom:333.930000px;}
.yd4{bottom:344.190000px;}
.y5c{bottom:345.450000px;}
.y11e{bottom:347.250000px;}
.y2f{bottom:348.510000px;}
.yf4{bottom:349.590000px;}
.y138{bottom:352.650000px;}
.y81{bottom:353.730000px;}
.ya7{bottom:354.630000px;}
.yd3{bottom:364.170000px;}
.y11d{bottom:367.050000px;}
.y2e{bottom:368.310000px;}
.yf3{bottom:369.390000px;}
.y137{bottom:372.450000px;}
.y80{bottom:373.530000px;}
.y5b{bottom:374.250000px;}
.ya6{bottom:374.430000px;}
.yd2{bottom:381.450000px;}
.yf2{bottom:386.670000px;}
.y11c{bottom:387.030000px;}
.y2d{bottom:388.110000px;}
.y136{bottom:392.250000px;}
.y7f{bottom:393.330000px;}
.y5a{bottom:394.050000px;}
.ya5{bottom:394.230000px;}
.yd1{bottom:401.295000px;}
.yf1{bottom:406.515000px;}
.y11b{bottom:406.875000px;}
.y2c{bottom:408.135000px;}
.y135{bottom:412.095000px;}
.y7e{bottom:413.355000px;}
.y59{bottom:414.075000px;}
.ya4{bottom:414.255000px;}
.yd0{bottom:416.055000px;}
.yed{bottom:421.275000px;}
.y11a{bottom:426.675000px;}
.y2b{bottom:427.935000px;}
.y134{bottom:432.075000px;}
.y7d{bottom:433.155000px;}
.ya3{bottom:434.055000px;}
.ycf{bottom:436.575000px;}
.y58{bottom:442.875000px;}
.y119{bottom:446.475000px;}
.y2a{bottom:447.735000px;}
.y133{bottom:451.875000px;}
.y7c{bottom:452.955000px;}
.ya2{bottom:453.855000px;}
.yce{bottom:457.095000px;}
.y57{bottom:462.675000px;}
.y118{bottom:466.275000px;}
.y29{bottom:467.535000px;}
.y132{bottom:471.675000px;}
.y7b{bottom:472.755000px;}
.ya1{bottom:473.655000px;}
.ycd{bottom:477.795000px;}
.y56{bottom:482.475000px;}
.y117{bottom:486.255000px;}
.y28{bottom:487.335000px;}
.y131{bottom:491.475000px;}
.y7a{bottom:492.555000px;}
.ya0{bottom:493.455000px;}
.ycc{bottom:498.315000px;}
.y55{bottom:502.275000px;}
.y116{bottom:506.055000px;}
.y27{bottom:507.315000px;}
.y9c{bottom:508.395000px;}
.y130{bottom:511.275000px;}
.y79{bottom:512.535000px;}
.y54{bottom:522.255000px;}
.ycb{bottom:524.775000px;}
.y115{bottom:525.855000px;}
.y26{bottom:527.115000px;}
.y12f{bottom:531.255000px;}
.y78{bottom:532.335000px;}
.y53{bottom:542.055000px;}
.yca{bottom:544.575000px;}
.y114{bottom:545.655000px;}
.y25{bottom:546.915000px;}
.y12e{bottom:551.055000px;}
.y77{bottom:552.135000px;}
.y52{bottom:561.855000px;}
.yec{bottom:564.195000px;}
.y113{bottom:565.455000px;}
.y24{bottom:566.715000px;}
.y12d{bottom:570.855000px;}
.y76{bottom:571.935000px;}
.y51{bottom:581.655000px;}
.yeb{bottom:583.995000px;}
.y23{bottom:586.515000px;}
.y12c{bottom:590.655000px;}
.y75{bottom:591.735000px;}
.y112{bottom:594.435000px;}
.yc9{bottom:598.215000px;}
.yea{bottom:598.755000px;}
.y50{bottom:601.455000px;}
.y22{bottom:606.495000px;}
.y12b{bottom:610.455000px;}
.y74{bottom:611.715000px;}
.y9b{bottom:614.055000px;}
.y111{bottom:614.235000px;}
.y4f{bottom:621.435000px;}
.yc8{bottom:622.335000px;}
.y21{bottom:626.295000px;}
.y12a{bottom:630.435000px;}
.y73{bottom:631.515000px;}
.y9a{bottom:633.855000px;}
.y110{bottom:634.035000px;}
.ye7{bottom:639.075000px;}
.y20{bottom:646.095000px;}
.yc6{bottom:646.635000px;}
.y4e{bottom:650.265000px;}
.y72{bottom:651.345000px;}
.y99{bottom:653.685000px;}
.y10f{bottom:653.865000px;}
.y1f{bottom:665.925000px;}
.y4d{bottom:670.065000px;}
.yc5{bottom:670.785000px;}
.y71{bottom:671.145000px;}
.y98{bottom:673.665000px;}
.y1e{bottom:685.725000px;}
.y4c{bottom:689.865000px;}
.y70{bottom:690.945000px;}
.y97{bottom:693.465000px;}
.yc4{bottom:699.045000px;}
.ye6{bottom:699.405000px;}
.y10e{bottom:702.645000px;}
.y1d{bottom:705.705000px;}
.y4b{bottom:709.665000px;}
.y6f{bottom:710.925000px;}
.y96{bottom:713.265000px;}
.yc3{bottom:718.845000px;}
.y10d{bottom:722.445000px;}
.y1c{bottom:725.505000px;}
.y4a{bottom:729.645000px;}
.y6e{bottom:730.725000px;}
.y95{bottom:733.065000px;}
.yc2{bottom:738.645000px;}
.ye5{bottom:739.905000px;}
.y10c{bottom:742.245000px;}
.y1b{bottom:745.305000px;}
.y49{bottom:749.445000px;}
.y6d{bottom:750.525000px;}
.y94{bottom:752.865000px;}
.yc1{bottom:755.925000px;}
.y10b{bottom:762.045000px;}
.y1a{bottom:765.105000px;}
.y48{bottom:769.245000px;}
.y93{bottom:769.425000px;}
.y6c{bottom:770.325000px;}
.yc0{bottom:775.725000px;}
.ye4{bottom:780.225000px;}
.y19{bottom:784.905000px;}
.y47{bottom:789.045000px;}
.y6b{bottom:790.125000px;}
.y10a{bottom:790.845000px;}
.ybf{bottom:795.525000px;}
.y18{bottom:804.885000px;}
.y46{bottom:808.845000px;}
.y6a{bottom:810.105000px;}
.y109{bottom:810.825000px;}
.ybe{bottom:815.505000px;}
.ye3{bottom:820.725000px;}
.y17{bottom:824.685000px;}
.y45{bottom:828.825000px;}
.y69{bottom:829.905000px;}
.y108{bottom:830.625000px;}
.ybd{bottom:835.305000px;}
.y16{bottom:844.485000px;}
.y68{bottom:846.285000px;}
.y44{bottom:848.625000px;}
.y107{bottom:850.425000px;}
.ybc{bottom:852.585000px;}
.ye2{bottom:861.045000px;}
.y15{bottom:864.285000px;}
.y43{bottom:868.425000px;}
.y106{bottom:870.225000px;}
.ybb{bottom:872.385000px;}
.yb9{bottom:887.145000px;}
.y42{bottom:888.225000px;}
.y14{bottom:889.305000px;}
.y105{bottom:899.070000px;}
.ye1{bottom:901.590000px;}
.y41{bottom:908.070000px;}
.yb8{bottom:909.150000px;}
.y13{bottom:909.330000px;}
.y104{bottom:919.050000px;}
.y12{bottom:924.450000px;}
.y40{bottom:928.050000px;}
.yb7{bottom:929.670000px;}
.y103{bottom:938.850000px;}
.y11{bottom:945.690000px;}
.y3f{bottom:947.850000px;}
.yb6{bottom:950.190000px;}
.y102{bottom:958.650000px;}
.y3e{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.yb4{bottom:970.890000px;}
.y101{bottom:978.450000px;}
.y3d{bottom:987.450000px;}
.yf{bottom:1000.950000px;}
.y3c{bottom:1007.250000px;}
.y3b{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h11{height:19.800000px;}
.h1a{height:19.836000px;}
.h17{height:19.980000px;}
.h19{height:21.096000px;}
.ha{height:21.240000px;}
.he{height:27.147656px;}
.h18{height:29.880000px;}
.h16{height:30.960000px;}
.h7{height:33.480000px;}
.h13{height:39.600000px;}
.h14{height:39.636000px;}
.h12{height:39.780000px;}
.h1b{height:39.816000px;}
.hd{height:41.726953px;}
.hf{height:42.164648px;}
.h10{height:43.506914px;}
.h1c{height:44.265586px;}
.h1f{height:45.024258px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h9{height:53.224453px;}
.h1d{height:59.616000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h15{height:99.180000px;}
.h5{height:112.536000px;}
.h1e{height:118.980000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w21{width:41.760000px;}
.w8{width:61.020000px;}
.wa{width:72.900000px;}
.w13{width:78.876000px;}
.we{width:82.080000px;}
.wf{width:84.240000px;}
.w1f{width:92.916000px;}
.wd{width:93.420000px;}
.wb{width:93.636000px;}
.w26{width:94.176000px;}
.w1e{width:94.860000px;}
.w1d{width:95.076000px;}
.w19{width:95.400000px;}
.w18{width:95.436000px;}
.wc{width:104.040000px;}
.w11{width:105.480000px;}
.w12{width:105.516000px;}
.w1a{width:106.056000px;}
.w15{width:112.896000px;}
.w10{width:116.136000px;}
.w1b{width:116.676000px;}
.w23{width:126.900000px;}
.w24{width:128.196000px;}
.w3{width:130.716000px;}
.w6{width:132.516000px;}
.w1c{width:148.140000px;}
.w14{width:158.790000px;}
.w16{width:172.830000px;}
.w20{width:197.490000px;}
.w9{width:199.515000px;}
.w25{width:222.870000px;}
.w22{width:286.230000px;}
.w7{width:328.755000px;}
.w17{width:371.415000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.020000px;}
.x2{left:8.100000px;}
.x37{left:10.620000px;}
.x34{left:12.780000px;}
.x36{left:14.760000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x10{left:59.039987px;}
.xd{left:75.599987px;}
.x41{left:80.999987px;}
.x7{left:84.239987px;}
.x11{left:86.075987px;}
.x19{left:101.555987px;}
.xe{left:108.035987px;}
.x3b{left:111.996000px;}
.x4{left:118.290000px;}
.x1a{left:128.555987px;}
.x24{left:134.316000px;}
.x18{left:135.405000px;}
.x38{left:149.616000px;}
.x17{left:153.945000px;}
.x30{left:160.770000px;}
.x1d{left:162.029987px;}
.x8{left:165.089987px;}
.x1e{left:170.670000px;}
.x29{left:181.110000px;}
.xc{left:191.909987px;}
.xb{left:196.589987px;}
.x16{left:205.425000px;}
.x15{left:216.405000px;}
.x12{left:217.830000px;}
.x25{left:219.270000px;}
.x3e{left:223.230000px;}
.x1f{left:245.730000px;}
.x31{left:267.015000px;}
.x2c{left:287.355000px;}
.xa{left:318.854987px;}
.x1c{left:324.074987px;}
.x26{left:336.135000px;}
.x21{left:341.535000px;}
.x39{left:347.835000px;}
.x3f{left:352.155000px;}
.x2d{left:383.115000px;}
.x32{left:415.875000px;}
.x27{left:442.335000px;}
.x9{left:446.504987px;}
.x22{left:447.945000px;}
.x2a{left:454.245000px;}
.x2e{left:489.525000px;}
.x33{left:511.665000px;}
.x3c{left:537.405000px;}
.x23{left:543.525000px;}
.x3a{left:546.045000px;}
.x13{left:547.305000px;}
.x28{left:548.565000px;}
.x40{left:575.745000px;}
.x2f{left:585.285000px;}
.x35{left:607.245000px;}
.x14{left:609.045000px;}
.xf{left:610.304987px;}
.x2b{left:627.810000px;}
.x1b{left:632.129987px;}
.x3d{left:654.270000px;}
.x3{left:705.930000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.198400pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.136320pt;}
.ls12{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:7.840000pt;}
.ls18{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ls7{letter-spacing:41.040640pt;}
.ls14{letter-spacing:44.240640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.081600pt;}
.ws8{word-spacing:-13.054933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-8.593920pt;}
._15{margin-left:-3.005013pt;}
._b{margin-left:-1.958400pt;}
._0{margin-left:-0.960000pt;}
._12{width:1.021440pt;}
._1{width:1.973333pt;}
._13{width:2.914987pt;}
._17{width:4.531840pt;}
._16{width:5.524480pt;}
._18{width:6.557440pt;}
._1e{width:7.601280pt;}
._14{width:8.506880pt;}
._6{width:9.600000pt;}
._1b{width:10.490240pt;}
._19{width:12.157440pt;}
._1a{width:14.312320pt;}
._10{width:16.842667pt;}
._1f{width:18.273280pt;}
._20{width:27.888000pt;}
._24{width:31.818880pt;}
._23{width:33.306240pt;}
._25{width:45.137280pt;}
._26{width:46.255360pt;}
._7{width:67.808853pt;}
._11{width:88.586667pt;}
._8{width:136.960000pt;}
._21{width:141.617920pt;}
._1c{width:165.568000pt;}
._d{width:173.440000pt;}
._f{width:177.408000pt;}
._1d{width:178.698667pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._e{width:566.506667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:2.720000pt;}
.ye{bottom:5.120000pt;}
.yc7{bottom:5.146667pt;}
.y87{bottom:5.280000pt;}
.y91{bottom:5.600000pt;}
.yba{bottom:5.760000pt;}
.y8c{bottom:7.360000pt;}
.y88{bottom:8.800000pt;}
.yb5{bottom:9.600000pt;}
.ya9{bottom:10.080000pt;}
.y6{bottom:11.040000pt;}
.y8d{bottom:13.920000pt;}
.y89{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y8b{bottom:22.720000pt;}
.y86{bottom:22.880000pt;}
.ye8{bottom:22.906667pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y9f{bottom:40.320000pt;}
.yf0{bottom:40.480000pt;}
.ye9{bottom:40.506667pt;}
.yb{bottom:53.600000pt;}
.y9e{bottom:57.920000pt;}
.yef{bottom:58.080000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y9d{bottom:75.680000pt;}
.y3{bottom:85.626667pt;}
.yee{bottom:93.280000pt;}
.y100{bottom:93.440000pt;}
.ye0{bottom:94.080000pt;}
.y67{bottom:97.120000pt;}
.y92{bottom:98.880000pt;}
.y144{bottom:99.840000pt;}
.y129{bottom:106.720000pt;}
.ydf{bottom:107.200000pt;}
.yb3{bottom:107.360000pt;}
.yff{bottom:111.040000pt;}
.y2{bottom:111.706667pt;}
.y90{bottom:112.000000pt;}
.y66{bottom:114.720000pt;}
.y3a{bottom:115.840000pt;}
.y143{bottom:117.440000pt;}
.y128{bottom:124.320000pt;}
.yb2{bottom:124.960000pt;}
.yde{bottom:125.440000pt;}
.yfe{bottom:128.640000pt;}
.y65{bottom:132.320000pt;}
.y39{bottom:133.440000pt;}
.y142{bottom:135.066667pt;}
.y127{bottom:141.946667pt;}
.yb1{bottom:142.586667pt;}
.ydd{bottom:143.866667pt;}
.y8e{bottom:147.866667pt;}
.y64{bottom:149.946667pt;}
.y38{bottom:151.066667pt;}
.yfd{bottom:154.266667pt;}
.y141{bottom:154.746667pt;}
.y126{bottom:159.706667pt;}
.yb0{bottom:160.346667pt;}
.ydc{bottom:167.226667pt;}
.y37{bottom:168.666667pt;}
.yfc{bottom:171.866667pt;}
.y140{bottom:172.346667pt;}
.y63{bottom:175.706667pt;}
.y125{bottom:177.306667pt;}
.yaf{bottom:177.946667pt;}
.ydb{bottom:182.586667pt;}
.y8a{bottom:183.866667pt;}
.y36{bottom:186.426667pt;}
.yfb{bottom:189.626667pt;}
.y13f{bottom:189.946667pt;}
.y62{bottom:193.306667pt;}
.y124{bottom:194.906667pt;}
.yae{bottom:195.546667pt;}
.yda{bottom:200.186667pt;}
.y35{bottom:204.026667pt;}
.yfa{bottom:207.226667pt;}
.y13e{bottom:207.706667pt;}
.yad{bottom:208.666667pt;}
.y61{bottom:210.906667pt;}
.y123{bottom:212.506667pt;}
.yd9{bottom:217.786667pt;}
.y85{bottom:219.706667pt;}
.y34{bottom:221.626667pt;}
.yf9{bottom:224.826667pt;}
.y13d{bottom:225.306667pt;}
.yac{bottom:226.906667pt;}
.yd8{bottom:235.546667pt;}
.y60{bottom:236.506667pt;}
.y122{bottom:238.106667pt;}
.y33{bottom:239.226667pt;}
.yf8{bottom:242.426667pt;}
.y13c{bottom:242.906667pt;}
.yab{bottom:245.306667pt;}
.yd7{bottom:253.146667pt;}
.y5f{bottom:254.106667pt;}
.y84{bottom:255.706667pt;}
.y121{bottom:255.866667pt;}
.y32{bottom:256.826667pt;}
.yf7{bottom:260.026667pt;}
.y13b{bottom:260.506667pt;}
.yaa{bottom:263.546667pt;}
.yd6{bottom:270.746667pt;}
.y5e{bottom:271.866667pt;}
.y120{bottom:273.466667pt;}
.y31{bottom:274.586667pt;}
.yf6{bottom:275.386667pt;}
.y13a{bottom:278.106667pt;}
.y83{bottom:279.226667pt;}
.ya8{bottom:281.946667pt;}
.yd5{bottom:288.346667pt;}
.y5d{bottom:289.466667pt;}
.y11f{bottom:291.066667pt;}
.y30{bottom:292.186667pt;}
.yf5{bottom:293.146667pt;}
.y139{bottom:295.866667pt;}
.y82{bottom:296.826667pt;}
.yd4{bottom:305.946667pt;}
.y5c{bottom:307.066667pt;}
.y11e{bottom:308.666667pt;}
.y2f{bottom:309.786667pt;}
.yf4{bottom:310.746667pt;}
.y138{bottom:313.466667pt;}
.y81{bottom:314.426667pt;}
.ya7{bottom:315.226667pt;}
.yd3{bottom:323.706667pt;}
.y11d{bottom:326.266667pt;}
.y2e{bottom:327.386667pt;}
.yf3{bottom:328.346667pt;}
.y137{bottom:331.066667pt;}
.y80{bottom:332.026667pt;}
.y5b{bottom:332.666667pt;}
.ya6{bottom:332.826667pt;}
.yd2{bottom:339.066667pt;}
.yf2{bottom:343.706667pt;}
.y11c{bottom:344.026667pt;}
.y2d{bottom:344.986667pt;}
.y136{bottom:348.666667pt;}
.y7f{bottom:349.626667pt;}
.y5a{bottom:350.266667pt;}
.ya5{bottom:350.426667pt;}
.yd1{bottom:356.706667pt;}
.yf1{bottom:361.346667pt;}
.y11b{bottom:361.666667pt;}
.y2c{bottom:362.786667pt;}
.y135{bottom:366.306667pt;}
.y7e{bottom:367.426667pt;}
.y59{bottom:368.066667pt;}
.ya4{bottom:368.226667pt;}
.yd0{bottom:369.826667pt;}
.yed{bottom:374.466667pt;}
.y11a{bottom:379.266667pt;}
.y2b{bottom:380.386667pt;}
.y134{bottom:384.066667pt;}
.y7d{bottom:385.026667pt;}
.ya3{bottom:385.826667pt;}
.ycf{bottom:388.066667pt;}
.y58{bottom:393.666667pt;}
.y119{bottom:396.866667pt;}
.y2a{bottom:397.986667pt;}
.y133{bottom:401.666667pt;}
.y7c{bottom:402.626667pt;}
.ya2{bottom:403.426667pt;}
.yce{bottom:406.306667pt;}
.y57{bottom:411.266667pt;}
.y118{bottom:414.466667pt;}
.y29{bottom:415.586667pt;}
.y132{bottom:419.266667pt;}
.y7b{bottom:420.226667pt;}
.ya1{bottom:421.026667pt;}
.ycd{bottom:424.706667pt;}
.y56{bottom:428.866667pt;}
.y117{bottom:432.226667pt;}
.y28{bottom:433.186667pt;}
.y131{bottom:436.866667pt;}
.y7a{bottom:437.826667pt;}
.ya0{bottom:438.626667pt;}
.ycc{bottom:442.946667pt;}
.y55{bottom:446.466667pt;}
.y116{bottom:449.826667pt;}
.y27{bottom:450.946667pt;}
.y9c{bottom:451.906667pt;}
.y130{bottom:454.466667pt;}
.y79{bottom:455.586667pt;}
.y54{bottom:464.226667pt;}
.ycb{bottom:466.466667pt;}
.y115{bottom:467.426667pt;}
.y26{bottom:468.546667pt;}
.y12f{bottom:472.226667pt;}
.y78{bottom:473.186667pt;}
.y53{bottom:481.826667pt;}
.yca{bottom:484.066667pt;}
.y114{bottom:485.026667pt;}
.y25{bottom:486.146667pt;}
.y12e{bottom:489.826667pt;}
.y77{bottom:490.786667pt;}
.y52{bottom:499.426667pt;}
.yec{bottom:501.506667pt;}
.y113{bottom:502.626667pt;}
.y24{bottom:503.746667pt;}
.y12d{bottom:507.426667pt;}
.y76{bottom:508.386667pt;}
.y51{bottom:517.026667pt;}
.yeb{bottom:519.106667pt;}
.y23{bottom:521.346667pt;}
.y12c{bottom:525.026667pt;}
.y75{bottom:525.986667pt;}
.y112{bottom:528.386667pt;}
.yc9{bottom:531.746667pt;}
.yea{bottom:532.226667pt;}
.y50{bottom:534.626667pt;}
.y22{bottom:539.106667pt;}
.y12b{bottom:542.626667pt;}
.y74{bottom:543.746667pt;}
.y9b{bottom:545.826667pt;}
.y111{bottom:545.986667pt;}
.y4f{bottom:552.386667pt;}
.yc8{bottom:553.186667pt;}
.y21{bottom:556.706667pt;}
.y12a{bottom:560.386667pt;}
.y73{bottom:561.346667pt;}
.y9a{bottom:563.426667pt;}
.y110{bottom:563.586667pt;}
.ye7{bottom:568.066667pt;}
.y20{bottom:574.306667pt;}
.yc6{bottom:574.786667pt;}
.y4e{bottom:578.013333pt;}
.y72{bottom:578.973333pt;}
.y99{bottom:581.053333pt;}
.y10f{bottom:581.213333pt;}
.y1f{bottom:591.933333pt;}
.y4d{bottom:595.613333pt;}
.yc5{bottom:596.253333pt;}
.y71{bottom:596.573333pt;}
.y98{bottom:598.813333pt;}
.y1e{bottom:609.533333pt;}
.y4c{bottom:613.213333pt;}
.y70{bottom:614.173333pt;}
.y97{bottom:616.413333pt;}
.yc4{bottom:621.373333pt;}
.ye6{bottom:621.693333pt;}
.y10e{bottom:624.573333pt;}
.y1d{bottom:627.293333pt;}
.y4b{bottom:630.813333pt;}
.y6f{bottom:631.933333pt;}
.y96{bottom:634.013333pt;}
.yc3{bottom:638.973333pt;}
.y10d{bottom:642.173333pt;}
.y1c{bottom:644.893333pt;}
.y4a{bottom:648.573333pt;}
.y6e{bottom:649.533333pt;}
.y95{bottom:651.613333pt;}
.yc2{bottom:656.573333pt;}
.ye5{bottom:657.693333pt;}
.y10c{bottom:659.773333pt;}
.y1b{bottom:662.493333pt;}
.y49{bottom:666.173333pt;}
.y6d{bottom:667.133333pt;}
.y94{bottom:669.213333pt;}
.yc1{bottom:671.933333pt;}
.y10b{bottom:677.373333pt;}
.y1a{bottom:680.093333pt;}
.y48{bottom:683.773333pt;}
.y93{bottom:683.933333pt;}
.y6c{bottom:684.733333pt;}
.yc0{bottom:689.533333pt;}
.ye4{bottom:693.533333pt;}
.y19{bottom:697.693333pt;}
.y47{bottom:701.373333pt;}
.y6b{bottom:702.333333pt;}
.y10a{bottom:702.973333pt;}
.ybf{bottom:707.133333pt;}
.y18{bottom:715.453333pt;}
.y46{bottom:718.973333pt;}
.y6a{bottom:720.093333pt;}
.y109{bottom:720.733333pt;}
.ybe{bottom:724.893333pt;}
.ye3{bottom:729.533333pt;}
.y17{bottom:733.053333pt;}
.y45{bottom:736.733333pt;}
.y69{bottom:737.693333pt;}
.y108{bottom:738.333333pt;}
.ybd{bottom:742.493333pt;}
.y16{bottom:750.653333pt;}
.y68{bottom:752.253333pt;}
.y44{bottom:754.333333pt;}
.y107{bottom:755.933333pt;}
.ybc{bottom:757.853333pt;}
.ye2{bottom:765.373333pt;}
.y15{bottom:768.253333pt;}
.y43{bottom:771.933333pt;}
.y106{bottom:773.533333pt;}
.ybb{bottom:775.453333pt;}
.yb9{bottom:788.573333pt;}
.y42{bottom:789.533333pt;}
.y14{bottom:790.493333pt;}
.y105{bottom:799.173333pt;}
.ye1{bottom:801.413333pt;}
.y41{bottom:807.173333pt;}
.yb8{bottom:808.133333pt;}
.y13{bottom:808.293333pt;}
.y104{bottom:816.933333pt;}
.y12{bottom:821.733333pt;}
.y40{bottom:824.933333pt;}
.yb7{bottom:826.373333pt;}
.y103{bottom:834.533333pt;}
.y11{bottom:840.613333pt;}
.y3f{bottom:842.533333pt;}
.yb6{bottom:844.613333pt;}
.y102{bottom:852.133333pt;}
.y3e{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.yb4{bottom:863.013333pt;}
.y101{bottom:869.733333pt;}
.y3d{bottom:877.733333pt;}
.yf{bottom:889.733333pt;}
.y3c{bottom:895.333333pt;}
.y3b{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h11{height:17.600000pt;}
.h1a{height:17.632000pt;}
.h17{height:17.760000pt;}
.h19{height:18.752000pt;}
.ha{height:18.880000pt;}
.he{height:24.131250pt;}
.h18{height:26.560000pt;}
.h16{height:27.520000pt;}
.h7{height:29.760000pt;}
.h13{height:35.200000pt;}
.h14{height:35.232000pt;}
.h12{height:35.360000pt;}
.h1b{height:35.392000pt;}
.hd{height:37.090625pt;}
.hf{height:37.479688pt;}
.h10{height:38.672812pt;}
.h1c{height:39.347188pt;}
.h1f{height:40.021563pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h9{height:47.310625pt;}
.h1d{height:52.992000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h15{height:88.160000pt;}
.h5{height:100.032000pt;}
.h1e{height:105.760000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w21{width:37.120000pt;}
.w8{width:54.240000pt;}
.wa{width:64.800000pt;}
.w13{width:70.112000pt;}
.we{width:72.960000pt;}
.wf{width:74.880000pt;}
.w1f{width:82.592000pt;}
.wd{width:83.040000pt;}
.wb{width:83.232000pt;}
.w26{width:83.712000pt;}
.w1e{width:84.320000pt;}
.w1d{width:84.512000pt;}
.w19{width:84.800000pt;}
.w18{width:84.832000pt;}
.wc{width:92.480000pt;}
.w11{width:93.760000pt;}
.w12{width:93.792000pt;}
.w1a{width:94.272000pt;}
.w15{width:100.352000pt;}
.w10{width:103.232000pt;}
.w1b{width:103.712000pt;}
.w23{width:112.800000pt;}
.w24{width:113.952000pt;}
.w3{width:116.192000pt;}
.w6{width:117.792000pt;}
.w1c{width:131.680000pt;}
.w14{width:141.146667pt;}
.w16{width:153.626667pt;}
.w20{width:175.546667pt;}
.w9{width:177.346667pt;}
.w25{width:198.106667pt;}
.w22{width:254.426667pt;}
.w7{width:292.226667pt;}
.w17{width:330.146667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.240000pt;}
.x2{left:7.200000pt;}
.x37{left:9.440000pt;}
.x34{left:11.360000pt;}
.x36{left:13.120000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x10{left:52.479988pt;}
.xd{left:67.199988pt;}
.x41{left:71.999988pt;}
.x7{left:74.879988pt;}
.x11{left:76.511988pt;}
.x19{left:90.271988pt;}
.xe{left:96.031988pt;}
.x3b{left:99.552000pt;}
.x4{left:105.146667pt;}
.x1a{left:114.271988pt;}
.x24{left:119.392000pt;}
.x18{left:120.360000pt;}
.x38{left:132.992000pt;}
.x17{left:136.840000pt;}
.x30{left:142.906667pt;}
.x1d{left:144.026655pt;}
.x8{left:146.746655pt;}
.x1e{left:151.706667pt;}
.x29{left:160.986667pt;}
.xc{left:170.586655pt;}
.xb{left:174.746655pt;}
.x16{left:182.600000pt;}
.x15{left:192.360000pt;}
.x12{left:193.626667pt;}
.x25{left:194.906667pt;}
.x3e{left:198.426667pt;}
.x1f{left:218.426667pt;}
.x31{left:237.346667pt;}
.x2c{left:255.426667pt;}
.xa{left:283.426655pt;}
.x1c{left:288.066655pt;}
.x26{left:298.786667pt;}
.x21{left:303.586667pt;}
.x39{left:309.186667pt;}
.x3f{left:313.026667pt;}
.x2d{left:340.546667pt;}
.x32{left:369.666667pt;}
.x27{left:393.186667pt;}
.x9{left:396.893322pt;}
.x22{left:398.173333pt;}
.x2a{left:403.773333pt;}
.x2e{left:435.133333pt;}
.x33{left:454.813333pt;}
.x3c{left:477.693333pt;}
.x23{left:483.133333pt;}
.x3a{left:485.373333pt;}
.x13{left:486.493333pt;}
.x28{left:487.613333pt;}
.x40{left:511.773333pt;}
.x2f{left:520.253333pt;}
.x35{left:539.773333pt;}
.x14{left:541.373333pt;}
.xf{left:542.493322pt;}
.x2b{left:558.053333pt;}
.x1b{left:561.893322pt;}
.x3d{left:581.573333pt;}
.x3{left:627.493333pt;}
.x6{left:737.280000pt;}
}




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