
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d33def4eb3ae98e2fe7f0843.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1cb4b43b383329bc898ecf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_0b9dce2c04513ec3f0ec7e51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934082;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_91ab806f9a5db7e5aadb5e2f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d88bfc666846af9ceb68b032.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5e16b5cac7dfcf071e86aba0.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c63fcd35afb0fa4995188b6d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0e8bc2babd86119165970ce3.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v4{vertical-align:-33.120000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:33.120000px;}
.ls5{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.326400px;}
.ls23{letter-spacing:-0.303000px;}
.ls10{letter-spacing:-0.240600px;}
.lsf{letter-spacing:-0.214800px;}
.ls20{letter-spacing:-0.155400px;}
.ls9{letter-spacing:-0.115800px;}
.ls2c{letter-spacing:-0.078600px;}
.ls26{letter-spacing:-0.069600px;}
.ls13{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.055440px;}
.ls27{letter-spacing:-0.049680px;}
.ls14{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.067200px;}
.ls1b{letter-spacing:0.090720px;}
.ls25{letter-spacing:0.096480px;}
.ls21{letter-spacing:0.143400px;}
.ls34{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls19{letter-spacing:0.175200px;}
.ls2f{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.180600px;}
.ls33{letter-spacing:0.209400px;}
.ls2d{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.220200px;}
.ls24{letter-spacing:0.233280px;}
.ls6{letter-spacing:0.256200px;}
.lse{letter-spacing:0.275040px;}
.lsd{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.309000px;}
.ls1f{letter-spacing:0.311040px;}
.ls11{letter-spacing:0.314400px;}
.lsc{letter-spacing:0.318240px;}
.ls28{letter-spacing:0.393600px;}
.ls31{letter-spacing:0.479520px;}
.ls2b{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.894240px;}
.ls1a{letter-spacing:1.074240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls30{letter-spacing:12.186720px;}
.ls1e{letter-spacing:42.426720px;}
.ls2e{letter-spacing:46.026720px;}
.ls29{letter-spacing:69.989760px;}
.ls15{letter-spacing:93.749760px;}
.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:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.820160px;}
.wsf{word-spacing:-13.814760px;}
.ws14{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.725960px;}
.ws11{word-spacing:-13.686360px;}
.ws16{word-spacing:-13.685040px;}
.ws12{word-spacing:-13.680960px;}
.wsc{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.wse{word-spacing:-13.504320px;}
.wsd{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.427160px;}
.ws8{word-spacing:-13.389960px;}
.wsa{word-spacing:-13.290960px;}
.ws7{word-spacing:-13.179360px;}
.ws4{word-spacing:-9.437760px;}
.ws13{word-spacing:-9.097920px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._f{margin-left:-3.375360px;}
._8{margin-left:-2.361120px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:3.016560px;}
._9{width:4.362480px;}
._a{width:6.173280px;}
._18{width:7.237440px;}
._d{width:8.250480px;}
._c{width:9.561600px;}
._b{width:11.055600px;}
._e{width:12.430080px;}
._16{width:15.174000px;}
._17{width:16.184400px;}
._6{width:22.928640px;}
._11{width:26.988480px;}
._14{width:32.821440px;}
._19{width:34.016640px;}
._12{width:88.188480px;}
._13{width:113.909760px;}
._10{width:121.104000px;}
._15{width:163.169520px;}
.fc6{color:rgb(38,74,96);}
.fc4{color:rgb(37,73,95);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(1,2,5);}
.fc3{color:rgb(0,1,4);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yee{bottom:2.880000px;}
.yeb{bottom:3.060000px;}
.y60{bottom:6.480000px;}
.y64{bottom:6.660000px;}
.yaa{bottom:6.690000px;}
.ye8{bottom:7.560000px;}
.yea{bottom:7.740000px;}
.ye7{bottom:8.460000px;}
.yec{bottom:8.820000px;}
.y6b{bottom:9.000000px;}
.y81{bottom:9.180000px;}
.yb4{bottom:10.440000px;}
.y62{bottom:10.620000px;}
.y82{bottom:11.520000px;}
.y73{bottom:11.700000px;}
.y69{bottom:13.860000px;}
.y74{bottom:16.740000px;}
.yb3{bottom:18.180000px;}
.yac{bottom:21.240000px;}
.y105{bottom:27.720000px;}
.y68{bottom:34.950000px;}
.yae{bottom:51.300000px;}
.yf3{bottom:60.840000px;}
.y6{bottom:66.996000px;}
.y31{bottom:103.896000px;}
.y14a{bottom:106.956000px;}
.y66{bottom:108.396000px;}
.y94{bottom:120.456000px;}
.y113{bottom:123.336000px;}
.y30{bottom:124.956000px;}
.y12f{bottom:128.196000px;}
.y65{bottom:133.056000px;}
.ye5{bottom:135.036000px;}
.y93{bottom:135.576000px;}
.y112{bottom:144.396000px;}
.y2f{bottom:146.016000px;}
.y12e{bottom:149.256000px;}
.ye4{bottom:156.090000px;}
.y63{bottom:157.350000px;}
.y92{bottom:162.930000px;}
.y111{bottom:165.450000px;}
.y2e{bottom:167.070000px;}
.y12d{bottom:170.310000px;}
.ye3{bottom:177.150000px;}
.y61{bottom:181.830000px;}
.ybe{bottom:182.370000px;}
.y110{bottom:186.510000px;}
.y2d{bottom:188.130000px;}
.y91{bottom:190.290000px;}
.y12c{bottom:191.370000px;}
.ye2{bottom:198.210000px;}
.ybd{bottom:203.430000px;}
.y10f{bottom:207.570000px;}
.y5f{bottom:207.930000px;}
.y2c{bottom:209.190000px;}
.y149{bottom:210.450000px;}
.y12b{bottom:212.430000px;}
.y90{bottom:217.650000px;}
.ye1{bottom:219.270000px;}
.ybc{bottom:224.490000px;}
.y10e{bottom:228.630000px;}
.y2b{bottom:230.250000px;}
.y148{bottom:231.510000px;}
.y12a{bottom:233.490000px;}
.y5e{bottom:236.550000px;}
.ye0{bottom:240.330000px;}
.y8f{bottom:245.010000px;}
.ybb{bottom:245.550000px;}
.y10d{bottom:249.690000px;}
.y2a{bottom:251.310000px;}
.y147{bottom:252.570000px;}
.y129{bottom:254.550000px;}
.y5d{bottom:257.610000px;}
.ydf{bottom:261.390000px;}
.yba{bottom:266.610000px;}
.y10c{bottom:270.750000px;}
.y29{bottom:272.370000px;}
.y146{bottom:273.630000px;}
.y128{bottom:275.610000px;}
.y5c{bottom:278.670000px;}
.yde{bottom:282.495000px;}
.yb9{bottom:287.715000px;}
.y10b{bottom:291.675000px;}
.y28{bottom:293.475000px;}
.y145{bottom:294.735000px;}
.y127{bottom:296.715000px;}
.y5b{bottom:299.775000px;}
.ydd{bottom:303.555000px;}
.yb8{bottom:308.775000px;}
.y10a{bottom:312.735000px;}
.y27{bottom:314.535000px;}
.y144{bottom:315.795000px;}
.y126{bottom:317.775000px;}
.y5a{bottom:320.835000px;}
.yb7{bottom:323.895000px;}
.ydc{bottom:324.615000px;}
.y109{bottom:333.795000px;}
.y26{bottom:335.595000px;}
.y143{bottom:336.855000px;}
.y8e{bottom:338.655000px;}
.y125{bottom:338.835000px;}
.y59{bottom:341.895000px;}
.ydb{bottom:345.675000px;}
.yb6{bottom:346.215000px;}
.y108{bottom:354.855000px;}
.y25{bottom:356.655000px;}
.y142{bottom:358.635000px;}
.y8d{bottom:359.715000px;}
.y124{bottom:359.895000px;}
.y58{bottom:362.955000px;}
.yda{bottom:366.735000px;}
.yb5{bottom:368.535000px;}
.y24{bottom:377.715000px;}
.y8c{bottom:380.775000px;}
.y123{bottom:380.955000px;}
.y141{bottom:381.855000px;}
.y57{bottom:384.015000px;}
.y107{bottom:385.275000px;}
.yd9{bottom:387.795000px;}
.yb2{bottom:391.035000px;}
.y23{bottom:398.775000px;}
.y8b{bottom:401.835000px;}
.y122{bottom:402.015000px;}
.y56{bottom:405.075000px;}
.yd8{bottom:408.855000px;}
.y22{bottom:419.835000px;}
.y8a{bottom:422.895000px;}
.y121{bottom:423.075000px;}
.yb1{bottom:424.875000px;}
.y55{bottom:426.135000px;}
.y140{bottom:428.115000px;}
.yd7{bottom:429.915000px;}
.y106{bottom:431.355000px;}
.y21{bottom:440.895000px;}
.y89{bottom:443.955000px;}
.y120{bottom:444.135000px;}
.y54{bottom:447.195000px;}
.yd6{bottom:450.975000px;}
.y13f{bottom:451.335000px;}
.y88{bottom:459.075000px;}
.y20{bottom:461.955000px;}
.y11f{bottom:465.195000px;}
.y53{bottom:468.255000px;}
.yb0{bottom:469.515000px;}
.yd5{bottom:472.035000px;}
.y13e{bottom:474.555000px;}
.y104{bottom:477.255000px;}
.yef{bottom:482.655000px;}
.y1f{bottom:483.015000px;}
.y11e{bottom:486.255000px;}
.y87{bottom:486.435000px;}
.y52{bottom:489.315000px;}
.yaf{bottom:491.835000px;}
.yd4{bottom:493.095000px;}
.y13d{bottom:497.595000px;}
.y1e{bottom:506.415000px;}
.y11d{bottom:507.315000px;}
.y51{bottom:510.375000px;}
.y86{bottom:513.795000px;}
.yed{bottom:513.975000px;}
.yab{bottom:514.155000px;}
.y13c{bottom:520.815000px;}
.y11c{bottom:528.375000px;}
.y50{bottom:531.435000px;}
.yd3{bottom:535.215000px;}
.y1d{bottom:536.295000px;}
.yad{bottom:536.475000px;}
.y85{bottom:541.155000px;}
.y13b{bottom:544.035000px;}
.y103{bottom:544.395000px;}
.ye9{bottom:544.935000px;}
.y11b{bottom:549.435000px;}
.y4f{bottom:552.495000px;}
.yd2{bottom:556.275000px;}
.y1c{bottom:557.355000px;}
.ya9{bottom:558.795000px;}
.y13a{bottom:567.105000px;}
.y84{bottom:568.545000px;}
.y11a{bottom:570.525000px;}
.y4e{bottom:573.585000px;}
.ye6{bottom:576.105000px;}
.yd1{bottom:577.365000px;}
.y1b{bottom:578.445000px;}
.ya8{bottom:581.145000px;}
.y102{bottom:582.045000px;}
.y139{bottom:590.325000px;}
.y119{bottom:591.585000px;}
.y4d{bottom:594.645000px;}
.y83{bottom:595.905000px;}
.yd0{bottom:598.425000px;}
.y1a{bottom:599.505000px;}
.y101{bottom:603.105000px;}
.ya7{bottom:603.645000px;}
.y118{bottom:612.645000px;}
.y138{bottom:613.545000px;}
.ycf{bottom:619.485000px;}
.y19{bottom:620.565000px;}
.y80{bottom:623.265000px;}
.y100{bottom:623.985000px;}
.y4c{bottom:624.705000px;}
.ya6{bottom:632.625000px;}
.y117{bottom:633.705000px;}
.y137{bottom:636.585000px;}
.yce{bottom:640.545000px;}
.y18{bottom:641.625000px;}
.yff{bottom:645.045000px;}
.y4b{bottom:645.765000px;}
.ya5{bottom:653.685000px;}
.y116{bottom:654.765000px;}
.y136{bottom:659.805000px;}
.ycd{bottom:661.605000px;}
.y7f{bottom:662.145000px;}
.y17{bottom:662.685000px;}
.yfe{bottom:666.105000px;}
.y4a{bottom:666.825000px;}
.ya4{bottom:674.745000px;}
.y115{bottom:675.825000px;}
.ycc{bottom:682.665000px;}
.y135{bottom:683.025000px;}
.y7e{bottom:683.205000px;}
.y16{bottom:683.745000px;}
.yfd{bottom:687.165000px;}
.y49{bottom:687.885000px;}
.ya3{bottom:695.805000px;}
.y114{bottom:696.885000px;}
.ycb{bottom:703.725000px;}
.y7d{bottom:704.265000px;}
.y15{bottom:704.805000px;}
.y134{bottom:706.065000px;}
.yfc{bottom:708.225000px;}
.ya2{bottom:716.865000px;}
.y48{bottom:717.945000px;}
.yca{bottom:724.785000px;}
.y7c{bottom:725.325000px;}
.y14{bottom:725.865000px;}
.y133{bottom:729.285000px;}
.ya1{bottom:737.745000px;}
.yfb{bottom:738.285000px;}
.y47{bottom:739.005000px;}
.yc9{bottom:745.845000px;}
.y7b{bottom:746.385000px;}
.y13{bottom:746.925000px;}
.y132{bottom:752.505000px;}
.ya0{bottom:758.805000px;}
.yfa{bottom:759.345000px;}
.y46{bottom:760.065000px;}
.yc8{bottom:766.905000px;}
.y12{bottom:767.985000px;}
.y7a{bottom:768.345000px;}
.y131{bottom:775.725000px;}
.y9f{bottom:779.865000px;}
.yf9{bottom:780.405000px;}
.y45{bottom:781.125000px;}
.y79{bottom:784.725000px;}
.yc7{bottom:787.965000px;}
.y11{bottom:789.045000px;}
.y130{bottom:798.765000px;}
.y9e{bottom:800.925000px;}
.yf8{bottom:801.465000px;}
.y44{bottom:802.185000px;}
.y78{bottom:807.045000px;}
.yc6{bottom:808.845000px;}
.y10{bottom:810.105000px;}
.y9d{bottom:821.985000px;}
.yf7{bottom:822.525000px;}
.y43{bottom:823.245000px;}
.y77{bottom:829.545000px;}
.yc5{bottom:829.905000px;}
.yf{bottom:831.165000px;}
.yf6{bottom:838.005000px;}
.y9c{bottom:843.045000px;}
.y42{bottom:844.305000px;}
.yc4{bottom:851.010000px;}
.y76{bottom:851.910000px;}
.ye{bottom:852.450000px;}
.y9b{bottom:858.390000px;}
.yf5{bottom:865.050000px;}
.y41{bottom:865.410000px;}
.yc3{bottom:872.070000px;}
.y75{bottom:874.410000px;}
.yd{bottom:875.670000px;}
.y9a{bottom:885.390000px;}
.y40{bottom:886.470000px;}
.yf2{bottom:892.050000px;}
.yc2{bottom:893.130000px;}
.yc{bottom:896.730000px;}
.y3f{bottom:907.530000px;}
.y99{bottom:912.570000px;}
.yc1{bottom:914.190000px;}
.y72{bottom:919.230000px;}
.yb{bottom:923.010000px;}
.y3e{bottom:928.590000px;}
.yc0{bottom:935.250000px;}
.ya{bottom:939.570000px;}
.y98{bottom:939.750000px;}
.yf4{bottom:946.230000px;}
.y3d{bottom:949.650000px;}
.ybf{bottom:952.530000px;}
.y71{bottom:958.470000px;}
.y9{bottom:962.790000px;}
.y97{bottom:966.930000px;}
.y3c{bottom:970.710000px;}
.yf1{bottom:973.230000px;}
.y70{bottom:979.530000px;}
.y8{bottom:989.250000px;}
.y3b{bottom:991.770000px;}
.y96{bottom:993.930000px;}
.yf0{bottom:1000.410000px;}
.y6f{bottom:1000.590000px;}
.y3a{bottom:1012.830000px;}
.y95{bottom:1021.110000px;}
.y6e{bottom:1021.650000px;}
.y7{bottom:1022.910000px;}
.y39{bottom:1033.890000px;}
.y6d{bottom:1042.710000px;}
.y38{bottom:1054.950000px;}
.y6c{bottom:1063.770000px;}
.y5{bottom:1069.890000px;}
.y37{bottom:1076.010000px;}
.y6a{bottom:1078.890000px;}
.y36{bottom:1097.070000px;}
.y4{bottom:1099.770000px;}
.y67{bottom:1103.190000px;}
.y35{bottom:1118.130000px;}
.y3{bottom:1129.650000px;}
.y34{bottom:1139.220000px;}
.y2{bottom:1159.560000px;}
.y33{bottom:1170.000000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hc{height:20.880000px;}
.h13{height:21.060000px;}
.h14{height:21.096000px;}
.h1c{height:22.860000px;}
.hf{height:23.220000px;}
.h1d{height:23.256000px;}
.h11{height:23.400000px;}
.he{height:23.580000px;}
.hd{height:25.020000px;}
.h16{height:25.920000px;}
.h12{height:31.140000px;}
.h1a{height:32.580000px;}
.h6{height:38.671172px;}
.h20{height:42.120000px;}
.h17{height:43.380000px;}
.h10{height:49.356000px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h1f{height:59.551172px;}
.h8{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h19{height:65.700000px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h1b{height:68.084282px;}
.h21{height:71.613281px;}
.hb{height:73.722656px;}
.h15{height:74.004654px;}
.h1e{height:75.240000px;}
.h18{height:92.559023px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:23.436000px;}
.w29{width:45.720000px;}
.wd{width:46.800000px;}
.w11{width:47.160000px;}
.w17{width:47.520000px;}
.w19{width:48.960000px;}
.w1e{width:49.320000px;}
.w39{width:53.820000px;}
.w9{width:61.020000px;}
.w4{width:61.380000px;}
.w3c{width:70.776000px;}
.w2a{width:72.180000px;}
.wc{width:73.620000px;}
.w6{width:73.980000px;}
.w38{width:75.780000px;}
.w37{width:75.816000px;}
.w35{width:75.996000px;}
.w32{width:76.320000px;}
.w31{width:76.536000px;}
.wb{width:85.716000px;}
.wa{width:86.040000px;}
.w3d{width:91.980000px;}
.w3a{width:95.256000px;}
.w3e{width:97.416000px;}
.w2d{width:102.096000px;}
.w36{width:104.760000px;}
.w2c{width:105.840000px;}
.w34{width:109.260000px;}
.wf{width:113.436000px;}
.w2f{width:113.976000px;}
.w2e{width:114.120000px;}
.w14{width:114.300000px;}
.w21{width:118.620000px;}
.w1b{width:119.160000px;}
.w10{width:125.820000px;}
.w15{width:126.936000px;}
.w8{width:129.636000px;}
.w3{width:129.996000px;}
.w22{width:131.796000px;}
.w3f{width:132.120000px;}
.w1c{width:132.156000px;}
.w40{width:132.696000px;}
.w16{width:139.896000px;}
.we{width:141.696000px;}
.w12{width:142.056000px;}
.w13{width:142.956000px;}
.w18{width:143.316000px;}
.w23{width:145.296000px;}
.w1d{width:145.656000px;}
.w20{width:148.356000px;}
.w1a{width:148.716000px;}
.w1f{width:149.076000px;}
.w33{width:149.796000px;}
.w7{width:154.290000px;}
.w28{width:163.110000px;}
.w5{width:172.470000px;}
.w26{width:184.350000px;}
.w27{width:275.790000px;}
.w25{width:439.455000px;}
.w30{width:442.515000px;}
.w3b{width:527.865000px;}
.w24{width:624.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xe{left:-1.620000px;}
.x0{left:0.000000px;}
.x9{left:1.620000px;}
.x19{left:2.700000px;}
.x11{left:4.140000px;}
.x10{left:5.400000px;}
.xf{left:6.840000px;}
.x22{left:8.670000px;}
.x21{left:9.720000px;}
.x3f{left:11.700000px;}
.x16{left:12.960000px;}
.xc{left:14.580000px;}
.x38{left:16.920000px;}
.x27{left:18.540000px;}
.x35{left:21.240000px;}
.x37{left:45.360000px;}
.x20{left:49.500000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x1a{left:59.939987px;}
.x2e{left:64.619987px;}
.x4{left:70.199987px;}
.x3{left:74.159987px;}
.x2b{left:75.239987px;}
.x48{left:79.919987px;}
.x12{left:80.999987px;}
.x40{left:84.959987px;}
.x5{left:86.039987px;}
.x47{left:100.475987px;}
.x46{left:101.555987px;}
.x2d{left:107.315987px;}
.x28{left:134.316000px;}
.x23{left:147.636000px;}
.x39{left:148.896000px;}
.x6{left:150.690000px;}
.x3a{left:154.839000px;}
.x2f{left:157.350000px;}
.x1b{left:159.150000px;}
.x13{left:174.270000px;}
.x24{left:197.310000px;}
.x30{left:202.710000px;}
.x1c{left:207.030000px;}
.x14{left:221.790000px;}
.x41{left:225.930000px;}
.x31{left:274.890000px;}
.x7{left:280.335000px;}
.x42{left:297.435000px;}
.x32{left:299.055000px;}
.x8{left:341.715000px;}
.x25{left:346.755000px;}
.x1d{left:350.715000px;}
.x15{left:364.215000px;}
.x43{left:390.135000px;}
.x33{left:405.255000px;}
.x3d{left:409.395000px;}
.x2a{left:410.655000px;}
.xd{left:428.475000px;}
.x1e{left:466.095000px;}
.x17{left:478.545000px;}
.x3e{left:486.105000px;}
.x44{left:488.265000px;}
.x34{left:507.705000px;}
.xa{left:514.185000px;}
.x29{left:574.485000px;}
.xb{left:588.165000px;}
.x3b{left:591.405000px;}
.x1f{left:594.105000px;}
.x26{left:599.865000px;}
.x18{left:605.445000px;}
.x45{left:621.105000px;}
.x36{left:622.185000px;}
.x3c{left:667.950000px;}
.x2c{left:679.829987px;}
.x49{left:839.309987px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:29.440000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls23{letter-spacing:-0.269333pt;}
.ls10{letter-spacing:-0.213867pt;}
.lsf{letter-spacing:-0.190933pt;}
.ls20{letter-spacing:-0.138133pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls2c{letter-spacing:-0.069867pt;}
.ls26{letter-spacing:-0.061867pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.049280pt;}
.ls27{letter-spacing:-0.044160pt;}
.ls14{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.059733pt;}
.ls1b{letter-spacing:0.080640pt;}
.ls25{letter-spacing:0.085760pt;}
.ls21{letter-spacing:0.127467pt;}
.ls34{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls19{letter-spacing:0.155733pt;}
.ls2f{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.160533pt;}
.ls33{letter-spacing:0.186133pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.195733pt;}
.ls24{letter-spacing:0.207360pt;}
.ls6{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.244480pt;}
.lsd{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.274667pt;}
.ls1f{letter-spacing:0.276480pt;}
.ls11{letter-spacing:0.279467pt;}
.lsc{letter-spacing:0.282880pt;}
.ls28{letter-spacing:0.349867pt;}
.ls31{letter-spacing:0.426240pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.794880pt;}
.ls1a{letter-spacing:0.954880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls30{letter-spacing:10.832640pt;}
.ls1e{letter-spacing:37.712640pt;}
.ls2e{letter-spacing:40.912640pt;}
.ls29{letter-spacing:62.213120pt;}
.ls15{letter-spacing:83.333120pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.284587pt;}
.wsf{word-spacing:-12.279787pt;}
.ws14{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.200853pt;}
.ws11{word-spacing:-12.165653pt;}
.ws16{word-spacing:-12.164480pt;}
.ws12{word-spacing:-12.160853pt;}
.wsc{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.003840pt;}
.wsd{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.935253pt;}
.ws8{word-spacing:-11.902187pt;}
.wsa{word-spacing:-11.814187pt;}
.ws7{word-spacing:-11.714987pt;}
.ws4{word-spacing:-8.389120pt;}
.ws13{word-spacing:-8.087040pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._f{margin-left:-3.000320pt;}
._8{margin-left:-2.098773pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.681387pt;}
._9{width:3.877760pt;}
._a{width:5.487360pt;}
._18{width:6.433280pt;}
._d{width:7.333760pt;}
._c{width:8.499200pt;}
._b{width:9.827200pt;}
._e{width:11.048960pt;}
._16{width:13.488000pt;}
._17{width:14.386133pt;}
._6{width:20.381013pt;}
._11{width:23.989760pt;}
._14{width:29.174613pt;}
._19{width:30.237013pt;}
._12{width:78.389760pt;}
._13{width:101.253120pt;}
._10{width:107.648000pt;}
._15{width:145.039573pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.560000pt;}
.yeb{bottom:2.720000pt;}
.y60{bottom:5.760000pt;}
.y64{bottom:5.920000pt;}
.yaa{bottom:5.946667pt;}
.ye8{bottom:6.720000pt;}
.yea{bottom:6.880000pt;}
.ye7{bottom:7.520000pt;}
.yec{bottom:7.840000pt;}
.y6b{bottom:8.000000pt;}
.y81{bottom:8.160000pt;}
.yb4{bottom:9.280000pt;}
.y62{bottom:9.440000pt;}
.y82{bottom:10.240000pt;}
.y73{bottom:10.400000pt;}
.y69{bottom:12.320000pt;}
.y74{bottom:14.880000pt;}
.yb3{bottom:16.160000pt;}
.yac{bottom:18.880000pt;}
.y105{bottom:24.640000pt;}
.y68{bottom:31.066667pt;}
.yae{bottom:45.600000pt;}
.yf3{bottom:54.080000pt;}
.y6{bottom:59.552000pt;}
.y31{bottom:92.352000pt;}
.y14a{bottom:95.072000pt;}
.y66{bottom:96.352000pt;}
.y94{bottom:107.072000pt;}
.y113{bottom:109.632000pt;}
.y30{bottom:111.072000pt;}
.y12f{bottom:113.952000pt;}
.y65{bottom:118.272000pt;}
.ye5{bottom:120.032000pt;}
.y93{bottom:120.512000pt;}
.y112{bottom:128.352000pt;}
.y2f{bottom:129.792000pt;}
.y12e{bottom:132.672000pt;}
.ye4{bottom:138.746667pt;}
.y63{bottom:139.866667pt;}
.y92{bottom:144.826667pt;}
.y111{bottom:147.066667pt;}
.y2e{bottom:148.506667pt;}
.y12d{bottom:151.386667pt;}
.ye3{bottom:157.466667pt;}
.y61{bottom:161.626667pt;}
.ybe{bottom:162.106667pt;}
.y110{bottom:165.786667pt;}
.y2d{bottom:167.226667pt;}
.y91{bottom:169.146667pt;}
.y12c{bottom:170.106667pt;}
.ye2{bottom:176.186667pt;}
.ybd{bottom:180.826667pt;}
.y10f{bottom:184.506667pt;}
.y5f{bottom:184.826667pt;}
.y2c{bottom:185.946667pt;}
.y149{bottom:187.066667pt;}
.y12b{bottom:188.826667pt;}
.y90{bottom:193.466667pt;}
.ye1{bottom:194.906667pt;}
.ybc{bottom:199.546667pt;}
.y10e{bottom:203.226667pt;}
.y2b{bottom:204.666667pt;}
.y148{bottom:205.786667pt;}
.y12a{bottom:207.546667pt;}
.y5e{bottom:210.266667pt;}
.ye0{bottom:213.626667pt;}
.y8f{bottom:217.786667pt;}
.ybb{bottom:218.266667pt;}
.y10d{bottom:221.946667pt;}
.y2a{bottom:223.386667pt;}
.y147{bottom:224.506667pt;}
.y129{bottom:226.266667pt;}
.y5d{bottom:228.986667pt;}
.ydf{bottom:232.346667pt;}
.yba{bottom:236.986667pt;}
.y10c{bottom:240.666667pt;}
.y29{bottom:242.106667pt;}
.y146{bottom:243.226667pt;}
.y128{bottom:244.986667pt;}
.y5c{bottom:247.706667pt;}
.yde{bottom:251.106667pt;}
.yb9{bottom:255.746667pt;}
.y10b{bottom:259.266667pt;}
.y28{bottom:260.866667pt;}
.y145{bottom:261.986667pt;}
.y127{bottom:263.746667pt;}
.y5b{bottom:266.466667pt;}
.ydd{bottom:269.826667pt;}
.yb8{bottom:274.466667pt;}
.y10a{bottom:277.986667pt;}
.y27{bottom:279.586667pt;}
.y144{bottom:280.706667pt;}
.y126{bottom:282.466667pt;}
.y5a{bottom:285.186667pt;}
.yb7{bottom:287.906667pt;}
.ydc{bottom:288.546667pt;}
.y109{bottom:296.706667pt;}
.y26{bottom:298.306667pt;}
.y143{bottom:299.426667pt;}
.y8e{bottom:301.026667pt;}
.y125{bottom:301.186667pt;}
.y59{bottom:303.906667pt;}
.ydb{bottom:307.266667pt;}
.yb6{bottom:307.746667pt;}
.y108{bottom:315.426667pt;}
.y25{bottom:317.026667pt;}
.y142{bottom:318.786667pt;}
.y8d{bottom:319.746667pt;}
.y124{bottom:319.906667pt;}
.y58{bottom:322.626667pt;}
.yda{bottom:325.986667pt;}
.yb5{bottom:327.586667pt;}
.y24{bottom:335.746667pt;}
.y8c{bottom:338.466667pt;}
.y123{bottom:338.626667pt;}
.y141{bottom:339.426667pt;}
.y57{bottom:341.346667pt;}
.y107{bottom:342.466667pt;}
.yd9{bottom:344.706667pt;}
.yb2{bottom:347.586667pt;}
.y23{bottom:354.466667pt;}
.y8b{bottom:357.186667pt;}
.y122{bottom:357.346667pt;}
.y56{bottom:360.066667pt;}
.yd8{bottom:363.426667pt;}
.y22{bottom:373.186667pt;}
.y8a{bottom:375.906667pt;}
.y121{bottom:376.066667pt;}
.yb1{bottom:377.666667pt;}
.y55{bottom:378.786667pt;}
.y140{bottom:380.546667pt;}
.yd7{bottom:382.146667pt;}
.y106{bottom:383.426667pt;}
.y21{bottom:391.906667pt;}
.y89{bottom:394.626667pt;}
.y120{bottom:394.786667pt;}
.y54{bottom:397.506667pt;}
.yd6{bottom:400.866667pt;}
.y13f{bottom:401.186667pt;}
.y88{bottom:408.066667pt;}
.y20{bottom:410.626667pt;}
.y11f{bottom:413.506667pt;}
.y53{bottom:416.226667pt;}
.yb0{bottom:417.346667pt;}
.yd5{bottom:419.586667pt;}
.y13e{bottom:421.826667pt;}
.y104{bottom:424.226667pt;}
.yef{bottom:429.026667pt;}
.y1f{bottom:429.346667pt;}
.y11e{bottom:432.226667pt;}
.y87{bottom:432.386667pt;}
.y52{bottom:434.946667pt;}
.yaf{bottom:437.186667pt;}
.yd4{bottom:438.306667pt;}
.y13d{bottom:442.306667pt;}
.y1e{bottom:450.146667pt;}
.y11d{bottom:450.946667pt;}
.y51{bottom:453.666667pt;}
.y86{bottom:456.706667pt;}
.yed{bottom:456.866667pt;}
.yab{bottom:457.026667pt;}
.y13c{bottom:462.946667pt;}
.y11c{bottom:469.666667pt;}
.y50{bottom:472.386667pt;}
.yd3{bottom:475.746667pt;}
.y1d{bottom:476.706667pt;}
.yad{bottom:476.866667pt;}
.y85{bottom:481.026667pt;}
.y13b{bottom:483.586667pt;}
.y103{bottom:483.906667pt;}
.ye9{bottom:484.386667pt;}
.y11b{bottom:488.386667pt;}
.y4f{bottom:491.106667pt;}
.yd2{bottom:494.466667pt;}
.y1c{bottom:495.426667pt;}
.ya9{bottom:496.706667pt;}
.y13a{bottom:504.093333pt;}
.y84{bottom:505.373333pt;}
.y11a{bottom:507.133333pt;}
.y4e{bottom:509.853333pt;}
.ye6{bottom:512.093333pt;}
.yd1{bottom:513.213333pt;}
.y1b{bottom:514.173333pt;}
.ya8{bottom:516.573333pt;}
.y102{bottom:517.373333pt;}
.y139{bottom:524.733333pt;}
.y119{bottom:525.853333pt;}
.y4d{bottom:528.573333pt;}
.y83{bottom:529.693333pt;}
.yd0{bottom:531.933333pt;}
.y1a{bottom:532.893333pt;}
.y101{bottom:536.093333pt;}
.ya7{bottom:536.573333pt;}
.y118{bottom:544.573333pt;}
.y138{bottom:545.373333pt;}
.ycf{bottom:550.653333pt;}
.y19{bottom:551.613333pt;}
.y80{bottom:554.013333pt;}
.y100{bottom:554.653333pt;}
.y4c{bottom:555.293333pt;}
.ya6{bottom:562.333333pt;}
.y117{bottom:563.293333pt;}
.y137{bottom:565.853333pt;}
.yce{bottom:569.373333pt;}
.y18{bottom:570.333333pt;}
.yff{bottom:573.373333pt;}
.y4b{bottom:574.013333pt;}
.ya5{bottom:581.053333pt;}
.y116{bottom:582.013333pt;}
.y136{bottom:586.493333pt;}
.ycd{bottom:588.093333pt;}
.y7f{bottom:588.573333pt;}
.y17{bottom:589.053333pt;}
.yfe{bottom:592.093333pt;}
.y4a{bottom:592.733333pt;}
.ya4{bottom:599.773333pt;}
.y115{bottom:600.733333pt;}
.ycc{bottom:606.813333pt;}
.y135{bottom:607.133333pt;}
.y7e{bottom:607.293333pt;}
.y16{bottom:607.773333pt;}
.yfd{bottom:610.813333pt;}
.y49{bottom:611.453333pt;}
.ya3{bottom:618.493333pt;}
.y114{bottom:619.453333pt;}
.ycb{bottom:625.533333pt;}
.y7d{bottom:626.013333pt;}
.y15{bottom:626.493333pt;}
.y134{bottom:627.613333pt;}
.yfc{bottom:629.533333pt;}
.ya2{bottom:637.213333pt;}
.y48{bottom:638.173333pt;}
.yca{bottom:644.253333pt;}
.y7c{bottom:644.733333pt;}
.y14{bottom:645.213333pt;}
.y133{bottom:648.253333pt;}
.ya1{bottom:655.773333pt;}
.yfb{bottom:656.253333pt;}
.y47{bottom:656.893333pt;}
.yc9{bottom:662.973333pt;}
.y7b{bottom:663.453333pt;}
.y13{bottom:663.933333pt;}
.y132{bottom:668.893333pt;}
.ya0{bottom:674.493333pt;}
.yfa{bottom:674.973333pt;}
.y46{bottom:675.613333pt;}
.yc8{bottom:681.693333pt;}
.y12{bottom:682.653333pt;}
.y7a{bottom:682.973333pt;}
.y131{bottom:689.533333pt;}
.y9f{bottom:693.213333pt;}
.yf9{bottom:693.693333pt;}
.y45{bottom:694.333333pt;}
.y79{bottom:697.533333pt;}
.yc7{bottom:700.413333pt;}
.y11{bottom:701.373333pt;}
.y130{bottom:710.013333pt;}
.y9e{bottom:711.933333pt;}
.yf8{bottom:712.413333pt;}
.y44{bottom:713.053333pt;}
.y78{bottom:717.373333pt;}
.yc6{bottom:718.973333pt;}
.y10{bottom:720.093333pt;}
.y9d{bottom:730.653333pt;}
.yf7{bottom:731.133333pt;}
.y43{bottom:731.773333pt;}
.y77{bottom:737.373333pt;}
.yc5{bottom:737.693333pt;}
.yf{bottom:738.813333pt;}
.yf6{bottom:744.893333pt;}
.y9c{bottom:749.373333pt;}
.y42{bottom:750.493333pt;}
.yc4{bottom:756.453333pt;}
.y76{bottom:757.253333pt;}
.ye{bottom:757.733333pt;}
.y9b{bottom:763.013333pt;}
.yf5{bottom:768.933333pt;}
.y41{bottom:769.253333pt;}
.yc3{bottom:775.173333pt;}
.y75{bottom:777.253333pt;}
.yd{bottom:778.373333pt;}
.y9a{bottom:787.013333pt;}
.y40{bottom:787.973333pt;}
.yf2{bottom:792.933333pt;}
.yc2{bottom:793.893333pt;}
.yc{bottom:797.093333pt;}
.y3f{bottom:806.693333pt;}
.y99{bottom:811.173333pt;}
.yc1{bottom:812.613333pt;}
.y72{bottom:817.093333pt;}
.yb{bottom:820.453333pt;}
.y3e{bottom:825.413333pt;}
.yc0{bottom:831.333333pt;}
.ya{bottom:835.173333pt;}
.y98{bottom:835.333333pt;}
.yf4{bottom:841.093333pt;}
.y3d{bottom:844.133333pt;}
.ybf{bottom:846.693333pt;}
.y71{bottom:851.973333pt;}
.y9{bottom:855.813333pt;}
.y97{bottom:859.493333pt;}
.y3c{bottom:862.853333pt;}
.yf1{bottom:865.093333pt;}
.y70{bottom:870.693333pt;}
.y8{bottom:879.333333pt;}
.y3b{bottom:881.573333pt;}
.y96{bottom:883.493333pt;}
.yf0{bottom:889.253333pt;}
.y6f{bottom:889.413333pt;}
.y3a{bottom:900.293333pt;}
.y95{bottom:907.653333pt;}
.y6e{bottom:908.133333pt;}
.y7{bottom:909.253333pt;}
.y39{bottom:919.013333pt;}
.y6d{bottom:926.853333pt;}
.y38{bottom:937.733333pt;}
.y6c{bottom:945.573333pt;}
.y5{bottom:951.013333pt;}
.y37{bottom:956.453333pt;}
.y6a{bottom:959.013333pt;}
.y36{bottom:975.173333pt;}
.y4{bottom:977.573333pt;}
.y67{bottom:980.613333pt;}
.y35{bottom:993.893333pt;}
.y3{bottom:1004.133333pt;}
.y34{bottom:1012.640000pt;}
.y2{bottom:1030.720000pt;}
.y33{bottom:1040.000000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hc{height:18.560000pt;}
.h13{height:18.720000pt;}
.h14{height:18.752000pt;}
.h1c{height:20.320000pt;}
.hf{height:20.640000pt;}
.h1d{height:20.672000pt;}
.h11{height:20.800000pt;}
.he{height:20.960000pt;}
.hd{height:22.240000pt;}
.h16{height:23.040000pt;}
.h12{height:27.680000pt;}
.h1a{height:28.960000pt;}
.h6{height:34.374375pt;}
.h20{height:37.440000pt;}
.h17{height:38.560000pt;}
.h10{height:43.872000pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h1f{height:52.934375pt;}
.h8{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h19{height:58.400000pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h1b{height:60.519362pt;}
.h21{height:63.656250pt;}
.hb{height:65.531250pt;}
.h15{height:65.781915pt;}
.h1e{height:66.880000pt;}
.h18{height:82.274687pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:20.832000pt;}
.w29{width:40.640000pt;}
.wd{width:41.600000pt;}
.w11{width:41.920000pt;}
.w17{width:42.240000pt;}
.w19{width:43.520000pt;}
.w1e{width:43.840000pt;}
.w39{width:47.840000pt;}
.w9{width:54.240000pt;}
.w4{width:54.560000pt;}
.w3c{width:62.912000pt;}
.w2a{width:64.160000pt;}
.wc{width:65.440000pt;}
.w6{width:65.760000pt;}
.w38{width:67.360000pt;}
.w37{width:67.392000pt;}
.w35{width:67.552000pt;}
.w32{width:67.840000pt;}
.w31{width:68.032000pt;}
.wb{width:76.192000pt;}
.wa{width:76.480000pt;}
.w3d{width:81.760000pt;}
.w3a{width:84.672000pt;}
.w3e{width:86.592000pt;}
.w2d{width:90.752000pt;}
.w36{width:93.120000pt;}
.w2c{width:94.080000pt;}
.w34{width:97.120000pt;}
.wf{width:100.832000pt;}
.w2f{width:101.312000pt;}
.w2e{width:101.440000pt;}
.w14{width:101.600000pt;}
.w21{width:105.440000pt;}
.w1b{width:105.920000pt;}
.w10{width:111.840000pt;}
.w15{width:112.832000pt;}
.w8{width:115.232000pt;}
.w3{width:115.552000pt;}
.w22{width:117.152000pt;}
.w3f{width:117.440000pt;}
.w1c{width:117.472000pt;}
.w40{width:117.952000pt;}
.w16{width:124.352000pt;}
.we{width:125.952000pt;}
.w12{width:126.272000pt;}
.w13{width:127.072000pt;}
.w18{width:127.392000pt;}
.w23{width:129.152000pt;}
.w1d{width:129.472000pt;}
.w20{width:131.872000pt;}
.w1a{width:132.192000pt;}
.w1f{width:132.512000pt;}
.w33{width:133.152000pt;}
.w7{width:137.146667pt;}
.w28{width:144.986667pt;}
.w5{width:153.306667pt;}
.w26{width:163.866667pt;}
.w27{width:245.146667pt;}
.w25{width:390.626667pt;}
.w30{width:393.346667pt;}
.w3b{width:469.213333pt;}
.w24{width:555.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xe{left:-1.440000pt;}
.x0{left:0.000000pt;}
.x9{left:1.440000pt;}
.x19{left:2.400000pt;}
.x11{left:3.680000pt;}
.x10{left:4.800000pt;}
.xf{left:6.080000pt;}
.x22{left:7.706667pt;}
.x21{left:8.640000pt;}
.x3f{left:10.400000pt;}
.x16{left:11.520000pt;}
.xc{left:12.960000pt;}
.x38{left:15.040000pt;}
.x27{left:16.480000pt;}
.x35{left:18.880000pt;}
.x37{left:40.320000pt;}
.x20{left:44.000000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x1a{left:53.279988pt;}
.x2e{left:57.439988pt;}
.x4{left:62.399988pt;}
.x3{left:65.919988pt;}
.x2b{left:66.879988pt;}
.x48{left:71.039988pt;}
.x12{left:71.999988pt;}
.x40{left:75.519988pt;}
.x5{left:76.479988pt;}
.x47{left:89.311988pt;}
.x46{left:90.271988pt;}
.x2d{left:95.391988pt;}
.x28{left:119.392000pt;}
.x23{left:131.232000pt;}
.x39{left:132.352000pt;}
.x6{left:133.946667pt;}
.x3a{left:137.634667pt;}
.x2f{left:139.866667pt;}
.x1b{left:141.466667pt;}
.x13{left:154.906667pt;}
.x24{left:175.386667pt;}
.x30{left:180.186667pt;}
.x1c{left:184.026667pt;}
.x14{left:197.146667pt;}
.x41{left:200.826667pt;}
.x31{left:244.346667pt;}
.x7{left:249.186667pt;}
.x42{left:264.386667pt;}
.x32{left:265.826667pt;}
.x8{left:303.746667pt;}
.x25{left:308.226667pt;}
.x1d{left:311.746667pt;}
.x15{left:323.746667pt;}
.x43{left:346.786667pt;}
.x33{left:360.226667pt;}
.x3d{left:363.906667pt;}
.x2a{left:365.026667pt;}
.xd{left:380.866667pt;}
.x1e{left:414.306667pt;}
.x17{left:425.373333pt;}
.x3e{left:432.093333pt;}
.x44{left:434.013333pt;}
.x34{left:451.293333pt;}
.xa{left:457.053333pt;}
.x29{left:510.653333pt;}
.xb{left:522.813333pt;}
.x3b{left:525.693333pt;}
.x1f{left:528.093333pt;}
.x26{left:533.213333pt;}
.x18{left:538.173333pt;}
.x45{left:552.093333pt;}
.x36{left:553.053333pt;}
.x3c{left:593.733333pt;}
.x2c{left:604.293322pt;}
.x49{left:746.053322pt;}
}




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