
    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_c9b87756871cd0aafa83f451.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_35c52ebe6d7bbe35643f3310.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4bd42463b1d8ea38bcf5efd8.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_172362678fb4f46735a753c5.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_a596c88aa20a01760450867f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.147461;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_2fc47ed7643071977dcf7ec3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.140137;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_c1171d740523293d37b5e314.woff')format("woff");}.ff7{font-family:ff7;line-height:1.140137;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_a7ba44f2bae85e9626dd0895.woff')format("woff");}.ff8{font-family:ff8;line-height:1.147461;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_72f5c906094af283a623eb03.woff')format("woff");}.ff9{font-family:ff9;line-height:1.122000;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:ffa;src:url('chunks/assets/font_c47aa59fe130bdc4d7fcf633.woff')format("woff");}.ffa{font-family:ffa;line-height:1.122000;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:ffb;src:url('chunks/assets/font_d1aba5e4b71d4ad25b405d23.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1de5a2ff38d591512e115e9e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.115234;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:ffd;src:url('chunks/assets/font_5a262469b2d4b9c046dfdc34.woff')format("woff");}.ffd{font-family:ffd;line-height:0.937500;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;}
.m3{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);}
.m2{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);}
.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:-7.080000px;}
.v3{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.024000px;}
.v2{vertical-align:7.080000px;}
.v5{vertical-align:25.488000px;}
.lsb{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.361200px;}
.ls1b{letter-spacing:-0.325200px;}
.ls1a{letter-spacing:-0.310200px;}
.ls10{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.267600px;}
.lsf{letter-spacing:-0.217200px;}
.ls13{letter-spacing:-0.166200px;}
.ls3{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018720px;}
.ls6{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.214200px;}
.ls20{letter-spacing:0.283200px;}
.ls4{letter-spacing:0.341280px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:21.941280px;}
.ls9{letter-spacing:22.661280px;}
.ls5{letter-spacing:24.508080px;}
.ls15{letter-spacing:32.211936px;}
.ls14{letter-spacing:32.256000px;}
.ls1f{letter-spacing:71.988048px;}
.ls1e{letter-spacing:72.036000px;}
.ls1d{letter-spacing:72.168048px;}
.ls1c{letter-spacing:72.216000px;}
.ls18{letter-spacing:117.936000px;}
.ls1{letter-spacing:124.149600px;}
.ls2{letter-spacing:124.200000px;}
.ls16{letter-spacing:124.269600px;}
.ls17{letter-spacing:124.320000px;}
.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;}
}
.ws13{word-spacing:-84.240000px;}
.ws12{word-spacing:-60.474960px;}
.wsd{word-spacing:-60.390000px;}
.wsf{word-spacing:-59.995440px;}
.ws11{word-spacing:-59.660640px;}
.ws5{word-spacing:-54.218304px;}
.ws2e{word-spacing:-53.442720px;}
.ws0{word-spacing:-48.816000px;}
.ws3a{word-spacing:-43.478784px;}
.ws31{word-spacing:-40.032000px;}
.ws2{word-spacing:-37.913760px;}
.ws2c{word-spacing:-35.310240px;}
.ws2a{word-spacing:-32.576544px;}
.ws30{word-spacing:-32.544000px;}
.ws2f{word-spacing:-32.256000px;}
.ws29{word-spacing:-30.024000px;}
.ws2b{word-spacing:-29.777760px;}
.ws39{word-spacing:-27.174240px;}
.ws21{word-spacing:-26.661312px;}
.ws28{word-spacing:-26.621280px;}
.ws34{word-spacing:-24.408000px;}
.ws6{word-spacing:-23.882880px;}
.wsa{word-spacing:-23.703120px;}
.ws18{word-spacing:-23.418720px;}
.ws1d{word-spacing:-23.390640px;}
.ws1b{word-spacing:-23.381280px;}
.ws8{word-spacing:-23.292000px;}
.ws37{word-spacing:-21.641760px;}
.ws25{word-spacing:-21.565440px;}
.ws1c{word-spacing:-2.501280px;}
.ws1a{word-spacing:-2.197440px;}
.ws19{word-spacing:-2.034000px;}
.ws4{word-spacing:-1.596000px;}
.ws26{word-spacing:-0.763920px;}
.ws38{word-spacing:-0.108144px;}
.ws36{word-spacing:-0.108000px;}
.ws2d{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws23{word-spacing:0.135360px;}
.ws22{word-spacing:0.144000px;}
.ws24{word-spacing:0.280560px;}
.ws3{word-spacing:0.420000px;}
.ws15{word-spacing:21.466320px;}
.ws17{word-spacing:22.273200px;}
.ws14{word-spacing:22.918320px;}
.wse{word-spacing:23.574240px;}
.ws16{word-spacing:23.706000px;}
.ws10{word-spacing:25.148880px;}
.wsb{word-spacing:59.600880px;}
.ws9{word-spacing:59.815440px;}
.wsc{word-spacing:60.198960px;}
.ws7{word-spacing:60.320880px;}
.ws3b{word-spacing:306.252000px;}
.ws3c{word-spacing:361.620000px;}
.ws35{word-spacing:411.444000px;}
.ws1e{word-spacing:536.018592px;}
.ws20{word-spacing:658.622400px;}
.ws1f{word-spacing:793.908768px;}
.ws32{word-spacing:1018.221360px;}
.ws33{word-spacing:1798.186560px;}
.ws27{word-spacing:2039.063520px;}
._6{margin-left:-21.723120px;}
._a{margin-left:-7.491600px;}
._b{margin-left:-5.520960px;}
._4{margin-left:-3.655296px;}
._5{margin-left:-2.644560px;}
._0{margin-left:-1.008000px;}
._2{width:1.340640px;}
._1{width:2.585520px;}
._f{width:3.692160px;}
._e{width:20.499120px;}
._8{width:23.574960px;}
._3{width:39.028320px;}
._d{width:41.688000px;}
._10{width:47.844000px;}
._7{width:61.526880px;}
._c{width:65.916000px;}
._9{width:326.743920px;}
.fc9{color:rgb(192,0,0);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc8{color:rgb(136,136,136);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(127,94,0);}
.fs16{font-size:7.200000px;}
.fsb{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fse{font-size:95.904000px;}
.fs10{font-size:102.240000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs13{font-size:113.760000px;}
.fs11{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fs14{font-size:131.760000px;}
.fs15{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fsd{font-size:156.240000px;}
.fsc{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fsa{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.144000px;}
.fs8{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y16{bottom:1.290000px;}
.y2c{bottom:23.040000px;}
.y6e{bottom:23.400000px;}
.y98{bottom:27.144000px;}
.y6c{bottom:27.540000px;}
.y7{bottom:29.412000px;}
.ya1{bottom:33.336000px;}
.ya{bottom:33.624000px;}
.ycd{bottom:33.876000px;}
.ybf{bottom:38.916000px;}
.y2b{bottom:48.240000px;}
.y97{bottom:55.944000px;}
.y2d{bottom:113.652000px;}
.y52{bottom:118.368000px;}
.y32{bottom:120.672000px;}
.y5f{bottom:121.284000px;}
.y1f{bottom:125.676000px;}
.y40{bottom:128.160000px;}
.yb7{bottom:138.924000px;}
.y2a{bottom:148.932000px;}
.y1a{bottom:149.112000px;}
.y14{bottom:156.420000px;}
.y31{bottom:158.505000px;}
.y5e{bottom:164.130000px;}
.yb6{bottom:171.330000px;}
.y29{bottom:174.135000px;}
.yca{bottom:175.290000px;}
.y83{bottom:176.610000px;}
.y6a{bottom:178.485000px;}
.y2f{bottom:181.260000px;}
.y81{bottom:181.770000px;}
.y9a{bottom:185.505000px;}
.y3f{bottom:192.855000px;}
.y95{bottom:201.270000px;}
.y71{bottom:201.450000px;}
.y13{bottom:201.780000px;}
.yb5{bottom:203.730000px;}
.y5d{bottom:206.790000px;}
.y80{bottom:210.750000px;}
.yc9{bottom:215.610000px;}
.y50{bottom:219.315000px;}
.y69{bottom:220.605000px;}
.y3e{bottom:222.015000px;}
.y47{bottom:224.280000px;}
.y82{bottom:226.290000px;}
.y70{bottom:230.430000px;}
.y7f{bottom:235.590000px;}
.y2e{bottom:241.590000px;}
.yb4{bottom:244.800000px;}
.y4f{bottom:248.835000px;}
.y28{bottom:257.655000px;}
.y12{bottom:262.290000px;}
.yc8{bottom:271.050000px;}
.yb3{bottom:277.560000px;}
.y68{bottom:277.710000px;}
.y48{bottom:289.050000px;}
.y92{bottom:298.290000px;}
.y39{bottom:299.955000px;}
.y19{bottom:304.560000px;}
.yb2{bottom:309.960000px;}
.y51{bottom:310.320000px;}
.y5{bottom:310.935000px;}
.yc7{bottom:311.370000px;}
.y27{bottom:311.475000px;}
.y7e{bottom:312.660000px;}
.y7c{bottom:315.750000px;}
.y5a{bottom:319.575000px;}
.y11{bottom:320.970000px;}
.ya9{bottom:322.590000px;}
.y67{bottom:333.330000px;}
.y91{bottom:337.170000px;}
.yb1{bottom:342.360000px;}
.y7b{bottom:344.730000px;}
.y89{bottom:345.750000px;}
.ybe{bottom:351.360000px;}
.y4{bottom:355.035000px;}
.ya8{bottom:355.350000px;}
.y7d{bottom:362.370000px;}
.y6f{bottom:364.395000px;}
.y5c{bottom:364.935000px;}
.y26{bottom:365.505000px;}
.ycc{bottom:365.970000px;}
.yc6{bottom:366.660000px;}
.y10{bottom:367.410000px;}
.y45{bottom:371.010000px;}
.y7a{bottom:373.710000px;}
.y38{bottom:374.370000px;}
.yb0{bottom:374.760000px;}
.y90{bottom:376.095000px;}
.y66{bottom:376.530000px;}
.y59{bottom:379.875000px;}
.ybd{bottom:383.760000px;}
.ya7{bottom:387.750000px;}
.y4d{bottom:388.290000px;}
.ya0{bottom:396.510000px;}
.y88{bottom:399.600000px;}
.y44{bottom:402.150000px;}
.yc5{bottom:406.980000px;}
.y3a{bottom:408.705000px;}
.y5b{bottom:410.295000px;}
.yf{bottom:415.335000px;}
.yaf{bottom:415.830000px;}
.ybc{bottom:416.190000px;}
.y4c{bottom:417.810000px;}
.y25{bottom:419.325000px;}
.y65{bottom:419.580000px;}
.y3{bottom:421.380000px;}
.ycb{bottom:423.570000px;}
.y58{bottom:425.265000px;}
.y37{bottom:428.190000px;}
.ya6{bottom:428.790000px;}
.y8f{bottom:429.915000px;}
.y9f{bottom:437.910000px;}
.y87{bottom:438.480000px;}
.yc4{bottom:447.300000px;}
.yae{bottom:448.590000px;}
.y79{bottom:448.740000px;}
.y96{bottom:454.965000px;}
.ybb{bottom:457.230000px;}
.y6d{bottom:461.085000px;}
.y18{bottom:461.190000px;}
.ya5{bottom:461.595000px;}
.y64{bottom:462.780000px;}
.y78{bottom:466.305000px;}
.y46{bottom:466.920000px;}
.y8e{bottom:468.795000px;}
.y57{bottom:470.625000px;}
.y24{bottom:473.145000px;}
.ye{bottom:475.815000px;}
.y9e{bottom:478.950000px;}
.y4e{bottom:479.310000px;}
.y2{bottom:480.090000px;}
.y36{bottom:482.040000px;}
.yad{bottom:489.630000px;}
.y86{bottom:492.480000px;}
.ya4{bottom:493.995000px;}
.y77{bottom:495.285000px;}
.y63{bottom:498.420000px;}
.yba{bottom:498.630000px;}
.yc3{bottom:502.590000px;}
.y9d{bottom:520.380000px;}
.yd{bottom:521.175000px;}
.yac{bottom:522.390000px;}
.y8d{bottom:522.645000px;}
.ya3{bottom:526.395000px;}
.y23{bottom:527.190000px;}
.y56{bottom:530.925000px;}
.yb9{bottom:531.390000px;}
.y35{bottom:536.040000px;}
.y1{bottom:538.410000px;}
.yc2{bottom:542.910000px;}
.y62{bottom:543.060000px;}
.y3c{bottom:545.790000px;}
.y85{bottom:546.330000px;}
.y42{bottom:548.895000px;}
.y4a{bottom:557.280000px;}
.y8c{bottom:561.525000px;}
.y9c{bottom:561.780000px;}
.yb8{bottom:563.835000px;}
.y54{bottom:576.330000px;}
.y41{bottom:580.035000px;}
.yc{bottom:581.505000px;}
.y22{bottom:582.630000px;}
.y76{bottom:584.790000px;}
.y61{bottom:585.210000px;}
.y49{bottom:586.800000px;}
.y74{bottom:587.850000px;}
.y3b{bottom:588.270000px;}
.y94{bottom:589.320000px;}
.y34{bottom:589.860000px;}
.yc1{bottom:598.350000px;}
.y8b{bottom:600.405000px;}
.yab{bottom:605.235000px;}
.y99{bottom:606.675000px;}
.ya2{bottom:609.225000px;}
.y15{bottom:612.720000px;}
.y1d{bottom:613.620000px;}
.y17{bottom:616.680000px;}
.y73{bottom:616.830000px;}
.y53{bottom:621.690000px;}
.y3d{bottom:622.800000px;}
.y93{bottom:625.320000px;}
.y75{bottom:634.470000px;}
.y30{bottom:635.655000px;}
.y6b{bottom:636.630000px;}
.yc0{bottom:638.670000px;}
.y1c{bottom:638.820000px;}
.y84{bottom:639.030000px;}
.y8a{bottom:639.285000px;}
.yb{bottom:641.805000px;}
.y60{bottom:642.450000px;}
.y21{bottom:642.930000px;}
.y1e{bottom:644.370000px;}
.y43{bottom:644.790000px;}
.y9b{bottom:644.940000px;}
.y55{bottom:645.150000px;}
.y33{bottom:645.330000px;}
.y72{bottom:645.840000px;}
.yaa{bottom:646.635000px;}
.y4b{bottom:648.285000px;}
.y20{bottom:652.890000px;}
.y1b{bottom:664.020000px;}
.y9{bottom:721.230000px;}
.y6{bottom:742.830000px;}
.y8{bottom:764.430000px;}
.h25{height:5.498437px;}
.h26{height:25.020000px;}
.h24{height:29.160000px;}
.ha{height:40.500000px;}
.h2b{height:72.708398px;}
.hf{height:78.316875px;}
.h15{height:78.932880px;}
.h10{height:78.933867px;}
.h2d{height:82.001953px;}
.h30{height:82.111289px;}
.h17{height:89.728242px;}
.h13{height:89.863172px;}
.h4{height:95.245664px;}
.h19{height:95.800078px;}
.h18{height:101.197266px;}
.h1a{height:101.332195px;}
.h1d{height:106.594453px;}
.h2e{height:107.419922px;}
.h2f{height:107.563148px;}
.h28{height:108.791367px;}
.h2c{height:110.584023px;}
.h2a{height:110.731430px;}
.h1b{height:112.666289px;}
.h1c{height:112.801219px;}
.h16{height:120.733664px;}
.h31{height:123.116836px;}
.h22{height:131.052305px;}
.h23{height:131.195531px;}
.h1f{height:134.912461px;}
.h29{height:134.929688px;}
.h3{height:143.226562px;}
.h14{height:143.369789px;}
.h5{height:147.445312px;}
.h1e{height:147.592758px;}
.h20{height:155.400820px;}
.h21{height:155.544047px;}
.h12{height:159.978164px;}
.h11{height:160.125609px;}
.h9{height:166.858945px;}
.h8{height:167.002172px;}
.h7{height:171.773789px;}
.h6{height:171.921234px;}
.he{height:180.131133px;}
.h27{height:180.266063px;}
.hd{height:191.207461px;}
.hc{height:191.350688px;}
.h32{height:196.839492px;}
.h33{height:196.986938px;}
.h1{height:221.167969px;}
.h2{height:221.315414px;}
.hb{height:245.643891px;}
.h0{height:810.000000px;}
.w5{width:205.590000px;}
.w7{width:207.000000px;}
.w9{width:214.950000px;}
.w4{width:228.450000px;}
.w8{width:259.050000px;}
.w6{width:311.070000px;}
.w3{width:331.050000px;}
.w2{width:416.880000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x17{left:8.315979px;}
.x14{left:20.051979px;}
.xb{left:23.255979px;}
.x24{left:24.299979px;}
.x27{left:32.687979px;}
.x61{left:41.723979px;}
.x54{left:45.215979px;}
.x2f{left:50.327979px;}
.xc{left:55.367979px;}
.x20{left:60.299979px;}
.x53{left:80.351979px;}
.x62{left:82.223979px;}
.x55{left:85.715979px;}
.x52{left:92.411979px;}
.xd{left:95.867979px;}
.x2b{left:100.187979px;}
.x2c{left:102.707979px;}
.x4f{left:105.731979px;}
.xe{left:109.367979px;}
.x32{left:121.607979px;}
.x39{left:123.875979px;}
.x1b{left:132.623979px;}
.x2e{left:135.035979px;}
.x3d{left:136.799979px;}
.x38{left:141.659979px;}
.x46{left:149.867979px;}
.x4e{left:160.484979px;}
.x3e{left:163.829979px;}
.x2{left:174.449979px;}
.x3a{left:181.469979px;}
.x50{left:189.644979px;}
.x22{left:195.044979px;}
.x65{left:196.814979px;}
.x9{left:199.829979px;}
.x1{left:205.049979px;}
.x5b{left:206.999979px;}
.x1e{left:211.829979px;}
.x51{left:227.264979px;}
.x28{left:238.424979px;}
.x5a{left:244.904979px;}
.x19{left:253.229979px;}
.x1a{left:262.049979px;}
.x8{left:279.284979px;}
.x21{left:293.219979px;}
.x35{left:304.709979px;}
.x18{left:307.979979px;}
.x2d{left:320.729979px;}
.x29{left:328.649979px;}
.x1d{left:335.339979px;}
.x5{left:336.389979px;}
.xa{left:346.034979px;}
.x1c{left:347.759979px;}
.x44{left:391.649979px;}
.x45{left:398.669979px;}
.x1f{left:401.759979px;}
.x34{left:405.254979px;}
.x43{left:426.209979px;}
.x15{left:449.969979px;}
.x33{left:462.314979px;}
.x2a{left:478.409979px;}
.x3{left:482.114979px;}
.x16{left:531.284979px;}
.x4d{left:540.254979px;}
.x4{left:547.559979px;}
.x30{left:557.969979px;}
.x47{left:560.415000px;}
.x31{left:582.809979px;}
.xf{left:586.980000px;}
.x64{left:594.359979px;}
.x6{left:602.249979px;}
.x63{left:618.659979px;}
.x58{left:631.259979px;}
.x59{left:669.419979px;}
.x23{left:730.904979px;}
.x40{left:753.194979px;}
.x3f{left:766.694979px;}
.x36{left:770.789979px;}
.x37{left:773.429979px;}
.x3b{left:779.609979px;}
.x41{left:793.694979px;}
.x26{left:798.194979px;}
.x4b{left:865.365000px;}
.x49{left:919.365000px;}
.x12{left:933.689979px;}
.x5f{left:944.969979px;}
.x56{left:971.354979px;}
.x13{left:978.689979px;}
.x3c{left:986.609979px;}
.x11{left:1002.314979px;}
.x60{left:1005.014979px;}
.x57{left:1011.854979px;}
.x5d{left:1017.074979px;}
.x10{left:1028.234979px;}
.x5e{left:1044.074979px;}
.x4a{left:1088.790000px;}
.x4c{left:1137.570000px;}
.x48{left:1158.270000px;}
.x42{left:1166.969979px;}
.x5c{left:1298.879979px;}
.x25{left:1359.539979px;}
.x7{left:1365.479979px;}
@media print{
.v1{vertical-align:-6.293333pt;}
.v3{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.688000pt;}
.v2{vertical-align:6.293333pt;}
.v5{vertical-align:22.656000pt;}
.lsb{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.321067pt;}
.ls1b{letter-spacing:-0.289067pt;}
.ls1a{letter-spacing:-0.275733pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.237867pt;}
.lsf{letter-spacing:-0.193067pt;}
.ls13{letter-spacing:-0.147733pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016640pt;}
.ls6{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.190400pt;}
.ls20{letter-spacing:0.251733pt;}
.ls4{letter-spacing:0.303360pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:19.503360pt;}
.ls9{letter-spacing:20.143360pt;}
.ls5{letter-spacing:21.784960pt;}
.ls15{letter-spacing:28.632832pt;}
.ls14{letter-spacing:28.672000pt;}
.ls1f{letter-spacing:63.989376pt;}
.ls1e{letter-spacing:64.032000pt;}
.ls1d{letter-spacing:64.149376pt;}
.ls1c{letter-spacing:64.192000pt;}
.ls18{letter-spacing:104.832000pt;}
.ls1{letter-spacing:110.355200pt;}
.ls2{letter-spacing:110.400000pt;}
.ls16{letter-spacing:110.461867pt;}
.ls17{letter-spacing:110.506667pt;}
.ws13{word-spacing:-74.880000pt;}
.ws12{word-spacing:-53.755520pt;}
.wsd{word-spacing:-53.680000pt;}
.wsf{word-spacing:-53.329280pt;}
.ws11{word-spacing:-53.031680pt;}
.ws5{word-spacing:-48.194048pt;}
.ws2e{word-spacing:-47.504640pt;}
.ws0{word-spacing:-43.392000pt;}
.ws3a{word-spacing:-38.647808pt;}
.ws31{word-spacing:-35.584000pt;}
.ws2{word-spacing:-33.701120pt;}
.ws2c{word-spacing:-31.386880pt;}
.ws2a{word-spacing:-28.956928pt;}
.ws30{word-spacing:-28.928000pt;}
.ws2f{word-spacing:-28.672000pt;}
.ws29{word-spacing:-26.688000pt;}
.ws2b{word-spacing:-26.469120pt;}
.ws39{word-spacing:-24.154880pt;}
.ws21{word-spacing:-23.698944pt;}
.ws28{word-spacing:-23.663360pt;}
.ws34{word-spacing:-21.696000pt;}
.ws6{word-spacing:-21.229227pt;}
.wsa{word-spacing:-21.069440pt;}
.ws18{word-spacing:-20.816640pt;}
.ws1d{word-spacing:-20.791680pt;}
.ws1b{word-spacing:-20.783360pt;}
.ws8{word-spacing:-20.704000pt;}
.ws37{word-spacing:-19.237120pt;}
.ws25{word-spacing:-19.169280pt;}
.ws1c{word-spacing:-2.223360pt;}
.ws1a{word-spacing:-1.953280pt;}
.ws19{word-spacing:-1.808000pt;}
.ws4{word-spacing:-1.418667pt;}
.ws26{word-spacing:-0.679040pt;}
.ws38{word-spacing:-0.096128pt;}
.ws36{word-spacing:-0.096000pt;}
.ws2d{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws23{word-spacing:0.120320pt;}
.ws22{word-spacing:0.128000pt;}
.ws24{word-spacing:0.249387pt;}
.ws3{word-spacing:0.373333pt;}
.ws15{word-spacing:19.081173pt;}
.ws17{word-spacing:19.798400pt;}
.ws14{word-spacing:20.371840pt;}
.wse{word-spacing:20.954880pt;}
.ws16{word-spacing:21.072000pt;}
.ws10{word-spacing:22.354560pt;}
.wsb{word-spacing:52.978560pt;}
.ws9{word-spacing:53.169280pt;}
.wsc{word-spacing:53.510187pt;}
.ws7{word-spacing:53.618560pt;}
.ws3b{word-spacing:272.224000pt;}
.ws3c{word-spacing:321.440000pt;}
.ws35{word-spacing:365.728000pt;}
.ws1e{word-spacing:476.460971pt;}
.ws20{word-spacing:585.442133pt;}
.ws1f{word-spacing:705.696683pt;}
.ws32{word-spacing:905.085653pt;}
.ws33{word-spacing:1598.388053pt;}
.ws27{word-spacing:1812.500907pt;}
._6{margin-left:-19.309440pt;}
._a{margin-left:-6.659200pt;}
._b{margin-left:-4.907520pt;}
._4{margin-left:-3.249152pt;}
._5{margin-left:-2.350720pt;}
._0{margin-left:-0.896000pt;}
._2{width:1.191680pt;}
._1{width:2.298240pt;}
._f{width:3.281920pt;}
._e{width:18.221440pt;}
._8{width:20.955520pt;}
._3{width:34.691840pt;}
._d{width:37.056000pt;}
._10{width:42.528000pt;}
._7{width:54.690560pt;}
._c{width:58.592000pt;}
._9{width:290.439040pt;}
.fs16{font-size:6.400000pt;}
.fsb{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fse{font-size:85.248000pt;}
.fs10{font-size:90.880000pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs13{font-size:101.120000pt;}
.fs11{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fs14{font-size:117.120000pt;}
.fs15{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fsd{font-size:138.880000pt;}
.fsc{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fsa{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.128000pt;}
.fs8{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:1.146667pt;}
.y2c{bottom:20.480000pt;}
.y6e{bottom:20.800000pt;}
.y98{bottom:24.128000pt;}
.y6c{bottom:24.480000pt;}
.y7{bottom:26.144000pt;}
.ya1{bottom:29.632000pt;}
.ya{bottom:29.888000pt;}
.ycd{bottom:30.112000pt;}
.ybf{bottom:34.592000pt;}
.y2b{bottom:42.880000pt;}
.y97{bottom:49.728000pt;}
.y2d{bottom:101.024000pt;}
.y52{bottom:105.216000pt;}
.y32{bottom:107.264000pt;}
.y5f{bottom:107.808000pt;}
.y1f{bottom:111.712000pt;}
.y40{bottom:113.920000pt;}
.yb7{bottom:123.488000pt;}
.y2a{bottom:132.384000pt;}
.y1a{bottom:132.544000pt;}
.y14{bottom:139.040000pt;}
.y31{bottom:140.893333pt;}
.y5e{bottom:145.893333pt;}
.yb6{bottom:152.293333pt;}
.y29{bottom:154.786667pt;}
.yca{bottom:155.813333pt;}
.y83{bottom:156.986667pt;}
.y6a{bottom:158.653333pt;}
.y2f{bottom:161.120000pt;}
.y81{bottom:161.573333pt;}
.y9a{bottom:164.893333pt;}
.y3f{bottom:171.426667pt;}
.y95{bottom:178.906667pt;}
.y71{bottom:179.066667pt;}
.y13{bottom:179.360000pt;}
.yb5{bottom:181.093333pt;}
.y5d{bottom:183.813333pt;}
.y80{bottom:187.333333pt;}
.yc9{bottom:191.653333pt;}
.y50{bottom:194.946667pt;}
.y69{bottom:196.093333pt;}
.y3e{bottom:197.346667pt;}
.y47{bottom:199.360000pt;}
.y82{bottom:201.146667pt;}
.y70{bottom:204.826667pt;}
.y7f{bottom:209.413333pt;}
.y2e{bottom:214.746667pt;}
.yb4{bottom:217.600000pt;}
.y4f{bottom:221.186667pt;}
.y28{bottom:229.026667pt;}
.y12{bottom:233.146667pt;}
.yc8{bottom:240.933333pt;}
.yb3{bottom:246.720000pt;}
.y68{bottom:246.853333pt;}
.y48{bottom:256.933333pt;}
.y92{bottom:265.146667pt;}
.y39{bottom:266.626667pt;}
.y19{bottom:270.720000pt;}
.yb2{bottom:275.520000pt;}
.y51{bottom:275.840000pt;}
.y5{bottom:276.386667pt;}
.yc7{bottom:276.773333pt;}
.y27{bottom:276.866667pt;}
.y7e{bottom:277.920000pt;}
.y7c{bottom:280.666667pt;}
.y5a{bottom:284.066667pt;}
.y11{bottom:285.306667pt;}
.ya9{bottom:286.746667pt;}
.y67{bottom:296.293333pt;}
.y91{bottom:299.706667pt;}
.yb1{bottom:304.320000pt;}
.y7b{bottom:306.426667pt;}
.y89{bottom:307.333333pt;}
.ybe{bottom:312.320000pt;}
.y4{bottom:315.586667pt;}
.ya8{bottom:315.866667pt;}
.y7d{bottom:322.106667pt;}
.y6f{bottom:323.906667pt;}
.y5c{bottom:324.386667pt;}
.y26{bottom:324.893333pt;}
.ycc{bottom:325.306667pt;}
.yc6{bottom:325.920000pt;}
.y10{bottom:326.586667pt;}
.y45{bottom:329.786667pt;}
.y7a{bottom:332.186667pt;}
.y38{bottom:332.773333pt;}
.yb0{bottom:333.120000pt;}
.y90{bottom:334.306667pt;}
.y66{bottom:334.693333pt;}
.y59{bottom:337.666667pt;}
.ybd{bottom:341.120000pt;}
.ya7{bottom:344.666667pt;}
.y4d{bottom:345.146667pt;}
.ya0{bottom:352.453333pt;}
.y88{bottom:355.200000pt;}
.y44{bottom:357.466667pt;}
.yc5{bottom:361.760000pt;}
.y3a{bottom:363.293333pt;}
.y5b{bottom:364.706667pt;}
.yf{bottom:369.186667pt;}
.yaf{bottom:369.626667pt;}
.ybc{bottom:369.946667pt;}
.y4c{bottom:371.386667pt;}
.y25{bottom:372.733333pt;}
.y65{bottom:372.960000pt;}
.y3{bottom:374.560000pt;}
.ycb{bottom:376.506667pt;}
.y58{bottom:378.013333pt;}
.y37{bottom:380.613333pt;}
.ya6{bottom:381.146667pt;}
.y8f{bottom:382.146667pt;}
.y9f{bottom:389.253333pt;}
.y87{bottom:389.760000pt;}
.yc4{bottom:397.600000pt;}
.yae{bottom:398.746667pt;}
.y79{bottom:398.880000pt;}
.y96{bottom:404.413333pt;}
.ybb{bottom:406.426667pt;}
.y6d{bottom:409.853333pt;}
.y18{bottom:409.946667pt;}
.ya5{bottom:410.306667pt;}
.y64{bottom:411.360000pt;}
.y78{bottom:414.493333pt;}
.y46{bottom:415.040000pt;}
.y8e{bottom:416.706667pt;}
.y57{bottom:418.333333pt;}
.y24{bottom:420.573333pt;}
.ye{bottom:422.946667pt;}
.y9e{bottom:425.733333pt;}
.y4e{bottom:426.053333pt;}
.y2{bottom:426.746667pt;}
.y36{bottom:428.480000pt;}
.yad{bottom:435.226667pt;}
.y86{bottom:437.760000pt;}
.ya4{bottom:439.106667pt;}
.y77{bottom:440.253333pt;}
.y63{bottom:443.040000pt;}
.yba{bottom:443.226667pt;}
.yc3{bottom:446.746667pt;}
.y9d{bottom:462.560000pt;}
.yd{bottom:463.266667pt;}
.yac{bottom:464.346667pt;}
.y8d{bottom:464.573333pt;}
.ya3{bottom:467.906667pt;}
.y23{bottom:468.613333pt;}
.y56{bottom:471.933333pt;}
.yb9{bottom:472.346667pt;}
.y35{bottom:476.480000pt;}
.y1{bottom:478.586667pt;}
.yc2{bottom:482.586667pt;}
.y62{bottom:482.720000pt;}
.y3c{bottom:485.146667pt;}
.y85{bottom:485.626667pt;}
.y42{bottom:487.906667pt;}
.y4a{bottom:495.360000pt;}
.y8c{bottom:499.133333pt;}
.y9c{bottom:499.360000pt;}
.yb8{bottom:501.186667pt;}
.y54{bottom:512.293333pt;}
.y41{bottom:515.586667pt;}
.yc{bottom:516.893333pt;}
.y22{bottom:517.893333pt;}
.y76{bottom:519.813333pt;}
.y61{bottom:520.186667pt;}
.y49{bottom:521.600000pt;}
.y74{bottom:522.533333pt;}
.y3b{bottom:522.906667pt;}
.y94{bottom:523.840000pt;}
.y34{bottom:524.320000pt;}
.yc1{bottom:531.866667pt;}
.y8b{bottom:533.693333pt;}
.yab{bottom:537.986667pt;}
.y99{bottom:539.266667pt;}
.ya2{bottom:541.533333pt;}
.y15{bottom:544.640000pt;}
.y1d{bottom:545.440000pt;}
.y17{bottom:548.160000pt;}
.y73{bottom:548.293333pt;}
.y53{bottom:552.613333pt;}
.y3d{bottom:553.600000pt;}
.y93{bottom:555.840000pt;}
.y75{bottom:563.973333pt;}
.y30{bottom:565.026667pt;}
.y6b{bottom:565.893333pt;}
.yc0{bottom:567.706667pt;}
.y1c{bottom:567.840000pt;}
.y84{bottom:568.026667pt;}
.y8a{bottom:568.253333pt;}
.yb{bottom:570.493333pt;}
.y60{bottom:571.066667pt;}
.y21{bottom:571.493333pt;}
.y1e{bottom:572.773333pt;}
.y43{bottom:573.146667pt;}
.y9b{bottom:573.280000pt;}
.y55{bottom:573.466667pt;}
.y33{bottom:573.626667pt;}
.y72{bottom:574.080000pt;}
.yaa{bottom:574.786667pt;}
.y4b{bottom:576.253333pt;}
.y20{bottom:580.346667pt;}
.y1b{bottom:590.240000pt;}
.y9{bottom:641.093333pt;}
.y6{bottom:660.293333pt;}
.y8{bottom:679.493333pt;}
.h25{height:4.887500pt;}
.h26{height:22.240000pt;}
.h24{height:25.920000pt;}
.ha{height:36.000000pt;}
.h2b{height:64.629688pt;}
.hf{height:69.615000pt;}
.h15{height:70.162560pt;}
.h10{height:70.163438pt;}
.h2d{height:72.890625pt;}
.h30{height:72.987813pt;}
.h17{height:79.758437pt;}
.h13{height:79.878375pt;}
.h4{height:84.662813pt;}
.h19{height:85.155625pt;}
.h18{height:89.953125pt;}
.h1a{height:90.073063pt;}
.h1d{height:94.750625pt;}
.h2e{height:95.484375pt;}
.h2f{height:95.611688pt;}
.h28{height:96.703437pt;}
.h2c{height:98.296910pt;}
.h2a{height:98.427938pt;}
.h1b{height:100.147812pt;}
.h1c{height:100.267750pt;}
.h16{height:107.318812pt;}
.h31{height:109.437187pt;}
.h22{height:116.490937pt;}
.h23{height:116.618250pt;}
.h1f{height:119.922187pt;}
.h29{height:119.937500pt;}
.h3{height:127.312500pt;}
.h14{height:127.439813pt;}
.h5{height:131.062500pt;}
.h1e{height:131.193562pt;}
.h20{height:138.134062pt;}
.h21{height:138.261375pt;}
.h12{height:142.202812pt;}
.h11{height:142.333875pt;}
.h9{height:148.319063pt;}
.h8{height:148.446375pt;}
.h7{height:152.687812pt;}
.h6{height:152.818875pt;}
.he{height:160.116562pt;}
.h27{height:160.236500pt;}
.hd{height:169.962187pt;}
.hc{height:170.089500pt;}
.h32{height:174.968437pt;}
.h33{height:175.099500pt;}
.h1{height:196.593750pt;}
.h2{height:196.724812pt;}
.hb{height:218.350125pt;}
.h0{height:720.000000pt;}
.w5{width:182.746667pt;}
.w7{width:184.000000pt;}
.w9{width:191.066667pt;}
.w4{width:203.066667pt;}
.w8{width:230.266667pt;}
.w6{width:276.506667pt;}
.w3{width:294.266667pt;}
.w2{width:370.560000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.391981pt;}
.x14{left:17.823981pt;}
.xb{left:20.671981pt;}
.x24{left:21.599981pt;}
.x27{left:29.055981pt;}
.x61{left:37.087981pt;}
.x54{left:40.191981pt;}
.x2f{left:44.735981pt;}
.xc{left:49.215981pt;}
.x20{left:53.599981pt;}
.x53{left:71.423981pt;}
.x62{left:73.087981pt;}
.x55{left:76.191981pt;}
.x52{left:82.143981pt;}
.xd{left:85.215981pt;}
.x2b{left:89.055981pt;}
.x2c{left:91.295981pt;}
.x4f{left:93.983981pt;}
.xe{left:97.215981pt;}
.x32{left:108.095981pt;}
.x39{left:110.111981pt;}
.x1b{left:117.887981pt;}
.x2e{left:120.031981pt;}
.x3d{left:121.599981pt;}
.x38{left:125.919981pt;}
.x46{left:133.215981pt;}
.x4e{left:142.653314pt;}
.x3e{left:145.626648pt;}
.x2{left:155.066648pt;}
.x3a{left:161.306648pt;}
.x50{left:168.573314pt;}
.x22{left:173.373314pt;}
.x65{left:174.946648pt;}
.x9{left:177.626648pt;}
.x1{left:182.266648pt;}
.x5b{left:183.999981pt;}
.x1e{left:188.293314pt;}
.x51{left:202.013314pt;}
.x28{left:211.933314pt;}
.x5a{left:217.693314pt;}
.x19{left:225.093314pt;}
.x1a{left:232.933314pt;}
.x8{left:248.253314pt;}
.x21{left:260.639981pt;}
.x35{left:270.853314pt;}
.x18{left:273.759981pt;}
.x2d{left:285.093314pt;}
.x29{left:292.133314pt;}
.x1d{left:298.079981pt;}
.x5{left:299.013314pt;}
.xa{left:307.586648pt;}
.x1c{left:309.119981pt;}
.x44{left:348.133314pt;}
.x45{left:354.373314pt;}
.x1f{left:357.119981pt;}
.x34{left:360.226648pt;}
.x43{left:378.853314pt;}
.x15{left:399.973314pt;}
.x33{left:410.946648pt;}
.x2a{left:425.253314pt;}
.x3{left:428.546648pt;}
.x16{left:472.253314pt;}
.x4d{left:480.226648pt;}
.x4{left:486.719981pt;}
.x30{left:495.973314pt;}
.x47{left:498.146667pt;}
.x31{left:518.053314pt;}
.xf{left:521.760000pt;}
.x64{left:528.319981pt;}
.x6{left:535.333314pt;}
.x63{left:549.919981pt;}
.x58{left:561.119981pt;}
.x59{left:595.039981pt;}
.x23{left:649.693314pt;}
.x40{left:669.506648pt;}
.x3f{left:681.506648pt;}
.x36{left:685.146648pt;}
.x37{left:687.493314pt;}
.x3b{left:692.986648pt;}
.x41{left:705.506648pt;}
.x26{left:709.506648pt;}
.x4b{left:769.213333pt;}
.x49{left:817.213333pt;}
.x12{left:829.946648pt;}
.x5f{left:839.973314pt;}
.x56{left:863.426648pt;}
.x13{left:869.946648pt;}
.x3c{left:876.986648pt;}
.x11{left:890.946648pt;}
.x60{left:893.346648pt;}
.x57{left:899.426648pt;}
.x5d{left:904.066648pt;}
.x10{left:913.986648pt;}
.x5e{left:928.066648pt;}
.x4a{left:967.813333pt;}
.x4c{left:1011.173333pt;}
.x48{left:1029.573333pt;}
.x42{left:1037.306648pt;}
.x5c{left:1154.559981pt;}
.x25{left:1208.479981pt;}
.x7{left:1213.759981pt;}
}




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