
    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_1d99999085c4d0c7ca067d00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a49b4fda237ff7612b1bac23.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_275f5ae98b853edc21882e15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_121d4e2c58cfe247e649f907.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_f195234a9b260cbbe1bb19dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_72de396683cf3b9cc1fe6221.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_dfcf9af7d5778670f911c8fc.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e0b17721afe87352d1855c18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-38.160000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls26{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.252720px;}
.ls1f{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.191520px;}
.lsf{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.077760px;}
.ls14{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.059760px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.077760px;}
.ls4{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls15{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.179280px;}
.ls20{letter-spacing:0.191520px;}
.ls30{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.239040px;}
.ls2c{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.261360px;}
.ls11{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.358560px;}
.ls13{letter-spacing:0.478080px;}
.ls1d{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.766080px;}
.ls2a{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.174400px;}
.ls23{letter-spacing:2.880000px;}
.ls22{letter-spacing:3.600000px;}
.ls2f{letter-spacing:5.040000px;}
.ls19{letter-spacing:5.760000px;}
.ls29{letter-spacing:6.480000px;}
.ls1c{letter-spacing:7.200000px;}
.ls21{letter-spacing:7.920000px;}
.ls1e{letter-spacing:8.640000px;}
.ls1a{letter-spacing:10.080000px;}
.ls27{letter-spacing:236.880000px;}
.ls2b{letter-spacing:798.480000px;}
.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;}
}
.ws4c{word-spacing:-26.812800px;}
.ws63{word-spacing:-26.621280px;}
.ws61{word-spacing:-26.429760px;}
.ws5{word-spacing:-24.480000px;}
.ws7{word-spacing:-24.408000px;}
.ws6{word-spacing:-24.336000px;}
.ws9{word-spacing:-20.916000px;}
.ws8{word-spacing:-20.676960px;}
.ws68{word-spacing:-18.216000px;}
.ws25{word-spacing:-18.144000px;}
.ws69{word-spacing:-18.072000px;}
.ws24{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws34{word-spacing:-17.856000px;}
.ws52{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsd{word-spacing:-15.298560px;}
.ws47{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.wsc{word-spacing:-9.720000px;}
.ws5c{word-spacing:-4.464000px;}
.ws45{word-spacing:-4.320000px;}
.ws5b{word-spacing:-4.032000px;}
.ws62{word-spacing:-3.744000px;}
.ws2a{word-spacing:-3.600000px;}
.ws29{word-spacing:-3.312000px;}
.ws41{word-spacing:-3.024000px;}
.ws1b{word-spacing:-2.880000px;}
.ws39{word-spacing:-2.592000px;}
.ws2c{word-spacing:-2.304000px;}
.ws2d{word-spacing:-2.160000px;}
.ws38{word-spacing:-1.872000px;}
.ws55{word-spacing:-1.584000px;}
.ws18{word-spacing:-1.440000px;}
.ws1c{word-spacing:-1.152000px;}
.ws26{word-spacing:-0.864000px;}
.ws64{word-spacing:-0.766080px;}
.ws20{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.421200px;}
.ws4d{word-spacing:-0.358560px;}
.ws15{word-spacing:-0.239040px;}
.ws4b{word-spacing:-0.179280px;}
.ws1e{word-spacing:-0.144000px;}
.ws27{word-spacing:-0.072000px;}
.ws49{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws22{word-spacing:0.059760px;}
.ws6b{word-spacing:0.072000px;}
.ws13{word-spacing:0.155520px;}
.ws3{word-spacing:0.162000px;}
.ws60{word-spacing:0.179280px;}
.ws57{word-spacing:0.216000px;}
.ws23{word-spacing:0.239040px;}
.ws12{word-spacing:0.252720px;}
.wsf{word-spacing:0.264960px;}
.ws16{word-spacing:0.288000px;}
.ws56{word-spacing:0.298800px;}
.ws10{word-spacing:0.324000px;}
.ws4a{word-spacing:0.418320px;}
.ws3f{word-spacing:0.576000px;}
.ws17{word-spacing:0.720000px;}
.ws3c{word-spacing:1.008000px;}
.ws1a{word-spacing:1.296000px;}
.ws32{word-spacing:1.440000px;}
.ws19{word-spacing:1.728000px;}
.ws40{word-spacing:2.016000px;}
.ws1f{word-spacing:2.160000px;}
.ws1d{word-spacing:2.448000px;}
.ws3b{word-spacing:2.736000px;}
.ws3e{word-spacing:2.880000px;}
.ws3d{word-spacing:3.168000px;}
.ws2b{word-spacing:3.600000px;}
.ws21{word-spacing:3.888000px;}
.ws5d{word-spacing:4.176000px;}
.ws5f{word-spacing:4.248000px;}
.ws35{word-spacing:4.320000px;}
.ws5e{word-spacing:4.392000px;}
.ws36{word-spacing:4.608000px;}
.ws58{word-spacing:4.896000px;}
.ws28{word-spacing:5.040000px;}
.ws31{word-spacing:5.328000px;}
.ws6c{word-spacing:5.616000px;}
.ws2e{word-spacing:5.760000px;}
.ws2f{word-spacing:6.048000px;}
.ws66{word-spacing:6.336000px;}
.ws48{word-spacing:6.480000px;}
.ws54{word-spacing:6.768000px;}
.ws53{word-spacing:7.056000px;}
.ws3a{word-spacing:7.200000px;}
.ws59{word-spacing:7.488000px;}
.ws4f{word-spacing:7.776000px;}
.ws37{word-spacing:7.920000px;}
.ws33{word-spacing:8.208000px;}
.ws42{word-spacing:8.640000px;}
.ws50{word-spacing:8.928000px;}
.ws30{word-spacing:9.360000px;}
.ws5a{word-spacing:10.080000px;}
.ws44{word-spacing:10.368000px;}
.ws67{word-spacing:11.088000px;}
.ws51{word-spacing:13.680000px;}
.ws6a{word-spacing:15.840000px;}
.ws4e{word-spacing:18.720000px;}
.ws43{word-spacing:20.160000px;}
.ws46{word-spacing:21.168000px;}
.ws65{word-spacing:30.960000px;}
._b{margin-left:-15.120000px;}
._12{margin-left:-4.968000px;}
._7{margin-left:-3.384000px;}
._8{margin-left:-2.232000px;}
._2{margin-left:-1.063800px;}
._3{width:1.050480px;}
._6{width:2.097720px;}
._5{width:3.295800px;}
._4{width:4.523040px;}
._d{width:5.878080px;}
._e{width:8.208000px;}
._1{width:94.338000px;}
._9{width:334.800000px;}
._a{width:505.440000px;}
._10{width:530.640000px;}
._0{width:731.538000px;}
._f{width:846.000000px;}
._11{width:1232.669520px;}
._c{width:1430.640000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc6{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y109{bottom:11.880000px;}
.y108{bottom:14.220000px;}
.y9{bottom:16.020000px;}
.y145{bottom:56.340000px;}
.y10b{bottom:56.520000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y2e{bottom:165.420000px;}
.ye0{bottom:168.840000px;}
.y11f{bottom:172.080000px;}
.yac{bottom:175.680000px;}
.yc0{bottom:176.940000px;}
.y9f{bottom:183.600000px;}
.y79{bottom:186.480000px;}
.y2d{bottom:187.920000px;}
.y12f{bottom:189.360000px;}
.y16a{bottom:189.720000px;}
.ydf{bottom:192.600000px;}
.y11e{bottom:195.840000px;}
.y2c{bottom:199.980000px;}
.ybf{bottom:200.880000px;}
.yd0{bottom:201.600000px;}
.y13a{bottom:204.300000px;}
.y52{bottom:205.020000px;}
.y9e{bottom:207.360000px;}
.yab{bottom:208.440000px;}
.y78{bottom:210.240000px;}
.y12e{bottom:213.300000px;}
.y169{bottom:213.480000px;}
.yde{bottom:216.360000px;}
.y144{bottom:216.540000px;}
.y11d{bottom:219.600000px;}
.y2b{bottom:222.480000px;}
.ybe{bottom:224.640000px;}
.ycf{bottom:225.360000px;}
.y139{bottom:228.060000px;}
.y51{bottom:228.960000px;}
.y9d{bottom:231.300000px;}
.y77{bottom:234.000000px;}
.y12d{bottom:237.060000px;}
.y168{bottom:237.240000px;}
.y146{bottom:237.600000px;}
.ydd{bottom:240.300000px;}
.yaa{bottom:241.380000px;}
.y187{bottom:241.560000px;}
.y11c{bottom:243.360000px;}
.y2a{bottom:247.320000px;}
.ybd{bottom:248.400000px;}
.yce{bottom:249.300000px;}
.y138{bottom:251.820000px;}
.y50{bottom:252.720000px;}
.y9c{bottom:255.060000px;}
.y76{bottom:257.760000px;}
.y12c{bottom:260.820000px;}
.ydc{bottom:264.060000px;}
.y186{bottom:265.500000px;}
.y11b{bottom:267.120000px;}
.y29{bottom:268.020000px;}
.y167{bottom:270.000000px;}
.ybc{bottom:272.160000px;}
.ycd{bottom:273.060000px;}
.ya9{bottom:274.140000px;}
.y137{bottom:275.580000px;}
.y4f{bottom:276.480000px;}
.y9b{bottom:278.820000px;}
.y75{bottom:281.700000px;}
.y106{bottom:284.580000px;}
.ydb{bottom:287.820000px;}
.y11a{bottom:291.060000px;}
.y166{bottom:293.940000px;}
.ycc{bottom:296.820000px;}
.y185{bottom:298.260000px;}
.y4e{bottom:300.240000px;}
.y142{bottom:300.420000px;}
.yea{bottom:302.580000px;}
.ybb{bottom:303.138000px;}
.y74{bottom:305.460000px;}
.ya8{bottom:306.900000px;}
.y12b{bottom:308.520000px;}
.y9a{bottom:311.580000px;}
.y119{bottom:314.820000px;}
.y105{bottom:317.520000px;}
.y165{bottom:317.700000px;}
.ycb{bottom:320.580000px;}
.y184{bottom:322.020000px;}
.y4d{bottom:324.180000px;}
.y28{bottom:330.660000px;}
.yba{bottom:330.669000px;}
.y12a{bottom:332.280000px;}
.y99{bottom:335.520000px;}
.y73{bottom:338.220000px;}
.y118{bottom:338.580000px;}
.ya7{bottom:339.660000px;}
.y104{bottom:341.280000px;}
.y164{bottom:341.460000px;}
.yca{bottom:344.520000px;}
.y183{bottom:345.780000px;}
.y4c{bottom:347.940000px;}
.y27{bottom:354.420000px;}
.y129{bottom:356.040000px;}
.yb9{bottom:358.200000px;}
.y98{bottom:359.280000px;}
.y72{bottom:361.980000px;}
.y117{bottom:362.340000px;}
.y103{bottom:365.040000px;}
.y163{bottom:365.220000px;}
.yc9{bottom:368.280000px;}
.y182{bottom:369.720000px;}
.y4b{bottom:371.700000px;}
.ya6{bottom:372.600000px;}
.y26{bottom:378.180000px;}
.y128{bottom:379.800000px;}
.y97{bottom:383.040000px;}
.y71{bottom:385.920000px;}
.y116{bottom:386.280000px;}
.y102{bottom:388.800000px;}
.y143{bottom:388.980000px;}
.yc8{bottom:392.040000px;}
.y181{bottom:393.480000px;}
.y4a{bottom:395.460000px;}
.y25{bottom:402.120000px;}
.y127{bottom:403.740000px;}
.y96{bottom:406.800000px;}
.y70{bottom:409.680000px;}
.y115{bottom:410.040000px;}
.ya5{bottom:410.388840px;}
.y101{bottom:412.740000px;}
.yc7{bottom:415.800000px;}
.y49{bottom:419.220000px;}
.yb8{bottom:419.940000px;}
.y162{bottom:419.949000px;}
.y24{bottom:425.880000px;}
.y180{bottom:426.240000px;}
.y126{bottom:427.500000px;}
.ya4{bottom:427.674420px;}
.yda{bottom:430.740000px;}
.y6f{bottom:433.440000px;}
.y114{bottom:433.800000px;}
.y100{bottom:436.500000px;}
.y95{bottom:439.740000px;}
.y19c{bottom:444.780000px;}
.ya3{bottom:444.960000px;}
.yb7{bottom:446.040000px;}
.y161{bottom:447.480000px;}
.y23{bottom:449.640000px;}
.y17f{bottom:450.000000px;}
.y48{bottom:450.198000px;}
.y136{bottom:451.260000px;}
.yd9{bottom:454.500000px;}
.y6e{bottom:457.200000px;}
.y113{bottom:457.560000px;}
.yff{bottom:460.260000px;}
.y94{bottom:463.500000px;}
.y22{bottom:473.400000px;}
.y17e{bottom:473.940000px;}
.y19b{bottom:477.720000px;}
.y47{bottom:477.729000px;}
.yd8{bottom:478.260000px;}
.y6d{bottom:480.960000px;}
.y112{bottom:481.500000px;}
.yfe{bottom:484.020000px;}
.y93{bottom:487.260000px;}
.y21{bottom:497.340000px;}
.y19a{bottom:501.480000px;}
.yd7{bottom:502.020000px;}
.y6c{bottom:504.900000px;}
.y46{bottom:505.260000px;}
.y17d{bottom:506.700000px;}
.yfd{bottom:507.780000px;}
.y92{bottom:511.020000px;}
.y160{bottom:513.000000px;}
.y125{bottom:516.780000px;}
.yd6{bottom:525.780000px;}
.y6b{bottom:528.660000px;}
.y111{bottom:529.020000px;}
.y20{bottom:530.100000px;}
.y17c{bottom:530.460000px;}
.yfc{bottom:531.720000px;}
.ya2{bottom:532.620000px;}
.y199{bottom:534.240000px;}
.yc6{bottom:534.780000px;}
.y15f{bottom:536.940000px;}
.y124{bottom:540.720000px;}
.y91{bottom:543.780000px;}
.y6a{bottom:552.420000px;}
.y110{bottom:552.780000px;}
.y1f{bottom:553.860000px;}
.y17b{bottom:554.220000px;}
.y135{bottom:555.480000px;}
.y198{bottom:558.000000px;}
.yc5{bottom:558.720000px;}
.y15e{bottom:560.700000px;}
.yfb{bottom:564.480000px;}
.y45{bottom:567.720000px;}
.y69{bottom:576.180000px;}
.y1e{bottom:577.620000px;}
.y134{bottom:579.240000px;}
.y197{bottom:581.940000px;}
.yc4{bottom:582.480000px;}
.y10f{bottom:583.749000px;}
.y15d{bottom:584.460000px;}
.y17a{bottom:587.160000px;}
.y141{bottom:588.059640px;}
.yfa{bottom:588.240000px;}
.y90{bottom:591.480000px;}
.y44{bottom:597.420000px;}
.y68{bottom:600.120000px;}
.y1d{bottom:601.560000px;}
.y133{bottom:603.000000px;}
.yc3{bottom:606.240000px;}
.y15c{bottom:608.220000px;}
.y179{bottom:610.920000px;}
.y10e{bottom:611.280000px;}
.yf9{bottom:612.000000px;}
.y196{bottom:614.700000px;}
.y8f{bottom:615.240000px;}
.y13d{bottom:621.000000px;}
.y140{bottom:623.332980px;}
.y67{bottom:623.880000px;}
.y1c{bottom:625.320000px;}
.y132{bottom:626.940000px;}
.yc2{bottom:630.000000px;}
.y43{bottom:630.360000px;}
.y178{bottom:634.680000px;}
.yf8{bottom:635.940000px;}
.y195{bottom:638.460000px;}
.y8e{bottom:639.000000px;}
.y15b{bottom:641.160000px;}
.y123{bottom:644.940000px;}
.y66{bottom:647.640000px;}
.y1b{bottom:649.080000px;}
.y131{bottom:650.700000px;}
.yc1{bottom:653.940000px;}
.y42{bottom:654.120000px;}
.y13f{bottom:655.200000px;}
.y177{bottom:658.440000px;}
.yf7{bottom:659.700000px;}
.y194{bottom:662.220000px;}
.y8d{bottom:662.940000px;}
.y15a{bottom:664.920000px;}
.y122{bottom:668.700000px;}
.y65{bottom:671.400000px;}
.y1a{bottom:672.840000px;}
.y130{bottom:674.460000px;}
.yd5{bottom:677.700000px;}
.y176{bottom:682.380000px;}
.yf6{bottom:683.460000px;}
.y8c{bottom:686.700000px;}
.y41{bottom:686.880000px;}
.y159{bottom:688.680000px;}
.y121{bottom:692.460000px;}
.y193{bottom:695.160000px;}
.y64{bottom:695.340000px;}
.yd4{bottom:701.460000px;}
.y19{bottom:702.540000px;}
.y10d{bottom:705.960000px;}
.y175{bottom:706.140000px;}
.yf5{bottom:707.220000px;}
.y8b{bottom:710.460000px;}
.y40{bottom:710.640000px;}
.y158{bottom:712.440000px;}
.y120{bottom:716.220000px;}
.y192{bottom:718.920000px;}
.y63{bottom:719.100000px;}
.yd3{bottom:725.220000px;}
.yf4{bottom:731.160000px;}
.y18{bottom:732.240000px;}
.y8a{bottom:734.220000px;}
.y3f{bottom:734.580000px;}
.y157{bottom:736.380000px;}
.y174{bottom:738.900000px;}
.y13c{bottom:740.160000px;}
.y62{bottom:742.860000px;}
.yd2{bottom:749.160000px;}
.y191{bottom:751.680000px;}
.yf3{bottom:754.920000px;}
.y89{bottom:758.160000px;}
.y3e{bottom:758.340000px;}
.y156{bottom:760.140000px;}
.y17{bottom:761.940000px;}
.y173{bottom:762.660000px;}
.y13b{bottom:763.920000px;}
.y61{bottom:766.620000px;}
.yd1{bottom:772.920000px;}
.y190{bottom:775.440000px;}
.yf2{bottom:778.680000px;}
.y88{bottom:781.920000px;}
.y3d{bottom:782.100000px;}
.y155{bottom:783.900000px;}
.y172{bottom:786.420000px;}
.ya1{bottom:787.680000px;}
.y60{bottom:790.560000px;}
.y16{bottom:794.880000px;}
.ye9{bottom:796.680000px;}
.y18f{bottom:799.380000px;}
.yf1{bottom:802.440000px;}
.y87{bottom:805.680000px;}
.y3c{bottom:805.860000px;}
.y154{bottom:807.660000px;}
.y171{bottom:810.360000px;}
.yb6{bottom:810.900000px;}
.y5f{bottom:814.320000px;}
.y15{bottom:818.640000px;}
.ya0{bottom:820.440000px;}
.y86{bottom:829.440000px;}
.y3b{bottom:829.800000px;}
.y153{bottom:831.420000px;}
.y18e{bottom:832.140000px;}
.yf0{bottom:835.380000px;}
.y5e{bottom:838.080000px;}
.y170{bottom:841.140000px;}
.yb5{bottom:843.660000px;}
.ye8{bottom:844.380000px;}
.y14{bottom:851.400000px;}
.y85{bottom:853.380000px;}
.y3a{bottom:853.560000px;}
.y152{bottom:855.360000px;}
.y18d{bottom:855.900000px;}
.yef{bottom:859.140000px;}
.y5d{bottom:861.840000px;}
.ye7{bottom:868.140000px;}
.y13{bottom:873.894600px;}
.yb4{bottom:876.600000px;}
.y84{bottom:877.140000px;}
.y151{bottom:879.120000px;}
.y10a{bottom:882.540000px;}
.yee{bottom:882.900000px;}
.y5c{bottom:885.780000px;}
.y39{bottom:886.320000px;}
.y18c{bottom:888.660000px;}
.ye6{bottom:891.900000px;}
.y12{bottom:894.960000px;}
.y13e{bottom:899.100000px;}
.y83{bottom:900.900000px;}
.y150{bottom:902.880000px;}
.y10c{bottom:903.780000px;}
.yed{bottom:906.660000px;}
.yb3{bottom:909.360000px;}
.y5b{bottom:909.540000px;}
.y38{bottom:910.080000px;}
.ye5{bottom:915.660000px;}
.y11{bottom:917.100000px;}
.y18b{bottom:921.600000px;}
.y82{bottom:924.660000px;}
.y16f{bottom:930.600000px;}
.y5a{bottom:933.300000px;}
.y37{bottom:934.020000px;}
.y14f{bottom:935.640000px;}
.ye4{bottom:939.600000px;}
.yb2{bottom:942.120000px;}
.y10{bottom:942.300000px;}
.y18a{bottom:945.360000px;}
.y81{bottom:948.600000px;}
.y107{bottom:953.100000px;}
.y16e{bottom:954.360000px;}
.y59{bottom:957.060000px;}
.y36{bottom:957.780000px;}
.y14e{bottom:959.580000px;}
.ye3{bottom:963.360000px;}
.y189{bottom:969.120000px;}
.y80{bottom:972.360000px;}
.yb1{bottom:974.880000px;}
.y16d{bottom:978.120000px;}
.y58{bottom:980.820000px;}
.y35{bottom:981.540000px;}
.y14d{bottom:983.340000px;}
.yf{bottom:985.143600px;}
.ye2{bottom:987.120000px;}
.y7f{bottom:996.120000px;}
.y16c{bottom:1001.880000px;}
.y57{bottom:1004.760000px;}
.y34{bottom:1005.300000px;}
.y14c{bottom:1007.100000px;}
.yb0{bottom:1007.640000px;}
.ye{bottom:1008.899280px;}
.ye1{bottom:1010.880000px;}
.y7e{bottom:1019.880000px;}
.y188{bottom:1025.640000px;}
.y56{bottom:1028.520000px;}
.y33{bottom:1029.060000px;}
.y14b{bottom:1030.860000px;}
.yd{bottom:1032.480000px;}
.yec{bottom:1034.640000px;}
.yaf{bottom:1040.580000px;}
.y7d{bottom:1043.640000px;}
.y55{bottom:1052.280000px;}
.y14a{bottom:1054.800000px;}
.yeb{bottom:1058.580000px;}
.y32{bottom:1058.760000px;}
.y7c{bottom:1067.580000px;}
.yae{bottom:1073.340000px;}
.y149{bottom:1078.560000px;}
.y16b{bottom:1082.340000px;}
.yc{bottom:1083.406320px;}
.y54{bottom:1087.200000px;}
.y31{bottom:1088.460000px;}
.y7b{bottom:1091.340000px;}
.y148{bottom:1102.320000px;}
.yad{bottom:1106.100000px;}
.yb{bottom:1108.973160px;}
.y53{bottom:1113.120000px;}
.y7a{bottom:1115.100000px;}
.y30{bottom:1118.160000px;}
.y147{bottom:1133.100000px;}
.ya{bottom:1134.540000px;}
.y2f{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.hb{height:34.114922px;}
.h3{height:38.759766px;}
.he{height:40.909922px;}
.h9{height:48.905156px;}
.ha{height:49.289062px;}
.hc{height:52.435898px;}
.h4{height:63.175781px;}
.h8{height:63.237656px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.hd{height:69.715898px;}
.h11{height:70.380000px;}
.h10{height:70.560000px;}
.h2{height:75.600000px;}
.hf{height:172.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w3{width:231.480000px;}
.w4{width:231.840000px;}
.w5{width:238.140000px;}
.w6{width:701.460000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x1{left:128.340000px;}
.x27{left:135.732060px;}
.x13{left:148.860000px;}
.x5{left:165.420000px;}
.x14{left:175.864320px;}
.x2c{left:181.620000px;}
.x22{left:213.300000px;}
.x2b{left:239.760000px;}
.x23{left:241.380000px;}
.x1c{left:246.600000px;}
.x1e{left:248.940000px;}
.x20{left:253.980000px;}
.x28{left:255.595680px;}
.x3{left:297.180000px;}
.x8{left:329.940000px;}
.x9{left:339.485040px;}
.x12{left:343.620000px;}
.x1d{left:359.100000px;}
.x6{left:360.730440px;}
.x29{left:363.780000px;}
.xa{left:382.855680px;}
.x1b{left:384.120000px;}
.xd{left:431.280000px;}
.x26{left:433.800000px;}
.x4{left:466.740000px;}
.x11{left:467.820000px;}
.xf{left:499.140000px;}
.x7{left:510.488100px;}
.x15{left:513.000000px;}
.x19{left:527.580000px;}
.x17{left:529.907580px;}
.x2{left:532.624500px;}
.x16{left:538.020000px;}
.x10{left:556.020000px;}
.x1f{left:590.940000px;}
.x18{left:616.843440px;}
.x24{left:617.940000px;}
.xb{left:640.260000px;}
.xc{left:646.560000px;}
.x25{left:671.220000px;}
.x1a{left:708.840000px;}
.x2a{left:820.800000px;}
.xe{left:829.072440px;}
@media print{
.v3{vertical-align:-33.920000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.224640pt;}
.ls1f{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.170240pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.069120pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.069120pt;}
.ls4{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls15{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.159360pt;}
.ls20{letter-spacing:0.170240pt;}
.ls30{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.212480pt;}
.ls2c{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.232320pt;}
.ls11{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.318720pt;}
.ls13{letter-spacing:0.424960pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.680960pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.920000pt;}
.ls24{letter-spacing:1.932800pt;}
.ls23{letter-spacing:2.560000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls29{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls21{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:8.960000pt;}
.ls27{letter-spacing:210.560000pt;}
.ls2b{letter-spacing:709.760000pt;}
.ws4c{word-spacing:-23.833600pt;}
.ws63{word-spacing:-23.663360pt;}
.ws61{word-spacing:-23.493120pt;}
.ws5{word-spacing:-21.760000pt;}
.ws7{word-spacing:-21.696000pt;}
.ws6{word-spacing:-21.632000pt;}
.ws9{word-spacing:-18.592000pt;}
.ws8{word-spacing:-18.379520pt;}
.ws68{word-spacing:-16.192000pt;}
.ws25{word-spacing:-16.128000pt;}
.ws69{word-spacing:-16.064000pt;}
.ws24{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws34{word-spacing:-15.872000pt;}
.ws52{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.598720pt;}
.ws47{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws5c{word-spacing:-3.968000pt;}
.ws45{word-spacing:-3.840000pt;}
.ws5b{word-spacing:-3.584000pt;}
.ws62{word-spacing:-3.328000pt;}
.ws2a{word-spacing:-3.200000pt;}
.ws29{word-spacing:-2.944000pt;}
.ws41{word-spacing:-2.688000pt;}
.ws1b{word-spacing:-2.560000pt;}
.ws39{word-spacing:-2.304000pt;}
.ws2c{word-spacing:-2.048000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.664000pt;}
.ws55{word-spacing:-1.408000pt;}
.ws18{word-spacing:-1.280000pt;}
.ws1c{word-spacing:-1.024000pt;}
.ws26{word-spacing:-0.768000pt;}
.ws64{word-spacing:-0.680960pt;}
.ws20{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.374400pt;}
.ws4d{word-spacing:-0.318720pt;}
.ws15{word-spacing:-0.212480pt;}
.ws4b{word-spacing:-0.159360pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws27{word-spacing:-0.064000pt;}
.ws49{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053120pt;}
.ws6b{word-spacing:0.064000pt;}
.ws13{word-spacing:0.138240pt;}
.ws3{word-spacing:0.144000pt;}
.ws60{word-spacing:0.159360pt;}
.ws57{word-spacing:0.192000pt;}
.ws23{word-spacing:0.212480pt;}
.ws12{word-spacing:0.224640pt;}
.wsf{word-spacing:0.235520pt;}
.ws16{word-spacing:0.256000pt;}
.ws56{word-spacing:0.265600pt;}
.ws10{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.371840pt;}
.ws3f{word-spacing:0.512000pt;}
.ws17{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.896000pt;}
.ws1a{word-spacing:1.152000pt;}
.ws32{word-spacing:1.280000pt;}
.ws19{word-spacing:1.536000pt;}
.ws40{word-spacing:1.792000pt;}
.ws1f{word-spacing:1.920000pt;}
.ws1d{word-spacing:2.176000pt;}
.ws3b{word-spacing:2.432000pt;}
.ws3e{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.816000pt;}
.ws2b{word-spacing:3.200000pt;}
.ws21{word-spacing:3.456000pt;}
.ws5d{word-spacing:3.712000pt;}
.ws5f{word-spacing:3.776000pt;}
.ws35{word-spacing:3.840000pt;}
.ws5e{word-spacing:3.904000pt;}
.ws36{word-spacing:4.096000pt;}
.ws58{word-spacing:4.352000pt;}
.ws28{word-spacing:4.480000pt;}
.ws31{word-spacing:4.736000pt;}
.ws6c{word-spacing:4.992000pt;}
.ws2e{word-spacing:5.120000pt;}
.ws2f{word-spacing:5.376000pt;}
.ws66{word-spacing:5.632000pt;}
.ws48{word-spacing:5.760000pt;}
.ws54{word-spacing:6.016000pt;}
.ws53{word-spacing:6.272000pt;}
.ws3a{word-spacing:6.400000pt;}
.ws59{word-spacing:6.656000pt;}
.ws4f{word-spacing:6.912000pt;}
.ws37{word-spacing:7.040000pt;}
.ws33{word-spacing:7.296000pt;}
.ws42{word-spacing:7.680000pt;}
.ws50{word-spacing:7.936000pt;}
.ws30{word-spacing:8.320000pt;}
.ws5a{word-spacing:8.960000pt;}
.ws44{word-spacing:9.216000pt;}
.ws67{word-spacing:9.856000pt;}
.ws51{word-spacing:12.160000pt;}
.ws6a{word-spacing:14.080000pt;}
.ws4e{word-spacing:16.640000pt;}
.ws43{word-spacing:17.920000pt;}
.ws46{word-spacing:18.816000pt;}
.ws65{word-spacing:27.520000pt;}
._b{margin-left:-13.440000pt;}
._12{margin-left:-4.416000pt;}
._7{margin-left:-3.008000pt;}
._8{margin-left:-1.984000pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.933760pt;}
._6{width:1.864640pt;}
._5{width:2.929600pt;}
._4{width:4.020480pt;}
._d{width:5.224960pt;}
._e{width:7.296000pt;}
._1{width:83.856000pt;}
._9{width:297.600000pt;}
._a{width:449.280000pt;}
._10{width:471.680000pt;}
._0{width:650.256000pt;}
._f{width:752.000000pt;}
._11{width:1095.706240pt;}
._c{width:1271.680000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:10.560000pt;}
.y108{bottom:12.640000pt;}
.y9{bottom:14.240000pt;}
.y145{bottom:50.080000pt;}
.y10b{bottom:50.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y2e{bottom:147.040000pt;}
.ye0{bottom:150.080000pt;}
.y11f{bottom:152.960000pt;}
.yac{bottom:156.160000pt;}
.yc0{bottom:157.280000pt;}
.y9f{bottom:163.200000pt;}
.y79{bottom:165.760000pt;}
.y2d{bottom:167.040000pt;}
.y12f{bottom:168.320000pt;}
.y16a{bottom:168.640000pt;}
.ydf{bottom:171.200000pt;}
.y11e{bottom:174.080000pt;}
.y2c{bottom:177.760000pt;}
.ybf{bottom:178.560000pt;}
.yd0{bottom:179.200000pt;}
.y13a{bottom:181.600000pt;}
.y52{bottom:182.240000pt;}
.y9e{bottom:184.320000pt;}
.yab{bottom:185.280000pt;}
.y78{bottom:186.880000pt;}
.y12e{bottom:189.600000pt;}
.y169{bottom:189.760000pt;}
.yde{bottom:192.320000pt;}
.y144{bottom:192.480000pt;}
.y11d{bottom:195.200000pt;}
.y2b{bottom:197.760000pt;}
.ybe{bottom:199.680000pt;}
.ycf{bottom:200.320000pt;}
.y139{bottom:202.720000pt;}
.y51{bottom:203.520000pt;}
.y9d{bottom:205.600000pt;}
.y77{bottom:208.000000pt;}
.y12d{bottom:210.720000pt;}
.y168{bottom:210.880000pt;}
.y146{bottom:211.200000pt;}
.ydd{bottom:213.600000pt;}
.yaa{bottom:214.560000pt;}
.y187{bottom:214.720000pt;}
.y11c{bottom:216.320000pt;}
.y2a{bottom:219.840000pt;}
.ybd{bottom:220.800000pt;}
.yce{bottom:221.600000pt;}
.y138{bottom:223.840000pt;}
.y50{bottom:224.640000pt;}
.y9c{bottom:226.720000pt;}
.y76{bottom:229.120000pt;}
.y12c{bottom:231.840000pt;}
.ydc{bottom:234.720000pt;}
.y186{bottom:236.000000pt;}
.y11b{bottom:237.440000pt;}
.y29{bottom:238.240000pt;}
.y167{bottom:240.000000pt;}
.ybc{bottom:241.920000pt;}
.ycd{bottom:242.720000pt;}
.ya9{bottom:243.680000pt;}
.y137{bottom:244.960000pt;}
.y4f{bottom:245.760000pt;}
.y9b{bottom:247.840000pt;}
.y75{bottom:250.400000pt;}
.y106{bottom:252.960000pt;}
.ydb{bottom:255.840000pt;}
.y11a{bottom:258.720000pt;}
.y166{bottom:261.280000pt;}
.ycc{bottom:263.840000pt;}
.y185{bottom:265.120000pt;}
.y4e{bottom:266.880000pt;}
.y142{bottom:267.040000pt;}
.yea{bottom:268.960000pt;}
.ybb{bottom:269.456000pt;}
.y74{bottom:271.520000pt;}
.ya8{bottom:272.800000pt;}
.y12b{bottom:274.240000pt;}
.y9a{bottom:276.960000pt;}
.y119{bottom:279.840000pt;}
.y105{bottom:282.240000pt;}
.y165{bottom:282.400000pt;}
.ycb{bottom:284.960000pt;}
.y184{bottom:286.240000pt;}
.y4d{bottom:288.160000pt;}
.y28{bottom:293.920000pt;}
.yba{bottom:293.928000pt;}
.y12a{bottom:295.360000pt;}
.y99{bottom:298.240000pt;}
.y73{bottom:300.640000pt;}
.y118{bottom:300.960000pt;}
.ya7{bottom:301.920000pt;}
.y104{bottom:303.360000pt;}
.y164{bottom:303.520000pt;}
.yca{bottom:306.240000pt;}
.y183{bottom:307.360000pt;}
.y4c{bottom:309.280000pt;}
.y27{bottom:315.040000pt;}
.y129{bottom:316.480000pt;}
.yb9{bottom:318.400000pt;}
.y98{bottom:319.360000pt;}
.y72{bottom:321.760000pt;}
.y117{bottom:322.080000pt;}
.y103{bottom:324.480000pt;}
.y163{bottom:324.640000pt;}
.yc9{bottom:327.360000pt;}
.y182{bottom:328.640000pt;}
.y4b{bottom:330.400000pt;}
.ya6{bottom:331.200000pt;}
.y26{bottom:336.160000pt;}
.y128{bottom:337.600000pt;}
.y97{bottom:340.480000pt;}
.y71{bottom:343.040000pt;}
.y116{bottom:343.360000pt;}
.y102{bottom:345.600000pt;}
.y143{bottom:345.760000pt;}
.yc8{bottom:348.480000pt;}
.y181{bottom:349.760000pt;}
.y4a{bottom:351.520000pt;}
.y25{bottom:357.440000pt;}
.y127{bottom:358.880000pt;}
.y96{bottom:361.600000pt;}
.y70{bottom:364.160000pt;}
.y115{bottom:364.480000pt;}
.ya5{bottom:364.790080pt;}
.y101{bottom:366.880000pt;}
.yc7{bottom:369.600000pt;}
.y49{bottom:372.640000pt;}
.yb8{bottom:373.280000pt;}
.y162{bottom:373.288000pt;}
.y24{bottom:378.560000pt;}
.y180{bottom:378.880000pt;}
.y126{bottom:380.000000pt;}
.ya4{bottom:380.155040pt;}
.yda{bottom:382.880000pt;}
.y6f{bottom:385.280000pt;}
.y114{bottom:385.600000pt;}
.y100{bottom:388.000000pt;}
.y95{bottom:390.880000pt;}
.y19c{bottom:395.360000pt;}
.ya3{bottom:395.520000pt;}
.yb7{bottom:396.480000pt;}
.y161{bottom:397.760000pt;}
.y23{bottom:399.680000pt;}
.y17f{bottom:400.000000pt;}
.y48{bottom:400.176000pt;}
.y136{bottom:401.120000pt;}
.yd9{bottom:404.000000pt;}
.y6e{bottom:406.400000pt;}
.y113{bottom:406.720000pt;}
.yff{bottom:409.120000pt;}
.y94{bottom:412.000000pt;}
.y22{bottom:420.800000pt;}
.y17e{bottom:421.280000pt;}
.y19b{bottom:424.640000pt;}
.y47{bottom:424.648000pt;}
.yd8{bottom:425.120000pt;}
.y6d{bottom:427.520000pt;}
.y112{bottom:428.000000pt;}
.yfe{bottom:430.240000pt;}
.y93{bottom:433.120000pt;}
.y21{bottom:442.080000pt;}
.y19a{bottom:445.760000pt;}
.yd7{bottom:446.240000pt;}
.y6c{bottom:448.800000pt;}
.y46{bottom:449.120000pt;}
.y17d{bottom:450.400000pt;}
.yfd{bottom:451.360000pt;}
.y92{bottom:454.240000pt;}
.y160{bottom:456.000000pt;}
.y125{bottom:459.360000pt;}
.yd6{bottom:467.360000pt;}
.y6b{bottom:469.920000pt;}
.y111{bottom:470.240000pt;}
.y20{bottom:471.200000pt;}
.y17c{bottom:471.520000pt;}
.yfc{bottom:472.640000pt;}
.ya2{bottom:473.440000pt;}
.y199{bottom:474.880000pt;}
.yc6{bottom:475.360000pt;}
.y15f{bottom:477.280000pt;}
.y124{bottom:480.640000pt;}
.y91{bottom:483.360000pt;}
.y6a{bottom:491.040000pt;}
.y110{bottom:491.360000pt;}
.y1f{bottom:492.320000pt;}
.y17b{bottom:492.640000pt;}
.y135{bottom:493.760000pt;}
.y198{bottom:496.000000pt;}
.yc5{bottom:496.640000pt;}
.y15e{bottom:498.400000pt;}
.yfb{bottom:501.760000pt;}
.y45{bottom:504.640000pt;}
.y69{bottom:512.160000pt;}
.y1e{bottom:513.440000pt;}
.y134{bottom:514.880000pt;}
.y197{bottom:517.280000pt;}
.yc4{bottom:517.760000pt;}
.y10f{bottom:518.888000pt;}
.y15d{bottom:519.520000pt;}
.y17a{bottom:521.920000pt;}
.y141{bottom:522.719680pt;}
.yfa{bottom:522.880000pt;}
.y90{bottom:525.760000pt;}
.y44{bottom:531.040000pt;}
.y68{bottom:533.440000pt;}
.y1d{bottom:534.720000pt;}
.y133{bottom:536.000000pt;}
.yc3{bottom:538.880000pt;}
.y15c{bottom:540.640000pt;}
.y179{bottom:543.040000pt;}
.y10e{bottom:543.360000pt;}
.yf9{bottom:544.000000pt;}
.y196{bottom:546.400000pt;}
.y8f{bottom:546.880000pt;}
.y13d{bottom:552.000000pt;}
.y140{bottom:554.073760pt;}
.y67{bottom:554.560000pt;}
.y1c{bottom:555.840000pt;}
.y132{bottom:557.280000pt;}
.yc2{bottom:560.000000pt;}
.y43{bottom:560.320000pt;}
.y178{bottom:564.160000pt;}
.yf8{bottom:565.280000pt;}
.y195{bottom:567.520000pt;}
.y8e{bottom:568.000000pt;}
.y15b{bottom:569.920000pt;}
.y123{bottom:573.280000pt;}
.y66{bottom:575.680000pt;}
.y1b{bottom:576.960000pt;}
.y131{bottom:578.400000pt;}
.yc1{bottom:581.280000pt;}
.y42{bottom:581.440000pt;}
.y13f{bottom:582.400000pt;}
.y177{bottom:585.280000pt;}
.yf7{bottom:586.400000pt;}
.y194{bottom:588.640000pt;}
.y8d{bottom:589.280000pt;}
.y15a{bottom:591.040000pt;}
.y122{bottom:594.400000pt;}
.y65{bottom:596.800000pt;}
.y1a{bottom:598.080000pt;}
.y130{bottom:599.520000pt;}
.yd5{bottom:602.400000pt;}
.y176{bottom:606.560000pt;}
.yf6{bottom:607.520000pt;}
.y8c{bottom:610.400000pt;}
.y41{bottom:610.560000pt;}
.y159{bottom:612.160000pt;}
.y121{bottom:615.520000pt;}
.y193{bottom:617.920000pt;}
.y64{bottom:618.080000pt;}
.yd4{bottom:623.520000pt;}
.y19{bottom:624.480000pt;}
.y10d{bottom:627.520000pt;}
.y175{bottom:627.680000pt;}
.yf5{bottom:628.640000pt;}
.y8b{bottom:631.520000pt;}
.y40{bottom:631.680000pt;}
.y158{bottom:633.280000pt;}
.y120{bottom:636.640000pt;}
.y192{bottom:639.040000pt;}
.y63{bottom:639.200000pt;}
.yd3{bottom:644.640000pt;}
.yf4{bottom:649.920000pt;}
.y18{bottom:650.880000pt;}
.y8a{bottom:652.640000pt;}
.y3f{bottom:652.960000pt;}
.y157{bottom:654.560000pt;}
.y174{bottom:656.800000pt;}
.y13c{bottom:657.920000pt;}
.y62{bottom:660.320000pt;}
.yd2{bottom:665.920000pt;}
.y191{bottom:668.160000pt;}
.yf3{bottom:671.040000pt;}
.y89{bottom:673.920000pt;}
.y3e{bottom:674.080000pt;}
.y156{bottom:675.680000pt;}
.y17{bottom:677.280000pt;}
.y173{bottom:677.920000pt;}
.y13b{bottom:679.040000pt;}
.y61{bottom:681.440000pt;}
.yd1{bottom:687.040000pt;}
.y190{bottom:689.280000pt;}
.yf2{bottom:692.160000pt;}
.y88{bottom:695.040000pt;}
.y3d{bottom:695.200000pt;}
.y155{bottom:696.800000pt;}
.y172{bottom:699.040000pt;}
.ya1{bottom:700.160000pt;}
.y60{bottom:702.720000pt;}
.y16{bottom:706.560000pt;}
.ye9{bottom:708.160000pt;}
.y18f{bottom:710.560000pt;}
.yf1{bottom:713.280000pt;}
.y87{bottom:716.160000pt;}
.y3c{bottom:716.320000pt;}
.y154{bottom:717.920000pt;}
.y171{bottom:720.320000pt;}
.yb6{bottom:720.800000pt;}
.y5f{bottom:723.840000pt;}
.y15{bottom:727.680000pt;}
.ya0{bottom:729.280000pt;}
.y86{bottom:737.280000pt;}
.y3b{bottom:737.600000pt;}
.y153{bottom:739.040000pt;}
.y18e{bottom:739.680000pt;}
.yf0{bottom:742.560000pt;}
.y5e{bottom:744.960000pt;}
.y170{bottom:747.680000pt;}
.yb5{bottom:749.920000pt;}
.ye8{bottom:750.560000pt;}
.y14{bottom:756.800000pt;}
.y85{bottom:758.560000pt;}
.y3a{bottom:758.720000pt;}
.y152{bottom:760.320000pt;}
.y18d{bottom:760.800000pt;}
.yef{bottom:763.680000pt;}
.y5d{bottom:766.080000pt;}
.ye7{bottom:771.680000pt;}
.y13{bottom:776.795200pt;}
.yb4{bottom:779.200000pt;}
.y84{bottom:779.680000pt;}
.y151{bottom:781.440000pt;}
.y10a{bottom:784.480000pt;}
.yee{bottom:784.800000pt;}
.y5c{bottom:787.360000pt;}
.y39{bottom:787.840000pt;}
.y18c{bottom:789.920000pt;}
.ye6{bottom:792.800000pt;}
.y12{bottom:795.520000pt;}
.y13e{bottom:799.200000pt;}
.y83{bottom:800.800000pt;}
.y150{bottom:802.560000pt;}
.y10c{bottom:803.360000pt;}
.yed{bottom:805.920000pt;}
.yb3{bottom:808.320000pt;}
.y5b{bottom:808.480000pt;}
.y38{bottom:808.960000pt;}
.ye5{bottom:813.920000pt;}
.y11{bottom:815.200000pt;}
.y18b{bottom:819.200000pt;}
.y82{bottom:821.920000pt;}
.y16f{bottom:827.200000pt;}
.y5a{bottom:829.600000pt;}
.y37{bottom:830.240000pt;}
.y14f{bottom:831.680000pt;}
.ye4{bottom:835.200000pt;}
.yb2{bottom:837.440000pt;}
.y10{bottom:837.600000pt;}
.y18a{bottom:840.320000pt;}
.y81{bottom:843.200000pt;}
.y107{bottom:847.200000pt;}
.y16e{bottom:848.320000pt;}
.y59{bottom:850.720000pt;}
.y36{bottom:851.360000pt;}
.y14e{bottom:852.960000pt;}
.ye3{bottom:856.320000pt;}
.y189{bottom:861.440000pt;}
.y80{bottom:864.320000pt;}
.yb1{bottom:866.560000pt;}
.y16d{bottom:869.440000pt;}
.y58{bottom:871.840000pt;}
.y35{bottom:872.480000pt;}
.y14d{bottom:874.080000pt;}
.yf{bottom:875.683200pt;}
.ye2{bottom:877.440000pt;}
.y7f{bottom:885.440000pt;}
.y16c{bottom:890.560000pt;}
.y57{bottom:893.120000pt;}
.y34{bottom:893.600000pt;}
.y14c{bottom:895.200000pt;}
.yb0{bottom:895.680000pt;}
.ye{bottom:896.799360pt;}
.ye1{bottom:898.560000pt;}
.y7e{bottom:906.560000pt;}
.y188{bottom:911.680000pt;}
.y56{bottom:914.240000pt;}
.y33{bottom:914.720000pt;}
.y14b{bottom:916.320000pt;}
.yd{bottom:917.760000pt;}
.yec{bottom:919.680000pt;}
.yaf{bottom:924.960000pt;}
.y7d{bottom:927.680000pt;}
.y55{bottom:935.360000pt;}
.y14a{bottom:937.600000pt;}
.yeb{bottom:940.960000pt;}
.y32{bottom:941.120000pt;}
.y7c{bottom:948.960000pt;}
.yae{bottom:954.080000pt;}
.y149{bottom:958.720000pt;}
.y16b{bottom:962.080000pt;}
.yc{bottom:963.027840pt;}
.y54{bottom:966.400000pt;}
.y31{bottom:967.520000pt;}
.y7b{bottom:970.080000pt;}
.y148{bottom:979.840000pt;}
.yad{bottom:983.200000pt;}
.yb{bottom:985.753920pt;}
.y53{bottom:989.440000pt;}
.y7a{bottom:991.200000pt;}
.y30{bottom:993.920000pt;}
.y147{bottom:1007.200000pt;}
.ya{bottom:1008.480000pt;}
.y2f{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.hb{height:30.324375pt;}
.h3{height:34.453125pt;}
.he{height:36.364375pt;}
.h9{height:43.471250pt;}
.ha{height:43.812500pt;}
.hc{height:46.609688pt;}
.h4{height:56.156250pt;}
.h8{height:56.211250pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.hd{height:61.969687pt;}
.h11{height:62.560000pt;}
.h10{height:62.720000pt;}
.h2{height:67.200000pt;}
.hf{height:153.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w3{width:205.760000pt;}
.w4{width:206.080000pt;}
.w5{width:211.680000pt;}
.w6{width:623.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x1{left:114.080000pt;}
.x27{left:120.650720pt;}
.x13{left:132.320000pt;}
.x5{left:147.040000pt;}
.x14{left:156.323840pt;}
.x2c{left:161.440000pt;}
.x22{left:189.600000pt;}
.x2b{left:213.120000pt;}
.x23{left:214.560000pt;}
.x1c{left:219.200000pt;}
.x1e{left:221.280000pt;}
.x20{left:225.760000pt;}
.x28{left:227.196160pt;}
.x3{left:264.160000pt;}
.x8{left:293.280000pt;}
.x9{left:301.764480pt;}
.x12{left:305.440000pt;}
.x1d{left:319.200000pt;}
.x6{left:320.649280pt;}
.x29{left:323.360000pt;}
.xa{left:340.316160pt;}
.x1b{left:341.440000pt;}
.xd{left:383.360000pt;}
.x26{left:385.600000pt;}
.x4{left:414.880000pt;}
.x11{left:415.840000pt;}
.xf{left:443.680000pt;}
.x7{left:453.767200pt;}
.x15{left:456.000000pt;}
.x19{left:468.960000pt;}
.x17{left:471.028960pt;}
.x2{left:473.444000pt;}
.x16{left:478.240000pt;}
.x10{left:494.240000pt;}
.x1f{left:525.280000pt;}
.x18{left:548.305280pt;}
.x24{left:549.280000pt;}
.xb{left:569.120000pt;}
.xc{left:574.720000pt;}
.x25{left:596.640000pt;}
.x1a{left:630.080000pt;}
.x2a{left:729.600000pt;}
.xe{left:736.953280pt;}
}




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