
    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_c2240e3e7118fd81e3fb1b8f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a012fbac4ce1c78399161f59.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6aecbc913a7890706fe25104.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1eaa9787f645b7e4feba12ea.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_44d31bf060824b52c1df6193.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.269400px;}
.ls3{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.053280px;}
.lse{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.153360px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.223920px;}
.ls6{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.486720px;}
.ls4{letter-spacing:0.613440px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:6.660000px;}
.ls1{letter-spacing:64.002720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.wsa{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws6{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-12.105360px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.790600px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._25{margin-left:-14.544000px;}
._28{margin-left:-11.808000px;}
._1{margin-left:-8.942400px;}
._5{margin-left:-6.591360px;}
._4{margin-left:-5.222880px;}
._8{margin-left:-3.528000px;}
._0{margin-left:-2.185920px;}
._2{margin-left:-1.158720px;}
._3{width:1.238640px;}
._14{width:2.880720px;}
._6{width:3.888000px;}
._7{width:5.169360px;}
._10{width:6.552000px;}
._13{width:7.566720px;}
._11{width:8.712000px;}
._18{width:10.296000px;}
._16{width:11.689920px;}
._17{width:13.536000px;}
._1d{width:14.544000px;}
._f{width:15.552000px;}
._e{width:16.782720px;}
._a{width:19.152000px;}
._b{width:20.304000px;}
._1b{width:21.672000px;}
._1e{width:22.824000px;}
._1f{width:24.120000px;}
._19{width:25.776000px;}
._1a{width:26.816640px;}
._9{width:28.158720px;}
._1c{width:29.301840px;}
._12{width:31.025280px;}
._15{width:33.021600px;}
._29{width:34.114320px;}
._2c{width:36.288000px;}
._2d{width:37.296000px;}
._c{width:38.952000px;}
._d{width:39.960000px;}
._20{width:41.104080px;}
._21{width:44.136000px;}
._22{width:45.144000px;}
._2e{width:48.168000px;}
._3d{width:49.584000px;}
._3a{width:50.688000px;}
._36{width:52.200000px;}
._3b{width:53.352000px;}
._3c{width:54.660000px;}
._30{width:56.808000px;}
._31{width:58.161360px;}
._34{width:61.945920px;}
._35{width:66.600000px;}
._24{width:72.246720px;}
._27{width:74.232000px;}
._23{width:75.960000px;}
._26{width:77.328000px;}
._39{width:139.248000px;}
._37{width:140.376000px;}
._38{width:141.504000px;}
._2a{width:150.552000px;}
._2b{width:151.560000px;}
._32{width:168.446880px;}
._33{width:237.168000px;}
._2f{width:2180.736000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:6.660000px;}
.yc9{bottom:6.690000px;}
.ye6{bottom:9.360000px;}
.y9d{bottom:9.405000px;}
.yc7{bottom:30.054000px;}
.ya2{bottom:30.060000px;}
.y9c{bottom:30.105000px;}
.ye4{bottom:32.760000px;}
.yc6{bottom:35.460000px;}
.ye3{bottom:53.460000px;}
.yc5{bottom:56.160000px;}
.y5{bottom:57.600000px;}
.y4{bottom:76.536000px;}
.yc4{bottom:76.860000px;}
.y3{bottom:95.436000px;}
.y70{bottom:114.876000px;}
.y118{bottom:116.316000px;}
.y4a{bottom:116.496000px;}
.y12f{bottom:123.516000px;}
.ya6{bottom:124.056000px;}
.y2c{bottom:124.236000px;}
.y18e{bottom:125.496000px;}
.y10c{bottom:131.616000px;}
.y16e{bottom:132.156000px;}
.y6f{bottom:135.576000px;}
.y49{bottom:137.196000px;}
.yef{bottom:140.256000px;}
.y12e{bottom:144.216000px;}
.ya5{bottom:144.756000px;}
.y2b{bottom:144.936000px;}
.y18d{bottom:146.196000px;}
.y117{bottom:148.176000px;}
.y15f{bottom:149.076000px;}
.y16d{bottom:152.850000px;}
.y8d{bottom:154.830000px;}
.y6e{bottom:156.090000px;}
.y142{bottom:159.510000px;}
.yee{bottom:160.950000px;}
.y10b{bottom:164.370000px;}
.y12d{bottom:164.910000px;}
.y2a{bottom:165.630000px;}
.y18c{bottom:166.890000px;}
.y48{bottom:169.770000px;}
.yc3{bottom:171.570000px;}
.y16c{bottom:173.550000px;}
.y116{bottom:174.090000px;}
.y6d{bottom:176.790000px;}
.ya4{bottom:177.510000px;}
.y141{bottom:180.210000px;}
.yed{bottom:181.650000px;}
.y10a{bottom:185.070000px;}
.y12c{bottom:185.610000px;}
.y8c{bottom:187.590000px;}
.y47{bottom:190.470000px;}
.y16b{bottom:194.250000px;}
.y6c{bottom:197.490000px;}
.y29{bottom:198.390000px;}
.y18b{bottom:199.650000px;}
.yec{bottom:202.350000px;}
.y109{bottom:205.770000px;}
.y12b{bottom:206.310000px;}
.y8b{bottom:208.290000px;}
.ya3{bottom:210.090000px;}
.y15e{bottom:211.170000px;}
.y140{bottom:212.790000px;}
.y16a{bottom:214.950000px;}
.y18a{bottom:220.350000px;}
.y46{bottom:222.510000px;}
.yeb{bottom:223.050000px;}
.y108{bottom:226.470000px;}
.ya1{bottom:227.550000px;}
.y8a{bottom:228.990000px;}
.y6b{bottom:230.250000px;}
.y28{bottom:230.970000px;}
.y15d{bottom:231.870000px;}
.y13f{bottom:233.490000px;}
.y169{bottom:235.650000px;}
.y12a{bottom:238.890000px;}
.y189{bottom:241.050000px;}
.y107{bottom:247.170000px;}
.y45{bottom:248.430000px;}
.y89{bottom:249.690000px;}
.y6a{bottom:250.950000px;}
.y15c{bottom:252.570000px;}
.y13e{bottom:254.190000px;}
.yea{bottom:255.810000px;}
.y168{bottom:256.350000px;}
.y129{bottom:259.590000px;}
.y27{bottom:263.730000px;}
.y106{bottom:267.870000px;}
.y88{bottom:270.390000px;}
.y148{bottom:271.650000px;}
.y15b{bottom:273.270000px;}
.y188{bottom:273.810000px;}
.y13d{bottom:274.890000px;}
.ya0{bottom:275.250000px;}
.yc2{bottom:281.910000px;}
.y69{bottom:283.710000px;}
.ye9{bottom:288.390000px;}
.y105{bottom:288.570000px;}
.y167{bottom:289.110000px;}
.y87{bottom:291.090000px;}
.y128{bottom:292.350000px;}
.y187{bottom:294.510000px;}
.y13c{bottom:295.590000px;}
.y26{bottom:296.490000px;}
.y9e{bottom:299.370000px;}
.y68{bottom:304.410000px;}
.ye8{bottom:305.850000px;}
.y15a{bottom:306.030000px;}
.y166{bottom:309.810000px;}
.y86{bottom:311.790000px;}
.y127{bottom:313.050000px;}
.yc1{bottom:314.490000px;}
.y186{bottom:315.210000px;}
.y13b{bottom:316.290000px;}
.y104{bottom:321.150000px;}
.y9b{bottom:323.490000px;}
.y67{bottom:325.110000px;}
.y159{bottom:326.730000px;}
.y25{bottom:329.115000px;}
.y85{bottom:332.535000px;}
.y126{bottom:333.795000px;}
.yc0{bottom:335.235000px;}
.y13a{bottom:337.035000px;}
.y103{bottom:341.895000px;}
.y165{bottom:342.435000px;}
.y66{bottom:345.855000px;}
.y185{bottom:347.835000px;}
.y84{bottom:353.235000px;}
.ye7{bottom:353.595000px;}
.y125{bottom:354.495000px;}
.ybf{bottom:355.935000px;}
.y139{bottom:357.735000px;}
.y158{bottom:359.355000px;}
.y24{bottom:361.875000px;}
.y102{bottom:362.595000px;}
.y65{bottom:366.555000px;}
.y184{bottom:368.535000px;}
.y124{bottom:375.195000px;}
.ybe{bottom:376.635000px;}
.ye5{bottom:377.715000px;}
.y138{bottom:378.435000px;}
.y157{bottom:380.055000px;}
.y101{bottom:383.295000px;}
.y83{bottom:385.995000px;}
.y9a{bottom:387.075000px;}
.y183{bottom:389.235000px;}
.y23{bottom:394.635000px;}
.y123{bottom:395.895000px;}
.ybd{bottom:397.335000px;}
.y64{bottom:399.135000px;}
.y156{bottom:400.755000px;}
.y100{bottom:403.995000px;}
.y82{bottom:406.695000px;}
.y147{bottom:407.955000px;}
.y22{bottom:415.335000px;}
.y122{bottom:416.595000px;}
.ybc{bottom:418.035000px;}
.y99{bottom:419.655000px;}
.y63{bottom:419.835000px;}
.y155{bottom:421.455000px;}
.y182{bottom:421.995000px;}
.yff{bottom:424.695000px;}
.ye2{bottom:425.235000px;}
.y81{bottom:427.395000px;}
.y137{bottom:431.895000px;}
.y21{bottom:436.035000px;}
.y121{bottom:437.295000px;}
.ybb{bottom:438.735000px;}
.y98{bottom:440.355000px;}
.y62{bottom:440.535000px;}
.y154{bottom:442.155000px;}
.y181{bottom:442.695000px;}
.yfe{bottom:445.395000px;}
.y80{bottom:448.095000px;}
.yae{bottom:452.595000px;}
.y20{bottom:456.555000px;}
.y120{bottom:457.995000px;}
.yba{bottom:459.435000px;}
.y97{bottom:461.055000px;}
.y61{bottom:461.235000px;}
.y153{bottom:462.855000px;}
.y180{bottom:463.395000px;}
.y136{bottom:464.655000px;}
.y7f{bottom:468.795000px;}
.yad{bottom:473.295000px;}
.yfd{bottom:478.155000px;}
.y11f{bottom:478.695000px;}
.y96{bottom:481.755000px;}
.y60{bottom:481.935000px;}
.y152{bottom:483.555000px;}
.y1f{bottom:489.315000px;}
.y7e{bottom:489.495000px;}
.yb9{bottom:492.195000px;}
.yac{bottom:493.995000px;}
.ye1{bottom:496.155000px;}
.y135{bottom:497.235000px;}
.yfc{bottom:498.855000px;}
.y11e{bottom:499.395000px;}
.y95{bottom:502.455000px;}
.y5f{bottom:502.635000px;}
.y151{bottom:504.255000px;}
.y7d{bottom:510.195000px;}
.yb8{bottom:512.895000px;}
.yab{bottom:514.695000px;}
.y17f{bottom:516.855000px;}
.y164{bottom:520.095000px;}
.y1e{bottom:522.075000px;}
.y94{bottom:523.155000px;}
.y5e{bottom:523.335000px;}
.y150{bottom:524.955000px;}
.y7c{bottom:530.895000px;}
.yfb{bottom:531.615000px;}
.y11d{bottom:532.155000px;}
.yb7{bottom:533.595000px;}
.yaa{bottom:535.395000px;}
.y17e{bottom:537.555000px;}
.y134{bottom:538.995000px;}
.y163{bottom:540.795000px;}
.y1d{bottom:542.775000px;}
.y93{bottom:543.855000px;}
.y5d{bottom:544.035000px;}
.y14f{bottom:545.655000px;}
.y7b{bottom:551.595000px;}
.yfa{bottom:552.315000px;}
.y11c{bottom:552.855000px;}
.yb6{bottom:554.295000px;}
.ya9{bottom:556.095000px;}
.ye0{bottom:559.695000px;}
.y162{bottom:561.495000px;}
.y133{bottom:563.115000px;}
.y1c{bottom:563.475000px;}
.y92{bottom:564.555000px;}
.y146{bottom:564.735000px;}
.y17d{bottom:570.135000px;}
.y7a{bottom:572.295000px;}
.yf9{bottom:573.015000px;}
.yb5{bottom:574.995000px;}
.y5c{bottom:576.795000px;}
.y14e{bottom:578.415000px;}
.y1b{bottom:584.175000px;}
.y91{bottom:585.255000px;}
.y115{bottom:585.435000px;}
.y132{bottom:587.235000px;}
.y17c{bottom:590.835000px;}
.ydf{bottom:592.455000px;}
.yf8{bottom:593.715000px;}
.y161{bottom:594.255000px;}
.yb4{bottom:595.725000px;}
.y5b{bottom:597.525000px;}
.y79{bottom:604.905000px;}
.y114{bottom:606.165000px;}
.y14d{bottom:611.205000px;}
.y131{bottom:611.385000px;}
.y17b{bottom:611.565000px;}
.yde{bottom:613.185000px;}
.yf7{bottom:614.445000px;}
.yb3{bottom:616.425000px;}
.y1a{bottom:616.785000px;}
.y90{bottom:618.045000px;}
.y44{bottom:618.225000px;}
.y78{bottom:625.605000px;}
.y113{bottom:626.865000px;}
.ydd{bottom:633.885000px;}
.yf6{bottom:635.145000px;}
.y43{bottom:638.925000px;}
.y14c{bottom:643.785000px;}
.y17a{bottom:644.325000px;}
.y112{bottom:647.565000px;}
.yb2{bottom:649.005000px;}
.y19{bottom:649.545000px;}
.y8f{bottom:649.905000px;}
.ydc{bottom:654.585000px;}
.yf5{bottom:655.845000px;}
.y77{bottom:658.365000px;}
.y42{bottom:659.625000px;}
.y179{bottom:665.025000px;}
.y111{bottom:668.265000px;}
.y145{bottom:671.685000px;}
.ydb{bottom:675.285000px;}
.y14b{bottom:675.825000px;}
.y8e{bottom:676.005000px;}
.yf4{bottom:676.545000px;}
.y41{bottom:680.325000px;}
.yb1{bottom:681.765000px;}
.y18{bottom:682.305000px;}
.y178{bottom:685.725000px;}
.y110{bottom:688.965000px;}
.y76{bottom:692.025000px;}
.y144{bottom:692.385000px;}
.y14a{bottom:693.105000px;}
.yda{bottom:695.985000px;}
.yf3{bottom:697.245000px;}
.y40{bottom:701.025000px;}
.y17{bottom:703.005000px;}
.y10f{bottom:709.665000px;}
.y75{bottom:713.085000px;}
.yb0{bottom:713.805000px;}
.yd9{bottom:716.685000px;}
.y177{bottom:718.485000px;}
.y149{bottom:719.025000px;}
.y3f{bottom:721.725000px;}
.y16{bottom:723.705000px;}
.yf2{bottom:729.825000px;}
.y11b{bottom:730.365000px;}
.y74{bottom:733.785000px;}
.yd8{bottom:737.385000px;}
.y176{bottom:739.185000px;}
.yaf{bottom:739.725000px;}
.y3e{bottom:742.425000px;}
.y11a{bottom:751.065000px;}
.y73{bottom:754.485000px;}
.y15{bottom:756.285000px;}
.yf1{bottom:761.865000px;}
.y3d{bottom:763.125000px;}
.yd7{bottom:769.965000px;}
.y119{bottom:771.765000px;}
.y5a{bottom:775.185000px;}
.y14{bottom:776.985000px;}
.y3c{bottom:783.825000px;}
.yf0{bottom:787.965000px;}
.yd6{bottom:790.665000px;}
.y160{bottom:792.465000px;}
.ya8{bottom:795.885000px;}
.y13{bottom:797.685000px;}
.y3b{bottom:804.525000px;}
.y59{bottom:807.765000px;}
.yd5{bottom:811.365000px;}
.y130{bottom:816.585000px;}
.y12{bottom:818.385000px;}
.y10e{bottom:825.225000px;}
.y58{bottom:828.465000px;}
.yd4{bottom:832.065000px;}
.y3a{bottom:837.285000px;}
.y11{bottom:839.085000px;}
.y175{bottom:845.925000px;}
.y57{bottom:849.165000px;}
.yd3{bottom:852.765000px;}
.y39{bottom:857.985000px;}
.y10{bottom:859.785000px;}
.y174{bottom:866.670000px;}
.y56{bottom:869.910000px;}
.yd2{bottom:873.510000px;}
.y38{bottom:878.730000px;}
.yf{bottom:880.530000px;}
.y173{bottom:887.370000px;}
.y55{bottom:890.610000px;}
.yd1{bottom:894.210000px;}
.y37{bottom:899.430000px;}
.ye{bottom:901.230000px;}
.y172{bottom:908.070000px;}
.y54{bottom:911.310000px;}
.yd0{bottom:914.910000px;}
.y36{bottom:919.950000px;}
.yd{bottom:921.930000px;}
.y171{bottom:928.770000px;}
.y53{bottom:932.010000px;}
.y35{bottom:940.650000px;}
.yc{bottom:942.630000px;}
.y143{bottom:944.070000px;}
.ycf{bottom:947.670000px;}
.y52{bottom:952.710000px;}
.y34{bottom:961.350000px;}
.y72{bottom:964.770000px;}
.yce{bottom:968.370000px;}
.y51{bottom:973.410000px;}
.yb{bottom:975.390000px;}
.y33{bottom:982.050000px;}
.y71{bottom:985.470000px;}
.ya7{bottom:994.110000px;}
.ycd{bottom:1000.950000px;}
.y32{bottom:1002.750000px;}
.y50{bottom:1006.170000px;}
.ya{bottom:1013.550000px;}
.y10d{bottom:1014.810000px;}
.y31{bottom:1023.450000px;}
.y4f{bottom:1026.870000px;}
.ycc{bottom:1033.710000px;}
.y170{bottom:1035.510000px;}
.y30{bottom:1044.150000px;}
.y9{bottom:1044.510000px;}
.y4e{bottom:1047.570000px;}
.ycb{bottom:1051.170000px;}
.y16f{bottom:1056.210000px;}
.y4d{bottom:1068.270000px;}
.y8{bottom:1076.010000px;}
.y2f{bottom:1076.910000px;}
.y4c{bottom:1088.970000px;}
.y2e{bottom:1097.610000px;}
.yca{bottom:1098.690000px;}
.y7{bottom:1103.370000px;}
.y4b{bottom:1109.670000px;}
.yc8{bottom:1122.990000px;}
.y6{bottom:1127.490000px;}
.y2d{bottom:1130.400000px;}
.y2{bottom:1152.000000px;}
.y1{bottom:1169.100000px;}
.hb{height:23.400000px;}
.he{height:23.436000px;}
.h6{height:29.158594px;}
.h5{height:34.036523px;}
.h9{height:41.726953px;}
.h3{height:46.251562px;}
.hc{height:46.800000px;}
.ha{height:46.836000px;}
.h8{height:50.273438px;}
.h7{height:50.800781px;}
.h10{height:59.343750px;}
.h4{height:59.436914px;}
.hf{height:70.200000px;}
.h2{height:71.613281px;}
.hd{height:93.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.360000px;}
.w4{width:79.200000px;}
.w7{width:79.236000px;}
.wc{width:86.220000px;}
.wb{width:88.416000px;}
.w3{width:93.420000px;}
.wa{width:95.580000px;}
.w5{width:100.116000px;}
.w6{width:107.460000px;}
.w9{width:111.456000px;}
.w8{width:117.540000px;}
.wf{width:147.636000px;}
.we{width:154.080000px;}
.w10{width:188.130000px;}
.w11{width:201.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xc{left:100.296000px;}
.x2{left:108.035987px;}
.x9{left:135.035987px;}
.x4{left:155.189987px;}
.xe{left:194.430000px;}
.x14{left:196.590000px;}
.x11{left:208.470000px;}
.x17{left:255.270000px;}
.xf{left:274.350000px;}
.x15{left:285.735000px;}
.x12{left:288.435000px;}
.x6{left:292.754987px;}
.x7{left:309.674987px;}
.x5{left:340.094987px;}
.x16{left:372.675000px;}
.x8{left:376.814987px;}
.x18{left:403.815000px;}
.x13{left:406.695000px;}
.xb{left:515.264987px;}
.x19{left:592.845000px;}
.xa{left:697.649987px;}
.x3{left:761.009987px;}
.x10{left:785.309987px;}
.x1{left:801.329987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.136320pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.199040pt;}
.ls6{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.432640pt;}
.ls4{letter-spacing:0.545280pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:5.920000pt;}
.ls1{letter-spacing:56.891307pt;}
.ws3{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-10.760320pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.480533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._25{margin-left:-12.928000pt;}
._28{margin-left:-10.496000pt;}
._1{margin-left:-7.948800pt;}
._5{margin-left:-5.858987pt;}
._4{margin-left:-4.642560pt;}
._8{margin-left:-3.136000pt;}
._0{margin-left:-1.943040pt;}
._2{margin-left:-1.029973pt;}
._3{width:1.101013pt;}
._14{width:2.560640pt;}
._6{width:3.456000pt;}
._7{width:4.594987pt;}
._10{width:5.824000pt;}
._13{width:6.725973pt;}
._11{width:7.744000pt;}
._18{width:9.152000pt;}
._16{width:10.391040pt;}
._17{width:12.032000pt;}
._1d{width:12.928000pt;}
._f{width:13.824000pt;}
._e{width:14.917973pt;}
._a{width:17.024000pt;}
._b{width:18.048000pt;}
._1b{width:19.264000pt;}
._1e{width:20.288000pt;}
._1f{width:21.440000pt;}
._19{width:22.912000pt;}
._1a{width:23.837013pt;}
._9{width:25.029973pt;}
._1c{width:26.046080pt;}
._12{width:27.578027pt;}
._15{width:29.352533pt;}
._29{width:30.323840pt;}
._2c{width:32.256000pt;}
._2d{width:33.152000pt;}
._c{width:34.624000pt;}
._d{width:35.520000pt;}
._20{width:36.536960pt;}
._21{width:39.232000pt;}
._22{width:40.128000pt;}
._2e{width:42.816000pt;}
._3d{width:44.074667pt;}
._3a{width:45.056000pt;}
._36{width:46.400000pt;}
._3b{width:47.424000pt;}
._3c{width:48.586667pt;}
._30{width:50.496000pt;}
._31{width:51.698987pt;}
._34{width:55.063040pt;}
._35{width:59.200000pt;}
._24{width:64.219307pt;}
._27{width:65.984000pt;}
._23{width:67.520000pt;}
._26{width:68.736000pt;}
._39{width:123.776000pt;}
._37{width:124.778667pt;}
._38{width:125.781333pt;}
._2a{width:133.824000pt;}
._2b{width:134.720000pt;}
._32{width:149.730560pt;}
._33{width:210.816000pt;}
._2f{width:1938.432000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:5.920000pt;}
.yc9{bottom:5.946667pt;}
.ye6{bottom:8.320000pt;}
.y9d{bottom:8.360000pt;}
.yc7{bottom:26.714667pt;}
.ya2{bottom:26.720000pt;}
.y9c{bottom:26.760000pt;}
.ye4{bottom:29.120000pt;}
.yc6{bottom:31.520000pt;}
.ye3{bottom:47.520000pt;}
.yc5{bottom:49.920000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.032000pt;}
.yc4{bottom:68.320000pt;}
.y3{bottom:84.832000pt;}
.y70{bottom:102.112000pt;}
.y118{bottom:103.392000pt;}
.y4a{bottom:103.552000pt;}
.y12f{bottom:109.792000pt;}
.ya6{bottom:110.272000pt;}
.y2c{bottom:110.432000pt;}
.y18e{bottom:111.552000pt;}
.y10c{bottom:116.992000pt;}
.y16e{bottom:117.472000pt;}
.y6f{bottom:120.512000pt;}
.y49{bottom:121.952000pt;}
.yef{bottom:124.672000pt;}
.y12e{bottom:128.192000pt;}
.ya5{bottom:128.672000pt;}
.y2b{bottom:128.832000pt;}
.y18d{bottom:129.952000pt;}
.y117{bottom:131.712000pt;}
.y15f{bottom:132.512000pt;}
.y16d{bottom:135.866667pt;}
.y8d{bottom:137.626667pt;}
.y6e{bottom:138.746667pt;}
.y142{bottom:141.786667pt;}
.yee{bottom:143.066667pt;}
.y10b{bottom:146.106667pt;}
.y12d{bottom:146.586667pt;}
.y2a{bottom:147.226667pt;}
.y18c{bottom:148.346667pt;}
.y48{bottom:150.906667pt;}
.yc3{bottom:152.506667pt;}
.y16c{bottom:154.266667pt;}
.y116{bottom:154.746667pt;}
.y6d{bottom:157.146667pt;}
.ya4{bottom:157.786667pt;}
.y141{bottom:160.186667pt;}
.yed{bottom:161.466667pt;}
.y10a{bottom:164.506667pt;}
.y12c{bottom:164.986667pt;}
.y8c{bottom:166.746667pt;}
.y47{bottom:169.306667pt;}
.y16b{bottom:172.666667pt;}
.y6c{bottom:175.546667pt;}
.y29{bottom:176.346667pt;}
.y18b{bottom:177.466667pt;}
.yec{bottom:179.866667pt;}
.y109{bottom:182.906667pt;}
.y12b{bottom:183.386667pt;}
.y8b{bottom:185.146667pt;}
.ya3{bottom:186.746667pt;}
.y15e{bottom:187.706667pt;}
.y140{bottom:189.146667pt;}
.y16a{bottom:191.066667pt;}
.y18a{bottom:195.866667pt;}
.y46{bottom:197.786667pt;}
.yeb{bottom:198.266667pt;}
.y108{bottom:201.306667pt;}
.ya1{bottom:202.266667pt;}
.y8a{bottom:203.546667pt;}
.y6b{bottom:204.666667pt;}
.y28{bottom:205.306667pt;}
.y15d{bottom:206.106667pt;}
.y13f{bottom:207.546667pt;}
.y169{bottom:209.466667pt;}
.y12a{bottom:212.346667pt;}
.y189{bottom:214.266667pt;}
.y107{bottom:219.706667pt;}
.y45{bottom:220.826667pt;}
.y89{bottom:221.946667pt;}
.y6a{bottom:223.066667pt;}
.y15c{bottom:224.506667pt;}
.y13e{bottom:225.946667pt;}
.yea{bottom:227.386667pt;}
.y168{bottom:227.866667pt;}
.y129{bottom:230.746667pt;}
.y27{bottom:234.426667pt;}
.y106{bottom:238.106667pt;}
.y88{bottom:240.346667pt;}
.y148{bottom:241.466667pt;}
.y15b{bottom:242.906667pt;}
.y188{bottom:243.386667pt;}
.y13d{bottom:244.346667pt;}
.ya0{bottom:244.666667pt;}
.yc2{bottom:250.586667pt;}
.y69{bottom:252.186667pt;}
.ye9{bottom:256.346667pt;}
.y105{bottom:256.506667pt;}
.y167{bottom:256.986667pt;}
.y87{bottom:258.746667pt;}
.y128{bottom:259.866667pt;}
.y187{bottom:261.786667pt;}
.y13c{bottom:262.746667pt;}
.y26{bottom:263.546667pt;}
.y9e{bottom:266.106667pt;}
.y68{bottom:270.586667pt;}
.ye8{bottom:271.866667pt;}
.y15a{bottom:272.026667pt;}
.y166{bottom:275.386667pt;}
.y86{bottom:277.146667pt;}
.y127{bottom:278.266667pt;}
.yc1{bottom:279.546667pt;}
.y186{bottom:280.186667pt;}
.y13b{bottom:281.146667pt;}
.y104{bottom:285.466667pt;}
.y9b{bottom:287.546667pt;}
.y67{bottom:288.986667pt;}
.y159{bottom:290.426667pt;}
.y25{bottom:292.546667pt;}
.y85{bottom:295.586667pt;}
.y126{bottom:296.706667pt;}
.yc0{bottom:297.986667pt;}
.y13a{bottom:299.586667pt;}
.y103{bottom:303.906667pt;}
.y165{bottom:304.386667pt;}
.y66{bottom:307.426667pt;}
.y185{bottom:309.186667pt;}
.y84{bottom:313.986667pt;}
.ye7{bottom:314.306667pt;}
.y125{bottom:315.106667pt;}
.ybf{bottom:316.386667pt;}
.y139{bottom:317.986667pt;}
.y158{bottom:319.426667pt;}
.y24{bottom:321.666667pt;}
.y102{bottom:322.306667pt;}
.y65{bottom:325.826667pt;}
.y184{bottom:327.586667pt;}
.y124{bottom:333.506667pt;}
.ybe{bottom:334.786667pt;}
.ye5{bottom:335.746667pt;}
.y138{bottom:336.386667pt;}
.y157{bottom:337.826667pt;}
.y101{bottom:340.706667pt;}
.y83{bottom:343.106667pt;}
.y9a{bottom:344.066667pt;}
.y183{bottom:345.986667pt;}
.y23{bottom:350.786667pt;}
.y123{bottom:351.906667pt;}
.ybd{bottom:353.186667pt;}
.y64{bottom:354.786667pt;}
.y156{bottom:356.226667pt;}
.y100{bottom:359.106667pt;}
.y82{bottom:361.506667pt;}
.y147{bottom:362.626667pt;}
.y22{bottom:369.186667pt;}
.y122{bottom:370.306667pt;}
.ybc{bottom:371.586667pt;}
.y99{bottom:373.026667pt;}
.y63{bottom:373.186667pt;}
.y155{bottom:374.626667pt;}
.y182{bottom:375.106667pt;}
.yff{bottom:377.506667pt;}
.ye2{bottom:377.986667pt;}
.y81{bottom:379.906667pt;}
.y137{bottom:383.906667pt;}
.y21{bottom:387.586667pt;}
.y121{bottom:388.706667pt;}
.ybb{bottom:389.986667pt;}
.y98{bottom:391.426667pt;}
.y62{bottom:391.586667pt;}
.y154{bottom:393.026667pt;}
.y181{bottom:393.506667pt;}
.yfe{bottom:395.906667pt;}
.y80{bottom:398.306667pt;}
.yae{bottom:402.306667pt;}
.y20{bottom:405.826667pt;}
.y120{bottom:407.106667pt;}
.yba{bottom:408.386667pt;}
.y97{bottom:409.826667pt;}
.y61{bottom:409.986667pt;}
.y153{bottom:411.426667pt;}
.y180{bottom:411.906667pt;}
.y136{bottom:413.026667pt;}
.y7f{bottom:416.706667pt;}
.yad{bottom:420.706667pt;}
.yfd{bottom:425.026667pt;}
.y11f{bottom:425.506667pt;}
.y96{bottom:428.226667pt;}
.y60{bottom:428.386667pt;}
.y152{bottom:429.826667pt;}
.y1f{bottom:434.946667pt;}
.y7e{bottom:435.106667pt;}
.yb9{bottom:437.506667pt;}
.yac{bottom:439.106667pt;}
.ye1{bottom:441.026667pt;}
.y135{bottom:441.986667pt;}
.yfc{bottom:443.426667pt;}
.y11e{bottom:443.906667pt;}
.y95{bottom:446.626667pt;}
.y5f{bottom:446.786667pt;}
.y151{bottom:448.226667pt;}
.y7d{bottom:453.506667pt;}
.yb8{bottom:455.906667pt;}
.yab{bottom:457.506667pt;}
.y17f{bottom:459.426667pt;}
.y164{bottom:462.306667pt;}
.y1e{bottom:464.066667pt;}
.y94{bottom:465.026667pt;}
.y5e{bottom:465.186667pt;}
.y150{bottom:466.626667pt;}
.y7c{bottom:471.906667pt;}
.yfb{bottom:472.546667pt;}
.y11d{bottom:473.026667pt;}
.yb7{bottom:474.306667pt;}
.yaa{bottom:475.906667pt;}
.y17e{bottom:477.826667pt;}
.y134{bottom:479.106667pt;}
.y163{bottom:480.706667pt;}
.y1d{bottom:482.466667pt;}
.y93{bottom:483.426667pt;}
.y5d{bottom:483.586667pt;}
.y14f{bottom:485.026667pt;}
.y7b{bottom:490.306667pt;}
.yfa{bottom:490.946667pt;}
.y11c{bottom:491.426667pt;}
.yb6{bottom:492.706667pt;}
.ya9{bottom:494.306667pt;}
.ye0{bottom:497.506667pt;}
.y162{bottom:499.106667pt;}
.y133{bottom:500.546667pt;}
.y1c{bottom:500.866667pt;}
.y92{bottom:501.826667pt;}
.y146{bottom:501.986667pt;}
.y17d{bottom:506.786667pt;}
.y7a{bottom:508.706667pt;}
.yf9{bottom:509.346667pt;}
.yb5{bottom:511.106667pt;}
.y5c{bottom:512.706667pt;}
.y14e{bottom:514.146667pt;}
.y1b{bottom:519.266667pt;}
.y91{bottom:520.226667pt;}
.y115{bottom:520.386667pt;}
.y132{bottom:521.986667pt;}
.y17c{bottom:525.186667pt;}
.ydf{bottom:526.626667pt;}
.yf8{bottom:527.746667pt;}
.y161{bottom:528.226667pt;}
.yb4{bottom:529.533333pt;}
.y5b{bottom:531.133333pt;}
.y79{bottom:537.693333pt;}
.y114{bottom:538.813333pt;}
.y14d{bottom:543.293333pt;}
.y131{bottom:543.453333pt;}
.y17b{bottom:543.613333pt;}
.yde{bottom:545.053333pt;}
.yf7{bottom:546.173333pt;}
.yb3{bottom:547.933333pt;}
.y1a{bottom:548.253333pt;}
.y90{bottom:549.373333pt;}
.y44{bottom:549.533333pt;}
.y78{bottom:556.093333pt;}
.y113{bottom:557.213333pt;}
.ydd{bottom:563.453333pt;}
.yf6{bottom:564.573333pt;}
.y43{bottom:567.933333pt;}
.y14c{bottom:572.253333pt;}
.y17a{bottom:572.733333pt;}
.y112{bottom:575.613333pt;}
.yb2{bottom:576.893333pt;}
.y19{bottom:577.373333pt;}
.y8f{bottom:577.693333pt;}
.ydc{bottom:581.853333pt;}
.yf5{bottom:582.973333pt;}
.y77{bottom:585.213333pt;}
.y42{bottom:586.333333pt;}
.y179{bottom:591.133333pt;}
.y111{bottom:594.013333pt;}
.y145{bottom:597.053333pt;}
.ydb{bottom:600.253333pt;}
.y14b{bottom:600.733333pt;}
.y8e{bottom:600.893333pt;}
.yf4{bottom:601.373333pt;}
.y41{bottom:604.733333pt;}
.yb1{bottom:606.013333pt;}
.y18{bottom:606.493333pt;}
.y178{bottom:609.533333pt;}
.y110{bottom:612.413333pt;}
.y76{bottom:615.133333pt;}
.y144{bottom:615.453333pt;}
.y14a{bottom:616.093333pt;}
.yda{bottom:618.653333pt;}
.yf3{bottom:619.773333pt;}
.y40{bottom:623.133333pt;}
.y17{bottom:624.893333pt;}
.y10f{bottom:630.813333pt;}
.y75{bottom:633.853333pt;}
.yb0{bottom:634.493333pt;}
.yd9{bottom:637.053333pt;}
.y177{bottom:638.653333pt;}
.y149{bottom:639.133333pt;}
.y3f{bottom:641.533333pt;}
.y16{bottom:643.293333pt;}
.yf2{bottom:648.733333pt;}
.y11b{bottom:649.213333pt;}
.y74{bottom:652.253333pt;}
.yd8{bottom:655.453333pt;}
.y176{bottom:657.053333pt;}
.yaf{bottom:657.533333pt;}
.y3e{bottom:659.933333pt;}
.y11a{bottom:667.613333pt;}
.y73{bottom:670.653333pt;}
.y15{bottom:672.253333pt;}
.yf1{bottom:677.213333pt;}
.y3d{bottom:678.333333pt;}
.yd7{bottom:684.413333pt;}
.y119{bottom:686.013333pt;}
.y5a{bottom:689.053333pt;}
.y14{bottom:690.653333pt;}
.y3c{bottom:696.733333pt;}
.yf0{bottom:700.413333pt;}
.yd6{bottom:702.813333pt;}
.y160{bottom:704.413333pt;}
.ya8{bottom:707.453333pt;}
.y13{bottom:709.053333pt;}
.y3b{bottom:715.133333pt;}
.y59{bottom:718.013333pt;}
.yd5{bottom:721.213333pt;}
.y130{bottom:725.853333pt;}
.y12{bottom:727.453333pt;}
.y10e{bottom:733.533333pt;}
.y58{bottom:736.413333pt;}
.yd4{bottom:739.613333pt;}
.y3a{bottom:744.253333pt;}
.y11{bottom:745.853333pt;}
.y175{bottom:751.933333pt;}
.y57{bottom:754.813333pt;}
.yd3{bottom:758.013333pt;}
.y39{bottom:762.653333pt;}
.y10{bottom:764.253333pt;}
.y174{bottom:770.373333pt;}
.y56{bottom:773.253333pt;}
.yd2{bottom:776.453333pt;}
.y38{bottom:781.093333pt;}
.yf{bottom:782.693333pt;}
.y173{bottom:788.773333pt;}
.y55{bottom:791.653333pt;}
.yd1{bottom:794.853333pt;}
.y37{bottom:799.493333pt;}
.ye{bottom:801.093333pt;}
.y172{bottom:807.173333pt;}
.y54{bottom:810.053333pt;}
.yd0{bottom:813.253333pt;}
.y36{bottom:817.733333pt;}
.yd{bottom:819.493333pt;}
.y171{bottom:825.573333pt;}
.y53{bottom:828.453333pt;}
.y35{bottom:836.133333pt;}
.yc{bottom:837.893333pt;}
.y143{bottom:839.173333pt;}
.ycf{bottom:842.373333pt;}
.y52{bottom:846.853333pt;}
.y34{bottom:854.533333pt;}
.y72{bottom:857.573333pt;}
.yce{bottom:860.773333pt;}
.y51{bottom:865.253333pt;}
.yb{bottom:867.013333pt;}
.y33{bottom:872.933333pt;}
.y71{bottom:875.973333pt;}
.ya7{bottom:883.653333pt;}
.ycd{bottom:889.733333pt;}
.y32{bottom:891.333333pt;}
.y50{bottom:894.373333pt;}
.ya{bottom:900.933333pt;}
.y10d{bottom:902.053333pt;}
.y31{bottom:909.733333pt;}
.y4f{bottom:912.773333pt;}
.ycc{bottom:918.853333pt;}
.y170{bottom:920.453333pt;}
.y30{bottom:928.133333pt;}
.y9{bottom:928.453333pt;}
.y4e{bottom:931.173333pt;}
.ycb{bottom:934.373333pt;}
.y16f{bottom:938.853333pt;}
.y4d{bottom:949.573333pt;}
.y8{bottom:956.453333pt;}
.y2f{bottom:957.253333pt;}
.y4c{bottom:967.973333pt;}
.y2e{bottom:975.653333pt;}
.yca{bottom:976.613333pt;}
.y7{bottom:980.773333pt;}
.y4b{bottom:986.373333pt;}
.yc8{bottom:998.213333pt;}
.y6{bottom:1002.213333pt;}
.y2d{bottom:1004.800000pt;}
.y2{bottom:1024.000000pt;}
.y1{bottom:1039.200000pt;}
.hb{height:20.800000pt;}
.he{height:20.832000pt;}
.h6{height:25.918750pt;}
.h5{height:30.254687pt;}
.h9{height:37.090625pt;}
.h3{height:41.112500pt;}
.hc{height:41.600000pt;}
.ha{height:41.632000pt;}
.h8{height:44.687500pt;}
.h7{height:45.156250pt;}
.h10{height:52.750000pt;}
.h4{height:52.832812pt;}
.hf{height:62.400000pt;}
.h2{height:63.656250pt;}
.hd{height:83.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.320000pt;}
.w4{width:70.400000pt;}
.w7{width:70.432000pt;}
.wc{width:76.640000pt;}
.wb{width:78.592000pt;}
.w3{width:83.040000pt;}
.wa{width:84.960000pt;}
.w5{width:88.992000pt;}
.w6{width:95.520000pt;}
.w9{width:99.072000pt;}
.w8{width:104.480000pt;}
.wf{width:131.232000pt;}
.we{width:136.960000pt;}
.w10{width:167.226667pt;}
.w11{width:179.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xc{left:89.152000pt;}
.x2{left:96.031988pt;}
.x9{left:120.031988pt;}
.x4{left:137.946655pt;}
.xe{left:172.826667pt;}
.x14{left:174.746667pt;}
.x11{left:185.306667pt;}
.x17{left:226.906667pt;}
.xf{left:243.866667pt;}
.x15{left:253.986667pt;}
.x12{left:256.386667pt;}
.x6{left:260.226655pt;}
.x7{left:275.266655pt;}
.x5{left:302.306655pt;}
.x16{left:331.266667pt;}
.x8{left:334.946655pt;}
.x18{left:358.946667pt;}
.x13{left:361.506667pt;}
.xb{left:458.013322pt;}
.x19{left:526.973333pt;}
.xa{left:620.133322pt;}
.x3{left:676.453322pt;}
.x10{left:698.053322pt;}
.x1{left:712.293322pt;}
}




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