
    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_7c6ab52bb289b2b0ea91eeaf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2ec0c8d52ec8a908434a0f2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6b260fc048f55a427ef6ac3c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_793945b761a2ac4796d9453e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_0fc5d0c4b08c2b9d0c007b12.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m4{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.800000px;}
.v1{vertical-align:66.960000px;}
.ls1f{letter-spacing:-3.599300px;}
.ls1d{letter-spacing:-2.955191px;}
.ls1e{letter-spacing:-1.743991px;}
.ls1b{letter-spacing:-1.494281px;}
.ls1c{letter-spacing:-1.475742px;}
.ls21{letter-spacing:-0.979603px;}
.lse{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.512065px;}
.lsf{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.346200px;}
.ls11{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.265800px;}
.ls16{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.094200px;}
.ls18{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.036000px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.157800px;}
.ls3{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.289200px;}
.ls8{letter-spacing:0.964761px;}
.ls7{letter-spacing:1.460910px;}
.lsa{letter-spacing:1.969893px;}
.ls9{letter-spacing:1.970339px;}
.lsb{letter-spacing:2.860442px;}
.ls5{letter-spacing:97.560000px;}
.ls2{letter-spacing:129.240000px;}
.ls0{letter-spacing:132.120000px;}
.ls6{letter-spacing:132.240000px;}
.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;}
}
.ws4{word-spacing:-119.273760px;}
.ws12{word-spacing:-49.032000px;}
.ws13{word-spacing:-48.816000px;}
.ws11{word-spacing:-46.049760px;}
.wsd{word-spacing:-43.446240px;}
.ws10{word-spacing:-41.981760px;}
.wsc{word-spacing:-37.913760px;}
.ws6{word-spacing:-32.544000px;}
.wsb{word-spacing:-29.777760px;}
.ws1{word-spacing:-24.552000px;}
.wsf{word-spacing:-24.516000px;}
.wse{word-spacing:-24.480000px;}
.ws0{word-spacing:-24.408000px;}
.wsa{word-spacing:-24.372000px;}
.ws3{word-spacing:-24.048000px;}
.ws9{word-spacing:-14.482080px;}
.ws5{word-spacing:-1.404000px;}
.ws15{word-spacing:0.000000px;}
.ws8{word-spacing:0.216000px;}
.ws14{word-spacing:0.966960px;}
.ws7{word-spacing:1.152000px;}
.ws2{word-spacing:1.188000px;}
._7{margin-left:-31.074480px;}
._11{margin-left:-17.930880px;}
._10{margin-left:-13.560480px;}
._6{margin-left:-12.138480px;}
._f{margin-left:-10.573200px;}
._2{margin-left:-9.180000px;}
._3{margin-left:-7.452000px;}
._8{margin-left:-6.333120px;}
._4{margin-left:-5.184000px;}
._9{margin-left:-4.158720px;}
._5{margin-left:-3.132000px;}
._0{margin-left:-1.728000px;}
._1{width:1.296000px;}
._a{width:2.608560px;}
._c{width:4.296000px;}
._e{width:22.716000px;}
._b{width:24.120000px;}
._d{width:25.956000px;}
.fca{color:transparent;}
.fc8{color:rgb(0,127,99);}
.fc7{color:rgb(55,69,75);}
.fc6{color:rgb(0,92,169);}
.fc2{color:rgb(165,30,85);}
.fc4{color:rgb(97,161,196);}
.fc1{color:rgb(55,70,75);}
.fc9{color:rgb(0,0,0);}
.fc5{color:rgb(168,195,3);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(111,188,133);}
.fs11{font-size:40.965231px;}
.fs12{font-size:44.527425px;}
.fse{font-size:53.393666px;}
.fsf{font-size:54.323458px;}
.fs7{font-size:64.080000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fsd{font-size:120.240000px;}
.fs8{font-size:131.760000px;}
.fs10{font-size:138.240000px;}
.fs3{font-size:144.000000px;}
.fs5{font-size:162.000000px;}
.fs4{font-size:167.760000px;}
.fsb{font-size:185.760000px;}
.fs9{font-size:192.240000px;}
.fsa{font-size:203.760000px;}
.fsc{font-size:216.000000px;}
.fs2{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:2.793716px;}
.ye0{bottom:4.797450px;}
.ydd{bottom:5.683830px;}
.ydf{bottom:21.717500px;}
.ydc{bottom:22.591824px;}
.yf2{bottom:68.182958px;}
.ye4{bottom:68.615005px;}
.y61{bottom:77.904000px;}
.ye3{bottom:91.188000px;}
.y2e{bottom:103.860000px;}
.y2c{bottom:103.935000px;}
.y9{bottom:103.965000px;}
.y38{bottom:104.010000px;}
.y44{bottom:104.475000px;}
.y60{bottom:163.290000px;}
.yde{bottom:183.275005px;}
.ye2{bottom:193.605000px;}
.yac{bottom:203.145000px;}
.y5f{bottom:210.990000px;}
.y5e{bottom:284.250000px;}
.ye1{bottom:297.935005px;}
.y35{bottom:298.800000px;}
.yab{bottom:317.880000px;}
.y33{bottom:331.200000px;}
.y5d{bottom:331.950000px;}
.y31{bottom:363.600000px;}
.y5c{bottom:379.650000px;}
.ydb{bottom:412.702958px;}
.y5b{bottom:424.515000px;}
.yaa{bottom:434.160000px;}
.y5a{bottom:478.515000px;}
.y40{bottom:525.705000px;}
.y3e{bottom:558.105000px;}
.y3c{bottom:590.550000px;}
.y3a{bottom:622.950000px;}
.y8e{bottom:624.390000px;}
.y8d{bottom:656.790000px;}
.y8c{bottom:689.190000px;}
.yd7{bottom:702.870000px;}
.y8b{bottom:721.590000px;}
.yd6{bottom:735.270000px;}
.y8a{bottom:753.990000px;}
.yd5{bottom:767.670000px;}
.y89{bottom:786.390000px;}
.yd4{bottom:800.070000px;}
.yc3{bottom:800.430000px;}
.y88{bottom:823.290000px;}
.yd3{bottom:832.470000px;}
.yc2{bottom:832.830000px;}
.yc1{bottom:865.230000px;}
.yd2{bottom:869.370000px;}
.yc0{bottom:897.630000px;}
.ybf{bottom:930.030000px;}
.ybe{bottom:962.430000px;}
.yf1{bottom:999.285000px;}
.ybd{bottom:999.330000px;}
.yf0{bottom:1031.685000px;}
.yef{bottom:1064.085000px;}
.yee{bottom:1096.485000px;}
.ybc{bottom:1096.560000px;}
.yed{bottom:1128.885000px;}
.ybb{bottom:1128.960000px;}
.yec{bottom:1161.285000px;}
.yba{bottom:1161.360000px;}
.yeb{bottom:1193.685000px;}
.yb9{bottom:1193.760000px;}
.yb8{bottom:1226.160000px;}
.yea{bottom:1230.585000px;}
.yb7{bottom:1263.060000px;}
.ycd{bottom:1293.120000px;}
.yb6{bottom:1323.180000px;}
.ycc{bottom:1325.550000px;}
.ycb{bottom:1357.950000px;}
.yca{bottom:1390.350000px;}
.yd1{bottom:1407.570000px;}
.yc9{bottom:1427.250000px;}
.yd0{bottom:1456.530000px;}
.ycf{bottom:1505.490000px;}
.yce{bottom:1555.170000px;}
.y9a{bottom:1577.880000px;}
.y99{bottom:1610.310000px;}
.y98{bottom:1642.710000px;}
.y97{bottom:1675.110000px;}
.y96{bottom:1707.510000px;}
.yc8{bottom:1733.295000px;}
.y95{bottom:1739.910000px;}
.y94{bottom:1772.310000px;}
.yc7{bottom:1782.255000px;}
.y93{bottom:1804.710000px;}
.ya9{bottom:1817.745000px;}
.yc6{bottom:1831.215000px;}
.y92{bottom:1837.110000px;}
.ye9{bottom:1847.160000px;}
.y91{bottom:1869.510000px;}
.ya8{bottom:1869.585000px;}
.yc5{bottom:1880.175000px;}
.ye8{bottom:1896.120000px;}
.y90{bottom:1906.410000px;}
.yc4{bottom:1929.885000px;}
.y8f{bottom:1943.310000px;}
.ye7{bottom:1945.080000px;}
.ye6{bottom:1994.760000px;}
.y84{bottom:2135.805000px;}
.y83{bottom:2168.205000px;}
.y82{bottom:2200.605000px;}
.y69{bottom:2204.925000px;}
.y81{bottom:2233.005000px;}
.y68{bottom:2237.325000px;}
.ya2{bottom:2257.050000px;}
.y9e{bottom:2262.705000px;}
.y80{bottom:2265.405000px;}
.y67{bottom:2269.725000px;}
.y66{bottom:2302.125000px;}
.y7f{bottom:2302.305000px;}
.ya1{bottom:2306.010000px;}
.y9d{bottom:2307.345000px;}
.y65{bottom:2334.525000px;}
.y9c{bottom:2351.985000px;}
.ya0{bottom:2354.970000px;}
.y64{bottom:2366.925000px;}
.y9b{bottom:2397.705000px;}
.y63{bottom:2403.825000px;}
.y9f{bottom:2403.930000px;}
.y62{bottom:2436.225000px;}
.y4c{bottom:2520.330000px;}
.y4f{bottom:2522.010000px;}
.yb0{bottom:2522.160000px;}
.y4b{bottom:2552.730000px;}
.y4e{bottom:2554.410000px;}
.yaf{bottom:2571.120000px;}
.y4a{bottom:2585.130000px;}
.y4d{bottom:2591.310000px;}
.y49{bottom:2617.530000px;}
.yae{bottom:2620.080000px;}
.y48{bottom:2654.430000px;}
.yad{bottom:2669.040000px;}
.y6f{bottom:2684.310000px;}
.y22{bottom:2738.955000px;}
.ya7{bottom:2766.750000px;}
.y21{bottom:2783.550000px;}
.ya6{bottom:2812.830000px;}
.y20{bottom:2828.160000px;}
.ya5{bottom:2858.910000px;}
.y1f{bottom:2872.770000px;}
.y87{bottom:2878.125000px;}
.ya4{bottom:2904.990000px;}
.y1e{bottom:2917.365000px;}
.y15{bottom:2923.275000px;}
.y86{bottom:2924.205000px;}
.ya3{bottom:2952.150000px;}
.y1d{bottom:2961.975000px;}
.y85{bottom:2971.365000px;}
.y1c{bottom:3006.570000px;}
.y59{bottom:3044.490000px;}
.y1b{bottom:3051.180000px;}
.y58{bottom:3076.890000px;}
.y1a{bottom:3095.790000px;}
.y57{bottom:3109.290000px;}
.y19{bottom:3140.385000px;}
.y56{bottom:3141.690000px;}
.y55{bottom:3174.090000px;}
.y18{bottom:3184.995000px;}
.y54{bottom:3210.990000px;}
.y17{bottom:3229.590000px;}
.yb5{bottom:3245.070000px;}
.y16{bottom:3274.200000px;}
.yb4{bottom:3285.435000px;}
.y14{bottom:3318.810000px;}
.yb3{bottom:3325.755000px;}
.y74{bottom:3357.210000px;}
.y13{bottom:3363.405000px;}
.yb2{bottom:3366.075000px;}
.y73{bottom:3389.610000px;}
.yb1{bottom:3406.395000px;}
.y12{bottom:3408.015000px;}
.y7e{bottom:3408.870000px;}
.ya{bottom:3421.440000px;}
.y72{bottom:3422.010000px;}
.y7d{bottom:3449.190000px;}
.y11{bottom:3452.610000px;}
.y71{bottom:3454.410000px;}
.y7c{bottom:3489.510000px;}
.y70{bottom:3491.310000px;}
.y10{bottom:3497.220000px;}
.y7b{bottom:3530.910000px;}
.yf{bottom:3541.830000px;}
.y39{bottom:3573.900000px;}
.ye{bottom:3586.425000px;}
.y7{bottom:3613.710000px;}
.yd{bottom:3631.035000px;}
.y6{bottom:3646.110000px;}
.y6e{bottom:3659.580000px;}
.y8{bottom:3674.880000px;}
.yc{bottom:3675.630000px;}
.y5{bottom:3678.510000px;}
.y6d{bottom:3699.900000px;}
.y4{bottom:3710.910000px;}
.yb{bottom:3720.240000px;}
.y3{bottom:3743.310000px;}
.y2{bottom:3775.710000px;}
.y6c{bottom:3799.650000px;}
.y1{bottom:3812.610000px;}
.y6b{bottom:3834.210000px;}
.y6a{bottom:3868.770000px;}
.y43{bottom:3915.360000px;}
.y30{bottom:3945.420000px;}
.y45{bottom:4019.835000px;}
.y7a{bottom:4025.130000px;}
.yda{bottom:4054.830000px;}
.y79{bottom:4056.810000px;}
.y42{bottom:4067.205000px;}
.yd9{bottom:4080.750000px;}
.y78{bottom:4088.490000px;}
.y37{bottom:4092.300000px;}
.y41{bottom:4099.605000px;}
.y77{bottom:4101.585000px;}
.yd8{bottom:4107.390000px;}
.y76{bottom:4127.505000px;}
.y3f{bottom:4132.005000px;}
.y75{bottom:4154.145000px;}
.y2a{bottom:4156.665000px;}
.y3d{bottom:4164.450000px;}
.y29{bottom:4189.065000px;}
.y3b{bottom:4196.850000px;}
.y2d{bottom:4204.620000px;}
.y28{bottom:4221.465000px;}
.y36{bottom:4244.220000px;}
.y2b{bottom:4251.960000px;}
.y27{bottom:4253.865000px;}
.y53{bottom:4269.390000px;}
.y34{bottom:4276.620000px;}
.y26{bottom:4286.265000px;}
.y52{bottom:4301.790000px;}
.y2f{bottom:4308.480000px;}
.y32{bottom:4309.020000px;}
.y25{bottom:4318.665000px;}
.y51{bottom:4334.190000px;}
.y24{bottom:4351.065000px;}
.y23{bottom:4387.965000px;}
.y50{bottom:4390.710000px;}
.y47{bottom:4740.270000px;}
.y46{bottom:4893.270000px;}
.h1f{height:16.697784px;}
.h22{height:29.943824px;}
.h23{height:32.417183px;}
.h1c{height:38.872049px;}
.h1b{height:39.028476px;}
.h20{height:39.548963px;}
.h1e{height:39.708114px;}
.h7{height:78.626953px;}
.he{height:95.245664px;}
.h1a{height:97.888388px;}
.h3{height:107.419922px;}
.h2{height:110.583984px;}
.h1d{height:111.318562px;}
.h19{height:123.116836px;}
.h10{height:131.052305px;}
.hf{height:134.912461px;}
.h5{height:138.573281px;}
.h21{height:141.547500px;}
.hb{height:143.226562px;}
.ha{height:147.445312px;}
.hd{height:161.129883px;}
.h11{height:166.858945px;}
.hc{height:171.773789px;}
.h15{height:184.762266px;}
.h13{height:191.207461px;}
.h12{height:196.839492px;}
.h16{height:202.665586px;}
.h14{height:208.635117px;}
.h18{height:214.839844px;}
.h17{height:221.167969px;}
.h4{height:226.980000px;}
.h9{height:540.387070px;}
.h6{height:680.580000px;}
.h8{height:1134.180000px;}
.h1{height:5140.500000px;}
.h0{height:5140.620000px;}
.wb{width:117.174995px;}
.w5{width:195.480000px;}
.wa{width:206.746161px;}
.w7{width:313.848587px;}
.w9{width:325.059187px;}
.w8{width:336.268125px;}
.w3{width:619.740000px;}
.w6{width:653.760000px;}
.w4{width:849.060000px;}
.w1{width:3660.750000px;}
.w2{width:3661.019945px;}
.w0{width:3661.020000px;}
.x5f{left:-196.486560px;}
.x0{left:0.000000px;}
.x4{left:7.845000px;}
.x55{left:11.087498px;}
.x58{left:12.206291px;}
.x54{left:176.293976px;}
.x57{left:177.373839px;}
.xf{left:185.684945px;}
.x3{left:188.100000px;}
.x29{left:198.869945px;}
.x14{left:227.264945px;}
.x5{left:235.364945px;}
.x2a{left:241.349945px;}
.x7{left:276.869945px;}
.x6{left:305.894945px;}
.x38{left:326.519945px;}
.x5e{left:384.120000px;}
.x37{left:390.419945px;}
.x39{left:722.054945px;}
.x4d{left:730.184945px;}
.x4e{left:754.304945px;}
.x4c{left:779.324945px;}
.x4b{left:780.944945px;}
.xc{left:991.364945px;}
.x8{left:1002.960000px;}
.x5a{left:1013.969945px;}
.x4f{left:1030.289945px;}
.x5b{left:1056.989945px;}
.x50{left:1072.799945px;}
.x5c{left:1078.409945px;}
.x59{left:1086.689945px;}
.x25{left:1098.794945px;}
.x9{left:1115.384945px;}
.x24{left:1116.794945px;}
.x23{left:1118.594945px;}
.x22{left:1139.114945px;}
.xa{left:1198.260000px;}
.x5d{left:1205.714945px;}
.xb{left:1247.864945px;}
.x12{left:1284.944945px;}
.x3c{left:1286.279945px;}
.x3b{left:1330.739945px;}
.x3d{left:1372.499945px;}
.x3a{left:1382.219945px;}
.x47{left:1463.069945px;}
.x13{left:1475.714945px;}
.x49{left:1492.949945px;}
.x42{left:1499.009945px;}
.x40{left:1513.409945px;}
.x3f{left:1517.009945px;}
.x3e{left:1520.429945px;}
.x41{left:1535.369945px;}
.x46{left:1549.109945px;}
.x4a{left:1571.834945px;}
.x48{left:1619.354945px;}
.x19{left:1789.589945px;}
.x31{left:1809.389945px;}
.x30{left:1819.469945px;}
.x18{left:1851.329945px;}
.x2f{left:1859.429945px;}
.x28{left:1914.449945px;}
.x56{left:1927.229945px;}
.x20{left:1952.894945px;}
.x21{left:1961.174945px;}
.x1f{left:1966.214945px;}
.x26{left:1978.169945px;}
.x27{left:1984.109945px;}
.x43{left:2059.484945px;}
.x45{left:2093.324945px;}
.x44{left:2101.964945px;}
.x17{left:2171.189945px;}
.x15{left:2196.569945px;}
.x16{left:2200.709945px;}
.x2d{left:2305.904945px;}
.x2e{left:2310.224945px;}
.x1e{left:2345.549945px;}
.x52{left:2354.909945px;}
.x1c{left:2358.509945px;}
.x51{left:2360.849945px;}
.x2c{left:2362.424945px;}
.x53{left:2387.129945px;}
.x1d{left:2390.189945px;}
.x2b{left:2421.644945px;}
.x35{left:2492.279945px;}
.x34{left:2493.539945px;}
.x36{left:2510.639945px;}
.x33{left:2515.499945px;}
.x1a{left:2526.374945px;}
.x32{left:2538.539945px;}
.x1b{left:2568.854945px;}
.x10{left:2599.889945px;}
.x11{left:2642.369945px;}
.x1{left:2775.344945px;}
.x2{left:2817.824945px;}
.xd{left:2848.469945px;}
.xe{left:2890.949945px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.600000pt;}
.v1{vertical-align:59.520000pt;}
.ls1f{letter-spacing:-3.199378pt;}
.ls1d{letter-spacing:-2.626837pt;}
.ls1e{letter-spacing:-1.550214pt;}
.ls1b{letter-spacing:-1.328250pt;}
.ls1c{letter-spacing:-1.311770pt;}
.ls21{letter-spacing:-0.870759pt;}
.lse{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.455169pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.307733pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.236267pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.083733pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.140267pt;}
.ls3{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.257067pt;}
.ls8{letter-spacing:0.857565pt;}
.ls7{letter-spacing:1.298587pt;}
.lsa{letter-spacing:1.751016pt;}
.ls9{letter-spacing:1.751412pt;}
.lsb{letter-spacing:2.542615pt;}
.ls5{letter-spacing:86.720000pt;}
.ls2{letter-spacing:114.880000pt;}
.ls0{letter-spacing:117.440000pt;}
.ls6{letter-spacing:117.546667pt;}
.ws4{word-spacing:-106.021120pt;}
.ws12{word-spacing:-43.584000pt;}
.ws13{word-spacing:-43.392000pt;}
.ws11{word-spacing:-40.933120pt;}
.wsd{word-spacing:-38.618880pt;}
.ws10{word-spacing:-37.317120pt;}
.wsc{word-spacing:-33.701120pt;}
.ws6{word-spacing:-28.928000pt;}
.wsb{word-spacing:-26.469120pt;}
.ws1{word-spacing:-21.824000pt;}
.wsf{word-spacing:-21.792000pt;}
.wse{word-spacing:-21.760000pt;}
.ws0{word-spacing:-21.696000pt;}
.wsa{word-spacing:-21.664000pt;}
.ws3{word-spacing:-21.376000pt;}
.ws9{word-spacing:-12.872960pt;}
.ws5{word-spacing:-1.248000pt;}
.ws15{word-spacing:0.000000pt;}
.ws8{word-spacing:0.192000pt;}
.ws14{word-spacing:0.859520pt;}
.ws7{word-spacing:1.024000pt;}
.ws2{word-spacing:1.056000pt;}
._7{margin-left:-27.621760pt;}
._11{margin-left:-15.938560pt;}
._10{margin-left:-12.053760pt;}
._6{margin-left:-10.789760pt;}
._f{margin-left:-9.398400pt;}
._2{margin-left:-8.160000pt;}
._3{margin-left:-6.624000pt;}
._8{margin-left:-5.629440pt;}
._4{margin-left:-4.608000pt;}
._9{margin-left:-3.696640pt;}
._5{margin-left:-2.784000pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.152000pt;}
._a{width:2.318720pt;}
._c{width:3.818667pt;}
._e{width:20.192000pt;}
._b{width:21.440000pt;}
._d{width:23.072000pt;}
.fs11{font-size:36.413539pt;}
.fs12{font-size:39.579933pt;}
.fse{font-size:47.461037pt;}
.fsf{font-size:48.287518pt;}
.fs7{font-size:56.960000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fsd{font-size:106.880000pt;}
.fs8{font-size:117.120000pt;}
.fs10{font-size:122.880000pt;}
.fs3{font-size:128.000000pt;}
.fs5{font-size:144.000000pt;}
.fs4{font-size:149.120000pt;}
.fsb{font-size:165.120000pt;}
.fs9{font-size:170.880000pt;}
.fsa{font-size:181.120000pt;}
.fsc{font-size:192.000000pt;}
.fs2{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:2.483303pt;}
.ye0{bottom:4.264400pt;}
.ydd{bottom:5.052293pt;}
.ydf{bottom:19.304444pt;}
.ydc{bottom:20.081622pt;}
.yf2{bottom:60.607073pt;}
.ye4{bottom:60.991115pt;}
.y61{bottom:69.248000pt;}
.ye3{bottom:81.056000pt;}
.y2e{bottom:92.320000pt;}
.y2c{bottom:92.386667pt;}
.y9{bottom:92.413333pt;}
.y38{bottom:92.453333pt;}
.y44{bottom:92.866667pt;}
.y60{bottom:145.146667pt;}
.yde{bottom:162.911115pt;}
.ye2{bottom:172.093333pt;}
.yac{bottom:180.573333pt;}
.y5f{bottom:187.546667pt;}
.y5e{bottom:252.666667pt;}
.ye1{bottom:264.831115pt;}
.y35{bottom:265.600000pt;}
.yab{bottom:282.560000pt;}
.y33{bottom:294.400000pt;}
.y5d{bottom:295.066667pt;}
.y31{bottom:323.200000pt;}
.y5c{bottom:337.466667pt;}
.ydb{bottom:366.847073pt;}
.y5b{bottom:377.346667pt;}
.yaa{bottom:385.920000pt;}
.y5a{bottom:425.346667pt;}
.y40{bottom:467.293333pt;}
.y3e{bottom:496.093333pt;}
.y3c{bottom:524.933333pt;}
.y3a{bottom:553.733333pt;}
.y8e{bottom:555.013333pt;}
.y8d{bottom:583.813333pt;}
.y8c{bottom:612.613333pt;}
.yd7{bottom:624.773333pt;}
.y8b{bottom:641.413333pt;}
.yd6{bottom:653.573333pt;}
.y8a{bottom:670.213333pt;}
.yd5{bottom:682.373333pt;}
.y89{bottom:699.013333pt;}
.yd4{bottom:711.173333pt;}
.yc3{bottom:711.493333pt;}
.y88{bottom:731.813333pt;}
.yd3{bottom:739.973333pt;}
.yc2{bottom:740.293333pt;}
.yc1{bottom:769.093333pt;}
.yd2{bottom:772.773333pt;}
.yc0{bottom:797.893333pt;}
.ybf{bottom:826.693333pt;}
.ybe{bottom:855.493333pt;}
.yf1{bottom:888.253333pt;}
.ybd{bottom:888.293333pt;}
.yf0{bottom:917.053333pt;}
.yef{bottom:945.853333pt;}
.yee{bottom:974.653333pt;}
.ybc{bottom:974.720000pt;}
.yed{bottom:1003.453333pt;}
.ybb{bottom:1003.520000pt;}
.yec{bottom:1032.253333pt;}
.yba{bottom:1032.320000pt;}
.yeb{bottom:1061.053333pt;}
.yb9{bottom:1061.120000pt;}
.yb8{bottom:1089.920000pt;}
.yea{bottom:1093.853333pt;}
.yb7{bottom:1122.720000pt;}
.ycd{bottom:1149.440000pt;}
.yb6{bottom:1176.160000pt;}
.ycc{bottom:1178.266667pt;}
.ycb{bottom:1207.066667pt;}
.yca{bottom:1235.866667pt;}
.yd1{bottom:1251.173333pt;}
.yc9{bottom:1268.666667pt;}
.yd0{bottom:1294.693333pt;}
.ycf{bottom:1338.213333pt;}
.yce{bottom:1382.373333pt;}
.y9a{bottom:1402.560000pt;}
.y99{bottom:1431.386667pt;}
.y98{bottom:1460.186667pt;}
.y97{bottom:1488.986667pt;}
.y96{bottom:1517.786667pt;}
.yc8{bottom:1540.706667pt;}
.y95{bottom:1546.586667pt;}
.y94{bottom:1575.386667pt;}
.yc7{bottom:1584.226667pt;}
.y93{bottom:1604.186667pt;}
.ya9{bottom:1615.773333pt;}
.yc6{bottom:1627.746667pt;}
.y92{bottom:1632.986667pt;}
.ye9{bottom:1641.920000pt;}
.y91{bottom:1661.786667pt;}
.ya8{bottom:1661.853333pt;}
.yc5{bottom:1671.266667pt;}
.ye8{bottom:1685.440000pt;}
.y90{bottom:1694.586667pt;}
.yc4{bottom:1715.453333pt;}
.y8f{bottom:1727.386667pt;}
.ye7{bottom:1728.960000pt;}
.ye6{bottom:1773.120000pt;}
.y84{bottom:1898.493333pt;}
.y83{bottom:1927.293333pt;}
.y82{bottom:1956.093333pt;}
.y69{bottom:1959.933333pt;}
.y81{bottom:1984.893333pt;}
.y68{bottom:1988.733333pt;}
.ya2{bottom:2006.266667pt;}
.y9e{bottom:2011.293333pt;}
.y80{bottom:2013.693333pt;}
.y67{bottom:2017.533333pt;}
.y66{bottom:2046.333333pt;}
.y7f{bottom:2046.493333pt;}
.ya1{bottom:2049.786667pt;}
.y9d{bottom:2050.973333pt;}
.y65{bottom:2075.133333pt;}
.y9c{bottom:2090.653333pt;}
.ya0{bottom:2093.306667pt;}
.y64{bottom:2103.933333pt;}
.y9b{bottom:2131.293333pt;}
.y63{bottom:2136.733333pt;}
.y9f{bottom:2136.826667pt;}
.y62{bottom:2165.533333pt;}
.y4c{bottom:2240.293333pt;}
.y4f{bottom:2241.786667pt;}
.yb0{bottom:2241.920000pt;}
.y4b{bottom:2269.093333pt;}
.y4e{bottom:2270.586667pt;}
.yaf{bottom:2285.440000pt;}
.y4a{bottom:2297.893333pt;}
.y4d{bottom:2303.386667pt;}
.y49{bottom:2326.693333pt;}
.yae{bottom:2328.960000pt;}
.y48{bottom:2359.493333pt;}
.yad{bottom:2372.480000pt;}
.y6f{bottom:2386.053333pt;}
.y22{bottom:2434.626667pt;}
.ya7{bottom:2459.333333pt;}
.y21{bottom:2474.266667pt;}
.ya6{bottom:2500.293333pt;}
.y20{bottom:2513.920000pt;}
.ya5{bottom:2541.253333pt;}
.y1f{bottom:2553.573333pt;}
.y87{bottom:2558.333333pt;}
.ya4{bottom:2582.213333pt;}
.y1e{bottom:2593.213333pt;}
.y15{bottom:2598.466667pt;}
.y86{bottom:2599.293333pt;}
.ya3{bottom:2624.133333pt;}
.y1d{bottom:2632.866667pt;}
.y85{bottom:2641.213333pt;}
.y1c{bottom:2672.506667pt;}
.y59{bottom:2706.213333pt;}
.y1b{bottom:2712.160000pt;}
.y58{bottom:2735.013333pt;}
.y1a{bottom:2751.813333pt;}
.y57{bottom:2763.813333pt;}
.y19{bottom:2791.453333pt;}
.y56{bottom:2792.613333pt;}
.y55{bottom:2821.413333pt;}
.y18{bottom:2831.106667pt;}
.y54{bottom:2854.213333pt;}
.y17{bottom:2870.746667pt;}
.yb5{bottom:2884.506667pt;}
.y16{bottom:2910.400000pt;}
.yb4{bottom:2920.386667pt;}
.y14{bottom:2950.053333pt;}
.yb3{bottom:2956.226667pt;}
.y74{bottom:2984.186667pt;}
.y13{bottom:2989.693333pt;}
.yb2{bottom:2992.066667pt;}
.y73{bottom:3012.986667pt;}
.yb1{bottom:3027.906667pt;}
.y12{bottom:3029.346667pt;}
.y7e{bottom:3030.106667pt;}
.ya{bottom:3041.280000pt;}
.y72{bottom:3041.786667pt;}
.y7d{bottom:3065.946667pt;}
.y11{bottom:3068.986667pt;}
.y71{bottom:3070.586667pt;}
.y7c{bottom:3101.786667pt;}
.y70{bottom:3103.386667pt;}
.y10{bottom:3108.640000pt;}
.y7b{bottom:3138.586667pt;}
.yf{bottom:3148.293333pt;}
.y39{bottom:3176.800000pt;}
.ye{bottom:3187.933333pt;}
.y7{bottom:3212.186667pt;}
.yd{bottom:3227.586667pt;}
.y6{bottom:3240.986667pt;}
.y6e{bottom:3252.960000pt;}
.y8{bottom:3266.560000pt;}
.yc{bottom:3267.226667pt;}
.y5{bottom:3269.786667pt;}
.y6d{bottom:3288.800000pt;}
.y4{bottom:3298.586667pt;}
.yb{bottom:3306.880000pt;}
.y3{bottom:3327.386667pt;}
.y2{bottom:3356.186667pt;}
.y6c{bottom:3377.466667pt;}
.y1{bottom:3388.986667pt;}
.y6b{bottom:3408.186667pt;}
.y6a{bottom:3438.906667pt;}
.y43{bottom:3480.320000pt;}
.y30{bottom:3507.040000pt;}
.y45{bottom:3573.186667pt;}
.y7a{bottom:3577.893333pt;}
.yda{bottom:3604.293333pt;}
.y79{bottom:3606.053333pt;}
.y42{bottom:3615.293333pt;}
.yd9{bottom:3627.333333pt;}
.y78{bottom:3634.213333pt;}
.y37{bottom:3637.600000pt;}
.y41{bottom:3644.093333pt;}
.y77{bottom:3645.853333pt;}
.yd8{bottom:3651.013333pt;}
.y76{bottom:3668.893333pt;}
.y3f{bottom:3672.893333pt;}
.y75{bottom:3692.573333pt;}
.y2a{bottom:3694.813333pt;}
.y3d{bottom:3701.733333pt;}
.y29{bottom:3723.613333pt;}
.y3b{bottom:3730.533333pt;}
.y2d{bottom:3737.440000pt;}
.y28{bottom:3752.413333pt;}
.y36{bottom:3772.640000pt;}
.y2b{bottom:3779.520000pt;}
.y27{bottom:3781.213333pt;}
.y53{bottom:3795.013333pt;}
.y34{bottom:3801.440000pt;}
.y26{bottom:3810.013333pt;}
.y52{bottom:3823.813333pt;}
.y2f{bottom:3829.760000pt;}
.y32{bottom:3830.240000pt;}
.y25{bottom:3838.813333pt;}
.y51{bottom:3852.613333pt;}
.y24{bottom:3867.613333pt;}
.y23{bottom:3900.413333pt;}
.y50{bottom:3902.853333pt;}
.y47{bottom:4213.573333pt;}
.y46{bottom:4349.573333pt;}
.h1f{height:14.842475pt;}
.h22{height:26.616732pt;}
.h23{height:28.815274pt;}
.h1c{height:34.552932pt;}
.h1b{height:34.691978pt;}
.h20{height:35.154634pt;}
.h1e{height:35.296101pt;}
.h7{height:69.890625pt;}
.he{height:84.662813pt;}
.h1a{height:87.011900pt;}
.h3{height:95.484375pt;}
.h2{height:98.296875pt;}
.h1d{height:98.949833pt;}
.h19{height:109.437187pt;}
.h10{height:116.490937pt;}
.hf{height:119.922187pt;}
.h5{height:123.176250pt;}
.h21{height:125.820000pt;}
.hb{height:127.312500pt;}
.ha{height:131.062500pt;}
.hd{height:143.226562pt;}
.h11{height:148.319063pt;}
.hc{height:152.687812pt;}
.h15{height:164.233125pt;}
.h13{height:169.962187pt;}
.h12{height:174.968437pt;}
.h16{height:180.147188pt;}
.h14{height:185.453437pt;}
.h18{height:190.968750pt;}
.h17{height:196.593750pt;}
.h4{height:201.760000pt;}
.h9{height:480.344062pt;}
.h6{height:604.960000pt;}
.h8{height:1008.160000pt;}
.h1{height:4569.333333pt;}
.h0{height:4569.440000pt;}
.wb{width:104.155551pt;}
.w5{width:173.760000pt;}
.wa{width:183.774365pt;}
.w7{width:278.976522pt;}
.w9{width:288.941500pt;}
.w8{width:298.905000pt;}
.w3{width:550.880000pt;}
.w6{width:581.120000pt;}
.w4{width:754.720000pt;}
.w1{width:3254.000000pt;}
.w2{width:3254.239952pt;}
.w0{width:3254.240000pt;}
.x5f{left:-174.654720pt;}
.x0{left:0.000000pt;}
.x4{left:6.973333pt;}
.x55{left:9.855554pt;}
.x58{left:10.850036pt;}
.x54{left:156.705756pt;}
.x57{left:157.665635pt;}
.xf{left:165.053285pt;}
.x3{left:167.200000pt;}
.x29{left:176.773285pt;}
.x14{left:202.013285pt;}
.x5{left:209.213285pt;}
.x2a{left:214.533285pt;}
.x7{left:246.106618pt;}
.x6{left:271.906618pt;}
.x38{left:290.239952pt;}
.x5e{left:341.440000pt;}
.x37{left:347.039952pt;}
.x39{left:641.826618pt;}
.x4d{left:649.053285pt;}
.x4e{left:670.493285pt;}
.x4c{left:692.733285pt;}
.x4b{left:694.173285pt;}
.xc{left:881.213285pt;}
.x8{left:891.520000pt;}
.x5a{left:901.306618pt;}
.x4f{left:915.813285pt;}
.x5b{left:939.546618pt;}
.x50{left:953.599952pt;}
.x5c{left:958.586618pt;}
.x59{left:965.946618pt;}
.x25{left:976.706618pt;}
.x9{left:991.453285pt;}
.x24{left:992.706618pt;}
.x23{left:994.306618pt;}
.x22{left:1012.546618pt;}
.xa{left:1065.120000pt;}
.x5d{left:1071.746618pt;}
.xb{left:1109.213285pt;}
.x12{left:1142.173285pt;}
.x3c{left:1143.359952pt;}
.x3b{left:1182.879952pt;}
.x3d{left:1219.999952pt;}
.x3a{left:1228.639952pt;}
.x47{left:1300.506618pt;}
.x13{left:1311.746618pt;}
.x49{left:1327.066618pt;}
.x42{left:1332.453285pt;}
.x40{left:1345.253285pt;}
.x3f{left:1348.453285pt;}
.x3e{left:1351.493285pt;}
.x41{left:1364.773285pt;}
.x46{left:1376.986618pt;}
.x4a{left:1397.186618pt;}
.x48{left:1439.426618pt;}
.x19{left:1590.746618pt;}
.x31{left:1608.346618pt;}
.x30{left:1617.306618pt;}
.x18{left:1645.626618pt;}
.x2f{left:1652.826618pt;}
.x28{left:1701.733285pt;}
.x56{left:1713.093285pt;}
.x20{left:1735.906618pt;}
.x21{left:1743.266618pt;}
.x1f{left:1747.746618pt;}
.x26{left:1758.373285pt;}
.x27{left:1763.653285pt;}
.x43{left:1830.653285pt;}
.x45{left:1860.733285pt;}
.x44{left:1868.413285pt;}
.x17{left:1929.946618pt;}
.x15{left:1952.506618pt;}
.x16{left:1956.186618pt;}
.x2d{left:2049.693285pt;}
.x2e{left:2053.533285pt;}
.x1e{left:2084.933285pt;}
.x52{left:2093.253285pt;}
.x1c{left:2096.453285pt;}
.x51{left:2098.533285pt;}
.x2c{left:2099.933285pt;}
.x53{left:2121.893285pt;}
.x1d{left:2124.613285pt;}
.x2b{left:2152.573285pt;}
.x35{left:2215.359952pt;}
.x34{left:2216.479952pt;}
.x36{left:2231.679952pt;}
.x33{left:2235.999952pt;}
.x1a{left:2245.666618pt;}
.x32{left:2256.479952pt;}
.x1b{left:2283.426618pt;}
.x10{left:2311.013285pt;}
.x11{left:2348.773285pt;}
.x1{left:2466.973285pt;}
.x2{left:2504.733285pt;}
.xd{left:2531.973285pt;}
.xe{left:2569.733285pt;}
}




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