
    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_aaeedda8c92ea8a59c07612b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f2f8c02b9ea11bffdeb741cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ae43bc4bb0ef4e8f8041ab9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_0cf2fcf054a3d4b9a390b08e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_03a82b31739cbe3ed6ad536a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_7490bf719e20bd0842694a6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966000;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_8f4ac203cdcfc9d653375115.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_451f1680b19a8a56d7ae80ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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_d2032439db087ff3b8690385.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_10e8e6f1c1b4c605c462bb65.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_e7b87e80408daa57bf4d5ec8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_7db3e6460fa08104317d5ffa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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:ffe;src:url('chunks/assets/font_5418b83d54e08bd052d30d3b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_a2f636f836a306b6331d6092.woff2')format("woff");}.fff{font-family:fff;line-height:0.907227;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.lsc{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.480960px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240480px;}
.ls8{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.180360px;}
.ls1d{letter-spacing:-0.168480px;}
.lsb{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.120240px;}
.lsd{letter-spacing:-0.095760px;}
.ls9{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.060120px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.014040px;}
.ls5{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.072600px;}
.ls3{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.120240px;}
.lse{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.131976px;}
.ls2{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.165600px;}
.ls1c{letter-spacing:0.168480px;}
.ls1a{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.180360px;}
.ls10{letter-spacing:0.360000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.131976px;}
.ws0{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws1d{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.640000px;}
.ws18{word-spacing:-17.424000px;}
.ws23{word-spacing:-15.210360px;}
.ws20{word-spacing:-14.969880px;}
.ws21{word-spacing:-14.909760px;}
.ws24{word-spacing:-14.849640px;}
.ws22{word-spacing:-14.549040px;}
.ws1a{word-spacing:-11.970000px;}
.ws1b{word-spacing:-11.874240px;}
.ws30{word-spacing:-10.698480px;}
.ws2f{word-spacing:-10.361520px;}
.wsa{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.ws26{word-spacing:-0.420840px;}
.ws2c{word-spacing:-0.360720px;}
.ws6{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.252720px;}
.ws11{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.180360px;}
.ws34{word-spacing:-0.168480px;}
.ws14{word-spacing:-0.150000px;}
.ws9{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.120240px;}
.ws32{word-spacing:-0.084240px;}
.ws7{word-spacing:-0.072000px;}
.ws27{word-spacing:-0.060120px;}
.ws5{word-spacing:0.000000px;}
.ws2a{word-spacing:0.060120px;}
.wsb{word-spacing:0.072000px;}
.ws31{word-spacing:0.084240px;}
.wse{word-spacing:0.144000px;}
.ws35{word-spacing:0.168480px;}
.ws28{word-spacing:0.180360px;}
.ws17{word-spacing:0.216000px;}
.ws29{word-spacing:0.240480px;}
.ws13{word-spacing:0.288000px;}
.ws2b{word-spacing:0.300600px;}
.ws10{word-spacing:0.360000px;}
.ws2d{word-spacing:0.360720px;}
.wsf{word-spacing:0.432000px;}
.ws1f{word-spacing:0.576000px;}
.ws1e{word-spacing:0.936000px;}
._0{margin-left:-1.458024px;}
._1{width:1.073952px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs3{font-size:155.880000px;}
.y0{bottom:0.000000px;}
.y12f{bottom:2.519850px;}
.y137{bottom:2.609850px;}
.y4{bottom:4.050000px;}
.y104{bottom:7.109850px;}
.yf8{bottom:7.199850px;}
.yf6{bottom:7.289850px;}
.yf2{bottom:7.379850px;}
.yff{bottom:9.179850px;}
.yfe{bottom:9.359850px;}
.y12b{bottom:14.399850px;}
.y128{bottom:14.489850px;}
.y12e{bottom:14.579850px;}
.y136{bottom:14.669850px;}
.yd1{bottom:20.520000px;}
.yc4{bottom:24.570000px;}
.yc5{bottom:24.750000px;}
.y144{bottom:26.639850px;}
.y147{bottom:26.729850px;}
.yd9{bottom:89.640000px;}
.yd3{bottom:89.730000px;}
.y8a{bottom:110.520000px;}
.y44{bottom:114.840000px;}
.ybf{bottom:115.470000px;}
.y7d{bottom:120.240000px;}
.yeb{bottom:124.290000px;}
.ya6{bottom:125.550000px;}
.y149{bottom:131.580000px;}
.yc2{bottom:144.630000px;}
.y14a{bottom:146.159850px;}
.y2c{bottom:146.250000px;}
.y57{bottom:146.520000px;}
.y88{bottom:151.920000px;}
.y43{bottom:156.240000px;}
.ya5{bottom:156.600000px;}
.ye2{bottom:158.670000px;}
.ydc{bottom:158.760000px;}
.y7c{bottom:161.640000px;}
.y146{bottom:167.760000px;}
.yc1{bottom:177.120000px;}
.ybe{bottom:177.570000px;}
.y148{bottom:182.339850px;}
.yea{bottom:182.340000px;}
.y6e{bottom:184.320000px;}
.y2b{bottom:187.650000px;}
.y56{bottom:187.920000px;}
.y87{bottom:193.320000px;}
.y10d{bottom:196.379850px;}
.y42{bottom:197.640000px;}
.yee{bottom:203.130000px;}
.y143{bottom:204.030000px;}
.ybd{bottom:208.620000px;}
.y7b{bottom:213.480000px;}
.y10c{bottom:213.840000px;}
.y145{bottom:218.609850px;}
.ya4{bottom:218.700000px;}
.y125{bottom:219.059850px;}
.y6d{bottom:225.720000px;}
.y2a{bottom:229.050000px;}
.y55{bottom:229.320000px;}
.y86{bottom:234.720000px;}
.y124{bottom:236.610000px;}
.yed{bottom:237.600000px;}
.y10b{bottom:237.870000px;}
.y41{bottom:239.040000px;}
.ybc{bottom:239.670000px;}
.y142{bottom:240.210000px;}
.ya3{bottom:249.750000px;}
.y123{bottom:260.550000px;}
.y10a{bottom:261.900000px;}
.y141{bottom:264.330000px;}
.y6c{bottom:267.120000px;}
.y29{bottom:270.450000px;}
.y54{bottom:270.720000px;}
.yec{bottom:272.070000px;}
.y7a{bottom:276.120000px;}
.y40{bottom:280.440000px;}
.ya2{bottom:280.800000px;}
.y122{bottom:284.580000px;}
.y109{bottom:285.840000px;}
.y140{bottom:288.540000px;}
.ybb{bottom:301.770000px;}
.y6b{bottom:308.520000px;}
.y121{bottom:308.610000px;}
.y108{bottom:309.870000px;}
.y28{bottom:311.850000px;}
.y53{bottom:312.120000px;}
.y13f{bottom:312.660000px;}
.y79{bottom:317.520000px;}
.ye7{bottom:320.400000px;}
.y3f{bottom:321.840000px;}
.y120{bottom:332.550000px;}
.yba{bottom:332.820000px;}
.y107{bottom:333.900000px;}
.y13e{bottom:336.780000px;}
.ye9{bottom:341.100000px;}
.ya1{bottom:342.900000px;}
.y6a{bottom:349.920000px;}
.y27{bottom:353.250000px;}
.y52{bottom:353.520000px;}
.y11f{bottom:356.580000px;}
.y106{bottom:357.840000px;}
.y78{bottom:358.920000px;}
.y13d{bottom:360.990000px;}
.y3e{bottom:363.240000px;}
.yb9{bottom:363.870000px;}
.ya0{bottom:373.860000px;}
.ye8{bottom:375.570000px;}
.y11e{bottom:380.610000px;}
.y105{bottom:381.870000px;}
.y13c{bottom:385.110000px;}
.y69{bottom:391.320000px;}
.y26{bottom:394.650000px;}
.y51{bottom:394.920000px;}
.y77{bottom:400.320000px;}
.y11d{bottom:404.550000px;}
.y3d{bottom:404.640000px;}
.y9f{bottom:405.000000px;}
.y103{bottom:405.900000px;}
.y13b{bottom:409.230000px;}
.ye1{bottom:423.900000px;}
.yb8{bottom:425.970000px;}
.y11c{bottom:428.580000px;}
.y10{bottom:428.655600px;}
.y102{bottom:429.840000px;}
.y13a{bottom:433.350000px;}
.y25{bottom:435.960000px;}
.y50{bottom:436.320000px;}
.y68{bottom:441.540000px;}
.y76{bottom:441.720000px;}
.ye6{bottom:444.600000px;}
.y3c{bottom:446.040000px;}
.y11b{bottom:452.610000px;}
.y101{bottom:453.870000px;}
.yb7{bottom:457.020000px;}
.y139{bottom:457.560000px;}
.y9e{bottom:467.010000px;}
.yf{bottom:470.055600px;}
.y11a{bottom:476.550000px;}
.y24{bottom:477.360000px;}
.y4f{bottom:477.720000px;}
.y100{bottom:477.900000px;}
.ye5{bottom:479.070000px;}
.y138{bottom:481.680000px;}
.y75{bottom:483.120000px;}
.y3b{bottom:487.440000px;}
.yb6{bottom:488.070000px;}
.y9d{bottom:498.060000px;}
.y119{bottom:500.580000px;}
.yfd{bottom:501.840000px;}
.y135{bottom:505.800000px;}
.y67{bottom:510.120000px;}
.ye4{bottom:513.540000px;}
.y23{bottom:518.760000px;}
.y4e{bottom:519.120000px;}
.y74{bottom:524.520000px;}
.y118{bottom:524.610000px;}
.yfc{bottom:527.850000px;}
.y3a{bottom:528.840000px;}
.y9c{bottom:529.110000px;}
.y134{bottom:530.010000px;}
.ye3{bottom:548.100000px;}
.y117{bottom:548.550000px;}
.yb5{bottom:550.170000px;}
.y66{bottom:551.520000px;}
.yfb{bottom:551.880000px;}
.y133{bottom:553.950000px;}
.y22{bottom:560.160000px;}
.y4d{bottom:560.520000px;}
.y73{bottom:565.920000px;}
.y39{bottom:570.240000px;}
.y116{bottom:572.580000px;}
.yfa{bottom:575.910000px;}
.y132{bottom:577.980000px;}
.yb4{bottom:581.220000px;}
.y9b{bottom:591.210000px;}
.y65{bottom:592.920000px;}
.ydb{bottom:596.340000px;}
.y115{bottom:596.610000px;}
.ye{bottom:597.044100px;}
.yf9{bottom:599.850000px;}
.y21{bottom:601.560000px;}
.y4c{bottom:601.920000px;}
.y131{bottom:602.100000px;}
.y72{bottom:607.320000px;}
.y38{bottom:611.640000px;}
.yb3{bottom:612.270000px;}
.ye0{bottom:617.040000px;}
.y114{bottom:620.550000px;}
.y9a{bottom:622.260000px;}
.yf7{bottom:623.880000px;}
.y130{bottom:626.130000px;}
.y64{bottom:634.320000px;}
.yd{bottom:638.433600px;}
.y20{bottom:642.960000px;}
.y4b{bottom:643.320000px;}
.y113{bottom:644.580000px;}
.yf5{bottom:647.910000px;}
.y71{bottom:648.720000px;}
.y12d{bottom:650.160000px;}
.ydf{bottom:651.600000px;}
.y37{bottom:653.040000px;}
.y99{bottom:653.310000px;}
.y8d{bottom:657.540000px;}
.ycf{bottom:658.440000px;}
.y112{bottom:668.610000px;}
.yf4{bottom:671.850000px;}
.y12c{bottom:674.280000px;}
.yb2{bottom:674.370000px;}
.y63{bottom:675.720000px;}
.yc{bottom:679.823100px;}
.y1f{bottom:684.360000px;}
.y4a{bottom:684.720000px;}
.yde{bottom:686.070000px;}
.y85{bottom:690.120000px;}
.y111{bottom:692.550000px;}
.yf3{bottom:696.600000px;}
.y12a{bottom:698.310000px;}
.y70{bottom:698.940000px;}
.yce{bottom:699.840000px;}
.y36{bottom:704.880000px;}
.yb1{bottom:705.420000px;}
.y98{bottom:715.410000px;}
.y62{bottom:717.120000px;}
.y110{bottom:717.300000px;}
.ydd{bottom:720.540000px;}
.yf1{bottom:720.630000px;}
.yb{bottom:721.212600px;}
.y129{bottom:722.250000px;}
.y1e{bottom:725.760000px;}
.y49{bottom:726.120000px;}
.y84{bottom:731.520000px;}
.yc0{bottom:736.380000px;}
.yb0{bottom:736.470000px;}
.ycd{bottom:741.240000px;}
.y10f{bottom:741.330000px;}
.y97{bottom:746.460000px;}
.y127{bottom:747.000000px;}
.y61{bottom:758.520000px;}
.ya{bottom:762.602100px;}
.y1d{bottom:767.160000px;}
.y35{bottom:767.430000px;}
.y48{bottom:767.520000px;}
.yd8{bottom:768.870000px;}
.yf0{bottom:769.950000px;}
.y83{bottom:772.830000px;}
.y96{bottom:777.510000px;}
.ycc{bottom:782.640000px;}
.yda{bottom:789.570000px;}
.y10e{bottom:790.650000px;}
.yaf{bottom:798.480000px;}
.y60{bottom:799.830000px;}
.y9{bottom:803.991600px;}
.y1c{bottom:808.560000px;}
.y34{bottom:808.740000px;}
.y47{bottom:808.830000px;}
.y82{bottom:814.230000px;}
.yef{bottom:818.640000px;}
.y126{bottom:822.780000px;}
.ycb{bottom:824.040000px;}
.yae{bottom:829.530000px;}
.y95{bottom:839.610000px;}
.y5f{bottom:841.230000px;}
.y8{bottom:845.381100px;}
.y1b{bottom:849.960000px;}
.y33{bottom:850.140000px;}
.y46{bottom:850.230000px;}
.y81{bottom:855.630000px;}
.yad{bottom:860.580000px;}
.yca{bottom:865.440000px;}
.y94{bottom:870.660000px;}
.yd5{bottom:872.280000px;}
.y5e{bottom:882.630000px;}
.y7{bottom:886.770600px;}
.y1a{bottom:891.360000px;}
.y45{bottom:891.630000px;}
.yd7{bottom:893.070000px;}
.y80{bottom:897.030000px;}
.y93{bottom:901.710000px;}
.y8b{bottom:905.850000px;}
.yc9{bottom:906.840000px;}
.yac{bottom:922.680000px;}
.y5d{bottom:924.030000px;}
.yd6{bottom:927.540000px;}
.y6{bottom:928.160250px;}
.y19{bottom:932.760000px;}
.y32{bottom:933.030000px;}
.y7f{bottom:938.430000px;}
.y89{bottom:947.250000px;}
.yc8{bottom:948.240000px;}
.yab{bottom:953.730000px;}
.y92{bottom:963.810000px;}
.y5c{bottom:965.430000px;}
.y5{bottom:969.550500px;}
.y18{bottom:974.160000px;}
.y31{bottom:974.430000px;}
.yd2{bottom:975.780000px;}
.yaa{bottom:984.780000px;}
.y7e{bottom:988.650000px;}
.yc7{bottom:989.640000px;}
.y91{bottom:994.860000px;}
.yd4{bottom:996.570000px;}
.y5b{bottom:1006.830000px;}
.y17{bottom:1015.560000px;}
.y30{bottom:1015.830000px;}
.y90{bottom:1025.910000px;}
.y11{bottom:1027.584000px;}
.yc6{bottom:1031.040000px;}
.ya9{bottom:1046.880000px;}
.y5a{bottom:1048.230000px;}
.y16{bottom:1056.960000px;}
.y2f{bottom:1057.230000px;}
.yc3{bottom:1073.160000px;}
.ya8{bottom:1077.930000px;}
.y2{bottom:1079.119500px;}
.yd0{bottom:1080.090000px;}
.y8f{bottom:1088.010000px;}
.y59{bottom:1089.630000px;}
.y2e{bottom:1098.630000px;}
.y1{bottom:1104.319500px;}
.y15{bottom:1108.800000px;}
.ya7{bottom:1108.980000px;}
.y8e{bottom:1139.760000px;}
.y14{bottom:1139.850000px;}
.y2d{bottom:1140.030000px;}
.y3{bottom:1189.080000px;}
.y6f{bottom:1193.220000px;}
.y58{bottom:1199.899500px;}
.y13{bottom:1203.931500px;}
.y8c{bottom:1212.832500px;}
.y12{bottom:1225.531500px;}
.h3{height:20.700000px;}
.h1a{height:23.940000px;}
.h19{height:23.941500px;}
.h18{height:24.030000px;}
.h1f{height:24.118500px;}
.h1d{height:24.120000px;}
.h1e{height:24.210000px;}
.h1b{height:26.010000px;}
.he{height:34.470000px;}
.h20{height:36.180000px;}
.h21{height:36.268500px;}
.h1c{height:41.338477px;}
.hd{height:41.398500px;}
.hc{height:41.400000px;}
.h9{height:48.761719px;}
.h7{height:51.264000px;}
.h6{height:51.267000px;}
.h2{height:56.929688px;}
.h11{height:59.004492px;}
.hf{height:60.589687px;}
.h8{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.hb{height:73.991602px;}
.h12{height:103.410000px;}
.h10{height:103.500000px;}
.h15{height:138.058500px;}
.ha{height:152.987695px;}
.h14{height:172.440000px;}
.h13{height:172.530000px;}
.h17{height:892.500000px;}
.h16{height:892.530000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:9.090000px;}
.w10{width:18.000000px;}
.w3{width:18.090000px;}
.w37{width:35.460000px;}
.w38{width:35.728500px;}
.w35{width:35.730000px;}
.w3a{width:35.820000px;}
.w39{width:35.821500px;}
.w3b{width:35.910000px;}
.w3d{width:35.998500px;}
.w3c{width:36.000000px;}
.w34{width:38.340000px;}
.w36{width:43.200000px;}
.w28{width:63.631500px;}
.w25{width:64.350000px;}
.w26{width:64.618500px;}
.w24{width:72.630000px;}
.w27{width:72.900000px;}
.w1e{width:73.440000px;}
.w1a{width:73.800000px;}
.w1b{width:73.890000px;}
.w1c{width:73.891500px;}
.w1d{width:74.160000px;}
.w18{width:74.700000px;}
.w19{width:74.701500px;}
.w33{width:78.930000px;}
.w2c{width:80.100000px;}
.w29{width:80.190000px;}
.w2a{width:80.278500px;}
.w2b{width:80.280000px;}
.w6{width:80.548500px;}
.w8{width:80.640000px;}
.w21{width:81.270000px;}
.w22{width:81.360000px;}
.w3e{width:86.130000px;}
.w11{width:93.780000px;}
.w13{width:93.870000px;}
.w12{width:93.871500px;}
.w1f{width:102.240000px;}
.w20{width:102.241500px;}
.wb{width:104.310000px;}
.w23{width:105.211500px;}
.w32{width:105.481500px;}
.w17{width:117.990000px;}
.w4{width:133.470000px;}
.wa{width:143.730000px;}
.w5{width:145.260000px;}
.w16{width:148.141500px;}
.w14{width:148.588500px;}
.w15{width:148.590000px;}
.w9{width:154.980000px;}
.w31{width:159.120000px;}
.w2f{width:160.290000px;}
.w30{width:160.380000px;}
.w2d{width:160.468500px;}
.w2e{width:160.470000px;}
.wd{width:242.910000px;}
.w7{width:298.710000px;}
.wc{width:391.410000px;}
.w1{width:892.500000px;}
.w0{width:892.530000px;}
.we{width:1262.970000px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.x3b{left:6.390000px;}
.xd{left:8.100000px;}
.x56{left:10.980000px;}
.x55{left:13.590000px;}
.x47{left:19.080000px;}
.x3f{left:23.850000px;}
.xc{left:76.950000px;}
.x3{left:84.427500px;}
.x1{left:85.978500px;}
.x4{left:88.363500px;}
.x1f{left:98.190000px;}
.x54{left:99.900000px;}
.x18{left:106.290000px;}
.x6{left:139.050000px;}
.x13{left:181.260000px;}
.x3a{left:186.030000px;}
.x16{left:189.360000px;}
.x26{left:203.400000px;}
.xe{left:210.420000px;}
.x19{left:216.180000px;}
.x3c{left:224.370000px;}
.x3d{left:260.100000px;}
.x31{left:283.860000px;}
.x3e{left:304.020000px;}
.x2c{left:305.640000px;}
.x20{left:309.960000px;}
.x8{left:315.784500px;}
.x40{left:339.480000px;}
.xf{left:355.680000px;}
.x32{left:364.140000px;}
.x9{left:365.760000px;}
.x41{left:375.210000px;}
.x29{left:378.270000px;}
.x1c{left:383.760000px;}
.x7{left:398.700000px;}
.xb{left:404.280000px;}
.x5{left:407.520000px;}
.x42{left:411.030000px;}
.x10{left:436.230000px;}
.x33{left:444.420000px;}
.x43{left:446.850000px;}
.x21{left:458.460000px;}
.x2d{left:459.540000px;}
.x44{left:482.670000px;}
.x45{left:518.580000px;}
.x27{left:523.890000px;}
.x1a{left:532.350000px;}
.x46{left:554.580000px;}
.x14{left:572.670000px;}
.x15{left:580.770000px;}
.x12{left:591.210000px;}
.x34{left:604.890000px;}
.x22{left:626.220000px;}
.x48{left:662.580000px;}
.x35{left:685.080000px;}
.x2a{left:698.760000px;}
.x1d{left:700.110000px;}
.x11{left:734.940000px;}
.x36{left:765.270000px;}
.x49{left:770.580000px;}
.x23{left:774.810000px;}
.x2e{left:780.120000px;}
.xa{left:789.390000px;}
.x2{left:798.390000px;}
.x4a{left:806.580000px;}
.x4b{left:842.580000px;}
.x28{left:844.740000px;}
.x1b{left:848.700000px;}
.x4c{left:878.580000px;}
.x4d{left:914.580000px;}
.x37{left:925.560000px;}
.x24{left:942.570000px;}
.x2f{left:946.980000px;}
.x4e{left:950.580000px;}
.x4f{left:986.580000px;}
.x38{left:1005.750000px;}
.x1e{left:1016.730000px;}
.x2b{left:1019.970000px;}
.x50{left:1022.580000px;}
.x51{left:1058.580000px;}
.x39{left:1085.940000px;}
.x25{left:1091.430000px;}
.x52{left:1094.580000px;}
.x30{left:1101.240000px;}
.x53{left:1130.580000px;}
.x17{left:1138.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.427520pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213760pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.160320pt;}
.ls1d{letter-spacing:-0.149760pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.106880pt;}
.lsd{letter-spacing:-0.085120pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.053440pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.012480pt;}
.ls5{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.064533pt;}
.ls3{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.106880pt;}
.lse{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.117312pt;}
.ls2{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.147200pt;}
.ls1c{letter-spacing:0.149760pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.160320pt;}
.ls10{letter-spacing:0.320000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.117312pt;}
.ws0{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1d{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.680000pt;}
.ws18{word-spacing:-15.488000pt;}
.ws23{word-spacing:-13.520320pt;}
.ws20{word-spacing:-13.306560pt;}
.ws21{word-spacing:-13.253120pt;}
.ws24{word-spacing:-13.199680pt;}
.ws22{word-spacing:-12.932480pt;}
.ws1a{word-spacing:-10.640000pt;}
.ws1b{word-spacing:-10.554880pt;}
.ws30{word-spacing:-9.509760pt;}
.ws2f{word-spacing:-9.210240pt;}
.wsa{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws26{word-spacing:-0.374080pt;}
.ws2c{word-spacing:-0.320640pt;}
.ws6{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.224640pt;}
.ws11{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.160320pt;}
.ws34{word-spacing:-0.149760pt;}
.ws14{word-spacing:-0.133333pt;}
.ws9{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.106880pt;}
.ws32{word-spacing:-0.074880pt;}
.ws7{word-spacing:-0.064000pt;}
.ws27{word-spacing:-0.053440pt;}
.ws5{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.053440pt;}
.wsb{word-spacing:0.064000pt;}
.ws31{word-spacing:0.074880pt;}
.wse{word-spacing:0.128000pt;}
.ws35{word-spacing:0.149760pt;}
.ws28{word-spacing:0.160320pt;}
.ws17{word-spacing:0.192000pt;}
.ws29{word-spacing:0.213760pt;}
.ws13{word-spacing:0.256000pt;}
.ws2b{word-spacing:0.267200pt;}
.ws10{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.320640pt;}
.wsf{word-spacing:0.384000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.832000pt;}
._0{margin-left:-1.296021pt;}
._1{width:0.954624pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs3{font-size:138.560000pt;}
.y0{bottom:0.000000pt;}
.y12f{bottom:2.239867pt;}
.y137{bottom:2.319867pt;}
.y4{bottom:3.600000pt;}
.y104{bottom:6.319867pt;}
.yf8{bottom:6.399867pt;}
.yf6{bottom:6.479867pt;}
.yf2{bottom:6.559867pt;}
.yff{bottom:8.159867pt;}
.yfe{bottom:8.319867pt;}
.y12b{bottom:12.799867pt;}
.y128{bottom:12.879867pt;}
.y12e{bottom:12.959867pt;}
.y136{bottom:13.039867pt;}
.yd1{bottom:18.240000pt;}
.yc4{bottom:21.840000pt;}
.yc5{bottom:22.000000pt;}
.y144{bottom:23.679867pt;}
.y147{bottom:23.759867pt;}
.yd9{bottom:79.680000pt;}
.yd3{bottom:79.760000pt;}
.y8a{bottom:98.240000pt;}
.y44{bottom:102.080000pt;}
.ybf{bottom:102.640000pt;}
.y7d{bottom:106.880000pt;}
.yeb{bottom:110.480000pt;}
.ya6{bottom:111.600000pt;}
.y149{bottom:116.960000pt;}
.yc2{bottom:128.560000pt;}
.y14a{bottom:129.919867pt;}
.y2c{bottom:130.000000pt;}
.y57{bottom:130.240000pt;}
.y88{bottom:135.040000pt;}
.y43{bottom:138.880000pt;}
.ya5{bottom:139.200000pt;}
.ye2{bottom:141.040000pt;}
.ydc{bottom:141.120000pt;}
.y7c{bottom:143.680000pt;}
.y146{bottom:149.120000pt;}
.yc1{bottom:157.440000pt;}
.ybe{bottom:157.840000pt;}
.y148{bottom:162.079867pt;}
.yea{bottom:162.080000pt;}
.y6e{bottom:163.840000pt;}
.y2b{bottom:166.800000pt;}
.y56{bottom:167.040000pt;}
.y87{bottom:171.840000pt;}
.y10d{bottom:174.559867pt;}
.y42{bottom:175.680000pt;}
.yee{bottom:180.560000pt;}
.y143{bottom:181.360000pt;}
.ybd{bottom:185.440000pt;}
.y7b{bottom:189.760000pt;}
.y10c{bottom:190.080000pt;}
.y145{bottom:194.319867pt;}
.ya4{bottom:194.400000pt;}
.y125{bottom:194.719867pt;}
.y6d{bottom:200.640000pt;}
.y2a{bottom:203.600000pt;}
.y55{bottom:203.840000pt;}
.y86{bottom:208.640000pt;}
.y124{bottom:210.320000pt;}
.yed{bottom:211.200000pt;}
.y10b{bottom:211.440000pt;}
.y41{bottom:212.480000pt;}
.ybc{bottom:213.040000pt;}
.y142{bottom:213.520000pt;}
.ya3{bottom:222.000000pt;}
.y123{bottom:231.600000pt;}
.y10a{bottom:232.800000pt;}
.y141{bottom:234.960000pt;}
.y6c{bottom:237.440000pt;}
.y29{bottom:240.400000pt;}
.y54{bottom:240.640000pt;}
.yec{bottom:241.840000pt;}
.y7a{bottom:245.440000pt;}
.y40{bottom:249.280000pt;}
.ya2{bottom:249.600000pt;}
.y122{bottom:252.960000pt;}
.y109{bottom:254.080000pt;}
.y140{bottom:256.480000pt;}
.ybb{bottom:268.240000pt;}
.y6b{bottom:274.240000pt;}
.y121{bottom:274.320000pt;}
.y108{bottom:275.440000pt;}
.y28{bottom:277.200000pt;}
.y53{bottom:277.440000pt;}
.y13f{bottom:277.920000pt;}
.y79{bottom:282.240000pt;}
.ye7{bottom:284.800000pt;}
.y3f{bottom:286.080000pt;}
.y120{bottom:295.600000pt;}
.yba{bottom:295.840000pt;}
.y107{bottom:296.800000pt;}
.y13e{bottom:299.360000pt;}
.ye9{bottom:303.200000pt;}
.ya1{bottom:304.800000pt;}
.y6a{bottom:311.040000pt;}
.y27{bottom:314.000000pt;}
.y52{bottom:314.240000pt;}
.y11f{bottom:316.960000pt;}
.y106{bottom:318.080000pt;}
.y78{bottom:319.040000pt;}
.y13d{bottom:320.880000pt;}
.y3e{bottom:322.880000pt;}
.yb9{bottom:323.440000pt;}
.ya0{bottom:332.320000pt;}
.ye8{bottom:333.840000pt;}
.y11e{bottom:338.320000pt;}
.y105{bottom:339.440000pt;}
.y13c{bottom:342.320000pt;}
.y69{bottom:347.840000pt;}
.y26{bottom:350.800000pt;}
.y51{bottom:351.040000pt;}
.y77{bottom:355.840000pt;}
.y11d{bottom:359.600000pt;}
.y3d{bottom:359.680000pt;}
.y9f{bottom:360.000000pt;}
.y103{bottom:360.800000pt;}
.y13b{bottom:363.760000pt;}
.ye1{bottom:376.800000pt;}
.yb8{bottom:378.640000pt;}
.y11c{bottom:380.960000pt;}
.y10{bottom:381.027200pt;}
.y102{bottom:382.080000pt;}
.y13a{bottom:385.200000pt;}
.y25{bottom:387.520000pt;}
.y50{bottom:387.840000pt;}
.y68{bottom:392.480000pt;}
.y76{bottom:392.640000pt;}
.ye6{bottom:395.200000pt;}
.y3c{bottom:396.480000pt;}
.y11b{bottom:402.320000pt;}
.y101{bottom:403.440000pt;}
.yb7{bottom:406.240000pt;}
.y139{bottom:406.720000pt;}
.y9e{bottom:415.120000pt;}
.yf{bottom:417.827200pt;}
.y11a{bottom:423.600000pt;}
.y24{bottom:424.320000pt;}
.y4f{bottom:424.640000pt;}
.y100{bottom:424.800000pt;}
.ye5{bottom:425.840000pt;}
.y138{bottom:428.160000pt;}
.y75{bottom:429.440000pt;}
.y3b{bottom:433.280000pt;}
.yb6{bottom:433.840000pt;}
.y9d{bottom:442.720000pt;}
.y119{bottom:444.960000pt;}
.yfd{bottom:446.080000pt;}
.y135{bottom:449.600000pt;}
.y67{bottom:453.440000pt;}
.ye4{bottom:456.480000pt;}
.y23{bottom:461.120000pt;}
.y4e{bottom:461.440000pt;}
.y74{bottom:466.240000pt;}
.y118{bottom:466.320000pt;}
.yfc{bottom:469.200000pt;}
.y3a{bottom:470.080000pt;}
.y9c{bottom:470.320000pt;}
.y134{bottom:471.120000pt;}
.ye3{bottom:487.200000pt;}
.y117{bottom:487.600000pt;}
.yb5{bottom:489.040000pt;}
.y66{bottom:490.240000pt;}
.yfb{bottom:490.560000pt;}
.y133{bottom:492.400000pt;}
.y22{bottom:497.920000pt;}
.y4d{bottom:498.240000pt;}
.y73{bottom:503.040000pt;}
.y39{bottom:506.880000pt;}
.y116{bottom:508.960000pt;}
.yfa{bottom:511.920000pt;}
.y132{bottom:513.760000pt;}
.yb4{bottom:516.640000pt;}
.y9b{bottom:525.520000pt;}
.y65{bottom:527.040000pt;}
.ydb{bottom:530.080000pt;}
.y115{bottom:530.320000pt;}
.ye{bottom:530.705867pt;}
.yf9{bottom:533.200000pt;}
.y21{bottom:534.720000pt;}
.y4c{bottom:535.040000pt;}
.y131{bottom:535.200000pt;}
.y72{bottom:539.840000pt;}
.y38{bottom:543.680000pt;}
.yb3{bottom:544.240000pt;}
.ye0{bottom:548.480000pt;}
.y114{bottom:551.600000pt;}
.y9a{bottom:553.120000pt;}
.yf7{bottom:554.560000pt;}
.y130{bottom:556.560000pt;}
.y64{bottom:563.840000pt;}
.yd{bottom:567.496533pt;}
.y20{bottom:571.520000pt;}
.y4b{bottom:571.840000pt;}
.y113{bottom:572.960000pt;}
.yf5{bottom:575.920000pt;}
.y71{bottom:576.640000pt;}
.y12d{bottom:577.920000pt;}
.ydf{bottom:579.200000pt;}
.y37{bottom:580.480000pt;}
.y99{bottom:580.720000pt;}
.y8d{bottom:584.480000pt;}
.ycf{bottom:585.280000pt;}
.y112{bottom:594.320000pt;}
.yf4{bottom:597.200000pt;}
.y12c{bottom:599.360000pt;}
.yb2{bottom:599.440000pt;}
.y63{bottom:600.640000pt;}
.yc{bottom:604.287200pt;}
.y1f{bottom:608.320000pt;}
.y4a{bottom:608.640000pt;}
.yde{bottom:609.840000pt;}
.y85{bottom:613.440000pt;}
.y111{bottom:615.600000pt;}
.yf3{bottom:619.200000pt;}
.y12a{bottom:620.720000pt;}
.y70{bottom:621.280000pt;}
.yce{bottom:622.080000pt;}
.y36{bottom:626.560000pt;}
.yb1{bottom:627.040000pt;}
.y98{bottom:635.920000pt;}
.y62{bottom:637.440000pt;}
.y110{bottom:637.600000pt;}
.ydd{bottom:640.480000pt;}
.yf1{bottom:640.560000pt;}
.yb{bottom:641.077867pt;}
.y129{bottom:642.000000pt;}
.y1e{bottom:645.120000pt;}
.y49{bottom:645.440000pt;}
.y84{bottom:650.240000pt;}
.yc0{bottom:654.560000pt;}
.yb0{bottom:654.640000pt;}
.ycd{bottom:658.880000pt;}
.y10f{bottom:658.960000pt;}
.y97{bottom:663.520000pt;}
.y127{bottom:664.000000pt;}
.y61{bottom:674.240000pt;}
.ya{bottom:677.868533pt;}
.y1d{bottom:681.920000pt;}
.y35{bottom:682.160000pt;}
.y48{bottom:682.240000pt;}
.yd8{bottom:683.440000pt;}
.yf0{bottom:684.400000pt;}
.y83{bottom:686.960000pt;}
.y96{bottom:691.120000pt;}
.ycc{bottom:695.680000pt;}
.yda{bottom:701.840000pt;}
.y10e{bottom:702.800000pt;}
.yaf{bottom:709.760000pt;}
.y60{bottom:710.960000pt;}
.y9{bottom:714.659200pt;}
.y1c{bottom:718.720000pt;}
.y34{bottom:718.880000pt;}
.y47{bottom:718.960000pt;}
.y82{bottom:723.760000pt;}
.yef{bottom:727.680000pt;}
.y126{bottom:731.360000pt;}
.ycb{bottom:732.480000pt;}
.yae{bottom:737.360000pt;}
.y95{bottom:746.320000pt;}
.y5f{bottom:747.760000pt;}
.y8{bottom:751.449867pt;}
.y1b{bottom:755.520000pt;}
.y33{bottom:755.680000pt;}
.y46{bottom:755.760000pt;}
.y81{bottom:760.560000pt;}
.yad{bottom:764.960000pt;}
.yca{bottom:769.280000pt;}
.y94{bottom:773.920000pt;}
.yd5{bottom:775.360000pt;}
.y5e{bottom:784.560000pt;}
.y7{bottom:788.240533pt;}
.y1a{bottom:792.320000pt;}
.y45{bottom:792.560000pt;}
.yd7{bottom:793.840000pt;}
.y80{bottom:797.360000pt;}
.y93{bottom:801.520000pt;}
.y8b{bottom:805.200000pt;}
.yc9{bottom:806.080000pt;}
.yac{bottom:820.160000pt;}
.y5d{bottom:821.360000pt;}
.yd6{bottom:824.480000pt;}
.y6{bottom:825.031333pt;}
.y19{bottom:829.120000pt;}
.y32{bottom:829.360000pt;}
.y7f{bottom:834.160000pt;}
.y89{bottom:842.000000pt;}
.yc8{bottom:842.880000pt;}
.yab{bottom:847.760000pt;}
.y92{bottom:856.720000pt;}
.y5c{bottom:858.160000pt;}
.y5{bottom:861.822667pt;}
.y18{bottom:865.920000pt;}
.y31{bottom:866.160000pt;}
.yd2{bottom:867.360000pt;}
.yaa{bottom:875.360000pt;}
.y7e{bottom:878.800000pt;}
.yc7{bottom:879.680000pt;}
.y91{bottom:884.320000pt;}
.yd4{bottom:885.840000pt;}
.y5b{bottom:894.960000pt;}
.y17{bottom:902.720000pt;}
.y30{bottom:902.960000pt;}
.y90{bottom:911.920000pt;}
.y11{bottom:913.408000pt;}
.yc6{bottom:916.480000pt;}
.ya9{bottom:930.560000pt;}
.y5a{bottom:931.760000pt;}
.y16{bottom:939.520000pt;}
.y2f{bottom:939.760000pt;}
.yc3{bottom:953.920000pt;}
.ya8{bottom:958.160000pt;}
.y2{bottom:959.217333pt;}
.yd0{bottom:960.080000pt;}
.y8f{bottom:967.120000pt;}
.y59{bottom:968.560000pt;}
.y2e{bottom:976.560000pt;}
.y1{bottom:981.617333pt;}
.y15{bottom:985.600000pt;}
.ya7{bottom:985.760000pt;}
.y8e{bottom:1013.120000pt;}
.y14{bottom:1013.200000pt;}
.y2d{bottom:1013.360000pt;}
.y3{bottom:1056.960000pt;}
.y6f{bottom:1060.640000pt;}
.y58{bottom:1066.577333pt;}
.y13{bottom:1070.161333pt;}
.y8c{bottom:1078.073333pt;}
.y12{bottom:1089.361333pt;}
.h3{height:18.400000pt;}
.h1a{height:21.280000pt;}
.h19{height:21.281333pt;}
.h18{height:21.360000pt;}
.h1f{height:21.438667pt;}
.h1d{height:21.440000pt;}
.h1e{height:21.520000pt;}
.h1b{height:23.120000pt;}
.he{height:30.640000pt;}
.h20{height:32.160000pt;}
.h21{height:32.238667pt;}
.h1c{height:36.745312pt;}
.hd{height:36.798667pt;}
.hc{height:36.800000pt;}
.h9{height:43.343750pt;}
.h7{height:45.568000pt;}
.h6{height:45.570667pt;}
.h2{height:50.604167pt;}
.h11{height:52.448437pt;}
.hf{height:53.857500pt;}
.h8{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.hb{height:65.770312pt;}
.h12{height:91.920000pt;}
.h10{height:92.000000pt;}
.h15{height:122.718667pt;}
.ha{height:135.989062pt;}
.h14{height:153.280000pt;}
.h13{height:153.360000pt;}
.h17{height:793.333333pt;}
.h16{height:793.360000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.080000pt;}
.w10{width:16.000000pt;}
.w3{width:16.080000pt;}
.w37{width:31.520000pt;}
.w38{width:31.758667pt;}
.w35{width:31.760000pt;}
.w3a{width:31.840000pt;}
.w39{width:31.841333pt;}
.w3b{width:31.920000pt;}
.w3d{width:31.998667pt;}
.w3c{width:32.000000pt;}
.w34{width:34.080000pt;}
.w36{width:38.400000pt;}
.w28{width:56.561333pt;}
.w25{width:57.200000pt;}
.w26{width:57.438667pt;}
.w24{width:64.560000pt;}
.w27{width:64.800000pt;}
.w1e{width:65.280000pt;}
.w1a{width:65.600000pt;}
.w1b{width:65.680000pt;}
.w1c{width:65.681333pt;}
.w1d{width:65.920000pt;}
.w18{width:66.400000pt;}
.w19{width:66.401333pt;}
.w33{width:70.160000pt;}
.w2c{width:71.200000pt;}
.w29{width:71.280000pt;}
.w2a{width:71.358667pt;}
.w2b{width:71.360000pt;}
.w6{width:71.598667pt;}
.w8{width:71.680000pt;}
.w21{width:72.240000pt;}
.w22{width:72.320000pt;}
.w3e{width:76.560000pt;}
.w11{width:83.360000pt;}
.w13{width:83.440000pt;}
.w12{width:83.441333pt;}
.w1f{width:90.880000pt;}
.w20{width:90.881333pt;}
.wb{width:92.720000pt;}
.w23{width:93.521333pt;}
.w32{width:93.761333pt;}
.w17{width:104.880000pt;}
.w4{width:118.640000pt;}
.wa{width:127.760000pt;}
.w5{width:129.120000pt;}
.w16{width:131.681333pt;}
.w14{width:132.078667pt;}
.w15{width:132.080000pt;}
.w9{width:137.760000pt;}
.w31{width:141.440000pt;}
.w2f{width:142.480000pt;}
.w30{width:142.560000pt;}
.w2d{width:142.638667pt;}
.w2e{width:142.640000pt;}
.wd{width:215.920000pt;}
.w7{width:265.520000pt;}
.wc{width:347.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.360000pt;}
.we{width:1122.640000pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3b{left:5.680000pt;}
.xd{left:7.200000pt;}
.x56{left:9.760000pt;}
.x55{left:12.080000pt;}
.x47{left:16.960000pt;}
.x3f{left:21.200000pt;}
.xc{left:68.400000pt;}
.x3{left:75.046667pt;}
.x1{left:76.425333pt;}
.x4{left:78.545333pt;}
.x1f{left:87.280000pt;}
.x54{left:88.800000pt;}
.x18{left:94.480000pt;}
.x6{left:123.600000pt;}
.x13{left:161.120000pt;}
.x3a{left:165.360000pt;}
.x16{left:168.320000pt;}
.x26{left:180.800000pt;}
.xe{left:187.040000pt;}
.x19{left:192.160000pt;}
.x3c{left:199.440000pt;}
.x3d{left:231.200000pt;}
.x31{left:252.320000pt;}
.x3e{left:270.240000pt;}
.x2c{left:271.680000pt;}
.x20{left:275.520000pt;}
.x8{left:280.697333pt;}
.x40{left:301.760000pt;}
.xf{left:316.160000pt;}
.x32{left:323.680000pt;}
.x9{left:325.120000pt;}
.x41{left:333.520000pt;}
.x29{left:336.240000pt;}
.x1c{left:341.120000pt;}
.x7{left:354.400000pt;}
.xb{left:359.360000pt;}
.x5{left:362.240000pt;}
.x42{left:365.360000pt;}
.x10{left:387.760000pt;}
.x33{left:395.040000pt;}
.x43{left:397.200000pt;}
.x21{left:407.520000pt;}
.x2d{left:408.480000pt;}
.x44{left:429.040000pt;}
.x45{left:460.960000pt;}
.x27{left:465.680000pt;}
.x1a{left:473.200000pt;}
.x46{left:492.960000pt;}
.x14{left:509.040000pt;}
.x15{left:516.240000pt;}
.x12{left:525.520000pt;}
.x34{left:537.680000pt;}
.x22{left:556.640000pt;}
.x48{left:588.960000pt;}
.x35{left:608.960000pt;}
.x2a{left:621.120000pt;}
.x1d{left:622.320000pt;}
.x11{left:653.280000pt;}
.x36{left:680.240000pt;}
.x49{left:684.960000pt;}
.x23{left:688.720000pt;}
.x2e{left:693.440000pt;}
.xa{left:701.680000pt;}
.x2{left:709.680000pt;}
.x4a{left:716.960000pt;}
.x4b{left:748.960000pt;}
.x28{left:750.880000pt;}
.x1b{left:754.400000pt;}
.x4c{left:780.960000pt;}
.x4d{left:812.960000pt;}
.x37{left:822.720000pt;}
.x24{left:837.840000pt;}
.x2f{left:841.760000pt;}
.x4e{left:844.960000pt;}
.x4f{left:876.960000pt;}
.x38{left:894.000000pt;}
.x1e{left:903.760000pt;}
.x2b{left:906.640000pt;}
.x50{left:908.960000pt;}
.x51{left:940.960000pt;}
.x39{left:965.280000pt;}
.x25{left:970.160000pt;}
.x52{left:972.960000pt;}
.x30{left:978.880000pt;}
.x53{left:1004.960000pt;}
.x17{left:1012.160000pt;}
}




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