
    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_1ab40772e221fdd85649eb1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.759766;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_1ac1b4a81a39c5875a7b077f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759766;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_7855c1cb884be7a3f9e31284.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759803;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_2ee19e8b20506b297ffef602.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_2a12210243dae0c9d90df088.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_647310029f1e216f33e9a204.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_e52aa6914b7b9aa290f5bf52.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_920d2fe90ed938778e5b4403.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776855;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_49aacc2fc2203e307e0d48d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850098;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_1c66e3b307528e848fd1b2f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_60f551ad8d4687e7aee07396.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7938426fdd40ccf37a5e4378.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f775e183ddd218e02741fb51.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_248206ca6f374d6c5c61565c.woff2')format("woff");}.fff{font-family:fff;line-height:0.937012;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:ff10;src:url('chunks/assets/font_a355f9696d1d93c5707e9405.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3a714b520456f13f55f08ba7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e84659794c928cefac2d8a1c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.310800px;}
.ls10{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.193200px;}
.ls14{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.164400px;}
.ls3{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.037440px;}
.ls15{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000003px;}
.lsc{letter-spacing:0.031680px;}
.ls17{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.075000px;}
.lse{letter-spacing:0.086400px;}
.ls0{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.244800px;}
.ls1a{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.401760px;}
.ls1c{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.756000px;}
.ls1b{letter-spacing:1.008000px;}
.ls1d{letter-spacing:384.660000px;}
.lsf{letter-spacing:2871.384000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-84.240000px;}
.ws1a{word-spacing:-72.000000px;}
.wsc{word-spacing:-63.360000px;}
.wsd{word-spacing:-38.160000px;}
.ws0{word-spacing:-35.856000px;}
.ws1{word-spacing:-28.800000px;}
.ws14{word-spacing:-20.340000px;}
.ws16{word-spacing:-20.160000px;}
.ws18{word-spacing:-19.038240px;}
.ws19{word-spacing:-16.272000px;}
.ws1c{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.215040px;}
.wsb{word-spacing:-15.056640px;}
.ws4{word-spacing:-15.045240px;}
.ws9{word-spacing:-15.001920px;}
.ws5{word-spacing:-14.932800px;}
.ws6{word-spacing:-14.837640px;}
.wsa{word-spacing:-14.805840px;}
.ws3{word-spacing:-14.777040px;}
.ws8{word-spacing:-14.659440px;}
.ws11{word-spacing:-12.366000px;}
.wse{word-spacing:-12.204000px;}
.ws15{word-spacing:-12.186000px;}
.ws13{word-spacing:-12.024000px;}
.ws12{word-spacing:-11.934000px;}
.wsf{word-spacing:-11.898000px;}
.ws10{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:710.760000px;}
._3{margin-left:-15.144000px;}
._4{margin-left:-6.576000px;}
._0{margin-left:-1.206000px;}
._1{width:1.026000px;}
._5{width:1417.980000px;}
._2{width:2908.104000px;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(0,112,192);}
.fc8{color:rgb(75,75,77);}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(0,132,117);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(68,68,68);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs9{font-size:2.880000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs8{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fsa{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.594000px;}
.y5a{bottom:3.600000px;}
.yce{bottom:3.645000px;}
.yea{bottom:4.185000px;}
.y28{bottom:4.500000px;}
.y123{bottom:4.860000px;}
.y129{bottom:4.890000px;}
.ya2{bottom:5.220000px;}
.y121{bottom:5.760000px;}
.y185{bottom:5.796000px;}
.y12b{bottom:5.940000px;}
.y100{bottom:6.120000px;}
.y120{bottom:6.300000px;}
.y184{bottom:6.336000px;}
.yd{bottom:6.480000px;}
.yb{bottom:7.020000px;}
.y109{bottom:8.100000px;}
.y23{bottom:8.280000px;}
.y4f{bottom:8.820000px;}
.y96{bottom:10.440000px;}
.y50{bottom:10.620000px;}
.yf1{bottom:11.340000px;}
.y54{bottom:12.060000px;}
.y30{bottom:13.320000px;}
.y11{bottom:14.940000px;}
.y102{bottom:16.920000px;}
.y4d{bottom:17.460000px;}
.y107{bottom:18.000000px;}
.y9f{bottom:18.360000px;}
.y51{bottom:18.585000px;}
.y68{bottom:19.980000px;}
.yc1{bottom:20.010000px;}
.ydb{bottom:20.154000px;}
.y9d{bottom:20.160000px;}
.y165{bottom:22.680000px;}
.yf5{bottom:22.860000px;}
.ye6{bottom:23.220000px;}
.y5{bottom:23.400000px;}
.y13c{bottom:24.510000px;}
.y150{bottom:25.734000px;}
.y13a{bottom:25.740000px;}
.y1b{bottom:26.280000px;}
.yeb{bottom:26.865000px;}
.ya3{bottom:27.540000px;}
.y92{bottom:27.900000px;}
.y144{bottom:30.090000px;}
.y9{bottom:31.140000px;}
.y1f{bottom:31.680000px;}
.y1d{bottom:31.890000px;}
.y4c{bottom:32.445000px;}
.yec{bottom:32.985000px;}
.y97{bottom:33.120000px;}
.y17{bottom:35.100000px;}
.yf{bottom:36.180000px;}
.y52{bottom:36.405000px;}
.ya{bottom:37.620000px;}
.y98{bottom:39.240000px;}
.y25{bottom:39.600000px;}
.y22{bottom:40.500000px;}
.y13{bottom:40.680000px;}
.y15{bottom:41.625000px;}
.y19{bottom:44.820000px;}
.y8{bottom:46.980000px;}
.y15c{bottom:47.880000px;}
.y181{bottom:48.780000px;}
.y53{bottom:50.265000px;}
.y170{bottom:50.400000px;}
.y136{bottom:51.660000px;}
.y147{bottom:51.690000px;}
.y13e{bottom:52.560000px;}
.y173{bottom:53.685000px;}
.y4e{bottom:54.045000px;}
.y55{bottom:54.585000px;}
.y125{bottom:54.900000px;}
.y126{bottom:55.980000px;}
.y172{bottom:58.365000px;}
.y76{bottom:61.050000px;}
.y7{bottom:62.820000px;}
.y14f{bottom:68.754000px;}
.y164{bottom:69.480000px;}
.y139{bottom:69.870000px;}
.y24{bottom:70.020000px;}
.y167{bottom:74.880000px;}
.y133{bottom:75.060000px;}
.y6{bottom:78.660000px;}
.y4b{bottom:79.965000px;}
.y16a{bottom:90.720000px;}
.y137{bottom:92.160000px;}
.y135{bottom:95.760000px;}
.y146{bottom:95.790000px;}
.y141{bottom:95.805000px;}
.ya9{bottom:102.420000px;}
.y56{bottom:102.600000px;}
.y45{bottom:106.380000px;}
.y14e{bottom:113.574000px;}
.y163{bottom:113.610000px;}
.y138{bottom:116.670000px;}
.y16f{bottom:116.820000px;}
.y162{bottom:117.390000px;}
.y26{bottom:120.600000px;}
.ydc{bottom:121.680000px;}
.y49{bottom:122.580000px;}
.y7c{bottom:124.920000px;}
.y6a{bottom:128.160000px;}
.ybd{bottom:130.860000px;}
.y183{bottom:131.940000px;}
.y149{bottom:138.636000px;}
.yda{bottom:140.796000px;}
.y16c{bottom:142.236000px;}
.y134{bottom:142.380000px;}
.y145{bottom:142.410000px;}
.y132{bottom:142.560000px;}
.y143{bottom:142.590000px;}
.y140{bottom:142.605000px;}
.y7a{bottom:147.276000px;}
.yac{bottom:154.980000px;}
.y161{bottom:160.410000px;}
.y16b{bottom:167.430000px;}
.y79{bottom:169.590000px;}
.yc9{bottom:174.090000px;}
.yd9{bottom:174.630000px;}
.y117{bottom:175.710000px;}
.y154{bottom:176.034000px;}
.y59{bottom:178.590000px;}
.y14d{bottom:180.894000px;}
.y48{bottom:182.010000px;}
.y182{bottom:185.970000px;}
.y104{bottom:187.590000px;}
.y78{bottom:191.910000px;}
.yd8{bottom:193.710000px;}
.y116{bottom:196.770000px;}
.y15f{bottom:201.465000px;}
.yd7{bottom:212.970000px;}
.y77{bottom:214.410000px;}
.y3c{bottom:217.110000px;}
.y153{bottom:222.834000px;}
.y169{bottom:223.770000px;}
.y180{bottom:225.030000px;}
.y14c{bottom:225.714000px;}
.y15b{bottom:227.745000px;}
.y131{bottom:230.430000px;}
.y103{bottom:231.510000px;}
.yd6{bottom:232.230000px;}
.y69{bottom:236.730000px;}
.y15e{bottom:248.265000px;}
.yd5{bottom:251.310000px;}
.y101{bottom:253.830000px;}
.y75{bottom:259.050000px;}
.y152{bottom:266.979000px;}
.y14b{bottom:268.599000px;}
.yd4{bottom:270.570000px;}
.y15a{bottom:272.565000px;}
.y3b{bottom:276.150000px;}
.y115{bottom:280.650000px;}
.y74{bottom:281.370000px;}
.yd3{bottom:289.830000px;}
.y15d{bottom:292.365000px;}
.y17f{bottom:294.330000px;}
.y158{bottom:296.145000px;}
.yff{bottom:297.750000px;}
.y73{bottom:303.690000px;}
.yd2{bottom:308.910000px;}
.y151{bottom:313.599000px;}
.y14a{bottom:313.779000px;}
.y159{bottom:316.485000px;}
.y114{bottom:322.770000px;}
.y72{bottom:326.010000px;}
.yd1{bottom:328.170000px;}
.y3a{bottom:335.190000px;}
.y57{bottom:336.855000px;}
.y157{bottom:338.985000px;}
.y17e{bottom:344.370000px;}
.yd0{bottom:347.430000px;}
.y71{bottom:348.510000px;}
.y168{bottom:360.930000px;}
.y113{bottom:364.710000px;}
.ycf{bottom:366.510000px;}
.y70{bottom:370.830000px;}
.ya7{bottom:377.850000px;}
.ycd{bottom:385.770000px;}
.y17d{bottom:387.210000px;}
.y6f{bottom:393.195000px;}
.y130{bottom:394.455000px;}
.ya6{bottom:401.115000px;}
.y166{bottom:401.295000px;}
.ycc{bottom:405.075000px;}
.y6e{bottom:415.515000px;}
.ycb{bottom:424.155000px;}
.yaa{bottom:429.195000px;}
.y17c{bottom:430.275000px;}
.y9c{bottom:434.775000px;}
.y6d{bottom:437.835000px;}
.y47{bottom:438.015000px;}
.yca{bottom:443.415000px;}
.y12f{bottom:445.575000px;}
.ya5{bottom:457.095000px;}
.y6c{bottom:460.155000px;}
.ybc{bottom:462.675000px;}
.y39{bottom:464.475000px;}
.y17b{bottom:473.295000px;}
.y148{bottom:473.835000px;}
.ya4{bottom:479.415000px;}
.yc8{bottom:481.755000px;}
.y6b{bottom:482.655000px;}
.y38{bottom:487.695000px;}
.y46{bottom:489.675000px;}
.yc7{bottom:501.015000px;}
.ya1{bottom:501.735000px;}
.y58{bottom:504.975000px;}
.y37{bottom:510.915000px;}
.y17a{bottom:517.215000px;}
.y21{bottom:520.095000px;}
.yc6{bottom:520.275000px;}
.y9e{bottom:524.055000px;}
.y12e{bottom:529.995000px;}
.y36{bottom:534.315000px;}
.y67{bottom:538.635000px;}
.ya0{bottom:546.555000px;}
.y20{bottom:553.755000px;}
.yc5{bottom:553.935000px;}
.y12d{bottom:556.455000px;}
.y35{bottom:557.535000px;}
.y66{bottom:560.955000px;}
.y160{bottom:565.275000px;}
.y95{bottom:572.655000px;}
.yc4{bottom:573.195000px;}
.y34{bottom:580.755000px;}
.y12c{bottom:582.735000px;}
.y65{bottom:583.275000px;}
.y179{bottom:583.815000px;}
.y1e{bottom:587.595000px;}
.yc3{bottom:592.275000px;}
.y9b{bottom:595.875000px;}
.y33{bottom:603.975000px;}
.y64{bottom:605.595000px;}
.y12a{bottom:609.195000px;}
.yc2{bottom:611.535000px;}
.y9a{bottom:618.195000px;}
.y32{bottom:627.195000px;}
.y63{bottom:628.095000px;}
.y178{bottom:628.815000px;}
.yc0{bottom:630.795000px;}
.y128{bottom:635.475000px;}
.y142{bottom:637.995000px;}
.y1c{bottom:638.175000px;}
.y99{bottom:640.725000px;}
.y31{bottom:650.445000px;}
.y91{bottom:663.045000px;}
.ybf{bottom:664.485000px;}
.y62{bottom:672.765000px;}
.y44{bottom:673.305000px;}
.y2f{bottom:673.845000px;}
.ybe{bottom:683.565000px;}
.y94{bottom:686.265000px;}
.y127{bottom:686.805000px;}
.y1a{bottom:688.785000px;}
.y61{bottom:695.085000px;}
.y43{bottom:702.825000px;}
.y2e{bottom:703.725000px;}
.y93{bottom:708.585000px;}
.y60{bottom:717.405000px;}
.y177{bottom:717.585000px;}
.y2d{bottom:726.945000px;}
.y124{bottom:727.125000px;}
.y90{bottom:730.905000px;}
.y18{bottom:733.785000px;}
.yf8{bottom:734.505000px;}
.yab{bottom:736.485000px;}
.y5f{bottom:739.725000px;}
.y156{bottom:747.105000px;}
.y2c{bottom:750.165000px;}
.y8f{bottom:753.225000px;}
.y42{bottom:761.865000px;}
.y5e{bottom:762.225000px;}
.y176{bottom:763.485000px;}
.yf0{bottom:768.165000px;}
.ybb{bottom:770.325000px;}
.y4{bottom:772.485000px;}
.y2b{bottom:773.385000px;}
.y8e{bottom:775.725000px;}
.y5d{bottom:784.545000px;}
.yf7{bottom:787.425000px;}
.yba{bottom:789.405000px;}
.y41{bottom:791.385000px;}
.y2a{bottom:796.605000px;}
.y3{bottom:797.145000px;}
.y16{bottom:797.505000px;}
.y8d{bottom:798.045000px;}
.y13f{bottom:802.005000px;}
.y122{bottom:803.625000px;}
.y175{bottom:804.885000px;}
.yf6{bottom:806.685000px;}
.y5c{bottom:806.865000px;}
.yb9{bottom:808.665000px;}
.y108{bottom:814.245000px;}
.y29{bottom:819.825000px;}
.y8c{bottom:820.365000px;}
.y112{bottom:821.265000px;}
.yf4{bottom:825.765000px;}
.yb8{bottom:827.925000px;}
.y5b{bottom:829.185000px;}
.y11f{bottom:829.905000px;}
.y174{bottom:830.085000px;}
.y8b{bottom:842.685000px;}
.y106{bottom:843.405000px;}
.y27{bottom:843.945000px;}
.yf2{bottom:846.645000px;}
.yb7{bottom:847.005000px;}
.y111{bottom:849.525000px;}
.y40{bottom:850.425000px;}
.y14{bottom:851.505000px;}
.y11d{bottom:860.685000px;}
.y8a{bottom:865.005000px;}
.yf3{bottom:865.905000px;}
.yb6{bottom:866.265000px;}
.y171{bottom:872.925000px;}
.y4a{bottom:874.725000px;}
.yfe{bottom:877.965000px;}
.y3f{bottom:879.945000px;}
.y110{bottom:880.485000px;}
.y11e{bottom:884.625000px;}
.yb5{bottom:885.525000px;}
.y89{bottom:887.325000px;}
.ye9{bottom:888.405000px;}
.yfd{bottom:902.490000px;}
.y11c{bottom:902.670000px;}
.yb4{bottom:904.650000px;}
.yef{bottom:908.430000px;}
.y3e{bottom:909.510000px;}
.y88{bottom:909.870000px;}
.y10f{bottom:911.670000px;}
.yb3{bottom:923.910000px;}
.yfc{bottom:927.150000px;}
.yee{bottom:927.690000px;}
.y87{bottom:932.190000px;}
.y12{bottom:932.550000px;}
.y10e{bottom:942.630000px;}
.yb2{bottom:943.170000px;}
.yed{bottom:946.770000px;}
.y16e{bottom:951.630000px;}
.yfb{bottom:951.810000px;}
.y86{bottom:954.510000px;}
.yb1{bottom:962.250000px;}
.ye5{bottom:966.030000px;}
.y13d{bottom:966.210000px;}
.y10d{bottom:972.690000px;}
.yfa{bottom:976.290000px;}
.y85{bottom:976.830000px;}
.yb0{bottom:981.510000px;}
.ye8{bottom:986.010000px;}
.y10{bottom:992.130000px;}
.y105{bottom:996.630000px;}
.y84{bottom:999.150000px;}
.yaf{bottom:1000.770000px;}
.yf9{bottom:1000.950000px;}
.y10c{bottom:1001.130000px;}
.ye7{bottom:1005.090000px;}
.yae{bottom:1019.850000px;}
.y83{bottom:1021.470000px;}
.y10b{bottom:1022.910000px;}
.ye4{bottom:1024.350000px;}
.ye{bottom:1025.970000px;}
.yad{bottom:1039.110000px;}
.ye3{bottom:1043.610000px;}
.y82{bottom:1043.970000px;}
.y10a{bottom:1057.290000px;}
.ya8{bottom:1059.090000px;}
.ye2{bottom:1062.690000px;}
.y81{bottom:1066.290000px;}
.y11b{bottom:1076.730000px;}
.yc{bottom:1081.050000px;}
.ye1{bottom:1081.950000px;}
.y80{bottom:1088.610000px;}
.y11a{bottom:1097.790000px;}
.ye0{bottom:1101.210000px;}
.y155{bottom:1107.690000px;}
.y7f{bottom:1110.930000px;}
.y119{bottom:1118.850000px;}
.ydf{bottom:1120.290000px;}
.y13b{bottom:1130.190000px;}
.y7e{bottom:1133.250000px;}
.y16d{bottom:1137.390000px;}
.yde{bottom:1139.550000px;}
.y7d{bottom:1155.600000px;}
.ydd{bottom:1158.840000px;}
.y2{bottom:1159.200000px;}
.y118{bottom:1160.820000px;}
.y3d{bottom:1162.260000px;}
.y1{bottom:1202.400000px;}
.h42{height:18.360000px;}
.h43{height:18.396000px;}
.h41{height:18.540000px;}
.h48{height:18.576000px;}
.h4a{height:19.260000px;}
.h4c{height:19.296000px;}
.h50{height:20.160000px;}
.h2f{height:21.600000px;}
.h31{height:21.636000px;}
.h4f{height:21.780000px;}
.h18{height:22.500000px;}
.h1a{height:22.536000px;}
.h5e{height:22.860000px;}
.h3e{height:23.040000px;}
.h53{height:23.076000px;}
.h52{height:23.220000px;}
.h16{height:23.580000px;}
.h3b{height:25.380000px;}
.h5c{height:25.740000px;}
.h70{height:25.776000px;}
.h19{height:28.980000px;}
.h8{height:30.600000px;}
.hc{height:31.500000px;}
.h32{height:32.940000px;}
.h46{height:32.976000px;}
.h44{height:33.120000px;}
.h6d{height:40.500000px;}
.h3d{height:41.000977px;}
.h4e{height:41.040000px;}
.h12{height:42.840000px;}
.h54{height:43.200000px;}
.h2{height:44.820000px;}
.h55{height:45.000000px;}
.h61{height:45.576000px;}
.h5{height:45.720703px;}
.h56{height:45.900000px;}
.h6{height:47.520000px;}
.h3a{height:47.880000px;}
.h14{height:48.240000px;}
.h13{height:48.456000px;}
.he{height:50.845430px;}
.h10{height:51.660000px;}
.ha{height:52.740000px;}
.h1e{height:53.398125px;}
.h30{height:53.709961px;}
.h3{height:54.000000px;}
.h2b{height:55.291992px;}
.h29{height:55.291999px;}
.h25{height:55.292011px;}
.h2a{height:55.292013px;}
.h23{height:55.292024px;}
.h24{height:55.292033px;}
.h27{height:55.292037px;}
.h26{height:55.292038px;}
.h28{height:55.292043px;}
.h15{height:55.825312px;}
.h51{height:56.880000px;}
.hd{height:57.420000px;}
.h49{height:57.600000px;}
.h6e{height:60.679688px;}
.h7{height:60.960938px;}
.h11{height:61.380000px;}
.h22{height:61.423863px;}
.h1f{height:63.019687px;}
.h1c{height:64.875938px;}
.hb{height:65.884219px;}
.h1b{height:66.082500px;}
.h3c{height:66.240000px;}
.h6f{height:66.960000px;}
.h35{height:67.140000px;}
.h17{height:67.824844px;}
.h67{height:68.076000px;}
.h58{height:69.086250px;}
.h63{height:71.613281px;}
.h5d{height:73.080000px;}
.h21{height:74.004654px;}
.h59{height:75.093750px;}
.h6c{height:76.536000px;}
.h4b{height:76.896000px;}
.hf{height:78.696000px;}
.h5b{height:83.787539px;}
.h5a{height:87.859687px;}
.h36{height:89.676000px;}
.h4{height:91.620000px;}
.h37{height:92.153320px;}
.h38{height:92.153327px;}
.h2d{height:92.153349px;}
.h9{height:95.245664px;}
.h6a{height:108.900000px;}
.h4d{height:119.520000px;}
.h57{height:125.406562px;}
.h34{height:133.416000px;}
.h60{height:134.856000px;}
.h39{height:137.160000px;}
.h6b{height:157.500000px;}
.h62{height:160.560000px;}
.h5f{height:160.590000px;}
.h65{height:160.740000px;}
.h64{height:160.770000px;}
.h20{height:171.030000px;}
.h69{height:178.590000px;}
.h33{height:267.510000px;}
.h45{height:273.090000px;}
.h40{height:321.150000px;}
.h66{height:331.770000px;}
.h68{height:357.150000px;}
.h47{height:359.355000px;}
.h2e{height:368.130000px;}
.h1d{height:552.315000px;}
.h2c{height:770.505000px;}
.h3f{height:955.230000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w21{width:10.080000px;}
.w19{width:10.440000px;}
.wc{width:10.800000px;}
.we{width:27.216000px;}
.w1b{width:27.936000px;}
.w24{width:28.836000px;}
.w1e{width:29.700000px;}
.w12{width:30.060000px;}
.w27{width:30.420000px;}
.w1c{width:31.140000px;}
.w10{width:31.500000px;}
.w14{width:31.860000px;}
.w17{width:37.836000px;}
.wa{width:38.556000px;}
.w18{width:41.760000px;}
.w1f{width:41.796000px;}
.wf{width:42.120000px;}
.w13{width:42.156000px;}
.w25{width:42.480000px;}
.w28{width:42.516000px;}
.wb{width:42.660000px;}
.w36{width:48.636000px;}
.w2f{width:51.696000px;}
.w2c{width:53.136000px;}
.w15{width:53.460000px;}
.w1d{width:53.820000px;}
.w20{width:54.000000px;}
.w11{width:54.360000px;}
.w26{width:54.720000px;}
.w16{width:82.830000px;}
.w3a{width:99.000000px;}
.w38{width:105.876000px;}
.w30{width:109.620000px;}
.w4e{width:112.896000px;}
.w4a{width:113.076000px;}
.w40{width:113.760000px;}
.w3e{width:114.120000px;}
.w45{width:118.620000px;}
.w4d{width:131.760000px;}
.w2e{width:133.236000px;}
.w2d{width:133.380000px;}
.w7{width:133.416000px;}
.w49{width:140.940000px;}
.w44{width:154.110000px;}
.w3b{width:185.790000px;}
.w50{width:205.770000px;}
.w33{width:205.950000px;}
.w5{width:212.610000px;}
.w4c{width:234.210000px;}
.w43{width:234.390000px;}
.w42{width:243.075000px;}
.w4b{width:243.615000px;}
.w51{width:248.250000px;}
.w34{width:250.410000px;}
.w4f{width:252.795000px;}
.w32{width:253.875000px;}
.w48{width:254.010000px;}
.w8{width:265.530000px;}
.w3{width:299.700000px;}
.w1a{width:303.690000px;}
.wd{width:303.870000px;}
.w22{width:304.230000px;}
.w23{width:304.770000px;}
.w39{width:316.335000px;}
.w31{width:414.255000px;}
.w29{width:421.815000px;}
.w2b{width:423.105000px;}
.w2a{width:423.465000px;}
.w47{width:477.465000px;}
.w6{width:544.605000px;}
.w3f{width:593.565000px;}
.w3c{width:603.285000px;}
.w3d{width:636.450000px;}
.w37{width:660.705000px;}
.w35{width:710.250000px;}
.w46{width:731.490000px;}
.w41{width:750.390000px;}
.w4{width:759.390000px;}
.w9{width:763.710000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x42{left:1.080000px;}
.x19{left:4.500000px;}
.x5{left:6.225000px;}
.x4c{left:11.340000px;}
.x55{left:14.400000px;}
.x50{left:15.480000px;}
.x51{left:16.740000px;}
.x25{left:18.000000px;}
.x29{left:20.520000px;}
.x31{left:23.040000px;}
.x4f{left:25.200000px;}
.x34{left:26.460000px;}
.x2c{left:31.860000px;}
.xa{left:34.056000px;}
.x27{left:35.100000px;}
.x66{left:38.160000px;}
.x32{left:39.960000px;}
.x48{left:43.200000px;}
.x44{left:47.556000px;}
.xf{left:50.625000px;}
.x6a{left:52.596000px;}
.x35{left:54.756000px;}
.x52{left:57.054000px;}
.x2{left:63.719987px;}
.x3d{left:64.800000px;}
.x7{left:66.060000px;}
.x65{left:68.760000px;}
.x49{left:77.076000px;}
.x45{left:83.700000px;}
.x12{left:84.990000px;}
.x14{left:89.685000px;}
.x1b{left:90.719987px;}
.x5b{left:92.874000px;}
.x47{left:94.710000px;}
.x1c{left:95.795987px;}
.x1d{left:102.995987px;}
.x4d{left:107.676000px;}
.x9{left:108.750000px;}
.xc{left:115.230000px;}
.x36{left:116.856000px;}
.x1e{left:118.655987px;}
.x73{left:122.580000px;}
.x5d{left:127.794000px;}
.x6c{left:131.760000px;}
.x40{left:138.780000px;}
.x63{left:141.120000px;}
.x22{left:144.936000px;}
.xb{left:147.270000px;}
.x23{left:156.630000px;}
.x10{left:159.870000px;}
.x3e{left:165.270000px;}
.x75{left:168.690000px;}
.x16{left:171.390000px;}
.x15{left:173.010000px;}
.x43{left:175.170000px;}
.xd{left:186.330000px;}
.x3{left:187.769987px;}
.x13{left:190.470000px;}
.x3b{left:192.990000px;}
.x77{left:196.950000px;}
.x1a{left:200.370000px;}
.x70{left:203.249987px;}
.x76{left:205.950000px;}
.x33{left:210.810000px;}
.x5a{left:214.959000px;}
.x61{left:225.210000px;}
.x8{left:226.515000px;}
.x5f{left:233.895000px;}
.x6b{left:236.415000px;}
.x1f{left:248.475000px;}
.x37{left:250.230000px;}
.x11{left:261.615000px;}
.x69{left:263.415000px;}
.x21{left:276.015000px;}
.xe{left:280.830000px;}
.x4e{left:293.619000px;}
.x67{left:297.614987px;}
.x60{left:307.875000px;}
.x78{left:317.595000px;}
.x3f{left:318.675000px;}
.x54{left:323.679000px;}
.x53{left:333.039000px;}
.x1{left:342.614987px;}
.x3a{left:347.295000px;}
.x56{left:350.499000px;}
.x59{left:365.079000px;}
.x38{left:383.475000px;}
.x6f{left:391.394987px;}
.x68{left:408.675000px;}
.x58{left:409.749000px;}
.x4a{left:423.614987px;}
.x5c{left:424.869000px;}
.x3c{left:456.014987px;}
.x24{left:461.235000px;}
.x26{left:489.165000px;}
.x71{left:493.124987px;}
.x4{left:502.560000px;}
.x6e{left:504.104987px;}
.x79{left:523.365000px;}
.x41{left:524.625000px;}
.x57{left:529.809000px;}
.x28{left:531.645000px;}
.x62{left:542.265000px;}
.x2a{left:563.505000px;}
.x20{left:573.045000px;}
.x46{left:589.245000px;}
.x2b{left:595.365000px;}
.x72{left:620.204987px;}
.x2d{left:650.085000px;}
.x74{left:673.305000px;}
.x2e{left:680.505000px;}
.x6d{left:683.205000px;}
.x64{left:696.390000px;}
.x4b{left:701.790000px;}
.x2f{left:723.030000px;}
.x5e{left:730.410000px;}
.x30{left:755.250000px;}
.x39{left:761.910000px;}
.x17{left:809.789987px;}
.x6{left:819.329987px;}
.x18{left:828.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.276267pt;}
.ls10{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.171733pt;}
.ls14{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.146133pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000003pt;}
.lsc{letter-spacing:0.028160pt;}
.ls17{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.066667pt;}
.lse{letter-spacing:0.076800pt;}
.ls0{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.217600pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.357120pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:341.920000pt;}
.lsf{letter-spacing:2552.341333pt;}
.ws17{word-spacing:-74.880000pt;}
.ws1a{word-spacing:-64.000000pt;}
.wsc{word-spacing:-56.320000pt;}
.wsd{word-spacing:-33.920000pt;}
.ws0{word-spacing:-31.872000pt;}
.ws1{word-spacing:-25.600000pt;}
.ws14{word-spacing:-18.080000pt;}
.ws16{word-spacing:-17.920000pt;}
.ws18{word-spacing:-16.922880pt;}
.ws19{word-spacing:-14.464000pt;}
.ws1c{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.524480pt;}
.wsb{word-spacing:-13.383680pt;}
.ws4{word-spacing:-13.373547pt;}
.ws9{word-spacing:-13.335040pt;}
.ws5{word-spacing:-13.273600pt;}
.ws6{word-spacing:-13.189013pt;}
.wsa{word-spacing:-13.160747pt;}
.ws3{word-spacing:-13.135147pt;}
.ws8{word-spacing:-13.030613pt;}
.ws11{word-spacing:-10.992000pt;}
.wse{word-spacing:-10.848000pt;}
.ws15{word-spacing:-10.832000pt;}
.ws13{word-spacing:-10.688000pt;}
.ws12{word-spacing:-10.608000pt;}
.wsf{word-spacing:-10.576000pt;}
.ws10{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:631.786667pt;}
._3{margin-left:-13.461333pt;}
._4{margin-left:-5.845333pt;}
._0{margin-left:-1.072000pt;}
._1{width:0.912000pt;}
._5{width:1260.426667pt;}
._2{width:2584.981333pt;}
.fs9{font-size:2.560000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs8{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fsa{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:3.194667pt;}
.y5a{bottom:3.200000pt;}
.yce{bottom:3.240000pt;}
.yea{bottom:3.720000pt;}
.y28{bottom:4.000000pt;}
.y123{bottom:4.320000pt;}
.y129{bottom:4.346667pt;}
.ya2{bottom:4.640000pt;}
.y121{bottom:5.120000pt;}
.y185{bottom:5.152000pt;}
.y12b{bottom:5.280000pt;}
.y100{bottom:5.440000pt;}
.y120{bottom:5.600000pt;}
.y184{bottom:5.632000pt;}
.yd{bottom:5.760000pt;}
.yb{bottom:6.240000pt;}
.y109{bottom:7.200000pt;}
.y23{bottom:7.360000pt;}
.y4f{bottom:7.840000pt;}
.y96{bottom:9.280000pt;}
.y50{bottom:9.440000pt;}
.yf1{bottom:10.080000pt;}
.y54{bottom:10.720000pt;}
.y30{bottom:11.840000pt;}
.y11{bottom:13.280000pt;}
.y102{bottom:15.040000pt;}
.y4d{bottom:15.520000pt;}
.y107{bottom:16.000000pt;}
.y9f{bottom:16.320000pt;}
.y51{bottom:16.520000pt;}
.y68{bottom:17.760000pt;}
.yc1{bottom:17.786667pt;}
.ydb{bottom:17.914667pt;}
.y9d{bottom:17.920000pt;}
.y165{bottom:20.160000pt;}
.yf5{bottom:20.320000pt;}
.ye6{bottom:20.640000pt;}
.y5{bottom:20.800000pt;}
.y13c{bottom:21.786667pt;}
.y150{bottom:22.874667pt;}
.y13a{bottom:22.880000pt;}
.y1b{bottom:23.360000pt;}
.yeb{bottom:23.880000pt;}
.ya3{bottom:24.480000pt;}
.y92{bottom:24.800000pt;}
.y144{bottom:26.746667pt;}
.y9{bottom:27.680000pt;}
.y1f{bottom:28.160000pt;}
.y1d{bottom:28.346667pt;}
.y4c{bottom:28.840000pt;}
.yec{bottom:29.320000pt;}
.y97{bottom:29.440000pt;}
.y17{bottom:31.200000pt;}
.yf{bottom:32.160000pt;}
.y52{bottom:32.360000pt;}
.ya{bottom:33.440000pt;}
.y98{bottom:34.880000pt;}
.y25{bottom:35.200000pt;}
.y22{bottom:36.000000pt;}
.y13{bottom:36.160000pt;}
.y15{bottom:37.000000pt;}
.y19{bottom:39.840000pt;}
.y8{bottom:41.760000pt;}
.y15c{bottom:42.560000pt;}
.y181{bottom:43.360000pt;}
.y53{bottom:44.680000pt;}
.y170{bottom:44.800000pt;}
.y136{bottom:45.920000pt;}
.y147{bottom:45.946667pt;}
.y13e{bottom:46.720000pt;}
.y173{bottom:47.720000pt;}
.y4e{bottom:48.040000pt;}
.y55{bottom:48.520000pt;}
.y125{bottom:48.800000pt;}
.y126{bottom:49.760000pt;}
.y172{bottom:51.880000pt;}
.y76{bottom:54.266667pt;}
.y7{bottom:55.840000pt;}
.y14f{bottom:61.114667pt;}
.y164{bottom:61.760000pt;}
.y139{bottom:62.106667pt;}
.y24{bottom:62.240000pt;}
.y167{bottom:66.560000pt;}
.y133{bottom:66.720000pt;}
.y6{bottom:69.920000pt;}
.y4b{bottom:71.080000pt;}
.y16a{bottom:80.640000pt;}
.y137{bottom:81.920000pt;}
.y135{bottom:85.120000pt;}
.y146{bottom:85.146667pt;}
.y141{bottom:85.160000pt;}
.ya9{bottom:91.040000pt;}
.y56{bottom:91.200000pt;}
.y45{bottom:94.560000pt;}
.y14e{bottom:100.954667pt;}
.y163{bottom:100.986667pt;}
.y138{bottom:103.706667pt;}
.y16f{bottom:103.840000pt;}
.y162{bottom:104.346667pt;}
.y26{bottom:107.200000pt;}
.ydc{bottom:108.160000pt;}
.y49{bottom:108.960000pt;}
.y7c{bottom:111.040000pt;}
.y6a{bottom:113.920000pt;}
.ybd{bottom:116.320000pt;}
.y183{bottom:117.280000pt;}
.y149{bottom:123.232000pt;}
.yda{bottom:125.152000pt;}
.y16c{bottom:126.432000pt;}
.y134{bottom:126.560000pt;}
.y145{bottom:126.586667pt;}
.y132{bottom:126.720000pt;}
.y143{bottom:126.746667pt;}
.y140{bottom:126.760000pt;}
.y7a{bottom:130.912000pt;}
.yac{bottom:137.760000pt;}
.y161{bottom:142.586667pt;}
.y16b{bottom:148.826667pt;}
.y79{bottom:150.746667pt;}
.yc9{bottom:154.746667pt;}
.yd9{bottom:155.226667pt;}
.y117{bottom:156.186667pt;}
.y154{bottom:156.474667pt;}
.y59{bottom:158.746667pt;}
.y14d{bottom:160.794667pt;}
.y48{bottom:161.786667pt;}
.y182{bottom:165.306667pt;}
.y104{bottom:166.746667pt;}
.y78{bottom:170.586667pt;}
.yd8{bottom:172.186667pt;}
.y116{bottom:174.906667pt;}
.y15f{bottom:179.080000pt;}
.yd7{bottom:189.306667pt;}
.y77{bottom:190.586667pt;}
.y3c{bottom:192.986667pt;}
.y153{bottom:198.074667pt;}
.y169{bottom:198.906667pt;}
.y180{bottom:200.026667pt;}
.y14c{bottom:200.634667pt;}
.y15b{bottom:202.440000pt;}
.y131{bottom:204.826667pt;}
.y103{bottom:205.786667pt;}
.yd6{bottom:206.426667pt;}
.y69{bottom:210.426667pt;}
.y15e{bottom:220.680000pt;}
.yd5{bottom:223.386667pt;}
.y101{bottom:225.626667pt;}
.y75{bottom:230.266667pt;}
.y152{bottom:237.314667pt;}
.y14b{bottom:238.754667pt;}
.yd4{bottom:240.506667pt;}
.y15a{bottom:242.280000pt;}
.y3b{bottom:245.466667pt;}
.y115{bottom:249.466667pt;}
.y74{bottom:250.106667pt;}
.yd3{bottom:257.626667pt;}
.y15d{bottom:259.880000pt;}
.y17f{bottom:261.626667pt;}
.y158{bottom:263.240000pt;}
.yff{bottom:264.666667pt;}
.y73{bottom:269.946667pt;}
.yd2{bottom:274.586667pt;}
.y151{bottom:278.754667pt;}
.y14a{bottom:278.914667pt;}
.y159{bottom:281.320000pt;}
.y114{bottom:286.906667pt;}
.y72{bottom:289.786667pt;}
.yd1{bottom:291.706667pt;}
.y3a{bottom:297.946667pt;}
.y57{bottom:299.426667pt;}
.y157{bottom:301.320000pt;}
.y17e{bottom:306.106667pt;}
.yd0{bottom:308.826667pt;}
.y71{bottom:309.786667pt;}
.y168{bottom:320.826667pt;}
.y113{bottom:324.186667pt;}
.ycf{bottom:325.786667pt;}
.y70{bottom:329.626667pt;}
.ya7{bottom:335.866667pt;}
.ycd{bottom:342.906667pt;}
.y17d{bottom:344.186667pt;}
.y6f{bottom:349.506667pt;}
.y130{bottom:350.626667pt;}
.ya6{bottom:356.546667pt;}
.y166{bottom:356.706667pt;}
.ycc{bottom:360.066667pt;}
.y6e{bottom:369.346667pt;}
.ycb{bottom:377.026667pt;}
.yaa{bottom:381.506667pt;}
.y17c{bottom:382.466667pt;}
.y9c{bottom:386.466667pt;}
.y6d{bottom:389.186667pt;}
.y47{bottom:389.346667pt;}
.yca{bottom:394.146667pt;}
.y12f{bottom:396.066667pt;}
.ya5{bottom:406.306667pt;}
.y6c{bottom:409.026667pt;}
.ybc{bottom:411.266667pt;}
.y39{bottom:412.866667pt;}
.y17b{bottom:420.706667pt;}
.y148{bottom:421.186667pt;}
.ya4{bottom:426.146667pt;}
.yc8{bottom:428.226667pt;}
.y6b{bottom:429.026667pt;}
.y38{bottom:433.506667pt;}
.y46{bottom:435.266667pt;}
.yc7{bottom:445.346667pt;}
.ya1{bottom:445.986667pt;}
.y58{bottom:448.866667pt;}
.y37{bottom:454.146667pt;}
.y17a{bottom:459.746667pt;}
.y21{bottom:462.306667pt;}
.yc6{bottom:462.466667pt;}
.y9e{bottom:465.826667pt;}
.y12e{bottom:471.106667pt;}
.y36{bottom:474.946667pt;}
.y67{bottom:478.786667pt;}
.ya0{bottom:485.826667pt;}
.y20{bottom:492.226667pt;}
.yc5{bottom:492.386667pt;}
.y12d{bottom:494.626667pt;}
.y35{bottom:495.586667pt;}
.y66{bottom:498.626667pt;}
.y160{bottom:502.466667pt;}
.y95{bottom:509.026667pt;}
.yc4{bottom:509.506667pt;}
.y34{bottom:516.226667pt;}
.y12c{bottom:517.986667pt;}
.y65{bottom:518.466667pt;}
.y179{bottom:518.946667pt;}
.y1e{bottom:522.306667pt;}
.yc3{bottom:526.466667pt;}
.y9b{bottom:529.666667pt;}
.y33{bottom:536.866667pt;}
.y64{bottom:538.306667pt;}
.y12a{bottom:541.506667pt;}
.yc2{bottom:543.586667pt;}
.y9a{bottom:549.506667pt;}
.y32{bottom:557.506667pt;}
.y63{bottom:558.306667pt;}
.y178{bottom:558.946667pt;}
.yc0{bottom:560.706667pt;}
.y128{bottom:564.866667pt;}
.y142{bottom:567.106667pt;}
.y1c{bottom:567.266667pt;}
.y99{bottom:569.533333pt;}
.y31{bottom:578.173333pt;}
.y91{bottom:589.373333pt;}
.ybf{bottom:590.653333pt;}
.y62{bottom:598.013333pt;}
.y44{bottom:598.493333pt;}
.y2f{bottom:598.973333pt;}
.ybe{bottom:607.613333pt;}
.y94{bottom:610.013333pt;}
.y127{bottom:610.493333pt;}
.y1a{bottom:612.253333pt;}
.y61{bottom:617.853333pt;}
.y43{bottom:624.733333pt;}
.y2e{bottom:625.533333pt;}
.y93{bottom:629.853333pt;}
.y60{bottom:637.693333pt;}
.y177{bottom:637.853333pt;}
.y2d{bottom:646.173333pt;}
.y124{bottom:646.333333pt;}
.y90{bottom:649.693333pt;}
.y18{bottom:652.253333pt;}
.yf8{bottom:652.893333pt;}
.yab{bottom:654.653333pt;}
.y5f{bottom:657.533333pt;}
.y156{bottom:664.093333pt;}
.y2c{bottom:666.813333pt;}
.y8f{bottom:669.533333pt;}
.y42{bottom:677.213333pt;}
.y5e{bottom:677.533333pt;}
.y176{bottom:678.653333pt;}
.yf0{bottom:682.813333pt;}
.ybb{bottom:684.733333pt;}
.y4{bottom:686.653333pt;}
.y2b{bottom:687.453333pt;}
.y8e{bottom:689.533333pt;}
.y5d{bottom:697.373333pt;}
.yf7{bottom:699.933333pt;}
.yba{bottom:701.693333pt;}
.y41{bottom:703.453333pt;}
.y2a{bottom:708.093333pt;}
.y3{bottom:708.573333pt;}
.y16{bottom:708.893333pt;}
.y8d{bottom:709.373333pt;}
.y13f{bottom:712.893333pt;}
.y122{bottom:714.333333pt;}
.y175{bottom:715.453333pt;}
.yf6{bottom:717.053333pt;}
.y5c{bottom:717.213333pt;}
.yb9{bottom:718.813333pt;}
.y108{bottom:723.773333pt;}
.y29{bottom:728.733333pt;}
.y8c{bottom:729.213333pt;}
.y112{bottom:730.013333pt;}
.yf4{bottom:734.013333pt;}
.yb8{bottom:735.933333pt;}
.y5b{bottom:737.053333pt;}
.y11f{bottom:737.693333pt;}
.y174{bottom:737.853333pt;}
.y8b{bottom:749.053333pt;}
.y106{bottom:749.693333pt;}
.y27{bottom:750.173333pt;}
.yf2{bottom:752.573333pt;}
.yb7{bottom:752.893333pt;}
.y111{bottom:755.133333pt;}
.y40{bottom:755.933333pt;}
.y14{bottom:756.893333pt;}
.y11d{bottom:765.053333pt;}
.y8a{bottom:768.893333pt;}
.yf3{bottom:769.693333pt;}
.yb6{bottom:770.013333pt;}
.y171{bottom:775.933333pt;}
.y4a{bottom:777.533333pt;}
.yfe{bottom:780.413333pt;}
.y3f{bottom:782.173333pt;}
.y110{bottom:782.653333pt;}
.y11e{bottom:786.333333pt;}
.yb5{bottom:787.133333pt;}
.y89{bottom:788.733333pt;}
.ye9{bottom:789.693333pt;}
.yfd{bottom:802.213333pt;}
.y11c{bottom:802.373333pt;}
.yb4{bottom:804.133333pt;}
.yef{bottom:807.493333pt;}
.y3e{bottom:808.453333pt;}
.y88{bottom:808.773333pt;}
.y10f{bottom:810.373333pt;}
.yb3{bottom:821.253333pt;}
.yfc{bottom:824.133333pt;}
.yee{bottom:824.613333pt;}
.y87{bottom:828.613333pt;}
.y12{bottom:828.933333pt;}
.y10e{bottom:837.893333pt;}
.yb2{bottom:838.373333pt;}
.yed{bottom:841.573333pt;}
.y16e{bottom:845.893333pt;}
.yfb{bottom:846.053333pt;}
.y86{bottom:848.453333pt;}
.yb1{bottom:855.333333pt;}
.ye5{bottom:858.693333pt;}
.y13d{bottom:858.853333pt;}
.y10d{bottom:864.613333pt;}
.yfa{bottom:867.813333pt;}
.y85{bottom:868.293333pt;}
.yb0{bottom:872.453333pt;}
.ye8{bottom:876.453333pt;}
.y10{bottom:881.893333pt;}
.y105{bottom:885.893333pt;}
.y84{bottom:888.133333pt;}
.yaf{bottom:889.573333pt;}
.yf9{bottom:889.733333pt;}
.y10c{bottom:889.893333pt;}
.ye7{bottom:893.413333pt;}
.yae{bottom:906.533333pt;}
.y83{bottom:907.973333pt;}
.y10b{bottom:909.253333pt;}
.ye4{bottom:910.533333pt;}
.ye{bottom:911.973333pt;}
.yad{bottom:923.653333pt;}
.ye3{bottom:927.653333pt;}
.y82{bottom:927.973333pt;}
.y10a{bottom:939.813333pt;}
.ya8{bottom:941.413333pt;}
.ye2{bottom:944.613333pt;}
.y81{bottom:947.813333pt;}
.y11b{bottom:957.093333pt;}
.yc{bottom:960.933333pt;}
.ye1{bottom:961.733333pt;}
.y80{bottom:967.653333pt;}
.y11a{bottom:975.813333pt;}
.ye0{bottom:978.853333pt;}
.y155{bottom:984.613333pt;}
.y7f{bottom:987.493333pt;}
.y119{bottom:994.533333pt;}
.ydf{bottom:995.813333pt;}
.y13b{bottom:1004.613333pt;}
.y7e{bottom:1007.333333pt;}
.y16d{bottom:1011.013333pt;}
.yde{bottom:1012.933333pt;}
.y7d{bottom:1027.200000pt;}
.ydd{bottom:1030.080000pt;}
.y2{bottom:1030.400000pt;}
.y118{bottom:1031.840000pt;}
.y3d{bottom:1033.120000pt;}
.y1{bottom:1068.800000pt;}
.h42{height:16.320000pt;}
.h43{height:16.352000pt;}
.h41{height:16.480000pt;}
.h48{height:16.512000pt;}
.h4a{height:17.120000pt;}
.h4c{height:17.152000pt;}
.h50{height:17.920000pt;}
.h2f{height:19.200000pt;}
.h31{height:19.232000pt;}
.h4f{height:19.360000pt;}
.h18{height:20.000000pt;}
.h1a{height:20.032000pt;}
.h5e{height:20.320000pt;}
.h3e{height:20.480000pt;}
.h53{height:20.512000pt;}
.h52{height:20.640000pt;}
.h16{height:20.960000pt;}
.h3b{height:22.560000pt;}
.h5c{height:22.880000pt;}
.h70{height:22.912000pt;}
.h19{height:25.760000pt;}
.h8{height:27.200000pt;}
.hc{height:28.000000pt;}
.h32{height:29.280000pt;}
.h46{height:29.312000pt;}
.h44{height:29.440000pt;}
.h6d{height:36.000000pt;}
.h3d{height:36.445312pt;}
.h4e{height:36.480000pt;}
.h12{height:38.080000pt;}
.h54{height:38.400000pt;}
.h2{height:39.840000pt;}
.h55{height:40.000000pt;}
.h61{height:40.512000pt;}
.h5{height:40.640625pt;}
.h56{height:40.800000pt;}
.h6{height:42.240000pt;}
.h3a{height:42.560000pt;}
.h14{height:42.880000pt;}
.h13{height:43.072000pt;}
.he{height:45.195937pt;}
.h10{height:45.920000pt;}
.ha{height:46.880000pt;}
.h1e{height:47.465000pt;}
.h30{height:47.742188pt;}
.h3{height:48.000000pt;}
.h2b{height:49.148438pt;}
.h29{height:49.148444pt;}
.h25{height:49.148454pt;}
.h2a{height:49.148456pt;}
.h23{height:49.148466pt;}
.h24{height:49.148474pt;}
.h27{height:49.148477pt;}
.h26{height:49.148478pt;}
.h28{height:49.148483pt;}
.h15{height:49.622500pt;}
.h51{height:50.560000pt;}
.hd{height:51.040000pt;}
.h49{height:51.200000pt;}
.h6e{height:53.937500pt;}
.h7{height:54.187500pt;}
.h11{height:54.560000pt;}
.h22{height:54.598989pt;}
.h1f{height:56.017500pt;}
.h1c{height:57.667500pt;}
.hb{height:58.563750pt;}
.h1b{height:58.740000pt;}
.h3c{height:58.880000pt;}
.h6f{height:59.520000pt;}
.h35{height:59.680000pt;}
.h17{height:60.288750pt;}
.h67{height:60.512000pt;}
.h58{height:61.410000pt;}
.h63{height:63.656250pt;}
.h5d{height:64.960000pt;}
.h21{height:65.781915pt;}
.h59{height:66.750000pt;}
.h6c{height:68.032000pt;}
.h4b{height:68.352000pt;}
.hf{height:69.952000pt;}
.h5b{height:74.477812pt;}
.h5a{height:78.097500pt;}
.h36{height:79.712000pt;}
.h4{height:81.440000pt;}
.h37{height:81.914063pt;}
.h38{height:81.914069pt;}
.h2d{height:81.914088pt;}
.h9{height:84.662813pt;}
.h6a{height:96.800000pt;}
.h4d{height:106.240000pt;}
.h57{height:111.472500pt;}
.h34{height:118.592000pt;}
.h60{height:119.872000pt;}
.h39{height:121.920000pt;}
.h6b{height:140.000000pt;}
.h62{height:142.720000pt;}
.h5f{height:142.746667pt;}
.h65{height:142.880000pt;}
.h64{height:142.906667pt;}
.h20{height:152.026667pt;}
.h69{height:158.746667pt;}
.h33{height:237.786667pt;}
.h45{height:242.746667pt;}
.h40{height:285.466667pt;}
.h66{height:294.906667pt;}
.h68{height:317.466667pt;}
.h47{height:319.426667pt;}
.h2e{height:327.226667pt;}
.h1d{height:490.946667pt;}
.h2c{height:684.893333pt;}
.h3f{height:849.093333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w21{width:8.960000pt;}
.w19{width:9.280000pt;}
.wc{width:9.600000pt;}
.we{width:24.192000pt;}
.w1b{width:24.832000pt;}
.w24{width:25.632000pt;}
.w1e{width:26.400000pt;}
.w12{width:26.720000pt;}
.w27{width:27.040000pt;}
.w1c{width:27.680000pt;}
.w10{width:28.000000pt;}
.w14{width:28.320000pt;}
.w17{width:33.632000pt;}
.wa{width:34.272000pt;}
.w18{width:37.120000pt;}
.w1f{width:37.152000pt;}
.wf{width:37.440000pt;}
.w13{width:37.472000pt;}
.w25{width:37.760000pt;}
.w28{width:37.792000pt;}
.wb{width:37.920000pt;}
.w36{width:43.232000pt;}
.w2f{width:45.952000pt;}
.w2c{width:47.232000pt;}
.w15{width:47.520000pt;}
.w1d{width:47.840000pt;}
.w20{width:48.000000pt;}
.w11{width:48.320000pt;}
.w26{width:48.640000pt;}
.w16{width:73.626667pt;}
.w3a{width:88.000000pt;}
.w38{width:94.112000pt;}
.w30{width:97.440000pt;}
.w4e{width:100.352000pt;}
.w4a{width:100.512000pt;}
.w40{width:101.120000pt;}
.w3e{width:101.440000pt;}
.w45{width:105.440000pt;}
.w4d{width:117.120000pt;}
.w2e{width:118.432000pt;}
.w2d{width:118.560000pt;}
.w7{width:118.592000pt;}
.w49{width:125.280000pt;}
.w44{width:136.986667pt;}
.w3b{width:165.146667pt;}
.w50{width:182.906667pt;}
.w33{width:183.066667pt;}
.w5{width:188.986667pt;}
.w4c{width:208.186667pt;}
.w43{width:208.346667pt;}
.w42{width:216.066667pt;}
.w4b{width:216.546667pt;}
.w51{width:220.666667pt;}
.w34{width:222.586667pt;}
.w4f{width:224.706667pt;}
.w32{width:225.666667pt;}
.w48{width:225.786667pt;}
.w8{width:236.026667pt;}
.w3{width:266.400000pt;}
.w1a{width:269.946667pt;}
.wd{width:270.106667pt;}
.w22{width:270.426667pt;}
.w23{width:270.906667pt;}
.w39{width:281.186667pt;}
.w31{width:368.226667pt;}
.w29{width:374.946667pt;}
.w2b{width:376.093333pt;}
.w2a{width:376.413333pt;}
.w47{width:424.413333pt;}
.w6{width:484.093333pt;}
.w3f{width:527.613333pt;}
.w3c{width:536.253333pt;}
.w3d{width:565.733333pt;}
.w37{width:587.293333pt;}
.w35{width:631.333333pt;}
.w46{width:650.213333pt;}
.w41{width:667.013333pt;}
.w4{width:675.013333pt;}
.w9{width:678.853333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x42{left:0.960000pt;}
.x19{left:4.000000pt;}
.x5{left:5.533333pt;}
.x4c{left:10.080000pt;}
.x55{left:12.800000pt;}
.x50{left:13.760000pt;}
.x51{left:14.880000pt;}
.x25{left:16.000000pt;}
.x29{left:18.240000pt;}
.x31{left:20.480000pt;}
.x4f{left:22.400000pt;}
.x34{left:23.520000pt;}
.x2c{left:28.320000pt;}
.xa{left:30.272000pt;}
.x27{left:31.200000pt;}
.x66{left:33.920000pt;}
.x32{left:35.520000pt;}
.x48{left:38.400000pt;}
.x44{left:42.272000pt;}
.xf{left:45.000000pt;}
.x6a{left:46.752000pt;}
.x35{left:48.672000pt;}
.x52{left:50.714667pt;}
.x2{left:56.639988pt;}
.x3d{left:57.600000pt;}
.x7{left:58.720000pt;}
.x65{left:61.120000pt;}
.x49{left:68.512000pt;}
.x45{left:74.400000pt;}
.x12{left:75.546667pt;}
.x14{left:79.720000pt;}
.x1b{left:80.639988pt;}
.x5b{left:82.554667pt;}
.x47{left:84.186667pt;}
.x1c{left:85.151988pt;}
.x1d{left:91.551988pt;}
.x4d{left:95.712000pt;}
.x9{left:96.666667pt;}
.xc{left:102.426667pt;}
.x36{left:103.872000pt;}
.x1e{left:105.471988pt;}
.x73{left:108.960000pt;}
.x5d{left:113.594667pt;}
.x6c{left:117.120000pt;}
.x40{left:123.360000pt;}
.x63{left:125.440000pt;}
.x22{left:128.832000pt;}
.xb{left:130.906667pt;}
.x23{left:139.226667pt;}
.x10{left:142.106667pt;}
.x3e{left:146.906667pt;}
.x75{left:149.946667pt;}
.x16{left:152.346667pt;}
.x15{left:153.786667pt;}
.x43{left:155.706667pt;}
.xd{left:165.626667pt;}
.x3{left:166.906655pt;}
.x13{left:169.306667pt;}
.x3b{left:171.546667pt;}
.x77{left:175.066667pt;}
.x1a{left:178.106667pt;}
.x70{left:180.666655pt;}
.x76{left:183.066667pt;}
.x33{left:187.386667pt;}
.x5a{left:191.074667pt;}
.x61{left:200.186667pt;}
.x8{left:201.346667pt;}
.x5f{left:207.906667pt;}
.x6b{left:210.146667pt;}
.x1f{left:220.866667pt;}
.x37{left:222.426667pt;}
.x11{left:232.546667pt;}
.x69{left:234.146667pt;}
.x21{left:245.346667pt;}
.xe{left:249.626667pt;}
.x4e{left:260.994667pt;}
.x67{left:264.546655pt;}
.x60{left:273.666667pt;}
.x78{left:282.306667pt;}
.x3f{left:283.266667pt;}
.x54{left:287.714667pt;}
.x53{left:296.034667pt;}
.x1{left:304.546655pt;}
.x3a{left:308.706667pt;}
.x56{left:311.554667pt;}
.x59{left:324.514667pt;}
.x38{left:340.866667pt;}
.x6f{left:347.906655pt;}
.x68{left:363.266667pt;}
.x58{left:364.221333pt;}
.x4a{left:376.546655pt;}
.x5c{left:377.661333pt;}
.x3c{left:405.346655pt;}
.x24{left:409.986667pt;}
.x26{left:434.813333pt;}
.x71{left:438.333322pt;}
.x4{left:446.720000pt;}
.x6e{left:448.093322pt;}
.x79{left:465.213333pt;}
.x41{left:466.333333pt;}
.x57{left:470.941333pt;}
.x28{left:472.573333pt;}
.x62{left:482.013333pt;}
.x2a{left:500.893333pt;}
.x20{left:509.373333pt;}
.x46{left:523.773333pt;}
.x2b{left:529.213333pt;}
.x72{left:551.293322pt;}
.x2d{left:577.853333pt;}
.x74{left:598.493333pt;}
.x2e{left:604.893333pt;}
.x6d{left:607.293333pt;}
.x64{left:619.013333pt;}
.x4b{left:623.813333pt;}
.x2f{left:642.693333pt;}
.x5e{left:649.253333pt;}
.x30{left:671.333333pt;}
.x39{left:677.253333pt;}
.x17{left:719.813322pt;}
.x6{left:728.293322pt;}
.x18{left:736.773322pt;}
}




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