
    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_44a73e20da5b1f8600fe0f17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_f86e99fcf3127eefe8d9d7b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e1ca2f257ead10b68835fb11.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.799805;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_b8e52c918f515a01d41dfadd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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:-41.400000px;}
.va{vertical-align:-37.800000px;}
.vb{vertical-align:-34.200000px;}
.v6{vertical-align:-28.200000px;}
.v5{vertical-align:-27.000000px;}
.v3{vertical-align:-25.200000px;}
.v7{vertical-align:-24.000000px;}
.v4{vertical-align:-21.600000px;}
.v8{vertical-align:-19.200000px;}
.v2{vertical-align:-13.200000px;}
.vd{vertical-align:-9.600000px;}
.vc{vertical-align:-4.200000px;}
.vf{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:4.800000px;}
.v9{vertical-align:22.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.135600px;}
.ls19{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.156000px;}
.ls21{letter-spacing:0.255600px;}
.ls23{letter-spacing:0.639000px;}
.ls1e{letter-spacing:36.180000px;}
.ls1b{letter-spacing:39.240000px;}
.ls12{letter-spacing:55.800000px;}
.ls15{letter-spacing:81.000000px;}
.ls14{letter-spacing:86.400000px;}
.ls20{letter-spacing:89.670000px;}
.ls4{letter-spacing:90.000000px;}
.ls24{letter-spacing:92.190000px;}
.ls11{letter-spacing:100.800000px;}
.ls8{letter-spacing:105.600000px;}
.lsd{letter-spacing:110.400000px;}
.ls6{letter-spacing:113.400000px;}
.lsa{letter-spacing:115.200000px;}
.ls3{letter-spacing:118.200000px;}
.lse{letter-spacing:121.171200px;}
.ls13{letter-spacing:124.200000px;}
.ls1d{letter-spacing:127.800000px;}
.ls7{letter-spacing:139.200000px;}
.lsf{letter-spacing:141.600000px;}
.lsc{letter-spacing:145.200000px;}
.ls5{letter-spacing:148.800000px;}
.ls9{letter-spacing:151.800000px;}
.ls10{letter-spacing:155.920800px;}
.lsb{letter-spacing:156.000000px;}
.ls26{letter-spacing:163.800000px;}
.ls1f{letter-spacing:165.000000px;}
.ls22{letter-spacing:174.900000px;}
.ls1c{letter-spacing:176.400000px;}
.ls25{letter-spacing:180.900000px;}
.ls17{letter-spacing:183.000000px;}
.ls2{letter-spacing:186.600000px;}
.ls18{letter-spacing:195.000000px;}
.ls1a{letter-spacing:196.200000px;}
.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;}
}
.ws2{word-spacing:-46.536000px;}
.ws3{word-spacing:-43.368000px;}
.ws0{word-spacing:-43.212000px;}
.wsb{word-spacing:-39.888000px;}
.wsd{word-spacing:-36.730200px;}
.ws7{word-spacing:-34.902000px;}
.ws5{word-spacing:-34.071000px;}
.wsc{word-spacing:-33.572400px;}
.ws8{word-spacing:-33.240000px;}
.ws6{word-spacing:-31.910400px;}
.ws9{word-spacing:-29.085000px;}
.ws4{word-spacing:-27.256800px;}
.wsa{word-spacing:-25.594800px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.440000px;}
._1{width:1.404000px;}
._3{width:2.443200px;}
._4{width:3.681000px;}
._5{width:4.716000px;}
._2{width:1229.484000px;}
.fc2{color:rgb(204,204,255);}
.fc1{color:rgb(126,0,33);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:40.200000px;}
.fs7{font-size:43.800000px;}
.fs13{font-size:46.200000px;}
.fsb{font-size:51.600000px;}
.fs11{font-size:52.800000px;}
.fs9{font-size:54.600000px;}
.fsd{font-size:56.400000px;}
.fsf{font-size:57.600000px;}
.fs1b{font-size:60.600000px;}
.fs18{font-size:64.800000px;}
.fs5{font-size:70.200000px;}
.fs17{font-size:92.400000px;}
.fs6{font-size:98.400000px;}
.fs15{font-size:99.600000px;}
.fs14{font-size:105.000000px;}
.fs0{font-size:108.000000px;}
.fs12{font-size:114.000000px;}
.fsa{font-size:115.200000px;}
.fs10{font-size:120.000000px;}
.fs1d{font-size:121.200000px;}
.fs8{font-size:123.000000px;}
.fsc{font-size:126.000000px;}
.fs1e{font-size:127.800000px;}
.fse{font-size:129.600000px;}
.fs1f{font-size:132.600000px;}
.fs1c{font-size:135.600000px;}
.fs19{font-size:144.000000px;}
.fs1a{font-size:146.400000px;}
.fs2{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.fs4{font-size:192.000000px;}
.fs1{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:13.800000px;}
.y56{bottom:16.500000px;}
.y10a{bottom:33.450000px;}
.y1{bottom:39.900000px;}
.yfd{bottom:41.700000px;}
.y64{bottom:50.700000px;}
.ya5{bottom:53.400000px;}
.ye3{bottom:57.750000px;}
.y9c{bottom:60.300000px;}
.y4{bottom:60.600000px;}
.yf0{bottom:61.200000px;}
.y55{bottom:62.400000px;}
.y7a{bottom:70.950000px;}
.yfc{bottom:80.100000px;}
.y109{bottom:82.200000px;}
.y24{bottom:84.150000px;}
.y8a{bottom:88.050000px;}
.y63{bottom:92.700000px;}
.ya9{bottom:96.600000px;}
.ye2{bottom:96.750000px;}
.y6c{bottom:97.200000px;}
.ya4{bottom:99.000000px;}
.y54{bottom:101.550000px;}
.y9b{bottom:102.000000px;}
.y79{bottom:102.450000px;}
.yef{bottom:107.400000px;}
.y23{bottom:116.850000px;}
.y3d{bottom:120.900000px;}
.y108{bottom:121.950000px;}
.y89{bottom:123.450000px;}
.y114{bottom:124.050000px;}
.y30{bottom:125.700000px;}
.yfb{bottom:129.150000px;}
.y62{bottom:129.600000px;}
.y78{bottom:138.750000px;}
.yc1{bottom:140.250000px;}
.y53{bottom:140.400000px;}
.ya8{bottom:142.200000px;}
.yee{bottom:142.500000px;}
.y6b{bottom:144.000000px;}
.ye1{bottom:144.750000px;}
.y48{bottom:145.200000px;}
.yb9{bottom:147.600000px;}
.y88{bottom:149.850000px;}
.ya3{bottom:150.300000px;}
.yae{bottom:151.500000px;}
.y22{bottom:151.800000px;}
.y9a{bottom:159.900000px;}
.y3c{bottom:162.150000px;}
.y107{bottom:162.300000px;}
.y2f{bottom:168.900000px;}
.yd7{bottom:169.650000px;}
.y61{bottom:171.600000px;}
.yd1{bottom:174.000000px;}
.y77{bottom:176.700000px;}
.y52{bottom:179.250000px;}
.ye0{bottom:183.750000px;}
.y87{bottom:184.200000px;}
.yc0{bottom:185.700000px;}
.y14{bottom:186.300000px;}
.y21{bottom:186.900000px;}
.yed{bottom:187.500000px;}
.y47{bottom:189.750000px;}
.yb8{bottom:190.800000px;}
.ya2{bottom:193.500000px;}
.y6a{bottom:201.150000px;}
.y3b{bottom:203.250000px;}
.yad{bottom:204.300000px;}
.y60{bottom:208.500000px;}
.y76{bottom:210.000000px;}
.y106{bottom:211.050000px;}
.yd6{bottom:212.850000px;}
.y2e{bottom:213.000000px;}
.yd0{bottom:217.200000px;}
.y86{bottom:218.550000px;}
.y20{bottom:219.600000px;}
.yfa{bottom:224.400000px;}
.y10e{bottom:224.700000px;}
.y51{bottom:225.150000px;}
.y46{bottom:228.150000px;}
.ydf{bottom:229.350000px;}
.y113{bottom:230.700000px;}
.yec{bottom:232.650000px;}
.y13{bottom:233.100000px;}
.ya1{bottom:236.700000px;}
.ybf{bottom:237.000000px;}
.ya7{bottom:239.100000px;}
.yb7{bottom:243.450000px;}
.y99{bottom:243.900000px;}
.y3a{bottom:244.500000px;}
.y5f{bottom:250.500000px;}
.y105{bottom:251.250000px;}
.y1f{bottom:252.300000px;}
.y85{bottom:252.750000px;}
.y75{bottom:255.000000px;}
.y69{bottom:255.300000px;}
.y92{bottom:256.800000px;}
.y2d{bottom:256.950000px;}
.yd5{bottom:258.300000px;}
.ycf{bottom:269.850000px;}
.y10d{bottom:270.150000px;}
.y50{bottom:271.350000px;}
.yc5{bottom:271.800000px;}
.yf9{bottom:272.100000px;}
.y45{bottom:272.700000px;}
.yde{bottom:274.800000px;}
.y112{bottom:276.150000px;}
.yeb{bottom:277.650000px;}
.yac{bottom:279.900000px;}
.y39{bottom:281.400000px;}
.ya0{bottom:282.300000px;}
.ybe{bottom:282.600000px;}
.y98{bottom:285.450000px;}
.y84{bottom:287.100000px;}
.y1e{bottom:287.250000px;}
.yb6{bottom:289.200000px;}
.ya6{bottom:290.400000px;}
.y74{bottom:293.100000px;}
.y5e{bottom:293.400000px;}
.y104{bottom:300.600000px;}
.y12{bottom:300.750000px;}
.y2c{bottom:302.100000px;}
.yc8{bottom:309.450000px;}
.y8f{bottom:309.600000px;}
.yf8{bottom:310.500000px;}
.y68{bottom:311.100000px;}
.yd4{bottom:312.000000px;}
.ydd{bottom:313.800000px;}
.yce{bottom:315.600000px;}
.y38{bottom:315.900000px;}
.yc4{bottom:317.250000px;}
.y44{bottom:317.850000px;}
.y4f{bottom:318.900000px;}
.yb1{bottom:320.400000px;}
.y83{bottom:321.450000px;}
.y1d{bottom:322.350000px;}
.yea{bottom:323.850000px;}
.yab{bottom:325.500000px;}
.y111{bottom:327.450000px;}
.y73{bottom:331.200000px;}
.ybd{bottom:333.900000px;}
.y97{bottom:334.950000px;}
.y5d{bottom:336.300000px;}
.y2b{bottom:339.750000px;}
.yb5{bottom:341.850000px;}
.y9f{bottom:343.200000px;}
.y103{bottom:350.700000px;}
.y82{bottom:355.800000px;}
.y37{bottom:355.950000px;}
.y1c{bottom:357.450000px;}
.y11{bottom:357.900000px;}
.ye9{bottom:358.950000px;}
.yf7{bottom:359.550000px;}
.yf1{bottom:361.050000px;}
.ya{bottom:361.950000px;}
.ydc{bottom:362.100000px;}
.yc7{bottom:363.150000px;}
.yb0{bottom:363.600000px;}
.y43{bottom:364.050000px;}
.y72{bottom:364.500000px;}
.y8e{bottom:364.800000px;}
.y4e{bottom:365.100000px;}
.y67{bottom:365.400000px;}
.yd3{bottom:365.700000px;}
.y91{bottom:367.200000px;}
.ycd{bottom:368.250000px;}
.yc3{bottom:370.950000px;}
.y110{bottom:373.050000px;}
.y10c{bottom:374.550000px;}
.y5c{bottom:379.200000px;}
.ybc{bottom:379.500000px;}
.y2a{bottom:382.950000px;}
.y96{bottom:384.000000px;}
.yaa{bottom:386.400000px;}
.yb4{bottom:387.450000px;}
.y81{bottom:390.150000px;}
.y102{bottom:391.050000px;}
.y36{bottom:391.800000px;}
.y1b{bottom:392.400000px;}
.yf6{bottom:397.950000px;}
.y71{bottom:400.650000px;}
.ye8{bottom:403.950000px;}
.ydb{bottom:408.900000px;}
.y42{bottom:409.200000px;}
.y90{bottom:410.400000px;}
.y4d{bottom:411.450000px;}
.y10{bottom:415.200000px;}
.yc6{bottom:416.700000px;}
.y9e{bottom:418.800000px;}
.yd2{bottom:419.400000px;}
.y66{bottom:419.700000px;}
.y8d{bottom:419.850000px;}
.y9{bottom:420.750000px;}
.y5b{bottom:420.900000px;}
.yc2{bottom:422.250000px;}
.ycc{bottom:423.450000px;}
.y80{bottom:424.350000px;}
.y10b{bottom:425.850000px;}
.y29{bottom:426.900000px;}
.y1a{bottom:427.500000px;}
.yb3{bottom:430.650000px;}
.ybb{bottom:430.800000px;}
.y35{bottom:431.700000px;}
.y70{bottom:434.400000px;}
.y95{bottom:435.900000px;}
.yf5{bottom:436.350000px;}
.y101{bottom:441.150000px;}
.y3{bottom:447.600000px;}
.yda{bottom:447.750000px;}
.ye7{bottom:448.950000px;}
.y4c{bottom:450.600000px;}
.y41{bottom:454.200000px;}
.y5a{bottom:462.750000px;}
.y19{bottom:463.350000px;}
.y7f{bottom:464.400000px;}
.y28{bottom:465.750000px;}
.y9d{bottom:471.450000px;}
.yf{bottom:472.350000px;}
.y34{bottom:472.950000px;}
.y65{bottom:473.850000px;}
.y8c{bottom:475.050000px;}
.ycb{bottom:478.650000px;}
.y8{bottom:479.550000px;}
.y100{bottom:481.500000px;}
.yb2{bottom:483.450000px;}
.yba{bottom:483.600000px;}
.yf4{bottom:485.250000px;}
.yd9{bottom:486.750000px;}
.ye6{bottom:493.950000px;}
.y7e{bottom:495.150000px;}
.y18{bottom:496.050000px;}
.y4b{bottom:496.500000px;}
.y40{bottom:499.350000px;}
.y27{bottom:502.650000px;}
.y59{bottom:504.450000px;}
.y33{bottom:509.850000px;}
.y6f{bottom:517.050000px;}
.y2{bottom:519.600000px;}
.yca{bottom:524.250000px;}
.y17{bottom:525.600000px;}
.y10f{bottom:526.650000px;}
.y7d{bottom:527.250000px;}
.ye{bottom:529.650000px;}
.yaf{bottom:529.800000px;}
.y8b{bottom:530.250000px;}
.yff{bottom:531.600000px;}
.yd8{bottom:533.550000px;}
.yf3{bottom:534.450000px;}
.y94{bottom:535.050000px;}
.y7{bottom:538.200000px;}
.ye5{bottom:538.950000px;}
.y4a{bottom:542.700000px;}
.y3f{bottom:544.350000px;}
.y26{bottom:545.850000px;}
.y58{bottom:547.350000px;}
.y32{bottom:549.750000px;}
.y6e{bottom:553.350000px;}
.y7c{bottom:558.000000px;}
.y16{bottom:558.300000px;}
.yd{bottom:576.450000px;}
.y93{bottom:578.850000px;}
.yc9{bottom:579.450000px;}
.yfe{bottom:582.300000px;}
.y49{bottom:583.050000px;}
.yf2{bottom:583.500000px;}
.y3e{bottom:583.950000px;}
.y25{bottom:584.700000px;}
.ye4{bottom:585.300000px;}
.y57{bottom:585.450000px;}
.y31{bottom:586.650000px;}
.y6d{bottom:587.100000px;}
.y7b{bottom:590.550000px;}
.y15{bottom:591.000000px;}
.yc{bottom:663.450000px;}
.y6{bottom:693.450000px;}
.yb{bottom:721.050000px;}
.h2b{height:59.632617px;}
.h14{height:62.268750px;}
.h26{height:62.882520px;}
.h20{height:63.363281px;}
.h29{height:63.482520px;}
.ha{height:63.723047px;}
.hc{height:64.323047px;}
.h18{height:64.731445px;}
.h1e{height:66.152344px;}
.h12{height:68.456250px;}
.h21{height:69.808594px;}
.h10{height:70.353809px;}
.h22{height:70.408594px;}
.he{height:70.953809px;}
.h16{height:71.499023px;}
.h9{height:71.637891px;}
.h33{height:71.803711px;}
.h17{height:72.099023px;}
.h24{height:72.172266px;}
.h2c{height:72.232617px;}
.h2a{height:72.511523px;}
.h1c{height:72.513281px;}
.h1b{height:73.113281px;}
.h30{height:74.170313px;}
.h2f{height:74.770312px;}
.hb{height:76.923047px;}
.h8{height:79.951172px;}
.h7{height:80.551172px;}
.h27{height:82.082520px;}
.h25{height:82.995117px;}
.h11{height:83.868750px;}
.h1{height:84.427734px;}
.h1f{height:87.363281px;}
.h28{height:89.118164px;}
.hd{height:89.547363px;}
.h13{height:90.056250px;}
.h15{height:91.731445px;}
.h23{height:93.808594px;}
.h1a{height:94.352344px;}
.h2e{height:94.432617px;}
.h3a{height:94.746680px;}
.h2d{height:95.032617px;}
.hf{height:96.153809px;}
.h19{height:98.499023px;}
.h3c{height:98.946680px;}
.h3b{height:99.546680px;}
.h3d{height:99.906152px;}
.h3e{height:100.506152px;}
.h39{height:100.713281px;}
.h40{height:101.258496px;}
.h1d{height:101.313281px;}
.h35{height:101.803711px;}
.h36{height:102.970313px;}
.h37{height:103.570312px;}
.h3f{height:103.658496px;}
.h38{height:104.835938px;}
.h34{height:106.003711px;}
.h32{height:106.583203px;}
.h31{height:112.570312px;}
.h5{height:113.572266px;}
.h3{height:121.951172px;}
.h4{height:122.308594px;}
.h6{height:139.781250px;}
.h2{height:174.726562px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x22{left:33.750000px;}
.x4{left:56.850000px;}
.x6{left:64.650000px;}
.x9{left:67.350000px;}
.x29{left:69.750000px;}
.x28{left:72.300000px;}
.x33{left:74.400000px;}
.x2e{left:77.400000px;}
.x2f{left:98.550000px;}
.x25{left:100.800000px;}
.x34{left:122.400000px;}
.x5{left:126.150000px;}
.x30{left:129.000000px;}
.x37{left:131.250000px;}
.xc{left:132.600000px;}
.x2b{left:139.800000px;}
.x2d{left:142.200000px;}
.x2{left:145.350000px;}
.x1b{left:147.750000px;}
.xf{left:149.850000px;}
.x15{left:152.100000px;}
.x18{left:154.200000px;}
.xa{left:172.650000px;}
.x35{left:178.800000px;}
.x23{left:189.450000px;}
.x12{left:192.150000px;}
.x2a{left:195.900000px;}
.xd{left:200.700000px;}
.x2c{left:206.550000px;}
.x13{left:224.400000px;}
.x24{left:226.200000px;}
.x1c{left:230.850000px;}
.xe{left:234.150000px;}
.x10{left:235.200000px;}
.xb{left:236.850000px;}
.x16{left:239.550000px;}
.x19{left:243.900000px;}
.x38{left:247.950000px;}
.x14{left:263.700000px;}
.x1e{left:271.650000px;}
.x11{left:277.200000px;}
.x1f{left:280.650000px;}
.x17{left:282.450000px;}
.x1a{left:287.850000px;}
.x39{left:301.500000px;}
.x1d{left:314.100000px;}
.x31{left:323.550000px;}
.x8{left:325.050000px;}
.x36{left:331.050000px;}
.x3{left:345.150000px;}
.x26{left:348.900000px;}
.x32{left:371.700000px;}
.x20{left:388.650000px;}
.x7{left:405.600000px;}
.x21{left:441.600000px;}
.x27{left:699.750000px;}
.x1{left:784.500000px;}
@media print{
.v1{vertical-align:-36.800000pt;}
.va{vertical-align:-33.600000pt;}
.vb{vertical-align:-30.400000pt;}
.v6{vertical-align:-25.066667pt;}
.v5{vertical-align:-24.000000pt;}
.v3{vertical-align:-22.400000pt;}
.v7{vertical-align:-21.333333pt;}
.v4{vertical-align:-19.200000pt;}
.v8{vertical-align:-17.066667pt;}
.v2{vertical-align:-11.733333pt;}
.vd{vertical-align:-8.533333pt;}
.vc{vertical-align:-3.733333pt;}
.vf{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:4.266667pt;}
.v9{vertical-align:20.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.120533pt;}
.ls19{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.138667pt;}
.ls21{letter-spacing:0.227200pt;}
.ls23{letter-spacing:0.568000pt;}
.ls1e{letter-spacing:32.160000pt;}
.ls1b{letter-spacing:34.880000pt;}
.ls12{letter-spacing:49.600000pt;}
.ls15{letter-spacing:72.000000pt;}
.ls14{letter-spacing:76.800000pt;}
.ls20{letter-spacing:79.706667pt;}
.ls4{letter-spacing:80.000000pt;}
.ls24{letter-spacing:81.946667pt;}
.ls11{letter-spacing:89.600000pt;}
.ls8{letter-spacing:93.866667pt;}
.lsd{letter-spacing:98.133333pt;}
.ls6{letter-spacing:100.800000pt;}
.lsa{letter-spacing:102.400000pt;}
.ls3{letter-spacing:105.066667pt;}
.lse{letter-spacing:107.707733pt;}
.ls13{letter-spacing:110.400000pt;}
.ls1d{letter-spacing:113.600000pt;}
.ls7{letter-spacing:123.733333pt;}
.lsf{letter-spacing:125.866667pt;}
.lsc{letter-spacing:129.066667pt;}
.ls5{letter-spacing:132.266667pt;}
.ls9{letter-spacing:134.933333pt;}
.ls10{letter-spacing:138.596267pt;}
.lsb{letter-spacing:138.666667pt;}
.ls26{letter-spacing:145.600000pt;}
.ls1f{letter-spacing:146.666667pt;}
.ls22{letter-spacing:155.466667pt;}
.ls1c{letter-spacing:156.800000pt;}
.ls25{letter-spacing:160.800000pt;}
.ls17{letter-spacing:162.666667pt;}
.ls2{letter-spacing:165.866667pt;}
.ls18{letter-spacing:173.333333pt;}
.ls1a{letter-spacing:174.400000pt;}
.ws2{word-spacing:-41.365333pt;}
.ws3{word-spacing:-38.549333pt;}
.ws0{word-spacing:-38.410667pt;}
.wsb{word-spacing:-35.456000pt;}
.wsd{word-spacing:-32.649067pt;}
.ws7{word-spacing:-31.024000pt;}
.ws5{word-spacing:-30.285333pt;}
.wsc{word-spacing:-29.842133pt;}
.ws8{word-spacing:-29.546667pt;}
.ws6{word-spacing:-28.364800pt;}
.ws9{word-spacing:-25.853333pt;}
.ws4{word-spacing:-24.228267pt;}
.wsa{word-spacing:-22.750933pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.248000pt;}
._3{width:2.171733pt;}
._4{width:3.272000pt;}
._5{width:4.192000pt;}
._2{width:1092.874667pt;}
.fs16{font-size:35.733333pt;}
.fs7{font-size:38.933333pt;}
.fs13{font-size:41.066667pt;}
.fsb{font-size:45.866667pt;}
.fs11{font-size:46.933333pt;}
.fs9{font-size:48.533333pt;}
.fsd{font-size:50.133333pt;}
.fsf{font-size:51.200000pt;}
.fs1b{font-size:53.866667pt;}
.fs18{font-size:57.600000pt;}
.fs5{font-size:62.400000pt;}
.fs17{font-size:82.133333pt;}
.fs6{font-size:87.466667pt;}
.fs15{font-size:88.533333pt;}
.fs14{font-size:93.333333pt;}
.fs0{font-size:96.000000pt;}
.fs12{font-size:101.333333pt;}
.fsa{font-size:102.400000pt;}
.fs10{font-size:106.666667pt;}
.fs1d{font-size:107.733333pt;}
.fs8{font-size:109.333333pt;}
.fsc{font-size:112.000000pt;}
.fs1e{font-size:113.600000pt;}
.fse{font-size:115.200000pt;}
.fs1f{font-size:117.866667pt;}
.fs1c{font-size:120.533333pt;}
.fs19{font-size:128.000000pt;}
.fs1a{font-size:130.133333pt;}
.fs2{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.fs4{font-size:170.666667pt;}
.fs1{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:12.266667pt;}
.y56{bottom:14.666667pt;}
.y10a{bottom:29.733333pt;}
.y1{bottom:35.466667pt;}
.yfd{bottom:37.066667pt;}
.y64{bottom:45.066667pt;}
.ya5{bottom:47.466667pt;}
.ye3{bottom:51.333333pt;}
.y9c{bottom:53.600000pt;}
.y4{bottom:53.866667pt;}
.yf0{bottom:54.400000pt;}
.y55{bottom:55.466667pt;}
.y7a{bottom:63.066667pt;}
.yfc{bottom:71.200000pt;}
.y109{bottom:73.066667pt;}
.y24{bottom:74.800000pt;}
.y8a{bottom:78.266667pt;}
.y63{bottom:82.400000pt;}
.ya9{bottom:85.866667pt;}
.ye2{bottom:86.000000pt;}
.y6c{bottom:86.400000pt;}
.ya4{bottom:88.000000pt;}
.y54{bottom:90.266667pt;}
.y9b{bottom:90.666667pt;}
.y79{bottom:91.066667pt;}
.yef{bottom:95.466667pt;}
.y23{bottom:103.866667pt;}
.y3d{bottom:107.466667pt;}
.y108{bottom:108.400000pt;}
.y89{bottom:109.733333pt;}
.y114{bottom:110.266667pt;}
.y30{bottom:111.733333pt;}
.yfb{bottom:114.800000pt;}
.y62{bottom:115.200000pt;}
.y78{bottom:123.333333pt;}
.yc1{bottom:124.666667pt;}
.y53{bottom:124.800000pt;}
.ya8{bottom:126.400000pt;}
.yee{bottom:126.666667pt;}
.y6b{bottom:128.000000pt;}
.ye1{bottom:128.666667pt;}
.y48{bottom:129.066667pt;}
.yb9{bottom:131.200000pt;}
.y88{bottom:133.200000pt;}
.ya3{bottom:133.600000pt;}
.yae{bottom:134.666667pt;}
.y22{bottom:134.933333pt;}
.y9a{bottom:142.133333pt;}
.y3c{bottom:144.133333pt;}
.y107{bottom:144.266667pt;}
.y2f{bottom:150.133333pt;}
.yd7{bottom:150.800000pt;}
.y61{bottom:152.533333pt;}
.yd1{bottom:154.666667pt;}
.y77{bottom:157.066667pt;}
.y52{bottom:159.333333pt;}
.ye0{bottom:163.333333pt;}
.y87{bottom:163.733333pt;}
.yc0{bottom:165.066667pt;}
.y14{bottom:165.600000pt;}
.y21{bottom:166.133333pt;}
.yed{bottom:166.666667pt;}
.y47{bottom:168.666667pt;}
.yb8{bottom:169.600000pt;}
.ya2{bottom:172.000000pt;}
.y6a{bottom:178.800000pt;}
.y3b{bottom:180.666667pt;}
.yad{bottom:181.600000pt;}
.y60{bottom:185.333333pt;}
.y76{bottom:186.666667pt;}
.y106{bottom:187.600000pt;}
.yd6{bottom:189.200000pt;}
.y2e{bottom:189.333333pt;}
.yd0{bottom:193.066667pt;}
.y86{bottom:194.266667pt;}
.y20{bottom:195.200000pt;}
.yfa{bottom:199.466667pt;}
.y10e{bottom:199.733333pt;}
.y51{bottom:200.133333pt;}
.y46{bottom:202.800000pt;}
.ydf{bottom:203.866667pt;}
.y113{bottom:205.066667pt;}
.yec{bottom:206.800000pt;}
.y13{bottom:207.200000pt;}
.ya1{bottom:210.400000pt;}
.ybf{bottom:210.666667pt;}
.ya7{bottom:212.533333pt;}
.yb7{bottom:216.400000pt;}
.y99{bottom:216.800000pt;}
.y3a{bottom:217.333333pt;}
.y5f{bottom:222.666667pt;}
.y105{bottom:223.333333pt;}
.y1f{bottom:224.266667pt;}
.y85{bottom:224.666667pt;}
.y75{bottom:226.666667pt;}
.y69{bottom:226.933333pt;}
.y92{bottom:228.266667pt;}
.y2d{bottom:228.400000pt;}
.yd5{bottom:229.600000pt;}
.ycf{bottom:239.866667pt;}
.y10d{bottom:240.133333pt;}
.y50{bottom:241.200000pt;}
.yc5{bottom:241.600000pt;}
.yf9{bottom:241.866667pt;}
.y45{bottom:242.400000pt;}
.yde{bottom:244.266667pt;}
.y112{bottom:245.466667pt;}
.yeb{bottom:246.800000pt;}
.yac{bottom:248.800000pt;}
.y39{bottom:250.133333pt;}
.ya0{bottom:250.933333pt;}
.ybe{bottom:251.200000pt;}
.y98{bottom:253.733333pt;}
.y84{bottom:255.200000pt;}
.y1e{bottom:255.333333pt;}
.yb6{bottom:257.066667pt;}
.ya6{bottom:258.133333pt;}
.y74{bottom:260.533333pt;}
.y5e{bottom:260.800000pt;}
.y104{bottom:267.200000pt;}
.y12{bottom:267.333333pt;}
.y2c{bottom:268.533333pt;}
.yc8{bottom:275.066667pt;}
.y8f{bottom:275.200000pt;}
.yf8{bottom:276.000000pt;}
.y68{bottom:276.533333pt;}
.yd4{bottom:277.333333pt;}
.ydd{bottom:278.933333pt;}
.yce{bottom:280.533333pt;}
.y38{bottom:280.800000pt;}
.yc4{bottom:282.000000pt;}
.y44{bottom:282.533333pt;}
.y4f{bottom:283.466667pt;}
.yb1{bottom:284.800000pt;}
.y83{bottom:285.733333pt;}
.y1d{bottom:286.533333pt;}
.yea{bottom:287.866667pt;}
.yab{bottom:289.333333pt;}
.y111{bottom:291.066667pt;}
.y73{bottom:294.400000pt;}
.ybd{bottom:296.800000pt;}
.y97{bottom:297.733333pt;}
.y5d{bottom:298.933333pt;}
.y2b{bottom:302.000000pt;}
.yb5{bottom:303.866667pt;}
.y9f{bottom:305.066667pt;}
.y103{bottom:311.733333pt;}
.y82{bottom:316.266667pt;}
.y37{bottom:316.400000pt;}
.y1c{bottom:317.733333pt;}
.y11{bottom:318.133333pt;}
.ye9{bottom:319.066667pt;}
.yf7{bottom:319.600000pt;}
.yf1{bottom:320.933333pt;}
.ya{bottom:321.733333pt;}
.ydc{bottom:321.866667pt;}
.yc7{bottom:322.800000pt;}
.yb0{bottom:323.200000pt;}
.y43{bottom:323.600000pt;}
.y72{bottom:324.000000pt;}
.y8e{bottom:324.266667pt;}
.y4e{bottom:324.533333pt;}
.y67{bottom:324.800000pt;}
.yd3{bottom:325.066667pt;}
.y91{bottom:326.400000pt;}
.ycd{bottom:327.333333pt;}
.yc3{bottom:329.733333pt;}
.y110{bottom:331.600000pt;}
.y10c{bottom:332.933333pt;}
.y5c{bottom:337.066667pt;}
.ybc{bottom:337.333333pt;}
.y2a{bottom:340.400000pt;}
.y96{bottom:341.333333pt;}
.yaa{bottom:343.466667pt;}
.yb4{bottom:344.400000pt;}
.y81{bottom:346.800000pt;}
.y102{bottom:347.600000pt;}
.y36{bottom:348.266667pt;}
.y1b{bottom:348.800000pt;}
.yf6{bottom:353.733333pt;}
.y71{bottom:356.133333pt;}
.ye8{bottom:359.066667pt;}
.ydb{bottom:363.466667pt;}
.y42{bottom:363.733333pt;}
.y90{bottom:364.800000pt;}
.y4d{bottom:365.733333pt;}
.y10{bottom:369.066667pt;}
.yc6{bottom:370.400000pt;}
.y9e{bottom:372.266667pt;}
.yd2{bottom:372.800000pt;}
.y66{bottom:373.066667pt;}
.y8d{bottom:373.200000pt;}
.y9{bottom:374.000000pt;}
.y5b{bottom:374.133333pt;}
.yc2{bottom:375.333333pt;}
.ycc{bottom:376.400000pt;}
.y80{bottom:377.200000pt;}
.y10b{bottom:378.533333pt;}
.y29{bottom:379.466667pt;}
.y1a{bottom:380.000000pt;}
.yb3{bottom:382.800000pt;}
.ybb{bottom:382.933333pt;}
.y35{bottom:383.733333pt;}
.y70{bottom:386.133333pt;}
.y95{bottom:387.466667pt;}
.yf5{bottom:387.866667pt;}
.y101{bottom:392.133333pt;}
.y3{bottom:397.866667pt;}
.yda{bottom:398.000000pt;}
.ye7{bottom:399.066667pt;}
.y4c{bottom:400.533333pt;}
.y41{bottom:403.733333pt;}
.y5a{bottom:411.333333pt;}
.y19{bottom:411.866667pt;}
.y7f{bottom:412.800000pt;}
.y28{bottom:414.000000pt;}
.y9d{bottom:419.066667pt;}
.yf{bottom:419.866667pt;}
.y34{bottom:420.400000pt;}
.y65{bottom:421.200000pt;}
.y8c{bottom:422.266667pt;}
.ycb{bottom:425.466667pt;}
.y8{bottom:426.266667pt;}
.y100{bottom:428.000000pt;}
.yb2{bottom:429.733333pt;}
.yba{bottom:429.866667pt;}
.yf4{bottom:431.333333pt;}
.yd9{bottom:432.666667pt;}
.ye6{bottom:439.066667pt;}
.y7e{bottom:440.133333pt;}
.y18{bottom:440.933333pt;}
.y4b{bottom:441.333333pt;}
.y40{bottom:443.866667pt;}
.y27{bottom:446.800000pt;}
.y59{bottom:448.400000pt;}
.y33{bottom:453.200000pt;}
.y6f{bottom:459.600000pt;}
.y2{bottom:461.866667pt;}
.yca{bottom:466.000000pt;}
.y17{bottom:467.200000pt;}
.y10f{bottom:468.133333pt;}
.y7d{bottom:468.666667pt;}
.ye{bottom:470.800000pt;}
.yaf{bottom:470.933333pt;}
.y8b{bottom:471.333333pt;}
.yff{bottom:472.533333pt;}
.yd8{bottom:474.266667pt;}
.yf3{bottom:475.066667pt;}
.y94{bottom:475.600000pt;}
.y7{bottom:478.400000pt;}
.ye5{bottom:479.066667pt;}
.y4a{bottom:482.400000pt;}
.y3f{bottom:483.866667pt;}
.y26{bottom:485.200000pt;}
.y58{bottom:486.533333pt;}
.y32{bottom:488.666667pt;}
.y6e{bottom:491.866667pt;}
.y7c{bottom:496.000000pt;}
.y16{bottom:496.266667pt;}
.yd{bottom:512.400000pt;}
.y93{bottom:514.533333pt;}
.yc9{bottom:515.066667pt;}
.yfe{bottom:517.600000pt;}
.y49{bottom:518.266667pt;}
.yf2{bottom:518.666667pt;}
.y3e{bottom:519.066667pt;}
.y25{bottom:519.733333pt;}
.ye4{bottom:520.266667pt;}
.y57{bottom:520.400000pt;}
.y31{bottom:521.466667pt;}
.y6d{bottom:521.866667pt;}
.y7b{bottom:524.933333pt;}
.y15{bottom:525.333333pt;}
.yc{bottom:589.733333pt;}
.y6{bottom:616.400000pt;}
.yb{bottom:640.933333pt;}
.h2b{height:53.006771pt;}
.h14{height:55.350000pt;}
.h26{height:55.895573pt;}
.h20{height:56.322917pt;}
.h29{height:56.428906pt;}
.ha{height:56.642708pt;}
.hc{height:57.176042pt;}
.h18{height:57.539062pt;}
.h1e{height:58.802083pt;}
.h12{height:60.850000pt;}
.h21{height:62.052083pt;}
.h10{height:62.536719pt;}
.h22{height:62.585417pt;}
.he{height:63.070052pt;}
.h16{height:63.554688pt;}
.h9{height:63.678125pt;}
.h33{height:63.825521pt;}
.h17{height:64.088021pt;}
.h24{height:64.153125pt;}
.h2c{height:64.206771pt;}
.h2a{height:64.454688pt;}
.h1c{height:64.456250pt;}
.h1b{height:64.989583pt;}
.h30{height:65.929167pt;}
.h2f{height:66.462500pt;}
.hb{height:68.376042pt;}
.h8{height:71.067708pt;}
.h7{height:71.601042pt;}
.h27{height:72.962240pt;}
.h25{height:73.773438pt;}
.h11{height:74.550000pt;}
.h1{height:75.046875pt;}
.h1f{height:77.656250pt;}
.h28{height:79.216146pt;}
.hd{height:79.597656pt;}
.h13{height:80.050000pt;}
.h15{height:81.539062pt;}
.h23{height:83.385417pt;}
.h1a{height:83.868750pt;}
.h2e{height:83.940104pt;}
.h3a{height:84.219271pt;}
.h2d{height:84.473437pt;}
.hf{height:85.470052pt;}
.h19{height:87.554688pt;}
.h3c{height:87.952604pt;}
.h3b{height:88.485937pt;}
.h3d{height:88.805469pt;}
.h3e{height:89.338802pt;}
.h39{height:89.522917pt;}
.h40{height:90.007552pt;}
.h1d{height:90.056250pt;}
.h35{height:90.492187pt;}
.h36{height:91.529167pt;}
.h37{height:92.062500pt;}
.h3f{height:92.140885pt;}
.h38{height:93.187500pt;}
.h34{height:94.225521pt;}
.h32{height:94.740625pt;}
.h31{height:100.062500pt;}
.h5{height:100.953125pt;}
.h3{height:108.401042pt;}
.h4{height:108.718750pt;}
.h6{height:124.250000pt;}
.h2{height:155.312500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x22{left:30.000000pt;}
.x4{left:50.533333pt;}
.x6{left:57.466667pt;}
.x9{left:59.866667pt;}
.x29{left:62.000000pt;}
.x28{left:64.266667pt;}
.x33{left:66.133333pt;}
.x2e{left:68.800000pt;}
.x2f{left:87.600000pt;}
.x25{left:89.600000pt;}
.x34{left:108.800000pt;}
.x5{left:112.133333pt;}
.x30{left:114.666667pt;}
.x37{left:116.666667pt;}
.xc{left:117.866667pt;}
.x2b{left:124.266667pt;}
.x2d{left:126.400000pt;}
.x2{left:129.200000pt;}
.x1b{left:131.333333pt;}
.xf{left:133.200000pt;}
.x15{left:135.200000pt;}
.x18{left:137.066667pt;}
.xa{left:153.466667pt;}
.x35{left:158.933333pt;}
.x23{left:168.400000pt;}
.x12{left:170.800000pt;}
.x2a{left:174.133333pt;}
.xd{left:178.400000pt;}
.x2c{left:183.600000pt;}
.x13{left:199.466667pt;}
.x24{left:201.066667pt;}
.x1c{left:205.200000pt;}
.xe{left:208.133333pt;}
.x10{left:209.066667pt;}
.xb{left:210.533333pt;}
.x16{left:212.933333pt;}
.x19{left:216.800000pt;}
.x38{left:220.400000pt;}
.x14{left:234.400000pt;}
.x1e{left:241.466667pt;}
.x11{left:246.400000pt;}
.x1f{left:249.466667pt;}
.x17{left:251.066667pt;}
.x1a{left:255.866667pt;}
.x39{left:268.000000pt;}
.x1d{left:279.200000pt;}
.x31{left:287.600000pt;}
.x8{left:288.933333pt;}
.x36{left:294.266667pt;}
.x3{left:306.800000pt;}
.x26{left:310.133333pt;}
.x32{left:330.400000pt;}
.x20{left:345.466667pt;}
.x7{left:360.533333pt;}
.x21{left:392.533333pt;}
.x27{left:622.000000pt;}
.x1{left:697.333333pt;}
}




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