
    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_94544f32f31e5db772b49f07.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_ed39f0f1cd1d8127049925da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_3e4d57b6b9b8fe17a48e6c84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.599400px;}
.v1{vertical-align:30.240600px;}
.ls1c{letter-spacing:-3.816720px;}
.ls28{letter-spacing:-2.879280px;}
.ls1e{letter-spacing:-2.410560px;}
.ls1f{letter-spacing:-2.358720px;}
.lsf{letter-spacing:-2.276640px;}
.ls12{letter-spacing:-2.008800px;}
.ls11{letter-spacing:-1.607040px;}
.ls7{letter-spacing:-1.339200px;}
.lse{letter-spacing:-1.071360px;}
.lsa{letter-spacing:-0.907200px;}
.lsc{letter-spacing:-0.803520px;}
.ls10{letter-spacing:-0.669600px;}
.ls8{letter-spacing:-0.483840px;}
.ls1d{letter-spacing:-0.267840px;}
.ls27{letter-spacing:-0.133920px;}
.ls5{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.133920px;}
.ls24{letter-spacing:0.374976px;}
.ls23{letter-spacing:0.435240px;}
.ls17{letter-spacing:0.468720px;}
.ls9{letter-spacing:0.483840px;}
.lsd{letter-spacing:0.535680px;}
.ls4{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.870480px;}
.ls6{letter-spacing:1.045440px;}
.lsb{letter-spacing:1.071360px;}
.ls0{letter-spacing:1.080000px;}
.ls1b{letter-spacing:2.370384px;}
.ls16{letter-spacing:2.564568px;}
.ls13{letter-spacing:2.678400px;}
.ls15{letter-spacing:4.526496px;}
.ls19{letter-spacing:4.774248px;}
.ls29{letter-spacing:4.888080px;}
.ls22{letter-spacing:6.662520px;}
.ls1a{letter-spacing:7.030800px;}
.ls14{letter-spacing:9.173520px;}
.ls2{letter-spacing:11.209104px;}
.ls21{letter-spacing:11.276064px;}
.ls20{letter-spacing:11.316240px;}
.ls26{letter-spacing:13.525920px;}
.ls25{letter-spacing:15.668640px;}
.ls3{letter-spacing:35.354880px;}
.ls1{letter-spacing:39.707280px;}
.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;}
}
.ws0{word-spacing:-23.760000px;}
.ws3{word-spacing:-17.811360px;}
.ws38{word-spacing:-17.610480px;}
.ws37{word-spacing:-17.275680px;}
.ws8{word-spacing:-16.740000px;}
.ws4b{word-spacing:-16.606080px;}
.ws39{word-spacing:-16.472160px;}
.ws2b{word-spacing:-16.070400px;}
.ws4{word-spacing:-15.936480px;}
.ws7{word-spacing:-15.668640px;}
.ws44{word-spacing:-15.603840px;}
.ws4c{word-spacing:-15.400800px;}
.ws4a{word-spacing:-15.132960px;}
.ws2{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.731200px;}
.ws1{word-spacing:-14.636160px;}
.ws5{word-spacing:-14.463360px;}
.ws3a{word-spacing:-14.329440px;}
.ws45{word-spacing:-12.761280px;}
.ws41{word-spacing:-2.678400px;}
.ws4d{word-spacing:-2.477520px;}
.wsd{word-spacing:-2.177280px;}
.ws27{word-spacing:-2.142720px;}
.ws2a{word-spacing:-1.071360px;}
.wsb{word-spacing:-1.045440px;}
.ws4e{word-spacing:-0.937440px;}
.ws3f{word-spacing:-0.870480px;}
.ws28{word-spacing:-0.535680px;}
.wse{word-spacing:-0.483840px;}
.ws49{word-spacing:-0.334800px;}
.wsa{word-spacing:0.000000px;}
.ws42{word-spacing:0.669600px;}
.ws15{word-spacing:0.907200px;}
.ws3e{word-spacing:1.071360px;}
.ws9{word-spacing:1.140480px;}
.ws40{word-spacing:1.205280px;}
.ws29{word-spacing:1.339200px;}
.ws1f{word-spacing:1.607040px;}
.ws12{word-spacing:1.693440px;}
.ws34{word-spacing:1.807920px;}
.wsc{word-spacing:1.874880px;}
.ws1b{word-spacing:2.142720px;}
.ws47{word-spacing:2.276640px;}
.ws51{word-spacing:2.544480px;}
.ws46{word-spacing:2.812320px;}
.ws11{word-spacing:3.084480px;}
.ws4f{word-spacing:3.414960px;}
.ws1c{word-spacing:3.749760px;}
.ws3d{word-spacing:3.816720px;}
.ws52{word-spacing:4.017600px;}
.ws10{word-spacing:4.294080px;}
.ws24{word-spacing:4.352400px;}
.ws13{word-spacing:5.201280px;}
.ws23{word-spacing:5.557680px;}
.ws53{word-spacing:5.691600px;}
.ws30{word-spacing:5.959440px;}
.ws36{word-spacing:6.160320px;}
.ws17{word-spacing:6.471360px;}
.ws33{word-spacing:6.495120px;}
.ws2f{word-spacing:7.164720px;}
.ws16{word-spacing:7.378560px;}
.ws2c{word-spacing:8.102160px;}
.ws35{word-spacing:8.303040px;}
.ws1d{word-spacing:8.637840px;}
.ws2d{word-spacing:10.244880px;}
.ws19{word-spacing:10.780560px;}
.ws14{word-spacing:10.825920px;}
.ws1a{word-spacing:12.387600px;}
.ws3c{word-spacing:12.923280px;}
.ws1e{word-spacing:12.990240px;}
.ws18{word-spacing:13.849920px;}
.ws48{word-spacing:14.195520px;}
.ws3b{word-spacing:14.597280px;}
.ws31{word-spacing:15.132960px;}
.ws32{word-spacing:16.740000px;}
.wsf{word-spacing:17.297280px;}
.ws43{word-spacing:19.418400px;}
.ws2e{word-spacing:21.025440px;}
.ws25{word-spacing:21.628080px;}
.ws26{word-spacing:23.235120px;}
.ws22{word-spacing:28.056240px;}
.ws21{word-spacing:29.663280px;}
.ws50{word-spacing:30.198960px;}
.ws20{word-spacing:30.265920px;}
._8{margin-left:-5.434992px;}
._2{margin-left:-4.210272px;}
._5{margin-left:-3.191616px;}
._0{margin-left:-1.805760px;}
._1{width:1.130976px;}
._3{width:2.195424px;}
._6{width:3.196800px;}
._7{width:4.365792px;}
._9{width:7.150032px;}
._a{width:12.273552px;}
._4{width:17.230752px;}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.040000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.960000px;}
.fs0{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.780000px;}
.ya3{bottom:4.320000px;}
.y33{bottom:45.900000px;}
.y32{bottom:64.260000px;}
.y2b{bottom:88.982280px;}
.yc4{bottom:92.353500px;}
.y2d{bottom:98.820000px;}
.y2a{bottom:106.810380px;}
.yf3{bottom:107.369280px;}
.yc3{bottom:111.788640px;}
.yaf{bottom:117.685980px;}
.y115{bottom:120.275820px;}
.y68{bottom:121.213260px;}
.ydb{bottom:121.380660px;}
.y29{bottom:124.638480px;}
.yf2{bottom:125.197380px;}
.y114{bottom:138.103920px;}
.yda{bottom:139.208760px;}
.y67{bottom:139.577040px;}
.yae{bottom:141.992460px;}
.y28{bottom:143.002260px;}
.yf1{bottom:143.561160px;}
.y66{bottom:157.405140px;}
.yd9{bottom:157.572540px;}
.yf0{bottom:161.389260px;}
.y113{bottom:165.105540px;}
.yad{bottom:165.746520px;}
.y27{bottom:166.756320px;}
.y65{bottom:175.233240px;}
.yd8{bottom:175.400640px;}
.yef{bottom:179.217360px;}
.y112{bottom:182.933640px;}
.yac{bottom:183.574620px;}
.y26{bottom:184.584420px;}
.yd7{bottom:193.228740px;}
.y82{bottom:197.530920px;}
.yee{bottom:197.581140px;}
.y64{bottom:199.539720px;}
.yab{bottom:201.938400px;}
.y25{bottom:202.948200px;}
.y111{bottom:209.935260px;}
.yd6{bottom:211.592520px;}
.yed{bottom:215.409240px;}
.y63{bottom:217.367820px;}
.yaa{bottom:219.766500px;}
.y24{bottom:220.776300px;}
.y81{bottom:221.837400px;}
.y110{bottom:227.763360px;}
.yd5{bottom:229.420620px;}
.yec{bottom:233.237340px;}
.y62{bottom:235.195920px;}
.ya9{bottom:237.594600px;}
.y23{bottom:238.604400px;}
.y80{bottom:245.591460px;}
.yd4{bottom:247.248720px;}
.yeb{bottom:251.601120px;}
.y61{bottom:253.559700px;}
.y10f{bottom:254.764980px;}
.ya8{bottom:255.958380px;}
.y22{bottom:256.968180px;}
.yd3{bottom:265.612500px;}
.y7f{bottom:269.897940px;}
.y60{bottom:271.387800px;}
.y21{bottom:274.796280px;}
.y10e{bottom:282.302280px;}
.ya7{bottom:282.960000px;}
.y7e{bottom:287.726040px;}
.yea{bottom:287.776260px;}
.y5f{bottom:289.215900px;}
.y20{bottom:292.624380px;}
.y10d{bottom:300.130380px;}
.yd2{bottom:301.787640px;}
.y7d{bottom:305.554140px;}
.ye9{bottom:307.211400px;}
.y5e{bottom:307.579680px;}
.y1f{bottom:310.988160px;}
.ya6{bottom:315.900000px;}
.yd1{bottom:321.222780px;}
.y7c{bottom:323.917920px;}
.y10c{bottom:327.132000px;}
.y1e{bottom:328.816260px;}
.y5d{bottom:331.333740px;}
.ya5{bottom:338.040000px;}
.y7b{bottom:341.746020px;}
.y10b{bottom:344.960100px;}
.y1d{bottom:346.644360px;}
.y5c{bottom:349.697520px;}
.y7a{bottom:359.574120px;}
.ya4{bottom:359.640000px;}
.y1c{bottom:365.008140px;}
.y5b{bottom:367.525620px;}
.y10a{bottom:371.961720px;}
.ya2{bottom:381.240000px;}
.y1b{bottom:382.836240px;}
.y5a{bottom:385.353720px;}
.y79{bottom:387.647100px;}
.y109{bottom:390.325500px;}
.ya1{bottom:403.380000px;}
.y59{bottom:403.717500px;}
.y78{bottom:406.010880px;}
.y1a{bottom:409.837860px;}
.y108{bottom:417.327120px;}
.y58{bottom:421.545600px;}
.y77{bottom:424.910340px;}
.ya0{bottom:438.486480px;}
.y57{bottom:439.373700px;}
.y19{bottom:441.158400px;}
.y107{bottom:452.966580px;}
.y76{bottom:452.983320px;}
.y56{bottom:457.737480px;}
.y18{bottom:459.522180px;}
.y106{bottom:471.330360px;}
.y9f{bottom:474.661620px;}
.y55{bottom:475.565580px;}
.y17{bottom:477.350280px;}
.y75{bottom:488.622780px;}
.y105{bottom:489.158460px;}
.y54{bottom:493.393680px;}
.y9e{bottom:493.561080px;}
.y16{bottom:495.178380px;}
.y74{bottom:506.450880px;}
.y104{bottom:506.986560px;}
.y9d{bottom:512.996220px;}
.y53{bottom:520.395300px;}
.y15{bottom:522.180000px;}
.y73{bottom:524.814660px;}
.y103{bottom:531.293040px;}
.y9c{bottom:539.997840px;}
.y72{bottom:542.642760px;}
.y102{bottom:549.121140px;}
.y52{bottom:552.251520px;}
.y71{bottom:560.470860px;}
.y9b{bottom:564.304320px;}
.y101{bottom:566.949240px;}
.y51{bottom:570.079620px;}
.y14{bottom:576.676800px;}
.y70{bottom:578.834640px;}
.y100{bottom:585.313020px;}
.y50{bottom:587.907720px;}
.y9a{bottom:588.058380px;}
.y6f{bottom:596.662740px;}
.yff{bottom:603.141120px;}
.y4f{bottom:606.271500px;}
.y13{bottom:612.314640px;}
.y99{bottom:612.364860px;}
.ye8{bottom:612.850320px;}
.y6e{bottom:614.490840px;}
.yfe{bottom:620.969220px;}
.y4e{bottom:624.099600px;}
.y12{bottom:630.141120px;}
.ye7{bottom:631.214100px;}
.y98{bottom:636.118920px;}
.y4d{bottom:647.853660px;}
.yfd{bottom:647.970840px;}
.y11{bottom:648.496800px;}
.ye6{bottom:649.042200px;}
.y6d{bottom:650.665980px;}
.y97{bottom:660.425400px;}
.y4c{bottom:666.217440px;}
.y10{bottom:666.323280px;}
.yfc{bottom:666.334620px;}
.ye5{bottom:666.870300px;}
.yc2{bottom:667.456200px;}
.y4b{bottom:684.045540px;}
.yf{bottom:684.149760px;}
.yfb{bottom:684.162720px;}
.y96{bottom:684.179460px;}
.ye4{bottom:685.234080px;}
.y4a{bottom:701.873640px;}
.yfa{bottom:701.990820px;}
.ye{bottom:702.505440px;}
.ye3{bottom:703.062180px;}
.yc1{bottom:703.631340px;}
.y95{bottom:708.485940px;}
.y49{bottom:720.237420px;}
.yd{bottom:720.331920px;}
.yf9{bottom:720.354600px;}
.ye2{bottom:720.890280px;}
.yc0{bottom:723.066480px;}
.y94{bottom:732.240000px;}
.y48{bottom:738.065520px;}
.yc{bottom:738.158400px;}
.yf8{bottom:738.182700px;}
.ye1{bottom:739.254060px;}
.ybf{bottom:750.068100px;}
.y47{bottom:755.893620px;}
.y93{bottom:755.994060px;}
.yb{bottom:756.514080px;}
.ye0{bottom:757.082160px;}
.y122{bottom:765.100620px;}
.y46{bottom:774.257400px;}
.ya{bottom:774.340560px;}
.yf7{bottom:774.357840px;}
.ybe{bottom:774.374580px;}
.ydf{bottom:774.910260px;}
.y92{bottom:780.300540px;}
.y121{bottom:782.928720px;}
.y9{bottom:792.167040px;}
.yde{bottom:793.274040px;}
.y45{bottom:798.011460px;}
.ybd{bottom:798.128640px;}
.y91{bottom:804.054600px;}
.y120{bottom:809.930340px;}
.y8{bottom:810.522720px;}
.yf6{bottom:810.532980px;}
.y44{bottom:815.839560px;}
.ybc{bottom:822.435120px;}
.y11f{bottom:828.294120px;}
.y7{bottom:828.349200px;}
.y90{bottom:828.361080px;}
.yf5{bottom:829.432440px;}
.ydd{bottom:829.449180px;}
.y43{bottom:834.203340px;}
.y11e{bottom:846.122220px;}
.y6{bottom:846.175680px;}
.ybb{bottom:846.189180px;}
.yf4{bottom:848.331900px;}
.ydc{bottom:848.884320px;}
.y42{bottom:852.031440px;}
.y8f{bottom:852.115140px;}
.y11d{bottom:863.950320px;}
.y41{bottom:869.859540px;}
.yba{bottom:870.495660px;}
.yd0{bottom:876.337920px;}
.y8e{bottom:876.421620px;}
.y40{bottom:888.223320px;}
.y11c{bottom:890.951940px;}
.yb9{bottom:894.249720px;}
.ycf{bottom:900.091980px;}
.y8d{bottom:900.175680px;}
.y5{bottom:900.713520px;}
.y3f{bottom:906.051420px;}
.y11b{bottom:908.780040px;}
.yce{bottom:917.920080px;}
.yb8{bottom:918.003780px;}
.y83{bottom:922.860000px;}
.y3e{bottom:924.415200px;}
.y8c{bottom:924.482160px;}
.y4{bottom:931.500000px;}
.y11a{bottom:935.781660px;}
.ycd{bottom:936.283860px;}
.yb7{bottom:942.310260px;}
.y3d{bottom:948.169260px;}
.y8b{bottom:948.236220px;}
.y3{bottom:953.100000px;}
.ycc{bottom:954.111960px;}
.y119{bottom:963.318960px;}
.y3c{bottom:965.997360px;}
.yb6{bottom:966.064320px;}
.ycb{bottom:971.940060px;}
.y8a{bottom:971.990280px;}
.y118{bottom:981.147060px;}
.y3b{bottom:984.361140px;}
.yca{bottom:990.303840px;}
.yb5{bottom:990.370800px;}
.y89{bottom:996.296760px;}
.y3a{bottom:1002.189240px;}
.yc9{bottom:1008.131940px;}
.y117{bottom:1008.148680px;}
.y2{bottom:1009.262160px;}
.yb4{bottom:1014.124860px;}
.y39{bottom:1020.017340px;}
.y88{bottom:1020.050820px;}
.yc8{bottom:1025.960040px;}
.y116{bottom:1025.976780px;}
.y6c{bottom:1035.150300px;}
.y1{bottom:1036.800000px;}
.y38{bottom:1038.381120px;}
.yb3{bottom:1038.431340px;}
.yc7{bottom:1044.323820px;}
.y87{bottom:1044.357300px;}
.y6b{bottom:1052.978400px;}
.y37{bottom:1056.209220px;}
.yc6{bottom:1062.151920px;}
.yb2{bottom:1062.185400px;}
.y2c{bottom:1067.580000px;}
.y86{bottom:1068.111360px;}
.y6a{bottom:1071.342180px;}
.y36{bottom:1074.037320px;}
.yc5{bottom:1079.980020px;}
.yb1{bottom:1086.491880px;}
.y69{bottom:1089.170280px;}
.y85{bottom:1092.417840px;}
.y35{bottom:1098.343800px;}
.yb0{bottom:1110.245940px;}
.y34{bottom:1116.171900px;}
.y2f{bottom:1130.764320px;}
.y31{bottom:1134.000150px;}
.y2e{bottom:1148.040000px;}
.y30{bottom:1163.160150px;}
.hd{height:18.360000px;}
.he{height:20.520000px;}
.hf{height:21.060000px;}
.h4{height:38.139609px;}
.h5{height:59.328281px;}
.h7{height:59.357813px;}
.hb{height:59.739009px;}
.h6{height:60.952500px;}
.h9{height:65.717578px;}
.hc{height:67.483125px;}
.h8{height:69.837188px;}
.h3{height:70.499077px;}
.h2{height:95.782500px;}
.ha{height:113.940000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:121.500000px;}
.w3{width:135.000000px;}
.w5{width:178.740000px;}
.w6{width:300.780000px;}
.w2{width:744.120000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:23.220000px;}
.xe{left:31.860000px;}
.x16{left:43.200000px;}
.x20{left:49.680000px;}
.x1f{left:52.380000px;}
.x1e{left:53.460000px;}
.x1c{left:55.080000px;}
.x1b{left:56.700000px;}
.x18{left:70.740000px;}
.x3{left:74.520000px;}
.x1{left:84.780000px;}
.x23{left:89.083260px;}
.x11{left:92.866500px;}
.x12{left:97.737840px;}
.x28{left:98.825940px;}
.x21{left:102.592440px;}
.x14{left:103.697280px;}
.x8{left:105.840000px;}
.x1a{left:112.860000px;}
.x10{left:119.332440px;}
.xf{left:120.956220px;}
.x2{left:127.433520px;}
.xa{left:134.460000px;}
.x15{left:145.260000px;}
.x25{left:193.858920px;}
.x24{left:196.001640px;}
.xb{left:224.660520px;}
.x29{left:232.210260px;}
.x13{left:252.197820px;}
.x5{left:263.520000px;}
.x17{left:267.300000px;}
.x4{left:300.240000px;}
.x22{left:319.141080px;}
.x7{left:380.700000px;}
.x26{left:400.162680px;}
.x6{left:419.034600px;}
.x9{left:430.920000px;}
.xc{left:446.013540px;}
.x19{left:447.120000px;}
.x27{left:479.527020px;}
.xd{left:613.440000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.199467pt;}
.v1{vertical-align:26.880533pt;}
.ls1c{letter-spacing:-3.392640pt;}
.ls28{letter-spacing:-2.559360pt;}
.ls1e{letter-spacing:-2.142720pt;}
.ls1f{letter-spacing:-2.096640pt;}
.lsf{letter-spacing:-2.023680pt;}
.ls12{letter-spacing:-1.785600pt;}
.ls11{letter-spacing:-1.428480pt;}
.ls7{letter-spacing:-1.190400pt;}
.lse{letter-spacing:-0.952320pt;}
.lsa{letter-spacing:-0.806400pt;}
.lsc{letter-spacing:-0.714240pt;}
.ls10{letter-spacing:-0.595200pt;}
.ls8{letter-spacing:-0.430080pt;}
.ls1d{letter-spacing:-0.238080pt;}
.ls27{letter-spacing:-0.119040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.119040pt;}
.ls24{letter-spacing:0.333312pt;}
.ls23{letter-spacing:0.386880pt;}
.ls17{letter-spacing:0.416640pt;}
.ls9{letter-spacing:0.430080pt;}
.lsd{letter-spacing:0.476160pt;}
.ls4{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.773760pt;}
.ls6{letter-spacing:0.929280pt;}
.lsb{letter-spacing:0.952320pt;}
.ls0{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:2.107008pt;}
.ls16{letter-spacing:2.279616pt;}
.ls13{letter-spacing:2.380800pt;}
.ls15{letter-spacing:4.023552pt;}
.ls19{letter-spacing:4.243776pt;}
.ls29{letter-spacing:4.344960pt;}
.ls22{letter-spacing:5.922240pt;}
.ls1a{letter-spacing:6.249600pt;}
.ls14{letter-spacing:8.154240pt;}
.ls2{letter-spacing:9.963648pt;}
.ls21{letter-spacing:10.023168pt;}
.ls20{letter-spacing:10.058880pt;}
.ls26{letter-spacing:12.023040pt;}
.ls25{letter-spacing:13.927680pt;}
.ls3{letter-spacing:31.426560pt;}
.ls1{letter-spacing:35.295360pt;}
.ws0{word-spacing:-21.120000pt;}
.ws3{word-spacing:-15.832320pt;}
.ws38{word-spacing:-15.653760pt;}
.ws37{word-spacing:-15.356160pt;}
.ws8{word-spacing:-14.880000pt;}
.ws4b{word-spacing:-14.760960pt;}
.ws39{word-spacing:-14.641920pt;}
.ws2b{word-spacing:-14.284800pt;}
.ws4{word-spacing:-14.165760pt;}
.ws7{word-spacing:-13.927680pt;}
.ws44{word-spacing:-13.870080pt;}
.ws4c{word-spacing:-13.689600pt;}
.ws4a{word-spacing:-13.451520pt;}
.ws2{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.094400pt;}
.ws1{word-spacing:-13.009920pt;}
.ws5{word-spacing:-12.856320pt;}
.ws3a{word-spacing:-12.737280pt;}
.ws45{word-spacing:-11.343360pt;}
.ws41{word-spacing:-2.380800pt;}
.ws4d{word-spacing:-2.202240pt;}
.wsd{word-spacing:-1.935360pt;}
.ws27{word-spacing:-1.904640pt;}
.ws2a{word-spacing:-0.952320pt;}
.wsb{word-spacing:-0.929280pt;}
.ws4e{word-spacing:-0.833280pt;}
.ws3f{word-spacing:-0.773760pt;}
.ws28{word-spacing:-0.476160pt;}
.wse{word-spacing:-0.430080pt;}
.ws49{word-spacing:-0.297600pt;}
.wsa{word-spacing:0.000000pt;}
.ws42{word-spacing:0.595200pt;}
.ws15{word-spacing:0.806400pt;}
.ws3e{word-spacing:0.952320pt;}
.ws9{word-spacing:1.013760pt;}
.ws40{word-spacing:1.071360pt;}
.ws29{word-spacing:1.190400pt;}
.ws1f{word-spacing:1.428480pt;}
.ws12{word-spacing:1.505280pt;}
.ws34{word-spacing:1.607040pt;}
.wsc{word-spacing:1.666560pt;}
.ws1b{word-spacing:1.904640pt;}
.ws47{word-spacing:2.023680pt;}
.ws51{word-spacing:2.261760pt;}
.ws46{word-spacing:2.499840pt;}
.ws11{word-spacing:2.741760pt;}
.ws4f{word-spacing:3.035520pt;}
.ws1c{word-spacing:3.333120pt;}
.ws3d{word-spacing:3.392640pt;}
.ws52{word-spacing:3.571200pt;}
.ws10{word-spacing:3.816960pt;}
.ws24{word-spacing:3.868800pt;}
.ws13{word-spacing:4.623360pt;}
.ws23{word-spacing:4.940160pt;}
.ws53{word-spacing:5.059200pt;}
.ws30{word-spacing:5.297280pt;}
.ws36{word-spacing:5.475840pt;}
.ws17{word-spacing:5.752320pt;}
.ws33{word-spacing:5.773440pt;}
.ws2f{word-spacing:6.368640pt;}
.ws16{word-spacing:6.558720pt;}
.ws2c{word-spacing:7.201920pt;}
.ws35{word-spacing:7.380480pt;}
.ws1d{word-spacing:7.678080pt;}
.ws2d{word-spacing:9.106560pt;}
.ws19{word-spacing:9.582720pt;}
.ws14{word-spacing:9.623040pt;}
.ws1a{word-spacing:11.011200pt;}
.ws3c{word-spacing:11.487360pt;}
.ws1e{word-spacing:11.546880pt;}
.ws18{word-spacing:12.311040pt;}
.ws48{word-spacing:12.618240pt;}
.ws3b{word-spacing:12.975360pt;}
.ws31{word-spacing:13.451520pt;}
.ws32{word-spacing:14.880000pt;}
.wsf{word-spacing:15.375360pt;}
.ws43{word-spacing:17.260800pt;}
.ws2e{word-spacing:18.689280pt;}
.ws25{word-spacing:19.224960pt;}
.ws26{word-spacing:20.653440pt;}
.ws22{word-spacing:24.938880pt;}
.ws21{word-spacing:26.367360pt;}
.ws50{word-spacing:26.843520pt;}
.ws20{word-spacing:26.903040pt;}
._8{margin-left:-4.831104pt;}
._2{margin-left:-3.742464pt;}
._5{margin-left:-2.836992pt;}
._0{margin-left:-1.605120pt;}
._1{width:1.005312pt;}
._3{width:1.951488pt;}
._6{width:2.841600pt;}
._7{width:3.880704pt;}
._9{width:6.355584pt;}
._a{width:10.909824pt;}
._4{width:15.316224pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:36.480000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:59.520000pt;}
.fs0{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.360000pt;}
.ya3{bottom:3.840000pt;}
.y33{bottom:40.800000pt;}
.y32{bottom:57.120000pt;}
.y2b{bottom:79.095360pt;}
.yc4{bottom:82.092000pt;}
.y2d{bottom:87.840000pt;}
.y2a{bottom:94.942560pt;}
.yf3{bottom:95.439360pt;}
.yc3{bottom:99.367680pt;}
.yaf{bottom:104.609760pt;}
.y115{bottom:106.911840pt;}
.y68{bottom:107.745120pt;}
.ydb{bottom:107.893920pt;}
.y29{bottom:110.789760pt;}
.yf2{bottom:111.286560pt;}
.y114{bottom:122.759040pt;}
.yda{bottom:123.741120pt;}
.y67{bottom:124.068480pt;}
.yae{bottom:126.215520pt;}
.y28{bottom:127.113120pt;}
.yf1{bottom:127.609920pt;}
.y66{bottom:139.915680pt;}
.yd9{bottom:140.064480pt;}
.yf0{bottom:143.457120pt;}
.y113{bottom:146.760480pt;}
.yad{bottom:147.330240pt;}
.y27{bottom:148.227840pt;}
.y65{bottom:155.762880pt;}
.yd8{bottom:155.911680pt;}
.yef{bottom:159.304320pt;}
.y112{bottom:162.607680pt;}
.yac{bottom:163.177440pt;}
.y26{bottom:164.075040pt;}
.yd7{bottom:171.758880pt;}
.y82{bottom:175.583040pt;}
.yee{bottom:175.627680pt;}
.y64{bottom:177.368640pt;}
.yab{bottom:179.500800pt;}
.y25{bottom:180.398400pt;}
.y111{bottom:186.609120pt;}
.yd6{bottom:188.082240pt;}
.yed{bottom:191.474880pt;}
.y63{bottom:193.215840pt;}
.yaa{bottom:195.348000pt;}
.y24{bottom:196.245600pt;}
.y81{bottom:197.188800pt;}
.y110{bottom:202.456320pt;}
.yd5{bottom:203.929440pt;}
.yec{bottom:207.322080pt;}
.y62{bottom:209.063040pt;}
.ya9{bottom:211.195200pt;}
.y23{bottom:212.092800pt;}
.y80{bottom:218.303520pt;}
.yd4{bottom:219.776640pt;}
.yeb{bottom:223.645440pt;}
.y61{bottom:225.386400pt;}
.y10f{bottom:226.457760pt;}
.ya8{bottom:227.518560pt;}
.y22{bottom:228.416160pt;}
.yd3{bottom:236.100000pt;}
.y7f{bottom:239.909280pt;}
.y60{bottom:241.233600pt;}
.y21{bottom:244.263360pt;}
.y10e{bottom:250.935360pt;}
.ya7{bottom:251.520000pt;}
.y7e{bottom:255.756480pt;}
.yea{bottom:255.801120pt;}
.y5f{bottom:257.080800pt;}
.y20{bottom:260.110560pt;}
.y10d{bottom:266.782560pt;}
.yd2{bottom:268.255680pt;}
.y7d{bottom:271.603680pt;}
.ye9{bottom:273.076800pt;}
.y5e{bottom:273.404160pt;}
.y1f{bottom:276.433920pt;}
.ya6{bottom:280.800000pt;}
.yd1{bottom:285.531360pt;}
.y7c{bottom:287.927040pt;}
.y10c{bottom:290.784000pt;}
.y1e{bottom:292.281120pt;}
.y5d{bottom:294.518880pt;}
.ya5{bottom:300.480000pt;}
.y7b{bottom:303.774240pt;}
.y10b{bottom:306.631200pt;}
.y1d{bottom:308.128320pt;}
.y5c{bottom:310.842240pt;}
.y7a{bottom:319.621440pt;}
.ya4{bottom:319.680000pt;}
.y1c{bottom:324.451680pt;}
.y5b{bottom:326.689440pt;}
.y10a{bottom:330.632640pt;}
.ya2{bottom:338.880000pt;}
.y1b{bottom:340.298880pt;}
.y5a{bottom:342.536640pt;}
.y79{bottom:344.575200pt;}
.y109{bottom:346.956000pt;}
.ya1{bottom:358.560000pt;}
.y59{bottom:358.860000pt;}
.y78{bottom:360.898560pt;}
.y1a{bottom:364.300320pt;}
.y108{bottom:370.957440pt;}
.y58{bottom:374.707200pt;}
.y77{bottom:377.698080pt;}
.ya0{bottom:389.765760pt;}
.y57{bottom:390.554400pt;}
.y19{bottom:392.140800pt;}
.y107{bottom:402.636960pt;}
.y76{bottom:402.651840pt;}
.y56{bottom:406.877760pt;}
.y18{bottom:408.464160pt;}
.y106{bottom:418.960320pt;}
.y9f{bottom:421.921440pt;}
.y55{bottom:422.724960pt;}
.y17{bottom:424.311360pt;}
.y75{bottom:434.331360pt;}
.y105{bottom:434.807520pt;}
.y54{bottom:438.572160pt;}
.y9e{bottom:438.720960pt;}
.y16{bottom:440.158560pt;}
.y74{bottom:450.178560pt;}
.y104{bottom:450.654720pt;}
.y9d{bottom:455.996640pt;}
.y53{bottom:462.573600pt;}
.y15{bottom:464.160000pt;}
.y73{bottom:466.501920pt;}
.y103{bottom:472.260480pt;}
.y9c{bottom:479.998080pt;}
.y72{bottom:482.349120pt;}
.y102{bottom:488.107680pt;}
.y52{bottom:490.890240pt;}
.y71{bottom:498.196320pt;}
.y9b{bottom:501.603840pt;}
.y101{bottom:503.954880pt;}
.y51{bottom:506.737440pt;}
.y14{bottom:512.601600pt;}
.y70{bottom:514.519680pt;}
.y100{bottom:520.278240pt;}
.y50{bottom:522.584640pt;}
.y9a{bottom:522.718560pt;}
.y6f{bottom:530.366880pt;}
.yff{bottom:536.125440pt;}
.y4f{bottom:538.908000pt;}
.y13{bottom:544.279680pt;}
.y99{bottom:544.324320pt;}
.ye8{bottom:544.755840pt;}
.y6e{bottom:546.214080pt;}
.yfe{bottom:551.972640pt;}
.y4e{bottom:554.755200pt;}
.y12{bottom:560.125440pt;}
.ye7{bottom:561.079200pt;}
.y98{bottom:565.439040pt;}
.y4d{bottom:575.869920pt;}
.yfd{bottom:575.974080pt;}
.y11{bottom:576.441600pt;}
.ye6{bottom:576.926400pt;}
.y6d{bottom:578.369760pt;}
.y97{bottom:587.044800pt;}
.y4c{bottom:592.193280pt;}
.y10{bottom:592.287360pt;}
.yfc{bottom:592.297440pt;}
.ye5{bottom:592.773600pt;}
.yc2{bottom:593.294400pt;}
.y4b{bottom:608.040480pt;}
.yf{bottom:608.133120pt;}
.yfb{bottom:608.144640pt;}
.y96{bottom:608.159520pt;}
.ye4{bottom:609.096960pt;}
.y4a{bottom:623.887680pt;}
.yfa{bottom:623.991840pt;}
.ye{bottom:624.449280pt;}
.ye3{bottom:624.944160pt;}
.yc1{bottom:625.450080pt;}
.y95{bottom:629.765280pt;}
.y49{bottom:640.211040pt;}
.yd{bottom:640.295040pt;}
.yf9{bottom:640.315200pt;}
.ye2{bottom:640.791360pt;}
.yc0{bottom:642.725760pt;}
.y94{bottom:650.880000pt;}
.y48{bottom:656.058240pt;}
.yc{bottom:656.140800pt;}
.yf8{bottom:656.162400pt;}
.ye1{bottom:657.114720pt;}
.ybf{bottom:666.727200pt;}
.y47{bottom:671.905440pt;}
.y93{bottom:671.994720pt;}
.yb{bottom:672.456960pt;}
.ye0{bottom:672.961920pt;}
.y122{bottom:680.089440pt;}
.y46{bottom:688.228800pt;}
.ya{bottom:688.302720pt;}
.yf7{bottom:688.318080pt;}
.ybe{bottom:688.332960pt;}
.ydf{bottom:688.809120pt;}
.y92{bottom:693.600480pt;}
.y121{bottom:695.936640pt;}
.y9{bottom:704.148480pt;}
.yde{bottom:705.132480pt;}
.y45{bottom:709.343520pt;}
.ybd{bottom:709.447680pt;}
.y91{bottom:714.715200pt;}
.y120{bottom:719.938080pt;}
.y8{bottom:720.464640pt;}
.yf6{bottom:720.473760pt;}
.y44{bottom:725.190720pt;}
.ybc{bottom:731.053440pt;}
.y11f{bottom:736.261440pt;}
.y7{bottom:736.310400pt;}
.y90{bottom:736.320960pt;}
.yf5{bottom:737.273280pt;}
.ydd{bottom:737.288160pt;}
.y43{bottom:741.514080pt;}
.y11e{bottom:752.108640pt;}
.y6{bottom:752.156160pt;}
.ybb{bottom:752.168160pt;}
.yf4{bottom:754.072800pt;}
.ydc{bottom:754.563840pt;}
.y42{bottom:757.361280pt;}
.y8f{bottom:757.435680pt;}
.y11d{bottom:767.955840pt;}
.y41{bottom:773.208480pt;}
.yba{bottom:773.773920pt;}
.yd0{bottom:778.967040pt;}
.y8e{bottom:779.041440pt;}
.y40{bottom:789.531840pt;}
.y11c{bottom:791.957280pt;}
.yb9{bottom:794.888640pt;}
.ycf{bottom:800.081760pt;}
.y8d{bottom:800.156160pt;}
.y5{bottom:800.634240pt;}
.y3f{bottom:805.379040pt;}
.y11b{bottom:807.804480pt;}
.yce{bottom:815.928960pt;}
.yb8{bottom:816.003360pt;}
.y83{bottom:820.320000pt;}
.y3e{bottom:821.702400pt;}
.y8c{bottom:821.761920pt;}
.y4{bottom:828.000000pt;}
.y11a{bottom:831.805920pt;}
.ycd{bottom:832.252320pt;}
.yb7{bottom:837.609120pt;}
.y3d{bottom:842.817120pt;}
.y8b{bottom:842.876640pt;}
.y3{bottom:847.200000pt;}
.ycc{bottom:848.099520pt;}
.y119{bottom:856.283520pt;}
.y3c{bottom:858.664320pt;}
.yb6{bottom:858.723840pt;}
.ycb{bottom:863.946720pt;}
.y8a{bottom:863.991360pt;}
.y118{bottom:872.130720pt;}
.y3b{bottom:874.987680pt;}
.yca{bottom:880.270080pt;}
.yb5{bottom:880.329600pt;}
.y89{bottom:885.597120pt;}
.y3a{bottom:890.834880pt;}
.yc9{bottom:896.117280pt;}
.y117{bottom:896.132160pt;}
.y2{bottom:897.121920pt;}
.yb4{bottom:901.444320pt;}
.y39{bottom:906.682080pt;}
.y88{bottom:906.711840pt;}
.yc8{bottom:911.964480pt;}
.y116{bottom:911.979360pt;}
.y6c{bottom:920.133600pt;}
.y1{bottom:921.600000pt;}
.y38{bottom:923.005440pt;}
.yb3{bottom:923.050080pt;}
.yc7{bottom:928.287840pt;}
.y87{bottom:928.317600pt;}
.y6b{bottom:935.980800pt;}
.y37{bottom:938.852640pt;}
.yc6{bottom:944.135040pt;}
.yb2{bottom:944.164800pt;}
.y2c{bottom:948.960000pt;}
.y86{bottom:949.432320pt;}
.y6a{bottom:952.304160pt;}
.y36{bottom:954.699840pt;}
.yc5{bottom:959.982240pt;}
.yb1{bottom:965.770560pt;}
.y69{bottom:968.151360pt;}
.y85{bottom:971.038080pt;}
.y35{bottom:976.305600pt;}
.yb0{bottom:986.885280pt;}
.y34{bottom:992.152800pt;}
.y2f{bottom:1005.123840pt;}
.y31{bottom:1008.000133pt;}
.y2e{bottom:1020.480000pt;}
.y30{bottom:1033.920133pt;}
.hd{height:16.320000pt;}
.he{height:18.240000pt;}
.hf{height:18.720000pt;}
.h4{height:33.901875pt;}
.h5{height:52.736250pt;}
.h7{height:52.762500pt;}
.hb{height:53.101342pt;}
.h6{height:54.180000pt;}
.h9{height:58.415625pt;}
.hc{height:59.985000pt;}
.h8{height:62.077500pt;}
.h3{height:62.665846pt;}
.h2{height:85.140000pt;}
.ha{height:101.280000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:108.000000pt;}
.w3{width:120.000000pt;}
.w5{width:158.880000pt;}
.w6{width:267.360000pt;}
.w2{width:661.440000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:20.640000pt;}
.xe{left:28.320000pt;}
.x16{left:38.400000pt;}
.x20{left:44.160000pt;}
.x1f{left:46.560000pt;}
.x1e{left:47.520000pt;}
.x1c{left:48.960000pt;}
.x1b{left:50.400000pt;}
.x18{left:62.880000pt;}
.x3{left:66.240000pt;}
.x1{left:75.360000pt;}
.x23{left:79.185120pt;}
.x11{left:82.548000pt;}
.x12{left:86.878080pt;}
.x28{left:87.845280pt;}
.x21{left:91.193280pt;}
.x14{left:92.175360pt;}
.x8{left:94.080000pt;}
.x1a{left:100.320000pt;}
.x10{left:106.073280pt;}
.xf{left:107.516640pt;}
.x2{left:113.274240pt;}
.xa{left:119.520000pt;}
.x15{left:129.120000pt;}
.x25{left:172.319040pt;}
.x24{left:174.223680pt;}
.xb{left:199.698240pt;}
.x29{left:206.409120pt;}
.x13{left:224.175840pt;}
.x5{left:234.240000pt;}
.x17{left:237.600000pt;}
.x4{left:266.880000pt;}
.x22{left:283.680960pt;}
.x7{left:338.400000pt;}
.x26{left:355.700160pt;}
.x6{left:372.475200pt;}
.x9{left:383.040000pt;}
.xc{left:396.456480pt;}
.x19{left:397.440000pt;}
.x27{left:426.246240pt;}
.xd{left:545.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; }
  