
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf6f81272cf5301230074a7d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_64989dde609e375bef23e5b3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6101f2a0749006a1f051d626.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_acdd819493801ea74e737e52.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_76ee84edab5252a3b533322f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_89645e5310e90b16e6b44afe.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_659d51d675f4412a353666a9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.ls1a{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.199200px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.074160px;}
.ls15{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.160800px;}
.lsc{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.387200px;}
.wse{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.287000px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.ws3{word-spacing:-13.039800px;}
.ws6{word-spacing:-13.027200px;}
.ws11{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._9{margin-left:-3.933000px;}
._6{margin-left:-2.440440px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._2{width:2.164200px;}
._3{width:3.907800px;}
._c{width:4.914381px;}
._4{width:6.192600px;}
._5{width:7.206258px;}
._a{width:9.063984px;}
._7{width:10.160400px;}
._8{width:11.365439px;}
._b{width:14.789520px;}
._d{width:15.811560px;}
._e{width:17.013960px;}
._12{width:19.258200px;}
._11{width:20.801520px;}
._13{width:22.281120px;}
._f{width:25.430760px;}
._14{width:28.136160px;}
._10{width:94.147920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(27,27,27);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs9{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:7.830000px;}
.y52{bottom:7.920000px;}
.y95{bottom:16.650000px;}
.yde{bottom:21.510000px;}
.y51{bottom:25.470000px;}
.yc4{bottom:35.190000px;}
.yd0{bottom:48.870000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ybc{bottom:112.260000px;}
.y128{bottom:112.980000px;}
.y10a{bottom:113.160000px;}
.y74{bottom:113.880000px;}
.ye2{bottom:124.320000px;}
.ybb{bottom:126.300000px;}
.y27{bottom:130.260000px;}
.y127{bottom:130.620000px;}
.y109{bottom:130.710000px;}
.y94{bottom:131.790000px;}
.y5a{bottom:134.580000px;}
.yba{bottom:138.540000px;}
.y26{bottom:147.810000px;}
.y73{bottom:149.430000px;}
.y59{bottom:152.130000px;}
.ye1{bottom:156.360000px;}
.y126{bottom:157.170000px;}
.y25{bottom:165.450000px;}
.yb9{bottom:165.810000px;}
.y108{bottom:166.350000px;}
.y58{bottom:169.680000px;}
.y93{bottom:176.700000px;}
.y72{bottom:181.650000px;}
.y24{bottom:183.000000px;}
.y107{bottom:183.900000px;}
.y125{bottom:184.080000px;}
.y57{bottom:187.320000px;}
.ye0{bottom:188.400000px;}
.yb8{bottom:193.170000px;}
.y23{bottom:200.550000px;}
.y106{bottom:201.450000px;}
.ydf{bottom:202.530000px;}
.y92{bottom:204.060000px;}
.y56{bottom:204.870000px;}
.ydd{bottom:214.680000px;}
.y22{bottom:218.190000px;}
.y105{bottom:219.090000px;}
.yb7{bottom:220.530000px;}
.y91{bottom:231.420000px;}
.y55{bottom:231.510000px;}
.y124{bottom:232.320000px;}
.y21{bottom:235.740000px;}
.y104{bottom:236.640000px;}
.ydc{bottom:242.040000px;}
.yb6{bottom:247.800000px;}
.y20{bottom:253.380000px;}
.y103{bottom:254.190000px;}
.y90{bottom:258.690000px;}
.y123{bottom:259.230000px;}
.y54{bottom:264.450000px;}
.y14b{bottom:266.250000px;}
.ydb{bottom:269.400000px;}
.y1f{bottom:270.930000px;}
.yb5{bottom:275.160000px;}
.y14a{bottom:283.800000px;}
.y8f{bottom:286.050000px;}
.y102{bottom:289.830000px;}
.y53{bottom:291.810000px;}
.y122{bottom:296.310000px;}
.y1e{bottom:297.840000px;}
.yb4{bottom:302.520000px;}
.y101{bottom:307.380000px;}
.y149{bottom:310.440000px;}
.y8e{bottom:313.410000px;}
.yda{bottom:318.090000px;}
.y50{bottom:319.080000px;}
.y121{bottom:323.220000px;}
.y100{bottom:325.020000px;}
.y148{bottom:327.990000px;}
.y8d{bottom:340.770000px;}
.yff{bottom:342.570000px;}
.y1d{bottom:346.440000px;}
.yb3{bottom:351.210000px;}
.yd9{bottom:353.640000px;}
.y147{bottom:354.540000px;}
.yfe{bottom:360.120000px;}
.y120{bottom:360.210000px;}
.y4e{bottom:364.080000px;}
.y8c{bottom:368.040000px;}
.yd8{bottom:371.280000px;}
.y146{bottom:372.180000px;}
.yfd{bottom:377.760000px;}
.y1c{bottom:383.430000px;}
.yb2{bottom:386.760000px;}
.y11f{bottom:387.120000px;}
.yd7{bottom:388.830000px;}
.y145{bottom:389.730000px;}
.yfc{bottom:395.310000px;}
.y8b{bottom:395.400000px;}
.y1b{bottom:401.070000px;}
.yd6{bottom:406.380000px;}
.y4d{bottom:412.770000px;}
.yfb{bottom:412.950000px;}
.y144{bottom:416.370000px;}
.yb1{bottom:422.400000px;}
.y11e{bottom:424.110000px;}
.yfa{bottom:430.500000px;}
.yd5{bottom:433.020000px;}
.y143{bottom:433.920000px;}
.y1a{bottom:436.620000px;}
.yb0{bottom:439.950000px;}
.y11d{bottom:441.750000px;}
.y8a{bottom:444.090000px;}
.yf9{bottom:448.050000px;}
.y4c{bottom:448.320000px;}
.y142{bottom:451.470000px;}
.y19{bottom:454.170000px;}
.yaf{bottom:457.590000px;}
.y11c{bottom:459.300000px;}
.y4b{bottom:465.870000px;}
.y18{bottom:471.840000px;}
.yae{bottom:475.170000px;}
.y141{bottom:478.140000px;}
.y89{bottom:479.760000px;}
.y4a{bottom:483.540000px;}
.yf8{bottom:483.720000px;}
.y11b{bottom:486.240000px;}
.y17{bottom:489.390000px;}
.yd4{bottom:489.840000px;}
.yad{bottom:492.720000px;}
.y140{bottom:495.690000px;}
.y88{bottom:497.310000px;}
.y49{bottom:501.090000px;}
.yf7{bottom:501.270000px;}
.y16{bottom:507.030000px;}
.ycf{bottom:507.390000px;}
.y13f{bottom:513.330000px;}
.y87{bottom:514.860000px;}
.y48{bottom:518.730000px;}
.yf6{bottom:518.910000px;}
.yac{bottom:519.360000px;}
.y11a{bottom:523.590000px;}
.y15{bottom:524.580000px;}
.y86{bottom:532.500000px;}
.yd3{bottom:534.750000px;}
.y47{bottom:536.280000px;}
.yf5{bottom:536.460000px;}
.y13e{bottom:539.880000px;}
.y85{bottom:550.050000px;}
.y46{bottom:553.830000px;}
.yf4{bottom:554.010000px;}
.yab{bottom:554.190000px;}
.y13d{bottom:557.430000px;}
.y14{bottom:560.130000px;}
.yd2{bottom:562.020000px;}
.y84{bottom:567.690000px;}
.yaa{bottom:568.230000px;}
.yf3{bottom:571.650000px;}
.y119{bottom:571.830000px;}
.y13c{bottom:575.070000px;}
.y13{bottom:577.770000px;}
.y45{bottom:580.470000px;}
.y83{bottom:585.240000px;}
.yf2{bottom:589.200000px;}
.yd1{bottom:589.380000px;}
.y118{bottom:589.470000px;}
.y12{bottom:595.320000px;}
.y13b{bottom:601.620000px;}
.yf1{bottom:606.840000px;}
.y117{bottom:607.020000px;}
.ya9{bottom:607.740000px;}
.y82{bottom:611.790000px;}
.y11{bottom:612.960000px;}
.y44{bottom:616.380000px;}
.yce{bottom:616.740000px;}
.y13a{bottom:619.260000px;}
.yf0{bottom:624.390000px;}
.y116{bottom:624.660000px;}
.y10{bottom:630.510000px;}
.ya8{bottom:635.100000px;}
.y139{bottom:636.810000px;}
.y71{bottom:641.760000px;}
.yef{bottom:641.940000px;}
.y115{bottom:642.210000px;}
.ycd{bottom:644.100000px;}
.y81{bottom:646.710000px;}
.y80{bottom:658.860000px;}
.y70{bottom:659.400000px;}
.yee{bottom:659.580000px;}
.ya7{bottom:662.460000px;}
.y138{bottom:663.360000px;}
.y43{bottom:664.620000px;}
.yf{bottom:666.060000px;}
.y114{bottom:669.120000px;}
.y6f{bottom:676.950000px;}
.yed{bottom:677.130000px;}
.y137{bottom:681.000000px;}
.y42{bottom:682.260000px;}
.ye{bottom:683.700000px;}
.y7f{bottom:686.220000px;}
.ya6{bottom:689.820000px;}
.ycc{bottom:692.790000px;}
.y6e{bottom:694.590000px;}
.y136{bottom:698.550000px;}
.y41{bottom:699.810000px;}
.yd{bottom:701.250000px;}
.yec{bottom:704.040000px;}
.y6d{bottom:712.140000px;}
.y7e{bottom:713.490000px;}
.ya5{bottom:717.090000px;}
.y40{bottom:717.360000px;}
.y135{bottom:725.190000px;}
.yc{bottom:728.160000px;}
.ycb{bottom:728.340000px;}
.y6c{bottom:729.690000px;}
.y113{bottom:735.000000px;}
.y7d{bottom:740.850000px;}
.y134{bottom:742.740000px;}
.ya4{bottom:744.450000px;}
.yca{bottom:745.980000px;}
.y6b{bottom:747.330000px;}
.yeb{bottom:749.670000px;}
.y112{bottom:752.550000px;}
.y3f{bottom:753.000000px;}
.yc9{bottom:763.530000px;}
.y6a{bottom:764.880000px;}
.y7c{bottom:768.210000px;}
.y133{bottom:769.290000px;}
.y111{bottom:770.190000px;}
.y3e{bottom:770.550000px;}
.ya3{bottom:771.810000px;}
.yb{bottom:776.490000px;}
.yea{bottom:777.030000px;}
.yc8{bottom:781.080000px;}
.y69{bottom:782.520000px;}
.y132{bottom:786.930000px;}
.y110{bottom:787.740000px;}
.y3d{bottom:788.190000px;}
.y7b{bottom:795.570000px;}
.ya2{bottom:799.170000px;}
.y68{bottom:800.070000px;}
.ye9{bottom:804.390000px;}
.y131{bottom:804.480000px;}
.y10f{bottom:805.290000px;}
.y3c{bottom:805.740000px;}
.yc7{bottom:807.720000px;}
.ya{bottom:812.040000px;}
.y10e{bottom:822.930000px;}
.y3b{bottom:823.290000px;}
.ya1{bottom:826.440000px;}
.y130{bottom:831.030000px;}
.ye8{bottom:831.750000px;}
.y67{bottom:835.620000px;}
.y10d{bottom:840.480000px;}
.y3a{bottom:840.930000px;}
.yc6{bottom:842.550000px;}
.y7a{bottom:844.260000px;}
.y9{bottom:847.860000px;}
.y12f{bottom:848.670000px;}
.y66{bottom:853.260000px;}
.ya0{bottom:853.800000px;}
.yc5{bottom:856.590000px;}
.y39{bottom:858.480000px;}
.ye7{bottom:859.020000px;}
.yc3{bottom:868.830000px;}
.y65{bottom:870.810000px;}
.y12e{bottom:875.220000px;}
.y38{bottom:876.030000px;}
.y79{bottom:879.810000px;}
.y9f{bottom:881.160000px;}
.y8{bottom:883.860000px;}
.ye6{bottom:886.380000px;}
.y37{bottom:893.670000px;}
.yc2{bottom:896.100000px;}
.y78{bottom:897.450000px;}
.y64{bottom:897.720000px;}
.y12d{bottom:901.860000px;}
.y7{bottom:905.640000px;}
.y9e{bottom:908.430000px;}
.y36{bottom:911.220000px;}
.ye4{bottom:913.740000px;}
.y77{bottom:915.000000px;}
.y12c{bottom:919.410000px;}
.y6{bottom:919.860000px;}
.yc1{bottom:923.460000px;}
.y35{bottom:928.860000px;}
.y9d{bottom:935.790000px;}
.y12b{bottom:936.960000px;}
.ye5{bottom:941.100000px;}
.y76{bottom:941.550000px;}
.y5{bottom:941.640000px;}
.y63{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y9c{bottom:963.150000px;}
.y62{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.yc0{bottom:972.150000px;}
.y4{bottom:973.950000px;}
.y75{bottom:977.460000px;}
.y12a{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.ye3{bottom:989.790000px;}
.y61{bottom:990.150000px;}
.y9b{bottom:990.510000px;}
.y31{bottom:999.150000px;}
.ybf{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y30{bottom:1016.820000px;}
.y9a{bottom:1017.810000px;}
.ybe{bottom:1025.370000px;}
.y60{bottom:1025.820000px;}
.y2f{bottom:1034.370000px;}
.y10c{bottom:1034.820000px;}
.ybd{bottom:1042.920000px;}
.y5f{bottom:1043.370000px;}
.y99{bottom:1045.170000px;}
.y129{bottom:1051.920000px;}
.y10b{bottom:1052.370000px;}
.y5e{bottom:1060.920000px;}
.y2e{bottom:1069.920000px;}
.y98{bottom:1072.530000px;}
.y5d{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y5c{bottom:1096.110000px;}
.y97{bottom:1099.890000px;}
.y2c{bottom:1105.110000px;}
.y5b{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y96{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h14{height:40.539023px;}
.hf{height:41.661211px;}
.hd{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h11{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h16{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h13{height:74.953125px;}
.h15{height:83.635664px;}
.h12{height:108.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:32.760000px;}
.w19{width:57.870000px;}
.w16{width:57.960000px;}
.w10{width:67.680000px;}
.w17{width:71.010000px;}
.w1f{width:71.100000px;}
.we{width:83.610000px;}
.w14{width:88.680000px;}
.w6{width:90.270000px;}
.w15{width:97.020000px;}
.w1c{width:97.830000px;}
.w22{width:114.330000px;}
.wd{width:121.980000px;}
.w20{width:124.050000px;}
.w18{width:125.130000px;}
.wc{width:126.630000px;}
.w7{width:138.330000px;}
.w23{width:144.630000px;}
.w1b{width:153.210000px;}
.wf{width:167.130000px;}
.w8{width:167.160000px;}
.w1d{width:168.150000px;}
.w4{width:171.840000px;}
.w21{width:172.980000px;}
.w11{width:183.060000px;}
.w1e{width:189.900000px;}
.wb{width:253.290000px;}
.w13{width:253.890000px;}
.w24{width:259.770000px;}
.w9{width:306.210000px;}
.w5{width:458.490000px;}
.w12{width:499.890000px;}
.w1a{width:611.340000px;}
.wa{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x25{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:73.529987px;}
.x1e{left:75.869987px;}
.x19{left:77.219987px;}
.x5{left:102.330000px;}
.x28{left:111.239987px;}
.x1f{left:140.940000px;}
.xd{left:158.219987px;}
.x2{left:191.459987px;}
.x15{left:196.680000px;}
.x24{left:229.890000px;}
.x6{left:274.890000px;}
.xb{left:293.520000px;}
.x20{left:294.870000px;}
.xa{left:301.259987px;}
.x1b{left:318.810000px;}
.xe{left:322.860000px;}
.x14{left:361.829987px;}
.x1c{left:390.630000px;}
.x21{left:393.510000px;}
.x26{left:403.590000px;}
.xc{left:432.570000px;}
.x1a{left:434.189987px;}
.x23{left:446.609987px;}
.xf{left:450.300000px;}
.x16{left:451.380000px;}
.x1d{left:516.570000px;}
.x27{left:518.730000px;}
.x17{left:540.870000px;}
.x22{left:562.380000px;}
.x10{left:573.000000px;}
.x18{left:638.610000px;}
.x12{left:641.400000px;}
.x11{left:657.330000px;}
.x9{left:691.889987px;}
.x7{left:734.190000px;}
.x8{left:808.619987px;}
.x3{left:816.989987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.177067pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.065920pt;}
.ls15{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.142933pt;}
.lsc{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.899733pt;}
.wse{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.810667pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.ws3{word-spacing:-11.590933pt;}
.ws6{word-spacing:-11.579733pt;}
.ws11{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._9{margin-left:-3.496000pt;}
._6{margin-left:-2.169280pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._2{width:1.923733pt;}
._3{width:3.473600pt;}
._c{width:4.368339pt;}
._4{width:5.504534pt;}
._5{width:6.405563pt;}
._a{width:8.056874pt;}
._7{width:9.031467pt;}
._8{width:10.102612pt;}
._b{width:13.146240pt;}
._d{width:14.054720pt;}
._e{width:15.123520pt;}
._12{width:17.118400pt;}
._11{width:18.490240pt;}
._13{width:19.805440pt;}
._f{width:22.605120pt;}
._14{width:25.009920pt;}
._10{width:83.687040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs9{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:6.960000pt;}
.y52{bottom:7.040000pt;}
.y95{bottom:14.800000pt;}
.yde{bottom:19.120000pt;}
.y51{bottom:22.640000pt;}
.yc4{bottom:31.280000pt;}
.yd0{bottom:43.440000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ybc{bottom:99.786667pt;}
.y128{bottom:100.426667pt;}
.y10a{bottom:100.586667pt;}
.y74{bottom:101.226667pt;}
.ye2{bottom:110.506667pt;}
.ybb{bottom:112.266667pt;}
.y27{bottom:115.786667pt;}
.y127{bottom:116.106667pt;}
.y109{bottom:116.186667pt;}
.y94{bottom:117.146667pt;}
.y5a{bottom:119.626667pt;}
.yba{bottom:123.146667pt;}
.y26{bottom:131.386667pt;}
.y73{bottom:132.826667pt;}
.y59{bottom:135.226667pt;}
.ye1{bottom:138.986667pt;}
.y126{bottom:139.706667pt;}
.y25{bottom:147.066667pt;}
.yb9{bottom:147.386667pt;}
.y108{bottom:147.866667pt;}
.y58{bottom:150.826667pt;}
.y93{bottom:157.066667pt;}
.y72{bottom:161.466667pt;}
.y24{bottom:162.666667pt;}
.y107{bottom:163.466667pt;}
.y125{bottom:163.626667pt;}
.y57{bottom:166.506667pt;}
.ye0{bottom:167.466667pt;}
.yb8{bottom:171.706667pt;}
.y23{bottom:178.266667pt;}
.y106{bottom:179.066667pt;}
.ydf{bottom:180.026667pt;}
.y92{bottom:181.386667pt;}
.y56{bottom:182.106667pt;}
.ydd{bottom:190.826667pt;}
.y22{bottom:193.946667pt;}
.y105{bottom:194.746667pt;}
.yb7{bottom:196.026667pt;}
.y91{bottom:205.706667pt;}
.y55{bottom:205.786667pt;}
.y124{bottom:206.506667pt;}
.y21{bottom:209.546667pt;}
.y104{bottom:210.346667pt;}
.ydc{bottom:215.146667pt;}
.yb6{bottom:220.266667pt;}
.y20{bottom:225.226667pt;}
.y103{bottom:225.946667pt;}
.y90{bottom:229.946667pt;}
.y123{bottom:230.426667pt;}
.y54{bottom:235.066667pt;}
.y14b{bottom:236.666667pt;}
.ydb{bottom:239.466667pt;}
.y1f{bottom:240.826667pt;}
.yb5{bottom:244.586667pt;}
.y14a{bottom:252.266667pt;}
.y8f{bottom:254.266667pt;}
.y102{bottom:257.626667pt;}
.y53{bottom:259.386667pt;}
.y122{bottom:263.386667pt;}
.y1e{bottom:264.746667pt;}
.yb4{bottom:268.906667pt;}
.y101{bottom:273.226667pt;}
.y149{bottom:275.946667pt;}
.y8e{bottom:278.586667pt;}
.yda{bottom:282.746667pt;}
.y50{bottom:283.626667pt;}
.y121{bottom:287.306667pt;}
.y100{bottom:288.906667pt;}
.y148{bottom:291.546667pt;}
.y8d{bottom:302.906667pt;}
.yff{bottom:304.506667pt;}
.y1d{bottom:307.946667pt;}
.yb3{bottom:312.186667pt;}
.yd9{bottom:314.346667pt;}
.y147{bottom:315.146667pt;}
.yfe{bottom:320.106667pt;}
.y120{bottom:320.186667pt;}
.y4e{bottom:323.626667pt;}
.y8c{bottom:327.146667pt;}
.yd8{bottom:330.026667pt;}
.y146{bottom:330.826667pt;}
.yfd{bottom:335.786667pt;}
.y1c{bottom:340.826667pt;}
.yb2{bottom:343.786667pt;}
.y11f{bottom:344.106667pt;}
.yd7{bottom:345.626667pt;}
.y145{bottom:346.426667pt;}
.yfc{bottom:351.386667pt;}
.y8b{bottom:351.466667pt;}
.y1b{bottom:356.506667pt;}
.yd6{bottom:361.226667pt;}
.y4d{bottom:366.906667pt;}
.yfb{bottom:367.066667pt;}
.y144{bottom:370.106667pt;}
.yb1{bottom:375.466667pt;}
.y11e{bottom:376.986667pt;}
.yfa{bottom:382.666667pt;}
.yd5{bottom:384.906667pt;}
.y143{bottom:385.706667pt;}
.y1a{bottom:388.106667pt;}
.yb0{bottom:391.066667pt;}
.y11d{bottom:392.666667pt;}
.y8a{bottom:394.746667pt;}
.yf9{bottom:398.266667pt;}
.y4c{bottom:398.506667pt;}
.y142{bottom:401.306667pt;}
.y19{bottom:403.706667pt;}
.yaf{bottom:406.746667pt;}
.y11c{bottom:408.266667pt;}
.y4b{bottom:414.106667pt;}
.y18{bottom:419.413333pt;}
.yae{bottom:422.373333pt;}
.y141{bottom:425.013333pt;}
.y89{bottom:426.453333pt;}
.y4a{bottom:429.813333pt;}
.yf8{bottom:429.973333pt;}
.y11b{bottom:432.213333pt;}
.y17{bottom:435.013333pt;}
.yd4{bottom:435.413333pt;}
.yad{bottom:437.973333pt;}
.y140{bottom:440.613333pt;}
.y88{bottom:442.053333pt;}
.y49{bottom:445.413333pt;}
.yf7{bottom:445.573333pt;}
.y16{bottom:450.693333pt;}
.ycf{bottom:451.013333pt;}
.y13f{bottom:456.293333pt;}
.y87{bottom:457.653333pt;}
.y48{bottom:461.093333pt;}
.yf6{bottom:461.253333pt;}
.yac{bottom:461.653333pt;}
.y11a{bottom:465.413333pt;}
.y15{bottom:466.293333pt;}
.y86{bottom:473.333333pt;}
.yd3{bottom:475.333333pt;}
.y47{bottom:476.693333pt;}
.yf5{bottom:476.853333pt;}
.y13e{bottom:479.893333pt;}
.y85{bottom:488.933333pt;}
.y46{bottom:492.293333pt;}
.yf4{bottom:492.453333pt;}
.yab{bottom:492.613333pt;}
.y13d{bottom:495.493333pt;}
.y14{bottom:497.893333pt;}
.yd2{bottom:499.573333pt;}
.y84{bottom:504.613333pt;}
.yaa{bottom:505.093333pt;}
.yf3{bottom:508.133333pt;}
.y119{bottom:508.293333pt;}
.y13c{bottom:511.173333pt;}
.y13{bottom:513.573333pt;}
.y45{bottom:515.973333pt;}
.y83{bottom:520.213333pt;}
.yf2{bottom:523.733333pt;}
.yd1{bottom:523.893333pt;}
.y118{bottom:523.973333pt;}
.y12{bottom:529.173333pt;}
.y13b{bottom:534.773333pt;}
.yf1{bottom:539.413333pt;}
.y117{bottom:539.573333pt;}
.ya9{bottom:540.213333pt;}
.y82{bottom:543.813333pt;}
.y11{bottom:544.853333pt;}
.y44{bottom:547.893333pt;}
.yce{bottom:548.213333pt;}
.y13a{bottom:550.453333pt;}
.yf0{bottom:555.013333pt;}
.y116{bottom:555.253333pt;}
.y10{bottom:560.453333pt;}
.ya8{bottom:564.533333pt;}
.y139{bottom:566.053333pt;}
.y71{bottom:570.453333pt;}
.yef{bottom:570.613333pt;}
.y115{bottom:570.853333pt;}
.ycd{bottom:572.533333pt;}
.y81{bottom:574.853333pt;}
.y80{bottom:585.653333pt;}
.y70{bottom:586.133333pt;}
.yee{bottom:586.293333pt;}
.ya7{bottom:588.853333pt;}
.y138{bottom:589.653333pt;}
.y43{bottom:590.773333pt;}
.yf{bottom:592.053333pt;}
.y114{bottom:594.773333pt;}
.y6f{bottom:601.733333pt;}
.yed{bottom:601.893333pt;}
.y137{bottom:605.333333pt;}
.y42{bottom:606.453333pt;}
.ye{bottom:607.733333pt;}
.y7f{bottom:609.973333pt;}
.ya6{bottom:613.173333pt;}
.ycc{bottom:615.813333pt;}
.y6e{bottom:617.413333pt;}
.y136{bottom:620.933333pt;}
.y41{bottom:622.053333pt;}
.yd{bottom:623.333333pt;}
.yec{bottom:625.813333pt;}
.y6d{bottom:633.013333pt;}
.y7e{bottom:634.213333pt;}
.ya5{bottom:637.413333pt;}
.y40{bottom:637.653333pt;}
.y135{bottom:644.613333pt;}
.yc{bottom:647.253333pt;}
.ycb{bottom:647.413333pt;}
.y6c{bottom:648.613333pt;}
.y113{bottom:653.333333pt;}
.y7d{bottom:658.533333pt;}
.y134{bottom:660.213333pt;}
.ya4{bottom:661.733333pt;}
.yca{bottom:663.093333pt;}
.y6b{bottom:664.293333pt;}
.yeb{bottom:666.373333pt;}
.y112{bottom:668.933333pt;}
.y3f{bottom:669.333333pt;}
.yc9{bottom:678.693333pt;}
.y6a{bottom:679.893333pt;}
.y7c{bottom:682.853333pt;}
.y133{bottom:683.813333pt;}
.y111{bottom:684.613333pt;}
.y3e{bottom:684.933333pt;}
.ya3{bottom:686.053333pt;}
.yb{bottom:690.213333pt;}
.yea{bottom:690.693333pt;}
.yc8{bottom:694.293333pt;}
.y69{bottom:695.573333pt;}
.y132{bottom:699.493333pt;}
.y110{bottom:700.213333pt;}
.y3d{bottom:700.613333pt;}
.y7b{bottom:707.173333pt;}
.ya2{bottom:710.373333pt;}
.y68{bottom:711.173333pt;}
.ye9{bottom:715.013333pt;}
.y131{bottom:715.093333pt;}
.y10f{bottom:715.813333pt;}
.y3c{bottom:716.213333pt;}
.yc7{bottom:717.973333pt;}
.ya{bottom:721.813333pt;}
.y10e{bottom:731.493333pt;}
.y3b{bottom:731.813333pt;}
.ya1{bottom:734.613333pt;}
.y130{bottom:738.693333pt;}
.ye8{bottom:739.333333pt;}
.y67{bottom:742.773333pt;}
.y10d{bottom:747.093333pt;}
.y3a{bottom:747.493333pt;}
.yc6{bottom:748.933333pt;}
.y7a{bottom:750.453333pt;}
.y9{bottom:753.653333pt;}
.y12f{bottom:754.373333pt;}
.y66{bottom:758.453333pt;}
.ya0{bottom:758.933333pt;}
.yc5{bottom:761.413333pt;}
.y39{bottom:763.093333pt;}
.ye7{bottom:763.573333pt;}
.yc3{bottom:772.293333pt;}
.y65{bottom:774.053333pt;}
.y12e{bottom:777.973333pt;}
.y38{bottom:778.693333pt;}
.y79{bottom:782.053333pt;}
.y9f{bottom:783.253333pt;}
.y8{bottom:785.653333pt;}
.ye6{bottom:787.893333pt;}
.y37{bottom:794.373333pt;}
.yc2{bottom:796.533333pt;}
.y78{bottom:797.733333pt;}
.y64{bottom:797.973333pt;}
.y12d{bottom:801.653333pt;}
.y7{bottom:805.013333pt;}
.y9e{bottom:807.493333pt;}
.y36{bottom:809.973333pt;}
.ye4{bottom:812.213333pt;}
.y77{bottom:813.333333pt;}
.y12c{bottom:817.253333pt;}
.y6{bottom:817.653333pt;}
.yc1{bottom:820.853333pt;}
.y35{bottom:825.653333pt;}
.y9d{bottom:831.813333pt;}
.y12b{bottom:832.853333pt;}
.ye5{bottom:836.533333pt;}
.y76{bottom:836.933333pt;}
.y5{bottom:837.013333pt;}
.y63{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y9c{bottom:856.133333pt;}
.y62{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.yc0{bottom:864.133333pt;}
.y4{bottom:865.733333pt;}
.y75{bottom:868.853333pt;}
.y12a{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.ye3{bottom:879.813333pt;}
.y61{bottom:880.133333pt;}
.y9b{bottom:880.453333pt;}
.y31{bottom:888.133333pt;}
.ybf{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y30{bottom:903.840000pt;}
.y9a{bottom:904.720000pt;}
.ybe{bottom:911.440000pt;}
.y60{bottom:911.840000pt;}
.y2f{bottom:919.440000pt;}
.y10c{bottom:919.840000pt;}
.ybd{bottom:927.040000pt;}
.y5f{bottom:927.440000pt;}
.y99{bottom:929.040000pt;}
.y129{bottom:935.040000pt;}
.y10b{bottom:935.440000pt;}
.y5e{bottom:943.040000pt;}
.y2e{bottom:951.040000pt;}
.y98{bottom:953.360000pt;}
.y5d{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y5c{bottom:974.320000pt;}
.y97{bottom:977.680000pt;}
.y2c{bottom:982.320000pt;}
.y5b{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y96{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h14{height:36.034687pt;}
.hf{height:37.032187pt;}
.hd{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h11{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h16{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h13{height:66.625000pt;}
.h15{height:74.342812pt;}
.h12{height:96.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:29.120000pt;}
.w19{width:51.440000pt;}
.w16{width:51.520000pt;}
.w10{width:60.160000pt;}
.w17{width:63.120000pt;}
.w1f{width:63.200000pt;}
.we{width:74.320000pt;}
.w14{width:78.826667pt;}
.w6{width:80.240000pt;}
.w15{width:86.240000pt;}
.w1c{width:86.960000pt;}
.w22{width:101.626667pt;}
.wd{width:108.426667pt;}
.w20{width:110.266667pt;}
.w18{width:111.226667pt;}
.wc{width:112.560000pt;}
.w7{width:122.960000pt;}
.w23{width:128.560000pt;}
.w1b{width:136.186667pt;}
.wf{width:148.560000pt;}
.w8{width:148.586667pt;}
.w1d{width:149.466667pt;}
.w4{width:152.746667pt;}
.w21{width:153.760000pt;}
.w11{width:162.720000pt;}
.w1e{width:168.800000pt;}
.wb{width:225.146667pt;}
.w13{width:225.680000pt;}
.w24{width:230.906667pt;}
.w9{width:272.186667pt;}
.w5{width:407.546667pt;}
.w12{width:444.346667pt;}
.w1a{width:543.413333pt;}
.wa{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x25{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:65.359988pt;}
.x1e{left:67.439988pt;}
.x19{left:68.639988pt;}
.x5{left:90.960000pt;}
.x28{left:98.879988pt;}
.x1f{left:125.280000pt;}
.xd{left:140.639988pt;}
.x2{left:170.186655pt;}
.x15{left:174.826667pt;}
.x24{left:204.346667pt;}
.x6{left:244.346667pt;}
.xb{left:260.906667pt;}
.x20{left:262.106667pt;}
.xa{left:267.786655pt;}
.x1b{left:283.386667pt;}
.xe{left:286.986667pt;}
.x14{left:321.626655pt;}
.x1c{left:347.226667pt;}
.x21{left:349.786667pt;}
.x26{left:358.746667pt;}
.xc{left:384.506667pt;}
.x1a{left:385.946655pt;}
.x23{left:396.986655pt;}
.xf{left:400.266667pt;}
.x16{left:401.226667pt;}
.x1d{left:459.173333pt;}
.x27{left:461.093333pt;}
.x17{left:480.773333pt;}
.x22{left:499.893333pt;}
.x10{left:509.333333pt;}
.x18{left:567.653333pt;}
.x12{left:570.133333pt;}
.x11{left:584.293333pt;}
.x9{left:615.013322pt;}
.x7{left:652.613333pt;}
.x8{left:718.773322pt;}
.x3{left:726.213322pt;}
}




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