
    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_cbe55cd0e598110a613779fe.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4709a8614700f06fb79a3dd6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_76bc7bcfcd6126eeb85d4870.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_da91cfa80c9859e13ff44e4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_e3f7a7ae92c46a7c04bc8d0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_981d103c7c80194cb0db0b62.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_8da0715c35eb571e6881d9be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ba53845611e802c1ed928a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_816bbadddf7abb7e876d4fa2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_3f6061f4cb57989c90ce740c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v8{vertical-align:-12.240000px;}
.v13{vertical-align:-10.800000px;}
.vc{vertical-align:-8.640000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.520000px;}
.ve{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v10{vertical-align:18.000000px;}
.vf{vertical-align:21.960000px;}
.va{vertical-align:25.200000px;}
.vb{vertical-align:26.640000px;}
.vd{vertical-align:30.240000px;}
.v7{vertical-align:33.120000px;}
.v9{vertical-align:35.280000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.v12{vertical-align:47.880000px;}
.ls37{letter-spacing:-0.444600px;}
.ls3c{letter-spacing:-0.391800px;}
.ls11{letter-spacing:-0.186600px;}
.ls45{letter-spacing:-0.178800px;}
.ls38{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls42{letter-spacing:-0.096600px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.063600px;}
.ls3d{letter-spacing:-0.038880px;}
.ls35{letter-spacing:-0.037800px;}
.ls3b{letter-spacing:-0.031680px;}
.ls1d{letter-spacing:-0.011160px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020400px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.060480px;}
.ls21{letter-spacing:0.060600px;}
.ls1e{letter-spacing:0.069600px;}
.ls31{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.074160px;}
.ls43{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls36{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.111240px;}
.ls25{letter-spacing:0.115560px;}
.ls5{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.234720px;}
.ls24{letter-spacing:0.250200px;}
.ls39{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.813600px;}
.ls32{letter-spacing:1.512000px;}
.ls2b{letter-spacing:1.620000px;}
.ls1a{letter-spacing:1.800000px;}
.ls33{letter-spacing:1.841400px;}
.ls17{letter-spacing:1.892520px;}
.ls18{letter-spacing:2.193120px;}
.ls1f{letter-spacing:2.252520px;}
.ls2f{letter-spacing:2.253600px;}
.ls2d{letter-spacing:2.341440px;}
.ls2e{letter-spacing:2.394360px;}
.ls2c{letter-spacing:2.427480px;}
.ls34{letter-spacing:2.532240px;}
.ls20{letter-spacing:2.553120px;}
.ls23{letter-spacing:2.612520px;}
.ls14{letter-spacing:2.719440px;}
.ls12{letter-spacing:4.413600px;}
.ls13{letter-spacing:6.527520px;}
.ls16{letter-spacing:13.234320px;}
.ls26{letter-spacing:15.212520px;}
.ls15{letter-spacing:15.513120px;}
.ls27{letter-spacing:15.572520px;}
.ls30{letter-spacing:19.577880px;}
.ls40{letter-spacing:21.693600px;}
.ls29{letter-spacing:33.210360px;}
.ls28{letter-spacing:43.290360px;}
.ls22{letter-spacing:44.010360px;}
.ls3f{letter-spacing:47.726640px;}
.ls3e{letter-spacing:49.773600px;}
.ls1b{letter-spacing:59.220000px;}
.ls3a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws21{word-spacing:-47.880000px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws23{word-spacing:-13.300800px;}
.ws10{word-spacing:-13.296000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.246800px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.215240px;}
.wsc{word-spacing:-13.162800px;}
.ws22{word-spacing:-13.129800px;}
.ws20{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1b{word-spacing:-9.358800px;}
.ws11{word-spacing:-9.266400px;}
.wsb{word-spacing:-8.553600px;}
.ws1d{word-spacing:-7.920000px;}
.ws19{word-spacing:-3.591000px;}
.ws13{word-spacing:-3.231000px;}
.wsf{word-spacing:-0.176040px;}
.ws6{word-spacing:0.000000px;}
.ws1f{word-spacing:0.020880px;}
.ws17{word-spacing:0.183960px;}
.ws15{word-spacing:0.303960px;}
.ws12{word-spacing:3.059640px;}
.ws14{word-spacing:3.063960px;}
.ws1e{word-spacing:3.126600px;}
.ws1c{word-spacing:3.382560px;}
.wsd{word-spacing:3.389760px;}
.ws18{word-spacing:3.419640px;}
.ws16{word-spacing:3.423960px;}
.ws1a{word-spacing:3.534120px;}
.ws4{word-spacing:4.304880px;}
._15{margin-left:-5.330520px;}
._11{margin-left:-3.787320px;}
._b{margin-left:-2.585400px;}
._0{margin-left:-1.158000px;}
._3{width:1.045056px;}
._7{width:2.088621px;}
._6{width:3.494905px;}
._c{width:4.569000px;}
._14{width:5.591160px;}
._9{width:6.814129px;}
._2{width:7.889928px;}
._1{width:9.015756px;}
._8{width:10.166268px;}
._5{width:11.523958px;}
._4{width:12.714576px;}
._a{width:14.368800px;}
._e{width:15.631200px;}
._f{width:16.990944px;}
._10{width:18.071040px;}
._d{width:19.719360px;}
._1c{width:21.643200px;}
._1f{width:22.812120px;}
._18{width:24.081480px;}
._1e{width:25.514640px;}
._1a{width:28.376640px;}
._1d{width:29.673120px;}
._19{width:47.209560px;}
._1b{width:48.817440px;}
._17{width:50.850360px;}
._12{width:69.710040px;}
._16{width:116.525880px;}
._13{width:202.773600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.240000px;}
.yb8{bottom:5.580000px;}
.y4f{bottom:7.830000px;}
.y54{bottom:7.860000px;}
.y51{bottom:7.920000px;}
.ya8{bottom:12.870000px;}
.ya5{bottom:12.960000px;}
.y8d{bottom:13.320000px;}
.y79{bottom:15.120000px;}
.yb7{bottom:17.130000px;}
.yb4{bottom:20.550000px;}
.y8c{bottom:21.420000px;}
.yac{bottom:22.680000px;}
.ya7{bottom:22.950000px;}
.ya4{bottom:23.040000px;}
.y97{bottom:23.130000px;}
.y78{bottom:25.200000px;}
.yb6{bottom:29.100000px;}
.yab{bottom:30.240000px;}
.y96{bottom:30.690000px;}
.y95{bottom:34.380000px;}
.y77{bottom:34.470000px;}
.yb3{bottom:34.500000px;}
.yb5{bottom:40.620000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y12f{bottom:117.030000px;}
.ydc{bottom:122.790000px;}
.y11c{bottom:123.960000px;}
.y159{bottom:125.490000px;}
.y99{bottom:129.990000px;}
.y1a0{bottom:134.130000px;}
.y12e{bottom:134.580000px;}
.yc3{bottom:139.440000px;}
.ydb{bottom:140.340000px;}
.y158{bottom:143.130000px;}
.y19f{bottom:151.680000px;}
.y12d{bottom:152.130000px;}
.y6e{bottom:152.490000px;}
.y28{bottom:155.820000px;}
.yc2{bottom:157.080000px;}
.y11b{bottom:158.790000px;}
.y98{bottom:165.630000px;}
.y183{bottom:169.320000px;}
.y157{bottom:169.680000px;}
.y12c{bottom:169.770000px;}
.y11a{bottom:170.850000px;}
.y27{bottom:173.370000px;}
.yc1{bottom:174.630000px;}
.yda{bottom:175.980000px;}
.y19e{bottom:178.320000px;}
.y94{bottom:179.850000px;}
.y4d{bottom:180.120000px;}
.y182{bottom:186.870000px;}
.y156{bottom:187.320000px;}
.y6d{bottom:188.130000px;}
.y26{bottom:191.010000px;}
.yd9{bottom:193.530000px;}
.y19d{bottom:195.870000px;}
.y4c{bottom:197.760000px;}
.y181{bottom:204.510000px;}
.y12b{bottom:205.320000px;}
.y6c{bottom:205.680000px;}
.y25{bottom:208.560000px;}
.yc0{bottom:210.180000px;}
.yd8{bottom:211.080000px;}
.y19c{bottom:213.510000px;}
.y155{bottom:213.870000px;}
.y24{bottom:226.110000px;}
.yd7{bottom:228.720000px;}
.y180{bottom:231.060000px;}
.y154{bottom:231.420000px;}
.y4b{bottom:233.310000px;}
.ybf{bottom:236.820000px;}
.y6b{bottom:237.900000px;}
.y19b{bottom:240.060000px;}
.y12a{bottom:240.240000px;}
.y23{bottom:243.750000px;}
.yd6{bottom:246.270000px;}
.y153{bottom:249.060000px;}
.y93{bottom:249.870000px;}
.y4a{bottom:250.950000px;}
.y129{bottom:252.300000px;}
.y17f{bottom:257.610000px;}
.y22{bottom:261.300000px;}
.y49{bottom:268.500000px;}
.ybe{bottom:272.730000px;}
.yd5{bottom:272.910000px;}
.y17e{bottom:275.250000px;}
.y152{bottom:275.970000px;}
.y21{bottom:278.850000px;}
.yf3{bottom:279.030000px;}
.y19a{bottom:284.250000px;}
.y92{bottom:285.420000px;}
.y48{bottom:286.050000px;}
.y17d{bottom:292.800000px;}
.y20{bottom:296.490000px;}
.y199{bottom:301.800000px;}
.y47{bottom:303.690000px;}
.yd4{bottom:308.460000px;}
.yf2{bottom:314.580000px;}
.y17c{bottom:319.440000px;}
.ybd{bottom:320.970000px;}
.y91{bottom:321.060000px;}
.y46{bottom:321.240000px;}
.y1f{bottom:323.400000px;}
.y151{bottom:324.210000px;}
.y17b{bottom:336.990000px;}
.ybc{bottom:338.610000px;}
.yd3{bottom:343.380000px;}
.y198{bottom:345.990000px;}
.yf1{bottom:350.220000px;}
.y150{bottom:351.120000px;}
.y17a{bottom:354.540000px;}
.yd2{bottom:355.440000px;}
.ybb{bottom:356.160000px;}
.y90{bottom:356.610000px;}
.y45{bottom:356.880000px;}
.y197{bottom:363.540000px;}
.yf0{bottom:367.770000px;}
.yba{bottom:370.380000px;}
.y1e{bottom:371.640000px;}
.y10a{bottom:373.260000px;}
.y44{bottom:374.430000px;}
.y179{bottom:381.180000px;}
.yef{bottom:385.410000px;}
.y14f{bottom:388.110000px;}
.y1d{bottom:389.550000px;}
.y196{bottom:390.180000px;}
.y43{bottom:391.980000px;}
.y8f{bottom:392.160000px;}
.y178{bottom:398.730000px;}
.yee{bottom:402.960000px;}
.y14e{bottom:405.750000px;}
.y8b{bottom:406.380000px;}
.y195{bottom:407.730000px;}
.y109{bottom:408.900000px;}
.y42{bottom:409.620000px;}
.yed{bottom:420.510000px;}
.y177{bottom:425.370000px;}
.y108{bottom:426.450000px;}
.y1c{bottom:426.630000px;}
.y41{bottom:427.170000px;}
.y14d{bottom:432.660000px;}
.y6a{bottom:436.980000px;}
.yec{bottom:438.150000px;}
.yb9{bottom:440.400000px;}
.y176{bottom:442.920000px;}
.y107{bottom:444.090000px;}
.y1b{bottom:444.180000px;}
.y40{bottom:444.810000px;}
.y194{bottom:451.920000px;}
.y69{bottom:454.620000px;}
.y175{bottom:460.470000px;}
.y106{bottom:461.640000px;}
.y1a{bottom:461.730000px;}
.y8a{bottom:463.350000px;}
.y193{bottom:469.470000px;}
.y14c{bottom:470.040000px;}
.y3f{bottom:471.390000px;}
.y68{bottom:472.200000px;}
.yeb{bottom:473.730000px;}
.y105{bottom:479.220000px;}
.y19{bottom:479.400000px;}
.y174{bottom:487.140000px;}
.y67{bottom:489.840000px;}
.yea{bottom:491.370000px;}
.y192{bottom:496.140000px;}
.y18{bottom:496.950000px;}
.y89{bottom:498.930000px;}
.y173{bottom:504.690000px;}
.y3e{bottom:506.940000px;}
.ye9{bottom:508.920000px;}
.y128{bottom:512.160000px;}
.y191{bottom:513.690000px;}
.y17{bottom:514.590000px;}
.y104{bottom:514.860000px;}
.y66{bottom:516.390000px;}
.y88{bottom:516.570000px;}
.y14b{bottom:518.280000px;}
.y119{bottom:520.800000px;}
.y172{bottom:522.330000px;}
.yb2{bottom:524.670000px;}
.ye8{bottom:526.470000px;}
.y16{bottom:532.140000px;}
.y103{bottom:532.410000px;}
.y14a{bottom:535.830000px;}
.y118{bottom:538.350000px;}
.y3d{bottom:539.160000px;}
.y190{bottom:540.330000px;}
.yb1{bottom:542.310000px;}
.ye7{bottom:544.110000px;}
.y127{bottom:547.800000px;}
.y171{bottom:548.880000px;}
.y65{bottom:549.330000px;}
.y15{bottom:549.690000px;}
.y102{bottom:550.050000px;}
.y87{bottom:552.120000px;}
.y149{bottom:553.470000px;}
.y117{bottom:555.900000px;}
.y18f{bottom:557.880000px;}
.ye6{bottom:561.660000px;}
.y170{bottom:566.430000px;}
.y14{bottom:567.330000px;}
.y101{bottom:567.600000px;}
.yb0{bottom:568.860000px;}
.y86{bottom:569.760000px;}
.y148{bottom:571.020000px;}
.y116{bottom:573.540000px;}
.y18e{bottom:575.430000px;}
.y64{bottom:576.690000px;}
.ye5{bottom:579.300000px;}
.y126{bottom:582.630000px;}
.y13{bottom:584.880000px;}
.y85{bottom:587.310000px;}
.y147{bottom:588.660000px;}
.y115{bottom:591.090000px;}
.y16f{bottom:593.070000px;}
.y125{bottom:594.690000px;}
.ye4{bottom:596.850000px;}
.y100{bottom:603.150000px;}
.y63{bottom:604.050000px;}
.yaf{bottom:604.500000px;}
.y84{bottom:604.860000px;}
.y16e{bottom:610.620000px;}
.y12{bottom:611.790000px;}
.yff{bottom:620.790000px;}
.yae{bottom:622.050000px;}
.y83{bottom:622.500000px;}
.ye3{bottom:623.400000px;}
.y146{bottom:624.210000px;}
.y114{bottom:626.730000px;}
.y16d{bottom:628.260000px;}
.y62{bottom:631.410000px;}
.y18d{bottom:637.260000px;}
.yfe{bottom:638.340000px;}
.yad{bottom:639.600000px;}
.y82{bottom:640.050000px;}
.y145{bottom:641.760000px;}
.y113{bottom:644.280000px;}
.yaa{bottom:653.820000px;}
.y16c{bottom:654.810000px;}
.yfd{bottom:655.980000px;}
.y61{bottom:658.680000px;}
.ye2{bottom:659.040000px;}
.y144{bottom:659.400000px;}
.y11{bottom:660.030000px;}
.y112{bottom:661.830000px;}
.y16b{bottom:672.360000px;}
.yfc{bottom:673.530000px;}
.y81{bottom:675.600000px;}
.ye1{bottom:676.590000px;}
.y143{bottom:676.950000px;}
.y111{bottom:679.470000px;}
.y18c{bottom:681.360000px;}
.y60{bottom:686.040000px;}
.yfb{bottom:691.080000px;}
.y80{bottom:693.240000px;}
.ye0{bottom:694.230000px;}
.y142{bottom:694.590000px;}
.y10{bottom:695.850000px;}
.y110{bottom:697.020000px;}
.yd1{bottom:698.550000px;}
.y16a{bottom:699.000000px;}
.yfa{bottom:708.720000px;}
.y7f{bottom:710.790000px;}
.ydf{bottom:711.780000px;}
.y141{bottom:712.140000px;}
.y10f{bottom:714.660000px;}
.yd0{bottom:716.190000px;}
.y169{bottom:716.550000px;}
.ya9{bottom:723.930000px;}
.y7e{bottom:728.430000px;}
.yf{bottom:731.850000px;}
.ycf{bottom:733.740000px;}
.y5f{bottom:734.730000px;}
.yf9{bottom:735.270000px;}
.ya6{bottom:738.150000px;}
.y10e{bottom:741.210000px;}
.y168{bottom:743.190000px;}
.y3c{bottom:747.330000px;}
.y140{bottom:747.690000px;}
.yce{bottom:751.290000px;}
.y7d{bottom:754.980000px;}
.y167{bottom:760.740000px;}
.y3b{bottom:764.880000px;}
.y13f{bottom:765.330000px;}
.ycd{bottom:768.930000px;}
.y5e{bottom:770.280000px;}
.yf8{bottom:770.910000px;}
.ye{bottom:771.630000px;}
.y10d{bottom:776.760000px;}
.y166{bottom:778.290000px;}
.yde{bottom:782.250000px;}
.y3a{bottom:782.520000px;}
.y13e{bottom:782.880000px;}
.ycc{bottom:786.480000px;}
.y18b{bottom:787.290000px;}
.y5d{bottom:787.920000px;}
.yd{bottom:789.630000px;}
.y7c{bottom:790.530000px;}
.ydd{bottom:794.310000px;}
.yf7{bottom:797.460000px;}
.y39{bottom:800.070000px;}
.y13d{bottom:800.520000px;}
.y165{bottom:804.930000px;}
.y5c{bottom:805.470000px;}
.yc{bottom:807.630000px;}
.y7b{bottom:808.170000px;}
.y10c{bottom:811.680000px;}
.y13c{bottom:818.070000px;}
.ycb{bottom:822.030000px;}
.ya3{bottom:822.390000px;}
.y164{bottom:822.480000px;}
.y5b{bottom:823.110000px;}
.y10b{bottom:823.740000px;}
.yb{bottom:825.630000px;}
.y38{bottom:826.620000px;}
.y18a{bottom:831.480000px;}
.yf6{bottom:833.010000px;}
.y13b{bottom:835.620000px;}
.yca{bottom:839.670000px;}
.ya{bottom:839.850000px;}
.y163{bottom:840.030000px;}
.y5a{bottom:840.660000px;}
.y7a{bottom:843.720000px;}
.y189{bottom:849.030000px;}
.y13a{bottom:853.260000px;}
.yc9{bottom:857.220000px;}
.y76{bottom:857.940000px;}
.y9{bottom:861.630000px;}
.y37{bottom:862.530000px;}
.y162{bottom:866.670000px;}
.y59{bottom:867.210000px;}
.yf5{bottom:867.930000px;}
.y139{bottom:870.810000px;}
.yc8{bottom:874.860000px;}
.y8{bottom:879.630000px;}
.yf4{bottom:879.990000px;}
.y161{bottom:884.220000px;}
.ya2{bottom:892.410000px;}
.y124{bottom:892.860000px;}
.y188{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y58{bottom:900.240000px;}
.y138{bottom:906.450000px;}
.ya1{bottom:909.960000px;}
.y123{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.y137{bottom:924.000000px;}
.y57{bottom:927.600000px;}
.y75{bottom:927.960000px;}
.y35{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y187{bottom:937.410000px;}
.y136{bottom:941.550000px;}
.ya0{bottom:945.150000px;}
.y74{bottom:945.600000px;}
.y160{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y56{bottom:954.870000px;}
.y186{bottom:954.960000px;}
.y135{bottom:959.190000px;}
.y73{bottom:963.150000px;}
.y122{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y9f{bottom:971.790000px;}
.y15f{bottom:972.600000px;}
.y134{bottom:976.740000px;}
.yc7{bottom:980.790000px;}
.y121{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y55{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y72{bottom:989.790000px;}
.y15e{bottom:990.150000px;}
.y133{bottom:994.290000px;}
.y120{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.y9e{bottom:1007.340000px;}
.y15d{bottom:1007.790000px;}
.y53{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.yc6{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.y9d{bottom:1024.920000px;}
.y71{bottom:1025.370000px;}
.y132{bottom:1029.960000px;}
.yc5{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.y52{bottom:1036.890000px;}
.y9c{bottom:1042.560000px;}
.y70{bottom:1042.920000px;}
.y185{bottom:1043.370000px;}
.y131{bottom:1047.510000px;}
.y11f{bottom:1051.560000px;}
.y15c{bottom:1051.920000px;}
.y184{bottom:1060.920000px;}
.y50{bottom:1064.250000px;}
.y9b{bottom:1069.110000px;}
.y6f{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y130{bottom:1074.420000px;}
.y11e{bottom:1078.110000px;}
.y15b{bottom:1078.560000px;}
.yc4{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y4e{bottom:1091.610000px;}
.y15a{bottom:1096.110000px;}
.y9a{bottom:1104.750000px;}
.y2d{bottom:1105.110000px;}
.y11d{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h1c{height:30.339844px;}
.h13{height:35.640000px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h1e{height:41.661211px;}
.h15{height:48.600000px;}
.h10{height:48.690000px;}
.h1a{height:48.720000px;}
.h14{height:50.667539px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h19{height:53.187539px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:59.973223px;}
.h1f{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h16{height:70.777617px;}
.h4{height:72.985430px;}
.h1b{height:81.027539px;}
.h17{height:82.551445px;}
.h1d{height:82.671445px;}
.h12{height:92.631445px;}
.h11{height:96.027539px;}
.h18{height:102.817617px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:116.910000px;}
.w8{width:125.820000px;}
.w3{width:127.080000px;}
.w9{width:127.650000px;}
.w7{width:136.470000px;}
.w6{width:148.950000px;}
.w5{width:161.190000px;}
.w4{width:184.620000px;}
.wa{width:437.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1b{left:37.080000px;}
.x1a{left:58.950000px;}
.x1{left:68.040000px;}
.x1c{left:70.290000px;}
.xe{left:75.869987px;}
.x1d{left:81.810000px;}
.x17{left:90.900000px;}
.x24{left:96.929987px;}
.x1e{left:105.840000px;}
.x2d{left:111.239987px;}
.x14{left:145.080000px;}
.x19{left:149.040000px;}
.x26{left:152.549987px;}
.x28{left:164.909987px;}
.x5{left:168.329987px;}
.x18{left:174.600000px;}
.x2a{left:178.949987px;}
.x2c{left:182.999987px;}
.x10{left:196.050000px;}
.x11{left:198.810000px;}
.x6{left:209.460000px;}
.x2{left:211.079987px;}
.x15{left:223.830000px;}
.x12{left:227.880000px;}
.x21{left:229.889987px;}
.x20{left:238.259987px;}
.xa{left:240.330000px;}
.x16{left:253.350000px;}
.xf{left:325.919987px;}
.x8{left:337.260000px;}
.xb{left:390.000000px;}
.x9{left:522.600000px;}
.xc{left:527.190000px;}
.x29{left:619.889987px;}
.x13{left:633.480000px;}
.x2b{left:643.559987px;}
.x27{left:652.559987px;}
.x1f{left:658.139987px;}
.x25{left:662.999987px;}
.x4{left:666.059987px;}
.xd{left:766.139987px;}
.x22{left:784.319987px;}
.x23{left:788.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-10.880000pt;}
.v13{vertical-align:-9.600000pt;}
.vc{vertical-align:-7.680000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.240000pt;}
.ve{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v10{vertical-align:16.000000pt;}
.vf{vertical-align:19.520000pt;}
.va{vertical-align:22.400000pt;}
.vb{vertical-align:23.680000pt;}
.vd{vertical-align:26.880000pt;}
.v7{vertical-align:29.440000pt;}
.v9{vertical-align:31.360000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.v12{vertical-align:42.560000pt;}
.ls37{letter-spacing:-0.395200pt;}
.ls3c{letter-spacing:-0.348267pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls45{letter-spacing:-0.158933pt;}
.ls38{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls42{letter-spacing:-0.085867pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.056533pt;}
.ls3d{letter-spacing:-0.034560pt;}
.ls35{letter-spacing:-0.033600pt;}
.ls3b{letter-spacing:-0.028160pt;}
.ls1d{letter-spacing:-0.009920pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.018133pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.053760pt;}
.ls21{letter-spacing:0.053867pt;}
.ls1e{letter-spacing:0.061867pt;}
.ls31{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.065920pt;}
.ls43{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls36{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.098880pt;}
.ls25{letter-spacing:0.102720pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.208640pt;}
.ls24{letter-spacing:0.222400pt;}
.ls39{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.723200pt;}
.ls32{letter-spacing:1.344000pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:1.600000pt;}
.ls33{letter-spacing:1.636800pt;}
.ls17{letter-spacing:1.682240pt;}
.ls18{letter-spacing:1.949440pt;}
.ls1f{letter-spacing:2.002240pt;}
.ls2f{letter-spacing:2.003200pt;}
.ls2d{letter-spacing:2.081280pt;}
.ls2e{letter-spacing:2.128320pt;}
.ls2c{letter-spacing:2.157760pt;}
.ls34{letter-spacing:2.250880pt;}
.ls20{letter-spacing:2.269440pt;}
.ls23{letter-spacing:2.322240pt;}
.ls14{letter-spacing:2.417280pt;}
.ls12{letter-spacing:3.923200pt;}
.ls13{letter-spacing:5.802240pt;}
.ls16{letter-spacing:11.763840pt;}
.ls26{letter-spacing:13.522240pt;}
.ls15{letter-spacing:13.789440pt;}
.ls27{letter-spacing:13.842240pt;}
.ls30{letter-spacing:17.402560pt;}
.ls40{letter-spacing:19.283200pt;}
.ls29{letter-spacing:29.520320pt;}
.ls28{letter-spacing:38.480320pt;}
.ls22{letter-spacing:39.120320pt;}
.ls3f{letter-spacing:42.423680pt;}
.ls3e{letter-spacing:44.243200pt;}
.ls1b{letter-spacing:52.640000pt;}
.ls3a{letter-spacing:71.863680pt;}
.ws21{word-spacing:-42.560000pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws23{word-spacing:-11.822933pt;}
.ws10{word-spacing:-11.818667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.774933pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.746880pt;}
.wsc{word-spacing:-11.700267pt;}
.ws22{word-spacing:-11.670933pt;}
.ws20{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1b{word-spacing:-8.318933pt;}
.ws11{word-spacing:-8.236800pt;}
.wsb{word-spacing:-7.603200pt;}
.ws1d{word-spacing:-7.040000pt;}
.ws19{word-spacing:-3.192000pt;}
.ws13{word-spacing:-2.872000pt;}
.wsf{word-spacing:-0.156480pt;}
.ws6{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.018560pt;}
.ws17{word-spacing:0.163520pt;}
.ws15{word-spacing:0.270187pt;}
.ws12{word-spacing:2.719680pt;}
.ws14{word-spacing:2.723520pt;}
.ws1e{word-spacing:2.779200pt;}
.ws1c{word-spacing:3.006720pt;}
.wsd{word-spacing:3.013120pt;}
.ws18{word-spacing:3.039680pt;}
.ws16{word-spacing:3.043520pt;}
.ws1a{word-spacing:3.141440pt;}
.ws4{word-spacing:3.826560pt;}
._15{margin-left:-4.738240pt;}
._11{margin-left:-3.366506pt;}
._b{margin-left:-2.298134pt;}
._0{margin-left:-1.029333pt;}
._3{width:0.928938pt;}
._7{width:1.856552pt;}
._6{width:3.106582pt;}
._c{width:4.061333pt;}
._14{width:4.969920pt;}
._9{width:6.057004pt;}
._2{width:7.013269pt;}
._1{width:8.014005pt;}
._8{width:9.036683pt;}
._5{width:10.243518pt;}
._4{width:11.301846pt;}
._a{width:12.772267pt;}
._e{width:13.894400pt;}
._f{width:15.103062pt;}
._10{width:16.063147pt;}
._d{width:17.528320pt;}
._1c{width:19.238400pt;}
._1f{width:20.277440pt;}
._18{width:21.405760pt;}
._1e{width:22.679680pt;}
._1a{width:25.223680pt;}
._1d{width:26.376107pt;}
._19{width:41.964053pt;}
._1b{width:43.393280pt;}
._17{width:45.200320pt;}
._12{width:61.964480pt;}
._16{width:103.578560pt;}
._13{width:180.243200pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:2.880000pt;}
.yb8{bottom:4.960000pt;}
.y4f{bottom:6.960000pt;}
.y54{bottom:6.986667pt;}
.y51{bottom:7.040000pt;}
.ya8{bottom:11.440000pt;}
.ya5{bottom:11.520000pt;}
.y8d{bottom:11.840000pt;}
.y79{bottom:13.440000pt;}
.yb7{bottom:15.226667pt;}
.yb4{bottom:18.266667pt;}
.y8c{bottom:19.040000pt;}
.yac{bottom:20.160000pt;}
.ya7{bottom:20.400000pt;}
.ya4{bottom:20.480000pt;}
.y97{bottom:20.560000pt;}
.y78{bottom:22.400000pt;}
.yb6{bottom:25.866667pt;}
.yab{bottom:26.880000pt;}
.y96{bottom:27.280000pt;}
.y95{bottom:30.560000pt;}
.y77{bottom:30.640000pt;}
.yb3{bottom:30.666667pt;}
.yb5{bottom:36.106667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y12f{bottom:104.026667pt;}
.ydc{bottom:109.146667pt;}
.y11c{bottom:110.186667pt;}
.y159{bottom:111.546667pt;}
.y99{bottom:115.546667pt;}
.y1a0{bottom:119.226667pt;}
.y12e{bottom:119.626667pt;}
.yc3{bottom:123.946667pt;}
.ydb{bottom:124.746667pt;}
.y158{bottom:127.226667pt;}
.y19f{bottom:134.826667pt;}
.y12d{bottom:135.226667pt;}
.y6e{bottom:135.546667pt;}
.y28{bottom:138.506667pt;}
.yc2{bottom:139.626667pt;}
.y11b{bottom:141.146667pt;}
.y98{bottom:147.226667pt;}
.y183{bottom:150.506667pt;}
.y157{bottom:150.826667pt;}
.y12c{bottom:150.906667pt;}
.y11a{bottom:151.866667pt;}
.y27{bottom:154.106667pt;}
.yc1{bottom:155.226667pt;}
.yda{bottom:156.426667pt;}
.y19e{bottom:158.506667pt;}
.y94{bottom:159.866667pt;}
.y4d{bottom:160.106667pt;}
.y182{bottom:166.106667pt;}
.y156{bottom:166.506667pt;}
.y6d{bottom:167.226667pt;}
.y26{bottom:169.786667pt;}
.yd9{bottom:172.026667pt;}
.y19d{bottom:174.106667pt;}
.y4c{bottom:175.786667pt;}
.y181{bottom:181.786667pt;}
.y12b{bottom:182.506667pt;}
.y6c{bottom:182.826667pt;}
.y25{bottom:185.386667pt;}
.yc0{bottom:186.826667pt;}
.yd8{bottom:187.626667pt;}
.y19c{bottom:189.786667pt;}
.y155{bottom:190.106667pt;}
.y24{bottom:200.986667pt;}
.yd7{bottom:203.306667pt;}
.y180{bottom:205.386667pt;}
.y154{bottom:205.706667pt;}
.y4b{bottom:207.386667pt;}
.ybf{bottom:210.506667pt;}
.y6b{bottom:211.466667pt;}
.y19b{bottom:213.386667pt;}
.y12a{bottom:213.546667pt;}
.y23{bottom:216.666667pt;}
.yd6{bottom:218.906667pt;}
.y153{bottom:221.386667pt;}
.y93{bottom:222.106667pt;}
.y4a{bottom:223.066667pt;}
.y129{bottom:224.266667pt;}
.y17f{bottom:228.986667pt;}
.y22{bottom:232.266667pt;}
.y49{bottom:238.666667pt;}
.ybe{bottom:242.426667pt;}
.yd5{bottom:242.586667pt;}
.y17e{bottom:244.666667pt;}
.y152{bottom:245.306667pt;}
.y21{bottom:247.866667pt;}
.yf3{bottom:248.026667pt;}
.y19a{bottom:252.666667pt;}
.y92{bottom:253.706667pt;}
.y48{bottom:254.266667pt;}
.y17d{bottom:260.266667pt;}
.y20{bottom:263.546667pt;}
.y199{bottom:268.266667pt;}
.y47{bottom:269.946667pt;}
.yd4{bottom:274.186667pt;}
.yf2{bottom:279.626667pt;}
.y17c{bottom:283.946667pt;}
.ybd{bottom:285.306667pt;}
.y91{bottom:285.386667pt;}
.y46{bottom:285.546667pt;}
.y1f{bottom:287.466667pt;}
.y151{bottom:288.186667pt;}
.y17b{bottom:299.546667pt;}
.ybc{bottom:300.986667pt;}
.yd3{bottom:305.226667pt;}
.y198{bottom:307.546667pt;}
.yf1{bottom:311.306667pt;}
.y150{bottom:312.106667pt;}
.y17a{bottom:315.146667pt;}
.yd2{bottom:315.946667pt;}
.ybb{bottom:316.586667pt;}
.y90{bottom:316.986667pt;}
.y45{bottom:317.226667pt;}
.y197{bottom:323.146667pt;}
.yf0{bottom:326.906667pt;}
.yba{bottom:329.226667pt;}
.y1e{bottom:330.346667pt;}
.y10a{bottom:331.786667pt;}
.y44{bottom:332.826667pt;}
.y179{bottom:338.826667pt;}
.yef{bottom:342.586667pt;}
.y14f{bottom:344.986667pt;}
.y1d{bottom:346.266667pt;}
.y196{bottom:346.826667pt;}
.y43{bottom:348.426667pt;}
.y8f{bottom:348.586667pt;}
.y178{bottom:354.426667pt;}
.yee{bottom:358.186667pt;}
.y14e{bottom:360.666667pt;}
.y8b{bottom:361.226667pt;}
.y195{bottom:362.426667pt;}
.y109{bottom:363.466667pt;}
.y42{bottom:364.106667pt;}
.yed{bottom:373.786667pt;}
.y177{bottom:378.106667pt;}
.y108{bottom:379.066667pt;}
.y1c{bottom:379.226667pt;}
.y41{bottom:379.706667pt;}
.y14d{bottom:384.586667pt;}
.y6a{bottom:388.426667pt;}
.yec{bottom:389.466667pt;}
.yb9{bottom:391.466667pt;}
.y176{bottom:393.706667pt;}
.y107{bottom:394.746667pt;}
.y1b{bottom:394.826667pt;}
.y40{bottom:395.386667pt;}
.y194{bottom:401.706667pt;}
.y69{bottom:404.106667pt;}
.y175{bottom:409.306667pt;}
.y106{bottom:410.346667pt;}
.y1a{bottom:410.426667pt;}
.y8a{bottom:411.866667pt;}
.y193{bottom:417.306667pt;}
.y14c{bottom:417.813333pt;}
.y3f{bottom:419.013333pt;}
.y68{bottom:419.733333pt;}
.yeb{bottom:421.093333pt;}
.y105{bottom:425.973333pt;}
.y19{bottom:426.133333pt;}
.y174{bottom:433.013333pt;}
.y67{bottom:435.413333pt;}
.yea{bottom:436.773333pt;}
.y192{bottom:441.013333pt;}
.y18{bottom:441.733333pt;}
.y89{bottom:443.493333pt;}
.y173{bottom:448.613333pt;}
.y3e{bottom:450.613333pt;}
.ye9{bottom:452.373333pt;}
.y128{bottom:455.253333pt;}
.y191{bottom:456.613333pt;}
.y17{bottom:457.413333pt;}
.y104{bottom:457.653333pt;}
.y66{bottom:459.013333pt;}
.y88{bottom:459.173333pt;}
.y14b{bottom:460.693333pt;}
.y119{bottom:462.933333pt;}
.y172{bottom:464.293333pt;}
.yb2{bottom:466.373333pt;}
.ye8{bottom:467.973333pt;}
.y16{bottom:473.013333pt;}
.y103{bottom:473.253333pt;}
.y14a{bottom:476.293333pt;}
.y118{bottom:478.533333pt;}
.y3d{bottom:479.253333pt;}
.y190{bottom:480.293333pt;}
.yb1{bottom:482.053333pt;}
.ye7{bottom:483.653333pt;}
.y127{bottom:486.933333pt;}
.y171{bottom:487.893333pt;}
.y65{bottom:488.293333pt;}
.y15{bottom:488.613333pt;}
.y102{bottom:488.933333pt;}
.y87{bottom:490.773333pt;}
.y149{bottom:491.973333pt;}
.y117{bottom:494.133333pt;}
.y18f{bottom:495.893333pt;}
.ye6{bottom:499.253333pt;}
.y170{bottom:503.493333pt;}
.y14{bottom:504.293333pt;}
.y101{bottom:504.533333pt;}
.yb0{bottom:505.653333pt;}
.y86{bottom:506.453333pt;}
.y148{bottom:507.573333pt;}
.y116{bottom:509.813333pt;}
.y18e{bottom:511.493333pt;}
.y64{bottom:512.613333pt;}
.ye5{bottom:514.933333pt;}
.y126{bottom:517.893333pt;}
.y13{bottom:519.893333pt;}
.y85{bottom:522.053333pt;}
.y147{bottom:523.253333pt;}
.y115{bottom:525.413333pt;}
.y16f{bottom:527.173333pt;}
.y125{bottom:528.613333pt;}
.ye4{bottom:530.533333pt;}
.y100{bottom:536.133333pt;}
.y63{bottom:536.933333pt;}
.yaf{bottom:537.333333pt;}
.y84{bottom:537.653333pt;}
.y16e{bottom:542.773333pt;}
.y12{bottom:543.813333pt;}
.yff{bottom:551.813333pt;}
.yae{bottom:552.933333pt;}
.y83{bottom:553.333333pt;}
.ye3{bottom:554.133333pt;}
.y146{bottom:554.853333pt;}
.y114{bottom:557.093333pt;}
.y16d{bottom:558.453333pt;}
.y62{bottom:561.253333pt;}
.y18d{bottom:566.453333pt;}
.yfe{bottom:567.413333pt;}
.yad{bottom:568.533333pt;}
.y82{bottom:568.933333pt;}
.y145{bottom:570.453333pt;}
.y113{bottom:572.693333pt;}
.yaa{bottom:581.173333pt;}
.y16c{bottom:582.053333pt;}
.yfd{bottom:583.093333pt;}
.y61{bottom:585.493333pt;}
.ye2{bottom:585.813333pt;}
.y144{bottom:586.133333pt;}
.y11{bottom:586.693333pt;}
.y112{bottom:588.293333pt;}
.y16b{bottom:597.653333pt;}
.yfc{bottom:598.693333pt;}
.y81{bottom:600.533333pt;}
.ye1{bottom:601.413333pt;}
.y143{bottom:601.733333pt;}
.y111{bottom:603.973333pt;}
.y18c{bottom:605.653333pt;}
.y60{bottom:609.813333pt;}
.yfb{bottom:614.293333pt;}
.y80{bottom:616.213333pt;}
.ye0{bottom:617.093333pt;}
.y142{bottom:617.413333pt;}
.y10{bottom:618.533333pt;}
.y110{bottom:619.573333pt;}
.yd1{bottom:620.933333pt;}
.y16a{bottom:621.333333pt;}
.yfa{bottom:629.973333pt;}
.y7f{bottom:631.813333pt;}
.ydf{bottom:632.693333pt;}
.y141{bottom:633.013333pt;}
.y10f{bottom:635.253333pt;}
.yd0{bottom:636.613333pt;}
.y169{bottom:636.933333pt;}
.ya9{bottom:643.493333pt;}
.y7e{bottom:647.493333pt;}
.yf{bottom:650.533333pt;}
.ycf{bottom:652.213333pt;}
.y5f{bottom:653.093333pt;}
.yf9{bottom:653.573333pt;}
.ya6{bottom:656.133333pt;}
.y10e{bottom:658.853333pt;}
.y168{bottom:660.613333pt;}
.y3c{bottom:664.293333pt;}
.y140{bottom:664.613333pt;}
.yce{bottom:667.813333pt;}
.y7d{bottom:671.093333pt;}
.y167{bottom:676.213333pt;}
.y3b{bottom:679.893333pt;}
.y13f{bottom:680.293333pt;}
.ycd{bottom:683.493333pt;}
.y5e{bottom:684.693333pt;}
.yf8{bottom:685.253333pt;}
.ye{bottom:685.893333pt;}
.y10d{bottom:690.453333pt;}
.y166{bottom:691.813333pt;}
.yde{bottom:695.333333pt;}
.y3a{bottom:695.573333pt;}
.y13e{bottom:695.893333pt;}
.ycc{bottom:699.093333pt;}
.y18b{bottom:699.813333pt;}
.y5d{bottom:700.373333pt;}
.yd{bottom:701.893333pt;}
.y7c{bottom:702.693333pt;}
.ydd{bottom:706.053333pt;}
.yf7{bottom:708.853333pt;}
.y39{bottom:711.173333pt;}
.y13d{bottom:711.573333pt;}
.y165{bottom:715.493333pt;}
.y5c{bottom:715.973333pt;}
.yc{bottom:717.893333pt;}
.y7b{bottom:718.373333pt;}
.y10c{bottom:721.493333pt;}
.y13c{bottom:727.173333pt;}
.ycb{bottom:730.693333pt;}
.ya3{bottom:731.013333pt;}
.y164{bottom:731.093333pt;}
.y5b{bottom:731.653333pt;}
.y10b{bottom:732.213333pt;}
.yb{bottom:733.893333pt;}
.y38{bottom:734.773333pt;}
.y18a{bottom:739.093333pt;}
.yf6{bottom:740.453333pt;}
.y13b{bottom:742.773333pt;}
.yca{bottom:746.373333pt;}
.ya{bottom:746.533333pt;}
.y163{bottom:746.693333pt;}
.y5a{bottom:747.253333pt;}
.y7a{bottom:749.973333pt;}
.y189{bottom:754.693333pt;}
.y13a{bottom:758.453333pt;}
.yc9{bottom:761.973333pt;}
.y76{bottom:762.613333pt;}
.y9{bottom:765.893333pt;}
.y37{bottom:766.693333pt;}
.y162{bottom:770.373333pt;}
.y59{bottom:770.853333pt;}
.yf5{bottom:771.493333pt;}
.y139{bottom:774.053333pt;}
.yc8{bottom:777.653333pt;}
.y8{bottom:781.893333pt;}
.yf4{bottom:782.213333pt;}
.y161{bottom:785.973333pt;}
.ya2{bottom:793.253333pt;}
.y124{bottom:793.653333pt;}
.y188{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y58{bottom:800.213333pt;}
.y138{bottom:805.733333pt;}
.ya1{bottom:808.853333pt;}
.y123{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.y137{bottom:821.333333pt;}
.y57{bottom:824.533333pt;}
.y75{bottom:824.853333pt;}
.y35{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y187{bottom:833.253333pt;}
.y136{bottom:836.933333pt;}
.ya0{bottom:840.133333pt;}
.y74{bottom:840.533333pt;}
.y160{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y56{bottom:848.773333pt;}
.y186{bottom:848.853333pt;}
.y135{bottom:852.613333pt;}
.y73{bottom:856.133333pt;}
.y122{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y9f{bottom:863.813333pt;}
.y15f{bottom:864.533333pt;}
.y134{bottom:868.213333pt;}
.yc7{bottom:871.813333pt;}
.y121{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y55{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y72{bottom:879.813333pt;}
.y15e{bottom:880.133333pt;}
.y133{bottom:883.813333pt;}
.y120{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.y9e{bottom:895.413333pt;}
.y15d{bottom:895.813333pt;}
.y53{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.yc6{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.y9d{bottom:911.040000pt;}
.y71{bottom:911.440000pt;}
.y132{bottom:915.520000pt;}
.yc5{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.y52{bottom:921.680000pt;}
.y9c{bottom:926.720000pt;}
.y70{bottom:927.040000pt;}
.y185{bottom:927.440000pt;}
.y131{bottom:931.120000pt;}
.y11f{bottom:934.720000pt;}
.y15c{bottom:935.040000pt;}
.y184{bottom:943.040000pt;}
.y50{bottom:946.000000pt;}
.y9b{bottom:950.320000pt;}
.y6f{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y130{bottom:955.040000pt;}
.y11e{bottom:958.320000pt;}
.y15b{bottom:958.720000pt;}
.yc4{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y4e{bottom:970.320000pt;}
.y15a{bottom:974.320000pt;}
.y9a{bottom:982.000000pt;}
.y2d{bottom:982.320000pt;}
.y11d{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h1c{height:26.968750pt;}
.h13{height:31.680000pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h1e{height:37.032187pt;}
.h15{height:43.200000pt;}
.h10{height:43.280000pt;}
.h1a{height:43.306667pt;}
.h14{height:45.037812pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h19{height:47.277812pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:53.309531pt;}
.h1f{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h16{height:62.913437pt;}
.h4{height:64.875937pt;}
.h1b{height:72.024479pt;}
.h17{height:73.379063pt;}
.h1d{height:73.485729pt;}
.h12{height:82.339063pt;}
.h11{height:85.357812pt;}
.h18{height:91.393437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:103.920000pt;}
.w8{width:111.840000pt;}
.w3{width:112.960000pt;}
.w9{width:113.466667pt;}
.w7{width:121.306667pt;}
.w6{width:132.400000pt;}
.w5{width:143.280000pt;}
.w4{width:164.106667pt;}
.wa{width:388.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1b{left:32.960000pt;}
.x1a{left:52.400000pt;}
.x1{left:60.480000pt;}
.x1c{left:62.480000pt;}
.xe{left:67.439988pt;}
.x1d{left:72.720000pt;}
.x17{left:80.800000pt;}
.x24{left:86.159988pt;}
.x1e{left:94.080000pt;}
.x2d{left:98.879988pt;}
.x14{left:128.960000pt;}
.x19{left:132.480000pt;}
.x26{left:135.599988pt;}
.x28{left:146.586655pt;}
.x5{left:149.626655pt;}
.x18{left:155.200000pt;}
.x2a{left:159.066655pt;}
.x2c{left:162.666655pt;}
.x10{left:174.266667pt;}
.x11{left:176.720000pt;}
.x6{left:186.186667pt;}
.x2{left:187.626655pt;}
.x15{left:198.960000pt;}
.x12{left:202.560000pt;}
.x21{left:204.346655pt;}
.x20{left:211.786655pt;}
.xa{left:213.626667pt;}
.x16{left:225.200000pt;}
.xf{left:289.706655pt;}
.x8{left:299.786667pt;}
.xb{left:346.666667pt;}
.x9{left:464.533333pt;}
.xc{left:468.613333pt;}
.x29{left:551.013322pt;}
.x13{left:563.093333pt;}
.x2b{left:572.053322pt;}
.x27{left:580.053322pt;}
.x1f{left:585.013322pt;}
.x25{left:589.333322pt;}
.x4{left:592.053322pt;}
.xd{left:681.013322pt;}
.x22{left:697.173322pt;}
.x23{left:701.013322pt;}
.x3{left:711.413322pt;}
}




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