
    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_c90c0e4dc532ede144697b05.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_4c2c210dda4dc34aa331a3d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_18ba1621badd3a011ebb7468.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_908bd6cd980417f6f8bceda7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81c2fd2f004c4d11b75082cb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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_e0adbf13e9dd9b1d5dbb019d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_ee60f0ce8f194eef5c1375bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls7{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.090000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.073080px;}
.ls1{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.270000px;}
.ls11{letter-spacing:16.406640px;}
.lsb{letter-spacing:23.490000px;}
.ls4{letter-spacing:36.926640px;}
.ls9{letter-spacing:37.646640px;}
.ls3{letter-spacing:41.148000px;}
.lsf{letter-spacing:43.766640px;}
.ls10{letter-spacing:46.286640px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws8{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws7{word-spacing:-14.876400px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.090560px;}
._21{width:2.104200px;}
._8{width:3.126240px;}
._7{width:4.388760px;}
._23{width:5.410800px;}
._6{width:6.432840px;}
._5{width:7.575120px;}
._e{width:8.777520px;}
._a{width:10.400760px;}
._b{width:11.422800px;}
._11{width:12.506520px;}
._d{width:13.647240px;}
._3c{width:15.415200px;}
._c{width:16.472880px;}
._9{width:17.615160px;}
._19{width:19.058040px;}
._16{width:20.801520px;}
._17{width:22.064040px;}
._1c{width:23.206320px;}
._18{width:24.348600px;}
._10{width:25.551000px;}
._f{width:26.753400px;}
._12{width:28.539240px;}
._32{width:30.480840px;}
._20{width:32.104080px;}
._1f{width:33.186240px;}
._27{width:34.500480px;}
._29{width:35.530920px;}
._1e{width:36.552960px;}
._1a{width:37.995840px;}
._1b{width:39.438720px;}
._14{width:40.662000px;}
._26{width:42.625080px;}
._15{width:44.604000px;}
._1d{width:46.232280px;}
._37{width:47.374560px;}
._24{width:48.396600px;}
._28{width:50.380560px;}
._3a{width:51.402600px;}
._3b{width:52.544880px;}
._34{width:53.807400px;}
._22{width:55.130040px;}
._25{width:56.152080px;}
._31{width:57.174120px;}
._33{width:58.256280px;}
._36{width:59.578920px;}
._2a{width:60.661080px;}
._2b{width:61.983720px;}
._39{width:64.929600px;}
._30{width:66.132000px;}
._35{width:70.580880px;}
._2e{width:71.602920px;}
._2f{width:73.105920px;}
._38{width:91.496640px;}
._2c{width:112.364280px;}
._2d{width:113.386320px;}
._13{width:121.446000px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._4{width:849.342480px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.yd3{bottom:2.730000px;}
.y40{bottom:2.880000px;}
.y42{bottom:2.970000px;}
.y17{bottom:3.240000px;}
.y100{bottom:4.680000px;}
.yfe{bottom:5.130000px;}
.yf6{bottom:5.580000px;}
.y37{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y83{bottom:9.540000px;}
.ycf{bottom:9.570000px;}
.y9{bottom:14.040000px;}
.y8a{bottom:16.380000px;}
.y104{bottom:16.410000px;}
.y5{bottom:16.470000px;}
.yd1{bottom:16.500000px;}
.y3f{bottom:18.450000px;}
.yfd{bottom:18.990000px;}
.y35{bottom:19.350000px;}
.ya7{bottom:23.310000px;}
.y97{bottom:23.340000px;}
.ya3{bottom:23.400000px;}
.yce{bottom:23.430000px;}
.yc6{bottom:30.150000px;}
.y9f{bottom:30.240000px;}
.y9a{bottom:30.270000px;}
.yfc{bottom:32.760000px;}
.yf5{bottom:33.120000px;}
.y3e{bottom:33.930000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.730000px;}
.yc2{bottom:37.080000px;}
.y96{bottom:37.110000px;}
.ya2{bottom:37.170000px;}
.ycd{bottom:37.200000px;}
.ya5{bottom:44.010000px;}
.y99{bottom:44.040000px;}
.y9e{bottom:44.100000px;}
.yd0{bottom:44.130000px;}
.yfb{bottom:46.530000px;}
.yf4{bottom:46.890000px;}
.y2d{bottom:47.790000px;}
.y3d{bottom:49.500000px;}
.ya1{bottom:50.940000px;}
.y95{bottom:50.970000px;}
.y33{bottom:51.300000px;}
.yc3{bottom:57.780000px;}
.y98{bottom:57.810000px;}
.y9d{bottom:57.870000px;}
.yd2{bottom:57.900000px;}
.y3{bottom:58.140000px;}
.yfa{bottom:60.390000px;}
.yf3{bottom:60.750000px;}
.ya0{bottom:64.800000px;}
.y3c{bottom:64.980000px;}
.y2c{bottom:65.070000px;}
.y32{bottom:66.780000px;}
.y9c{bottom:71.640000px;}
.y103{bottom:71.670000px;}
.yf9{bottom:74.160000px;}
.yf2{bottom:74.520000px;}
.y3b{bottom:80.550000px;}
.y2b{bottom:82.350000px;}
.yb2{bottom:85.170000px;}
.y102{bottom:85.440000px;}
.yf8{bottom:87.930000px;}
.yf1{bottom:88.290000px;}
.y3a{bottom:96.030000px;}
.y31{bottom:97.860000px;}
.y101{bottom:99.210000px;}
.y2a{bottom:99.540000px;}
.yf0{bottom:102.150000px;}
.y41{bottom:106.200000px;}
.y39{bottom:111.510000px;}
.yb0{bottom:112.500000px;}
.y30{bottom:113.430000px;}
.y90{bottom:115.020000px;}
.yef{bottom:115.920000px;}
.yb3{bottom:116.580000px;}
.y29{bottom:116.820000px;}
.y48{bottom:120.690000px;}
.y80{bottom:124.020000px;}
.yea{bottom:126.090000px;}
.y2f{bottom:128.910000px;}
.yaf{bottom:129.690000px;}
.y8f{bottom:129.780000px;}
.ye9{bottom:132.210000px;}
.y28{bottom:134.100000px;}
.y47{bottom:136.260000px;}
.yff{bottom:140.850000px;}
.y7f{bottom:141.210000px;}
.y8e{bottom:144.270000px;}
.yae{bottom:146.970000px;}
.yb4{bottom:148.020000px;}
.ye8{bottom:149.490000px;}
.y27{bottom:151.290000px;}
.y46{bottom:152.100000px;}
.y7e{bottom:158.520000px;}
.y8d{bottom:158.880000px;}
.yad{bottom:164.280000px;}
.ybe{bottom:164.400000px;}
.ye7{bottom:166.800000px;}
.y26{bottom:168.570000px;}
.y45{bottom:169.320000px;}
.y7d{bottom:175.800000px;}
.yb5{bottom:179.430000px;}
.yac{bottom:181.470000px;}
.ye6{bottom:183.990000px;}
.y25{bottom:185.850000px;}
.y44{bottom:186.600000px;}
.y8c{bottom:187.230000px;}
.ybd{bottom:189.840000px;}
.y7c{bottom:192.990000px;}
.yab{bottom:198.750000px;}
.ye5{bottom:201.270000px;}
.y24{bottom:203.040000px;}
.y43{bottom:203.520000px;}
.y7b{bottom:210.270000px;}
.yb6{bottom:210.840000px;}
.ybc{bottom:215.310000px;}
.y8b{bottom:215.580000px;}
.yaa{bottom:216.030000px;}
.y18{bottom:216.840000px;}
.ye4{bottom:218.460000px;}
.y23{bottom:220.320000px;}
.y7a{bottom:227.460000px;}
.ya9{bottom:233.220000px;}
.ye3{bottom:235.740000px;}
.y22{bottom:237.600000px;}
.yb7{bottom:242.280000px;}
.y89{bottom:243.930000px;}
.y79{bottom:244.740000px;}
.ya8{bottom:247.980000px;}
.yf7{bottom:252.030000px;}
.ye2{bottom:253.020000px;}
.y21{bottom:254.790000px;}
.y78{bottom:262.020000px;}
.ye1{bottom:270.210000px;}
.y20{bottom:272.070000px;}
.y88{bottom:272.280000px;}
.yb8{bottom:273.690000px;}
.y77{bottom:279.210000px;}
.y87{bottom:286.770000px;}
.ye0{bottom:287.490000px;}
.y1f{bottom:289.350000px;}
.y76{bottom:296.490000px;}
.y86{bottom:301.350000px;}
.ydf{bottom:304.770000px;}
.yb9{bottom:305.100000px;}
.y1e{bottom:306.540000px;}
.y75{bottom:313.770000px;}
.ya6{bottom:317.730000px;}
.yde{bottom:321.960000px;}
.y1d{bottom:323.820000px;}
.y85{bottom:329.700000px;}
.y74{bottom:330.960000px;}
.y38{bottom:336.450000px;}
.yba{bottom:336.540000px;}
.ydd{bottom:339.240000px;}
.y1c{bottom:341.100000px;}
.y73{bottom:348.240000px;}
.yee{bottom:351.930000px;}
.ydc{bottom:356.520000px;}
.y82{bottom:358.050000px;}
.y1b{bottom:358.320000px;}
.y72{bottom:365.520000px;}
.ybb{bottom:367.950000px;}
.ydb{bottom:373.710000px;}
.y1a{bottom:375.600000px;}
.y71{bottom:382.710000px;}
.ya4{bottom:387.480000px;}
.y81{bottom:388.380000px;}
.yda{bottom:390.990000px;}
.y19{bottom:392.790000px;}
.y70{bottom:399.990000px;}
.yd9{bottom:408.270000px;}
.y6f{bottom:417.270000px;}
.yd8{bottom:425.460000px;}
.y6e{bottom:434.460000px;}
.yd7{bottom:442.740000px;}
.y6d{bottom:451.740000px;}
.yd6{bottom:460.020000px;}
.y36{bottom:461.370000px;}
.y6c{bottom:469.020000px;}
.y9b{bottom:471.000000px;}
.yd5{bottom:474.780000px;}
.yed{bottom:479.730000px;}
.y2e{bottom:482.160000px;}
.y6b{bottom:486.210000px;}
.yec{bottom:494.310000px;}
.y6a{bottom:503.490000px;}
.yd4{bottom:516.900000px;}
.y69{bottom:520.770000px;}
.y68{bottom:537.960000px;}
.yeb{bottom:550.290000px;}
.y94{bottom:554.610000px;}
.y67{bottom:555.240000px;}
.y66{bottom:572.430000px;}
.ycc{bottom:572.790000px;}
.y65{bottom:589.740000px;}
.y64{bottom:607.020000px;}
.y63{bottom:624.210000px;}
.y16{bottom:624.390000px;}
.y62{bottom:641.490000px;}
.y93{bottom:642.120000px;}
.ycb{bottom:642.570000px;}
.y61{bottom:658.770000px;}
.y15{bottom:659.040000px;}
.y92{bottom:672.630000px;}
.y60{bottom:675.960000px;}
.y14{bottom:678.930000px;}
.y91{bottom:686.400000px;}
.y5f{bottom:693.240000px;}
.yb1{bottom:697.590000px;}
.yca{bottom:698.550000px;}
.y5e{bottom:710.520000px;}
.y13{bottom:712.590000px;}
.y5d{bottom:727.710000px;}
.y12{bottom:729.780000px;}
.y5c{bottom:744.990000px;}
.y11{bottom:747.060000px;}
.yc9{bottom:754.530000px;}
.y10{bottom:759.480000px;}
.y5b{bottom:762.270000px;}
.y5a{bottom:779.460000px;}
.yf{bottom:780.000000px;}
.yc8{bottom:796.650000px;}
.y59{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y58{bottom:814.020000px;}
.y57{bottom:831.210000px;}
.yc7{bottom:838.770000px;}
.yd{bottom:839.310000px;}
.y56{bottom:848.490000px;}
.y55{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.yc5{bottom:880.980000px;}
.y54{bottom:882.960000px;}
.y53{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y52{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y51{bottom:934.710000px;}
.yc4{bottom:936.870000px;}
.y8{bottom:945.600000px;}
.y50{bottom:951.990000px;}
.y4f{bottom:969.180000px;}
.y4e{bottom:986.460000px;}
.yc1{bottom:992.880000px;}
.y4d{bottom:1003.770000px;}
.y4c{bottom:1020.960000px;}
.y4b{bottom:1038.240000px;}
.y4a{bottom:1055.520000px;}
.yc0{bottom:1064.610000px;}
.y49{bottom:1072.710000px;}
.ybf{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.770000px;}
.h1d{height:13.860000px;}
.h20{height:13.890000px;}
.h10{height:17.280000px;}
.h15{height:19.980000px;}
.h1b{height:26.068359px;}
.hd{height:27.147656px;}
.h1f{height:27.540000px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h1c{height:34.670918px;}
.h21{height:36.073652px;}
.h17{height:37.705078px;}
.h18{height:39.102539px;}
.h6{height:39.636738px;}
.h13{height:39.999023px;}
.h29{height:41.400000px;}
.h4{height:41.978320px;}
.hf{height:43.534160px;}
.h2c{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h1a{height:45.735820px;}
.h8{height:46.000195px;}
.h9{height:49.635176px;}
.h1{height:52.136719px;}
.hc{height:54.619980px;}
.h28{height:55.170000px;}
.h27{height:55.200000px;}
.h2a{height:55.260000px;}
.h26{height:68.940000px;}
.h22{height:68.970000px;}
.h24{height:69.030000px;}
.h2b{height:69.060000px;}
.hb{height:69.602520px;}
.he{height:75.410156px;}
.ha{height:78.205078px;}
.h23{height:82.800000px;}
.h2e{height:99.090000px;}
.h2f{height:110.370000px;}
.h19{height:118.800000px;}
.h16{height:124.110000px;}
.h2d{height:127.080000px;}
.h12{height:141.510000px;}
.h7{height:153.930000px;}
.h25{height:389.160000px;}
.h11{height:406.830000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w18{width:75.690000px;}
.w7{width:82.830000px;}
.w11{width:82.920000px;}
.w8{width:107.370000px;}
.w15{width:118.260000px;}
.w12{width:120.780000px;}
.w16{width:126.570000px;}
.w13{width:129.600000px;}
.w14{width:135.840000px;}
.we{width:140.670000px;}
.wa{width:147.090000px;}
.w9{width:157.770000px;}
.wd{width:170.670000px;}
.wf{width:195.060000px;}
.wc{width:208.920000px;}
.w6{width:220.350000px;}
.wb{width:285.330000px;}
.w19{width:324.390000px;}
.w17{width:400.800000px;}
.w5{width:588.480000px;}
.w10{width:727.200000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.660000px;}
.x3{left:8.640000px;}
.x25{left:10.530000px;}
.x33{left:11.700000px;}
.x3b{left:13.500000px;}
.x31{left:15.480000px;}
.x3c{left:17.280000px;}
.x20{left:18.540000px;}
.x12{left:20.160000px;}
.x2f{left:21.330000px;}
.x2b{left:22.680000px;}
.x23{left:24.570000px;}
.x34{left:26.370000px;}
.x16{left:27.630000px;}
.x2d{left:29.340000px;}
.x2e{left:31.140000px;}
.x32{left:32.670000px;}
.x14{left:34.110000px;}
.x15{left:36.090000px;}
.x28{left:37.260000px;}
.x3f{left:39.420000px;}
.x3d{left:40.770000px;}
.x4d{left:42.120000px;}
.x21{left:43.650000px;}
.x6{left:45.540000px;}
.x4c{left:47.160000px;}
.x3a{left:49.050000px;}
.x44{left:50.130000px;}
.x38{left:51.930000px;}
.x2{left:53.999986px;}
.x35{left:56.280000px;}
.x18{left:59.669986px;}
.x1{left:60.749986px;}
.x26{left:63.570000px;}
.x17{left:65.429986px;}
.x29{left:68.400000px;}
.x42{left:70.020000px;}
.x40{left:74.340000px;}
.xa{left:75.959986px;}
.x43{left:77.790000px;}
.x41{left:81.120000px;}
.x3e{left:82.830000px;}
.x4e{left:83.969986px;}
.x1c{left:88.199986px;}
.x45{left:98.190000px;}
.x4{left:100.890000px;}
.xe{left:105.839986px;}
.x5{left:107.999986px;}
.x2a{left:110.340000px;}
.x51{left:115.830000px;}
.x30{left:118.980000px;}
.x9{left:122.129986px;}
.x2c{left:124.650000px;}
.x10{left:146.699986px;}
.x52{left:152.370000px;}
.x1e{left:171.299986px;}
.x47{left:177.869986px;}
.x1f{left:183.900000px;}
.xf{left:200.819986px;}
.xd{left:220.979986px;}
.x22{left:291.990000px;}
.x48{left:305.400000px;}
.x36{left:309.900000px;}
.xb{left:366.239986px;}
.x49{left:435.720000px;}
.x24{left:450.570000px;}
.x8{left:459.029986px;}
.x1d{left:461.819986px;}
.xc{left:464.159986px;}
.x4f{left:475.529986px;}
.x19{left:478.229986px;}
.x1a{left:479.759986px;}
.x37{left:481.380000px;}
.x50{left:502.529986px;}
.x1b{left:506.759986px;}
.x46{left:535.920000px;}
.x53{left:557.880000px;}
.x4a{left:572.280000px;}
.x27{left:598.380000px;}
.x39{left:622.770000px;}
.x11{left:642.210000px;}
.x4b{left:691.260000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls7{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.064960pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.240000pt;}
.ls11{letter-spacing:14.583680pt;}
.lsb{letter-spacing:20.880000pt;}
.ls4{letter-spacing:32.823680pt;}
.ls9{letter-spacing:33.463680pt;}
.ls3{letter-spacing:36.576000pt;}
.lsf{letter-spacing:38.903680pt;}
.ls10{letter-spacing:41.143680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws8{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.223467pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.969387pt;}
._21{width:1.870400pt;}
._8{width:2.778880pt;}
._7{width:3.901120pt;}
._23{width:4.809600pt;}
._6{width:5.718080pt;}
._5{width:6.733440pt;}
._e{width:7.802240pt;}
._a{width:9.245120pt;}
._b{width:10.153600pt;}
._11{width:11.116907pt;}
._d{width:12.130880pt;}
._3c{width:13.702400pt;}
._c{width:14.642560pt;}
._9{width:15.657920pt;}
._19{width:16.940480pt;}
._16{width:18.490240pt;}
._17{width:19.612480pt;}
._1c{width:20.627840pt;}
._18{width:21.643200pt;}
._10{width:22.712000pt;}
._f{width:23.780800pt;}
._12{width:25.368213pt;}
._32{width:27.094080pt;}
._20{width:28.536960pt;}
._1f{width:29.498880pt;}
._27{width:30.667093pt;}
._29{width:31.583040pt;}
._1e{width:32.491520pt;}
._1a{width:33.774080pt;}
._1b{width:35.056640pt;}
._14{width:36.144000pt;}
._26{width:37.888960pt;}
._15{width:39.648000pt;}
._1d{width:41.095360pt;}
._37{width:42.110720pt;}
._24{width:43.019200pt;}
._28{width:44.782720pt;}
._3a{width:45.691200pt;}
._3b{width:46.706560pt;}
._34{width:47.828800pt;}
._22{width:49.004480pt;}
._25{width:49.912960pt;}
._31{width:50.821440pt;}
._33{width:51.783360pt;}
._36{width:52.959040pt;}
._2a{width:53.920960pt;}
._2b{width:55.096640pt;}
._39{width:57.715200pt;}
._30{width:58.784000pt;}
._35{width:62.738560pt;}
._2e{width:63.647040pt;}
._2f{width:64.983040pt;}
._38{width:81.330347pt;}
._2c{width:99.879360pt;}
._2d{width:100.787840pt;}
._13{width:107.952000pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._4{width:754.971093pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.yd3{bottom:2.426667pt;}
.y40{bottom:2.560000pt;}
.y42{bottom:2.640000pt;}
.y17{bottom:2.880000pt;}
.y100{bottom:4.160000pt;}
.yfe{bottom:4.560000pt;}
.yf6{bottom:4.960000pt;}
.y37{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y83{bottom:8.480000pt;}
.ycf{bottom:8.506667pt;}
.y9{bottom:12.480000pt;}
.y8a{bottom:14.560000pt;}
.y104{bottom:14.586667pt;}
.y5{bottom:14.640000pt;}
.yd1{bottom:14.666667pt;}
.y3f{bottom:16.400000pt;}
.yfd{bottom:16.880000pt;}
.y35{bottom:17.200000pt;}
.ya7{bottom:20.720000pt;}
.y97{bottom:20.746667pt;}
.ya3{bottom:20.800000pt;}
.yce{bottom:20.826667pt;}
.yc6{bottom:26.800000pt;}
.y9f{bottom:26.880000pt;}
.y9a{bottom:26.906667pt;}
.yfc{bottom:29.120000pt;}
.yf5{bottom:29.440000pt;}
.y3e{bottom:30.160000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.760000pt;}
.yc2{bottom:32.960000pt;}
.y96{bottom:32.986667pt;}
.ya2{bottom:33.040000pt;}
.ycd{bottom:33.066667pt;}
.ya5{bottom:39.120000pt;}
.y99{bottom:39.146667pt;}
.y9e{bottom:39.200000pt;}
.yd0{bottom:39.226667pt;}
.yfb{bottom:41.360000pt;}
.yf4{bottom:41.680000pt;}
.y2d{bottom:42.480000pt;}
.y3d{bottom:44.000000pt;}
.ya1{bottom:45.280000pt;}
.y95{bottom:45.306667pt;}
.y33{bottom:45.600000pt;}
.yc3{bottom:51.360000pt;}
.y98{bottom:51.386667pt;}
.y9d{bottom:51.440000pt;}
.yd2{bottom:51.466667pt;}
.y3{bottom:51.680000pt;}
.yfa{bottom:53.680000pt;}
.yf3{bottom:54.000000pt;}
.ya0{bottom:57.600000pt;}
.y3c{bottom:57.760000pt;}
.y2c{bottom:57.840000pt;}
.y32{bottom:59.360000pt;}
.y9c{bottom:63.680000pt;}
.y103{bottom:63.706667pt;}
.yf9{bottom:65.920000pt;}
.yf2{bottom:66.240000pt;}
.y3b{bottom:71.600000pt;}
.y2b{bottom:73.200000pt;}
.yb2{bottom:75.706667pt;}
.y102{bottom:75.946667pt;}
.yf8{bottom:78.160000pt;}
.yf1{bottom:78.480000pt;}
.y3a{bottom:85.360000pt;}
.y31{bottom:86.986667pt;}
.y101{bottom:88.186667pt;}
.y2a{bottom:88.480000pt;}
.yf0{bottom:90.800000pt;}
.y41{bottom:94.400000pt;}
.y39{bottom:99.120000pt;}
.yb0{bottom:100.000000pt;}
.y30{bottom:100.826667pt;}
.y90{bottom:102.240000pt;}
.yef{bottom:103.040000pt;}
.yb3{bottom:103.626667pt;}
.y29{bottom:103.840000pt;}
.y48{bottom:107.280000pt;}
.y80{bottom:110.240000pt;}
.yea{bottom:112.080000pt;}
.y2f{bottom:114.586667pt;}
.yaf{bottom:115.280000pt;}
.y8f{bottom:115.360000pt;}
.ye9{bottom:117.520000pt;}
.y28{bottom:119.200000pt;}
.y47{bottom:121.120000pt;}
.yff{bottom:125.200000pt;}
.y7f{bottom:125.520000pt;}
.y8e{bottom:128.240000pt;}
.yae{bottom:130.640000pt;}
.yb4{bottom:131.573333pt;}
.ye8{bottom:132.880000pt;}
.y27{bottom:134.480000pt;}
.y46{bottom:135.200000pt;}
.y7e{bottom:140.906667pt;}
.y8d{bottom:141.226667pt;}
.yad{bottom:146.026667pt;}
.ybe{bottom:146.133333pt;}
.ye7{bottom:148.266667pt;}
.y26{bottom:149.840000pt;}
.y45{bottom:150.506667pt;}
.y7d{bottom:156.266667pt;}
.yb5{bottom:159.493333pt;}
.yac{bottom:161.306667pt;}
.ye6{bottom:163.546667pt;}
.y25{bottom:165.200000pt;}
.y44{bottom:165.866667pt;}
.y8c{bottom:166.426667pt;}
.ybd{bottom:168.746667pt;}
.y7c{bottom:171.546667pt;}
.yab{bottom:176.666667pt;}
.ye5{bottom:178.906667pt;}
.y24{bottom:180.480000pt;}
.y43{bottom:180.906667pt;}
.y7b{bottom:186.906667pt;}
.yb6{bottom:187.413333pt;}
.ybc{bottom:191.386667pt;}
.y8b{bottom:191.626667pt;}
.yaa{bottom:192.026667pt;}
.y18{bottom:192.746667pt;}
.ye4{bottom:194.186667pt;}
.y23{bottom:195.840000pt;}
.y7a{bottom:202.186667pt;}
.ya9{bottom:207.306667pt;}
.ye3{bottom:209.546667pt;}
.y22{bottom:211.200000pt;}
.yb7{bottom:215.360000pt;}
.y89{bottom:216.826667pt;}
.y79{bottom:217.546667pt;}
.ya8{bottom:220.426667pt;}
.yf7{bottom:224.026667pt;}
.ye2{bottom:224.906667pt;}
.y21{bottom:226.480000pt;}
.y78{bottom:232.906667pt;}
.ye1{bottom:240.186667pt;}
.y20{bottom:241.840000pt;}
.y88{bottom:242.026667pt;}
.yb8{bottom:243.280000pt;}
.y77{bottom:248.186667pt;}
.y87{bottom:254.906667pt;}
.ye0{bottom:255.546667pt;}
.y1f{bottom:257.200000pt;}
.y76{bottom:263.546667pt;}
.y86{bottom:267.866667pt;}
.ydf{bottom:270.906667pt;}
.yb9{bottom:271.200000pt;}
.y1e{bottom:272.480000pt;}
.y75{bottom:278.906667pt;}
.ya6{bottom:282.426667pt;}
.yde{bottom:286.186667pt;}
.y1d{bottom:287.840000pt;}
.y85{bottom:293.066667pt;}
.y74{bottom:294.186667pt;}
.y38{bottom:299.066667pt;}
.yba{bottom:299.146667pt;}
.ydd{bottom:301.546667pt;}
.y1c{bottom:303.200000pt;}
.y73{bottom:309.546667pt;}
.yee{bottom:312.826667pt;}
.ydc{bottom:316.906667pt;}
.y82{bottom:318.266667pt;}
.y1b{bottom:318.506667pt;}
.y72{bottom:324.906667pt;}
.ybb{bottom:327.066667pt;}
.ydb{bottom:332.186667pt;}
.y1a{bottom:333.866667pt;}
.y71{bottom:340.186667pt;}
.ya4{bottom:344.426667pt;}
.y81{bottom:345.226667pt;}
.yda{bottom:347.546667pt;}
.y19{bottom:349.146667pt;}
.y70{bottom:355.546667pt;}
.yd9{bottom:362.906667pt;}
.y6f{bottom:370.906667pt;}
.yd8{bottom:378.186667pt;}
.y6e{bottom:386.186667pt;}
.yd7{bottom:393.546667pt;}
.y6d{bottom:401.546667pt;}
.yd6{bottom:408.906667pt;}
.y36{bottom:410.106667pt;}
.y6c{bottom:416.906667pt;}
.y9b{bottom:418.666667pt;}
.yd5{bottom:422.026667pt;}
.yed{bottom:426.426667pt;}
.y2e{bottom:428.586667pt;}
.y6b{bottom:432.186667pt;}
.yec{bottom:439.386667pt;}
.y6a{bottom:447.546667pt;}
.yd4{bottom:459.466667pt;}
.y69{bottom:462.906667pt;}
.y68{bottom:478.186667pt;}
.yeb{bottom:489.146667pt;}
.y94{bottom:492.986667pt;}
.y67{bottom:493.546667pt;}
.y66{bottom:508.826667pt;}
.ycc{bottom:509.146667pt;}
.y65{bottom:524.213333pt;}
.y64{bottom:539.573333pt;}
.y63{bottom:554.853333pt;}
.y16{bottom:555.013333pt;}
.y62{bottom:570.213333pt;}
.y93{bottom:570.773333pt;}
.ycb{bottom:571.173333pt;}
.y61{bottom:585.573333pt;}
.y15{bottom:585.813333pt;}
.y92{bottom:597.893333pt;}
.y60{bottom:600.853333pt;}
.y14{bottom:603.493333pt;}
.y91{bottom:610.133333pt;}
.y5f{bottom:616.213333pt;}
.yb1{bottom:620.080000pt;}
.yca{bottom:620.933333pt;}
.y5e{bottom:631.573333pt;}
.y13{bottom:633.413333pt;}
.y5d{bottom:646.853333pt;}
.y12{bottom:648.693333pt;}
.y5c{bottom:662.213333pt;}
.y11{bottom:664.053333pt;}
.yc9{bottom:670.693333pt;}
.y10{bottom:675.093333pt;}
.y5b{bottom:677.573333pt;}
.y5a{bottom:692.853333pt;}
.yf{bottom:693.333333pt;}
.yc8{bottom:708.133333pt;}
.y59{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y58{bottom:723.573333pt;}
.y57{bottom:738.853333pt;}
.yc7{bottom:745.573333pt;}
.yd{bottom:746.053333pt;}
.y56{bottom:754.213333pt;}
.y55{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.yc5{bottom:783.093333pt;}
.y54{bottom:784.853333pt;}
.y53{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y52{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y51{bottom:830.853333pt;}
.yc4{bottom:832.773333pt;}
.y8{bottom:840.533333pt;}
.y50{bottom:846.213333pt;}
.y4f{bottom:861.493333pt;}
.y4e{bottom:876.853333pt;}
.yc1{bottom:882.560000pt;}
.y4d{bottom:892.240000pt;}
.y4c{bottom:907.520000pt;}
.y4b{bottom:922.880000pt;}
.y4a{bottom:938.240000pt;}
.yc0{bottom:946.320000pt;}
.y49{bottom:953.520000pt;}
.ybf{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.240000pt;}
.h1d{height:12.320000pt;}
.h20{height:12.346667pt;}
.h10{height:15.360000pt;}
.h15{height:17.760000pt;}
.h1b{height:23.171875pt;}
.hd{height:24.131250pt;}
.h1f{height:24.480000pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h1c{height:30.818594pt;}
.h21{height:32.065469pt;}
.h17{height:33.515625pt;}
.h18{height:34.757812pt;}
.h6{height:35.232656pt;}
.h13{height:35.554688pt;}
.h29{height:36.800000pt;}
.h4{height:37.314062pt;}
.hf{height:38.697031pt;}
.h2c{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h1a{height:40.654062pt;}
.h8{height:40.889062pt;}
.h9{height:44.120156pt;}
.h1{height:46.343750pt;}
.hc{height:48.551094pt;}
.h28{height:49.040000pt;}
.h27{height:49.066667pt;}
.h2a{height:49.120000pt;}
.h26{height:61.280000pt;}
.h22{height:61.306667pt;}
.h24{height:61.360000pt;}
.h2b{height:61.386667pt;}
.hb{height:61.868906pt;}
.he{height:67.031250pt;}
.ha{height:69.515625pt;}
.h23{height:73.600000pt;}
.h2e{height:88.080000pt;}
.h2f{height:98.106667pt;}
.h19{height:105.600000pt;}
.h16{height:110.320000pt;}
.h2d{height:112.960000pt;}
.h12{height:125.786667pt;}
.h7{height:136.826667pt;}
.h25{height:345.920000pt;}
.h11{height:361.626667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w18{width:67.280000pt;}
.w7{width:73.626667pt;}
.w11{width:73.706667pt;}
.w8{width:95.440000pt;}
.w15{width:105.120000pt;}
.w12{width:107.360000pt;}
.w16{width:112.506667pt;}
.w13{width:115.200000pt;}
.w14{width:120.746667pt;}
.we{width:125.040000pt;}
.wa{width:130.746667pt;}
.w9{width:140.240000pt;}
.wd{width:151.706667pt;}
.wf{width:173.386667pt;}
.wc{width:185.706667pt;}
.w6{width:195.866667pt;}
.wb{width:253.626667pt;}
.w19{width:288.346667pt;}
.w17{width:356.266667pt;}
.w5{width:523.093333pt;}
.w10{width:646.400000pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.920000pt;}
.x3{left:7.680000pt;}
.x25{left:9.360000pt;}
.x33{left:10.400000pt;}
.x3b{left:12.000000pt;}
.x31{left:13.760000pt;}
.x3c{left:15.360000pt;}
.x20{left:16.480000pt;}
.x12{left:17.920000pt;}
.x2f{left:18.960000pt;}
.x2b{left:20.160000pt;}
.x23{left:21.840000pt;}
.x34{left:23.440000pt;}
.x16{left:24.560000pt;}
.x2d{left:26.080000pt;}
.x2e{left:27.680000pt;}
.x32{left:29.040000pt;}
.x14{left:30.320000pt;}
.x15{left:32.080000pt;}
.x28{left:33.120000pt;}
.x3f{left:35.040000pt;}
.x3d{left:36.240000pt;}
.x4d{left:37.440000pt;}
.x21{left:38.800000pt;}
.x6{left:40.480000pt;}
.x4c{left:41.920000pt;}
.x3a{left:43.600000pt;}
.x44{left:44.560000pt;}
.x38{left:46.160000pt;}
.x2{left:47.999988pt;}
.x35{left:50.026667pt;}
.x18{left:53.039988pt;}
.x1{left:53.999988pt;}
.x26{left:56.506667pt;}
.x17{left:58.159988pt;}
.x29{left:60.800000pt;}
.x42{left:62.240000pt;}
.x40{left:66.080000pt;}
.xa{left:67.519988pt;}
.x43{left:69.146667pt;}
.x41{left:72.106667pt;}
.x3e{left:73.626667pt;}
.x4e{left:74.639988pt;}
.x1c{left:78.399988pt;}
.x45{left:87.280000pt;}
.x4{left:89.680000pt;}
.xe{left:94.079988pt;}
.x5{left:95.999988pt;}
.x2a{left:98.080000pt;}
.x51{left:102.960000pt;}
.x30{left:105.760000pt;}
.x9{left:108.559988pt;}
.x2c{left:110.800000pt;}
.x10{left:130.399988pt;}
.x52{left:135.440000pt;}
.x1e{left:152.266655pt;}
.x47{left:158.106655pt;}
.x1f{left:163.466667pt;}
.xf{left:178.506655pt;}
.xd{left:196.426655pt;}
.x22{left:259.546667pt;}
.x48{left:271.466667pt;}
.x36{left:275.466667pt;}
.xb{left:325.546655pt;}
.x49{left:387.306667pt;}
.x24{left:400.506667pt;}
.x8{left:408.026655pt;}
.x1d{left:410.506655pt;}
.xc{left:412.586655pt;}
.x4f{left:422.693321pt;}
.x19{left:425.093321pt;}
.x1a{left:426.453321pt;}
.x37{left:427.893333pt;}
.x50{left:446.693321pt;}
.x1b{left:450.453321pt;}
.x46{left:476.373333pt;}
.x53{left:495.893333pt;}
.x4a{left:508.693333pt;}
.x27{left:531.893333pt;}
.x39{left:553.573333pt;}
.x11{left:570.853333pt;}
.x4b{left:614.453333pt;}
.x7{left:722.160000pt;}
}




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