
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_eeb5d1b7aae18c4c36e0b0bf.woff')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_f3267cb21662544146839673.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_db21a7df893d59d9c59d2276.woff')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_3a0f126c2fc74f7325d3cae6.woff')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_6d4665a4062a6832cc7db5d5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.109375;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_f546d53121a3ea3b0563925a.woff')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_c5bcb4af414ae0aa157cbc3c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_95ccc8fef1316ffc8b60a968.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aec91ef14a7b08d315d34e14.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_94fda41c4d799bbe1cdbc265.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffcf3b667b4243769f892303.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:33.120000px;}
.v6{vertical-align:45.360000px;}
.ls2f{letter-spacing:-0.373200px;}
.ls2d{letter-spacing:-0.308400px;}
.ls36{letter-spacing:-0.303000px;}
.ls35{letter-spacing:-0.299400px;}
.ls1e{letter-spacing:-0.285600px;}
.ls38{letter-spacing:-0.262200px;}
.ls3d{letter-spacing:-0.261600px;}
.ls10{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.166200px;}
.lsb{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.063600px;}
.ls2c{letter-spacing:-0.048960px;}
.ls2a{letter-spacing:-0.037800px;}
.ls39{letter-spacing:-0.036000px;}
.ls2b{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.013200px;}
.ls3e{letter-spacing:-0.009000px;}
.ls2e{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.001440px;}
.ls26{letter-spacing:0.002880px;}
.ls29{letter-spacing:0.004320px;}
.ls25{letter-spacing:0.020160px;}
.ls33{letter-spacing:0.023040px;}
.ls30{letter-spacing:0.043920px;}
.ls18{letter-spacing:0.045360px;}
.ls24{letter-spacing:0.047520px;}
.ls19{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051600px;}
.ls1c{letter-spacing:0.051840px;}
.ls7{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.ls3a{letter-spacing:0.061200px;}
.ls1a{letter-spacing:0.064800px;}
.lsd{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.074160px;}
.ls1d{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls34{letter-spacing:0.097560px;}
.ls15{letter-spacing:0.097800px;}
.ls28{letter-spacing:0.103680px;}
.ls31{letter-spacing:0.118440px;}
.ls20{letter-spacing:0.133200px;}
.ls27{letter-spacing:0.133800px;}
.ls9{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.160560px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.173520px;}
.lse{letter-spacing:0.174600px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.434400px;}
.ls23{letter-spacing:13.594320px;}
.ls21{letter-spacing:16.090200px;}
.ls22{letter-spacing:31.050360px;}
.ls3c{letter-spacing:48.446640px;}
.ls1b{letter-spacing:63.566640px;}
.ls3b{letter-spacing:81.566640px;}
.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;}
}
.ws2{word-spacing:-18.287400px;}
.wsd{word-spacing:-14.493600px;}
.ws10{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.324200px;}
.ws12{word-spacing:-13.300800px;}
.ws23{word-spacing:-13.287600px;}
.ws9{word-spacing:-13.287000px;}
.wsf{word-spacing:-13.278240px;}
.ws8{word-spacing:-13.278000px;}
.ws11{word-spacing:-13.275360px;}
.ws18{word-spacing:-13.273920px;}
.ws7{word-spacing:-13.226400px;}
.ws1d{word-spacing:-13.218840px;}
.ws25{word-spacing:-13.217400px;}
.wsb{word-spacing:-13.213200px;}
.ws1a{word-spacing:-13.213080px;}
.ws19{word-spacing:-13.188600px;}
.ws1b{word-spacing:-13.177440px;}
.ws13{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.039800px;}
.ws24{word-spacing:-12.964800px;}
.ws21{word-spacing:-12.964200px;}
.ws1f{word-spacing:-12.927000px;}
.ws20{word-spacing:-12.923400px;}
.ws1c{word-spacing:-12.918000px;}
.ws1e{word-spacing:-12.853200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.331800px;}
.ws14{word-spacing:-9.266400px;}
.ws16{word-spacing:-8.687400px;}
.ws17{word-spacing:-8.557920px;}
.ws15{word-spacing:-8.556480px;}
.ws4{word-spacing:-8.553600px;}
.ws22{word-spacing:-8.517600px;}
.wse{word-spacing:0.000000px;}
.wsc{word-spacing:4.304880px;}
._17{margin-left:-8.055000px;}
._16{margin-left:-5.895000px;}
._18{margin-left:-4.143960px;}
._2{margin-left:-2.950200px;}
._0{margin-left:-1.050000px;}
._1{width:1.006896px;}
._8{width:2.079506px;}
._7{width:3.366600px;}
._a{width:4.493908px;}
._6{width:5.650799px;}
._5{width:6.793800px;}
._9{width:7.895421px;}
._19{width:8.899553px;}
._b{width:9.919800px;}
._e{width:11.062080px;}
._f{width:12.084120px;}
._3{width:14.849400px;}
._4{width:16.625523px;}
._1a{width:18.216360px;}
._1b{width:19.298520px;}
._1e{width:20.404440px;}
._d{width:21.763440px;}
._c{width:22.965840px;}
._12{width:29.518920px;}
._1f{width:32.843640px;}
._20{width:33.847560px;}
._15{width:35.831520px;}
._1d{width:40.877400px;}
._1c{width:41.903640px;}
._21{width:73.406520px;}
._11{width:86.632920px;}
._10{width:88.135920px;}
._14{width:106.592760px;}
._13{width:129.258000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:6.210000px;}
.yc2{bottom:6.300000px;}
.y146{bottom:7.560000px;}
.y50{bottom:7.830000px;}
.y105{bottom:7.860000px;}
.y60{bottom:7.920000px;}
.y104{bottom:12.360000px;}
.y147{bottom:17.640000px;}
.y149{bottom:18.000000px;}
.ye4{bottom:23.850000px;}
.yf6{bottom:23.940000px;}
.y10f{bottom:25.470000px;}
.y145{bottom:26.370000px;}
.yd6{bottom:26.820000px;}
.yf2{bottom:26.850000px;}
.yc4{bottom:26.910000px;}
.y148{bottom:29.340000px;}
.y144{bottom:29.430000px;}
.y100{bottom:29.880000px;}
.yf0{bottom:29.910000px;}
.y5f{bottom:29.970000px;}
.yc0{bottom:30.690000px;}
.y10b{bottom:34.470000px;}
.y5a{bottom:35.190000px;}
.yd5{bottom:47.430000px;}
.yf1{bottom:47.460000px;}
.y101{bottom:47.520000px;}
.yef{bottom:47.550000px;}
.yff{bottom:47.610000px;}
.y5e{bottom:52.020000px;}
.y10a{bottom:52.110000px;}
.y142{bottom:54.750000px;}
.y117{bottom:56.520000px;}
.y59{bottom:57.240000px;}
.yd7{bottom:67.950000px;}
.yd4{bottom:68.040000px;}
.yee{bottom:68.070000px;}
.y2{bottom:73.380000px;}
.y61{bottom:74.070000px;}
.y5d{bottom:74.160000px;}
.y2b{bottom:74.190000px;}
.y58{bottom:79.380000px;}
.yd3{bottom:88.650000px;}
.yed{bottom:88.680000px;}
.yfd{bottom:95.400000px;}
.yeb{bottom:95.430000px;}
.y5c{bottom:96.210000px;}
.ydf{bottom:96.240000px;}
.y57{bottom:101.430000px;}
.y1{bottom:101.640000px;}
.y108{bottom:105.930000px;}
.y115{bottom:106.050000px;}
.y20a{bottom:111.810000px;}
.yfc{bottom:113.040000px;}
.yea{bottom:113.070000px;}
.y1b0{bottom:113.700000px;}
.ycd{bottom:114.330000px;}
.y127{bottom:115.500000px;}
.y92{bottom:116.490000px;}
.yf7{bottom:116.580000px;}
.y48{bottom:120.540000px;}
.y56{bottom:123.570000px;}
.y114{bottom:123.600000px;}
.y152{bottom:123.960000px;}
.y185{bottom:124.320000px;}
.y6b{bottom:126.660000px;}
.y209{bottom:129.360000px;}
.y1af{bottom:131.250000px;}
.yd1{bottom:133.470000px;}
.yfb{bottom:133.560000px;}
.ye9{bottom:133.590000px;}
.y29{bottom:139.080000px;}
.y151{bottom:141.510000px;}
.y184{bottom:141.870000px;}
.y55{bottom:145.620000px;}
.y113{bottom:145.650000px;}
.y208{bottom:147.000000px;}
.y1ae{bottom:149.700000px;}
.y126{bottom:151.050000px;}
.yd0{bottom:154.080000px;}
.ye8{bottom:154.110000px;}
.yfa{bottom:154.170000px;}
.y1da{bottom:156.630000px;}
.y28{bottom:156.720000px;}
.y47{bottom:156.990000px;}
.y150{bottom:159.060000px;}
.y183{bottom:159.510000px;}
.y6a{bottom:162.300000px;}
.y1ad{bottom:167.250000px;}
.y135{bottom:167.430000px;}
.y54{bottom:167.670000px;}
.y107{bottom:167.760000px;}
.y112{bottom:167.790000px;}
.yb5{bottom:170.220000px;}
.y207{bottom:170.580000px;}
.y27{bottom:174.270000px;}
.ycf{bottom:174.690000px;}
.ye7{bottom:174.720000px;}
.yf9{bottom:174.780000px;}
.y14f{bottom:177.510000px;}
.y1d9{bottom:180.210000px;}
.y125{bottom:183.270000px;}
.y46{bottom:183.630000px;}
.y1ac{bottom:185.700000px;}
.yb4{bottom:187.770000px;}
.y206{bottom:188.130000px;}
.y53{bottom:189.810000px;}
.ydd{bottom:189.840000px;}
.y26{bottom:191.910000px;}
.y69{bottom:194.520000px;}
.y14e{bottom:195.060000px;}
.yce{bottom:195.300000px;}
.ye6{bottom:195.330000px;}
.yf8{bottom:195.390000px;}
.y1d8{bottom:197.850000px;}
.y134{bottom:203.070000px;}
.y1ab{bottom:203.250000px;}
.yb3{bottom:205.410000px;}
.y121{bottom:205.500000px;}
.y205{bottom:205.680000px;}
.y25{bottom:209.460000px;}
.y52{bottom:211.860000px;}
.ydc{bottom:211.890000px;}
.y111{bottom:211.980000px;}
.y14d{bottom:212.610000px;}
.y182{bottom:212.700000px;}
.y45{bottom:219.180000px;}
.yd2{bottom:220.980000px;}
.y1d7{bottom:221.430000px;}
.y1aa{bottom:221.700000px;}
.yfe{bottom:223.320000px;}
.y24{bottom:227.010000px;}
.y181{bottom:230.250000px;}
.yb2{bottom:231.960000px;}
.y91{bottom:236.730000px;}
.y133{bottom:238.620000px;}
.y1d6{bottom:238.980000px;}
.y1a9{bottom:239.250000px;}
.y14c{bottom:240.060000px;}
.y204{bottom:240.870000px;}
.y120{bottom:241.050000px;}
.y23{bottom:244.650000px;}
.y180{bottom:247.800000px;}
.y44{bottom:251.400000px;}
.y90{bottom:255.180000px;}
.y1d5{bottom:256.530000px;}
.y1a8{bottom:257.700000px;}
.y75{bottom:261.120000px;}
.y22{bottom:262.200000px;}
.y203{bottom:264.450000px;}
.y17f{bottom:265.440000px;}
.yb1{bottom:267.510000px;}
.y11f{bottom:273.270000px;}
.y8f{bottom:273.630000px;}
.y132{bottom:274.170000px;}
.y1a7{bottom:275.250000px;}
.y14b{bottom:275.970000px;}
.y202{bottom:282.090000px;}
.y17e{bottom:282.990000px;}
.yb0{bottom:285.150000px;}
.y21{bottom:289.110000px;}
.y1d4{bottom:291.720000px;}
.y131{bottom:291.810000px;}
.y8e{bottom:292.080000px;}
.y1a6{bottom:293.700000px;}
.y74{bottom:296.760000px;}
.y201{bottom:299.640000px;}
.y11b{bottom:300.000000px;}
.y17d{bottom:300.540000px;}
.yaf{bottom:302.700000px;}
.y8d{bottom:310.440000px;}
.y1a5{bottom:311.250000px;}
.y1d3{bottom:315.300000px;}
.y11a{bottom:317.550000px;}
.y17c{bottom:318.180000px;}
.y130{bottom:318.360000px;}
.y14a{bottom:321.690000px;}
.y200{bottom:323.220000px;}
.ycc{bottom:327.630000px;}
.y8c{bottom:328.890000px;}
.y73{bottom:328.980000px;}
.y1a4{bottom:329.700000px;}
.yf5{bottom:329.970000px;}
.y1d2{bottom:332.940000px;}
.y17b{bottom:335.730000px;}
.y20{bottom:337.710000px;}
.yae{bottom:338.340000px;}
.y1ff{bottom:340.860000px;}
.y119{bottom:344.190000px;}
.y8b{bottom:347.250000px;}
.y12f{bottom:348.330000px;}
.y17a{bottom:353.370000px;}
.y1d1{bottom:356.520000px;}
.y1fe{bottom:364.440000px;}
.y1a3{bottom:364.800000px;}
.y8a{bottom:365.700000px;}
.yad{bottom:370.560000px;}
.y179{bottom:370.920000px;}
.ycb{bottom:373.350000px;}
.y1d0{bottom:374.070000px;}
.y1f{bottom:374.700000px;}
.y118{bottom:379.740000px;}
.y1a2{bottom:383.250000px;}
.y1fd{bottom:388.020000px;}
.y178{bottom:388.470000px;}
.y1cf{bottom:391.620000px;}
.y1e{bottom:392.340000px;}
.yf4{bottom:393.240000px;}
.y1a1{bottom:400.800000px;}
.y89{bottom:402.150000px;}
.y1fc{bottom:405.570000px;}
.y177{bottom:406.110000px;}
.yca{bottom:408.900000px;}
.y110{bottom:409.710000px;}
.y1d{bottom:409.890000px;}
.y1ce{bottom:415.290000px;}
.y88{bottom:419.700000px;}
.yf3{bottom:419.880000px;}
.y1fb{bottom:423.120000px;}
.y176{bottom:423.660000px;}
.y1c{bottom:427.530000px;}
.y1cd{bottom:432.840000px;}
.yc9{bottom:435.450000px;}
.y1a0{bottom:437.250000px;}
.y87{bottom:437.340000px;}
.y175{bottom:441.300000px;}
.y1b{bottom:445.080000px;}
.y1fa{bottom:446.790000px;}
.yac{bottom:450.390000px;}
.ye5{bottom:452.820000px;}
.y86{bottom:454.890000px;}
.y1cc{bottom:456.420000px;}
.y174{bottom:458.850000px;}
.y1a{bottom:462.630000px;}
.y12e{bottom:464.070000px;}
.y19f{bottom:464.160000px;}
.y1f9{bottom:464.340000px;}
.yc8{bottom:468.120000px;}
.y85{bottom:472.470000px;}
.y1cb{bottom:474.000000px;}
.y173{bottom:476.430000px;}
.y19{bottom:480.300000px;}
.y143{bottom:484.170000px;}
.yab{bottom:485.970000px;}
.y1f8{bottom:487.950000px;}
.y84{bottom:490.110000px;}
.y1ca{bottom:491.640000px;}
.y18{bottom:497.850000px;}
.yc7{bottom:501.090000px;}
.y1f7{bottom:505.500000px;}
.y83{bottom:507.660000px;}
.y172{bottom:512.070000px;}
.y19e{bottom:512.430000px;}
.y1c9{bottom:515.220000px;}
.y17{bottom:515.490000px;}
.yaa{bottom:521.610000px;}
.y1f6{bottom:523.140000px;}
.y82{bottom:525.300000px;}
.y116{bottom:525.480000px;}
.y171{bottom:529.620000px;}
.y19d{bottom:530.070000px;}
.y1c8{bottom:532.770000px;}
.y141{bottom:532.860000px;}
.y16{bottom:533.040000px;}
.y12d{bottom:534.840000px;}
.ya9{bottom:539.160000px;}
.yc5{bottom:546.000000px;}
.y1f5{bottom:546.720000px;}
.y170{bottom:547.260000px;}
.y19c{bottom:547.620000px;}
.y15{bottom:550.590000px;}
.y68{bottom:551.130000px;}
.y81{bottom:551.850000px;}
.y1c7{bottom:556.350000px;}
.ya8{bottom:556.800000px;}
.yec{bottom:559.500000px;}
.y1f4{bottom:564.270000px;}
.y16f{bottom:564.810000px;}
.y19b{bottom:565.260000px;}
.y14{bottom:568.230000px;}
.y140{bottom:568.500000px;}
.y67{bottom:568.770000px;}
.yc6{bottom:570.390000px;}
.y1c6{bottom:573.990000px;}
.ya7{bottom:574.350000px;}
.y1f3{bottom:581.910000px;}
.y16e{bottom:582.360000px;}
.y19a{bottom:582.810000px;}
.y13{bottom:585.780000px;}
.y66{bottom:586.320000px;}
.y80{bottom:587.130000px;}
.yc3{bottom:594.690000px;}
.y7f{bottom:597.210000px;}
.y1c5{bottom:597.570000px;}
.y16d{bottom:600.000000px;}
.y199{bottom:600.360000px;}
.y65{bottom:603.870000px;}
.y13f{bottom:604.050000px;}
.y1f2{bottom:605.490000px;}
.y12c{bottom:606.030000px;}
.ya6{bottom:609.900000px;}
.y12{bottom:612.690000px;}
.y1c4{bottom:615.120000px;}
.y16c{bottom:617.550000px;}
.y198{bottom:618.000000px;}
.y13e{bottom:621.690000px;}
.y1f1{bottom:623.040000px;}
.y12b{bottom:623.580000px;}
.y64{bottom:630.510000px;}
.y16b{bottom:635.190000px;}
.y1c3{bottom:638.700000px;}
.y13d{bottom:639.240000px;}
.ybf{bottom:639.600000px;}
.y10e{bottom:641.130000px;}
.y12a{bottom:641.220000px;}
.y7e{bottom:642.210000px;}
.ya5{bottom:645.540000px;}
.y1f0{bottom:646.620000px;}
.y124{bottom:647.970000px;}
.y16a{bottom:652.740000px;}
.y197{bottom:653.550000px;}
.y1c2{bottom:656.340000px;}
.y43{bottom:659.760000px;}
.y11{bottom:660.930000px;}
.ya4{bottom:663.090000px;}
.yc1{bottom:663.990000px;}
.y1ef{bottom:664.260000px;}
.y63{bottom:666.060000px;}
.ye3{bottom:666.240000px;}
.y7d{bottom:668.760000px;}
.y169{bottom:670.290000px;}
.y196{bottom:671.190000px;}
.y13c{bottom:672.180000px;}
.y1c1{bottom:673.890000px;}
.y129{bottom:676.770000px;}
.ya3{bottom:680.730000px;}
.y72{bottom:681.090000px;}
.y11e{bottom:681.720000px;}
.y1ee{bottom:681.810000px;}
.y123{bottom:683.520000px;}
.y62{bottom:683.700000px;}
.y168{bottom:687.930000px;}
.y195{bottom:688.740000px;}
.y1c0{bottom:691.440000px;}
.y42{bottom:695.400000px;}
.y10{bottom:696.750000px;}
.ya2{bottom:698.280000px;}
.y71{bottom:698.640000px;}
.y7c{bottom:701.340000px;}
.y1ed{bottom:705.390000px;}
.y167{bottom:705.480000px;}
.y194{bottom:706.290000px;}
.y10d{bottom:707.370000px;}
.y128{bottom:708.990000px;}
.y1bf{bottom:709.080000px;}
.ybe{bottom:709.620000px;}
.y41{bottom:712.950000px;}
.y122{bottom:715.740000px;}
.y70{bottom:716.280000px;}
.y51{bottom:716.640000px;}
.y11d{bottom:717.270000px;}
.y1ec{bottom:722.940000px;}
.y166{bottom:723.120000px;}
.y193{bottom:723.930000px;}
.ya1{bottom:724.830000px;}
.y1be{bottom:726.630000px;}
.ye2{bottom:729.510000px;}
.y40{bottom:730.590000px;}
.yf{bottom:732.750000px;}
.y6f{bottom:733.830000px;}
.y7b{bottom:736.890000px;}
.y165{bottom:740.670000px;}
.y192{bottom:741.480000px;}
.y10c{bottom:743.010000px;}
.ybd{bottom:745.260000px;}
.y1eb{bottom:746.520000px;}
.y3f{bottom:748.140000px;}
.y11c{bottom:749.490000px;}
.y1bd{bottom:750.210000px;}
.y7a{bottom:754.530000px;}
.y164{bottom:758.220000px;}
.y191{bottom:759.120000px;}
.ya0{bottom:760.380000px;}
.y6e{bottom:760.470000px;}
.ybc{bottom:762.810000px;}
.y1ea{bottom:764.160000px;}
.ye1{bottom:765.060000px;}
.y1bc{bottom:767.850000px;}
.ye{bottom:768.750000px;}
.y79{bottom:772.080000px;}
.y3e{bottom:774.690000px;}
.y163{bottom:775.860000px;}
.y106{bottom:775.950000px;}
.y190{bottom:776.670000px;}
.y9f{bottom:778.830000px;}
.y1bb{bottom:785.400000px;}
.y1e9{bottom:787.740000px;}
.y13b{bottom:787.920000px;}
.ybb{bottom:789.450000px;}
.yd{bottom:790.530000px;}
.ye0{bottom:791.700000px;}
.y162{bottom:793.410000px;}
.y18f{bottom:794.220000px;}
.y6d{bottom:796.020000px;}
.y9e{bottom:797.190000px;}
.y78{bottom:798.720000px;}
.yc{bottom:804.750000px;}
.y1e8{bottom:805.290000px;}
.y1ba{bottom:808.980000px;}
.y3d{bottom:810.600000px;}
.y18e{bottom:811.770000px;}
.y9d{bottom:815.640000px;}
.y161{bottom:820.050000px;}
.ydb{bottom:824.640000px;}
.yba{bottom:825.270000px;}
.yb{bottom:826.530000px;}
.y6c{bottom:828.240000px;}
.y1e7{bottom:828.870000px;}
.y18d{bottom:830.220000px;}
.y5b{bottom:832.290000px;}
.y9c{bottom:834.090000px;}
.y77{bottom:834.270000px;}
.ya{bottom:840.750000px;}
.y1e6{bottom:846.510000px;}
.y18c{bottom:847.860000px;}
.y9b{bottom:852.450000px;}
.y1b9{bottom:853.440000px;}
.y160{bottom:855.510000px;}
.y13a{bottom:858.660000px;}
.y3c{bottom:858.930000px;}
.y9{bottom:862.530000px;}
.y18b{bottom:865.410000px;}
.y76{bottom:866.490000px;}
.y1e5{bottom:870.090000px;}
.yb9{bottom:873.600000px;}
.y15f{bottom:874.050000px;}
.y3b{bottom:876.480000px;}
.y8{bottom:880.530000px;}
.y18a{bottom:883.860000px;}
.y9a{bottom:885.570000px;}
.y1e4{bottom:887.640000px;}
.y109{bottom:891.600000px;}
.y3a{bottom:894.030000px;}
.y139{bottom:894.210000px;}
.y189{bottom:901.410000px;}
.y1b8{bottom:901.770000px;}
.y1e3{bottom:905.280000px;}
.yb8{bottom:905.820000px;}
.y15e{bottom:909.150000px;}
.y39{bottom:911.670000px;}
.y7{bottom:912.840000px;}
.y188{bottom:918.960000px;}
.y138{bottom:920.850000px;}
.y15d{bottom:927.600000px;}
.y1b7{bottom:928.680000px;}
.y1e2{bottom:928.860000px;}
.y38{bottom:929.220000px;}
.y6{bottom:932.190000px;}
.y187{bottom:936.510000px;}
.yde{bottom:940.290000px;}
.y15c{bottom:945.150000px;}
.y1e1{bottom:946.410000px;}
.y37{bottom:946.860000px;}
.y4f{bottom:948.030000px;}
.y5{bottom:951.540000px;}
.y137{bottom:953.790000px;}
.y15b{bottom:962.790000px;}
.y186{bottom:963.960000px;}
.y36{bottom:964.410000px;}
.y1b6{bottom:966.030000px;}
.y15a{bottom:980.340000px;}
.yb7{bottom:981.150000px;}
.y35{bottom:981.960000px;}
.y1e0{bottom:987.630000px;}
.y4{bottom:989.880000px;}
.y4e{bottom:996.720000px;}
.y159{bottom:997.890000px;}
.y34{bottom:999.600000px;}
.y1df{bottom:1005.180000px;}
.y103{bottom:1007.340000px;}
.yb6{bottom:1007.790000px;}
.y99{bottom:1008.150000px;}
.y1b5{bottom:1014.300000px;}
.y3{bottom:1014.570000px;}
.y158{bottom:1015.560000px;}
.y33{bottom:1017.180000px;}
.y1de{bottom:1022.760000px;}
.y98{bottom:1025.820000px;}
.y4d{bottom:1032.300000px;}
.y157{bottom:1033.110000px;}
.y32{bottom:1034.820000px;}
.y97{bottom:1043.370000px;}
.y1dd{bottom:1046.340000px;}
.y4c{bottom:1049.850000px;}
.y156{bottom:1051.560000px;}
.y31{bottom:1052.370000px;}
.yda{bottom:1055.970000px;}
.y96{bottom:1060.920000px;}
.y1dc{bottom:1063.980000px;}
.y1b4{bottom:1067.400000px;}
.y155{bottom:1069.110000px;}
.y136{bottom:1069.470000px;}
.y30{bottom:1069.920000px;}
.y102{bottom:1078.110000px;}
.y95{bottom:1078.560000px;}
.y1db{bottom:1081.530000px;}
.y4b{bottom:1085.490000px;}
.y1b3{bottom:1085.850000px;}
.y154{bottom:1086.750000px;}
.y2f{bottom:1087.560000px;}
.y94{bottom:1096.110000px;}
.y1b2{bottom:1103.400000px;}
.y153{bottom:1104.300000px;}
.yd9{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y93{bottom:1113.750000px;}
.y4a{bottom:1120.950000px;}
.y1b1{bottom:1121.850000px;}
.y2d{bottom:1122.750000px;}
.y49{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h16{height:23.580000px;}
.he{height:26.550000px;}
.h1a{height:26.640000px;}
.h2{height:30.022383px;}
.h28{height:35.497617px;}
.h6{height:37.191445px;}
.h3{height:40.100098px;}
.h1d{height:41.130000px;}
.h20{height:41.220000px;}
.h17{height:44.190000px;}
.h27{height:46.110000px;}
.h15{height:47.970000px;}
.h25{height:48.600000px;}
.h22{height:48.630000px;}
.h24{height:48.690000px;}
.h14{height:50.667539px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:53.573730px;}
.h9{height:55.779258px;}
.h29{height:57.323320px;}
.h5{height:58.706543px;}
.h12{height:59.973223px;}
.ha{height:60.960938px;}
.hd{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h26{height:73.470000px;}
.h4{height:74.746582px;}
.h13{height:96.027539px;}
.h19{height:105.930000px;}
.h1f{height:105.960000px;}
.h11{height:114.930000px;}
.h1c{height:114.960000px;}
.h18{height:212.580000px;}
.h1e{height:212.610000px;}
.h21{height:212.670000px;}
.h10{height:230.580000px;}
.h1b{height:230.610000px;}
.h23{height:230.700000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:40.410000px;}
.w11{width:40.440000px;}
.w28{width:40.500000px;}
.w2c{width:76.770000px;}
.wf{width:81.000000px;}
.w32{width:93.240000px;}
.w33{width:93.270000px;}
.w2b{width:96.510000px;}
.w2f{width:97.590000px;}
.w20{width:101.610000px;}
.w2a{width:104.580000px;}
.w2e{width:104.700000px;}
.w9{width:105.120000px;}
.wa{width:105.960000px;}
.w29{width:107.100000px;}
.w22{width:108.840000px;}
.w1c{width:112.980000px;}
.w30{width:113.040000px;}
.w12{width:116.490000px;}
.wb{width:117.000000px;}
.w17{width:117.570000px;}
.we{width:120.420000px;}
.w26{width:127.980000px;}
.wc{width:133.650000px;}
.w2d{width:134.100000px;}
.w25{width:143.910000px;}
.w1f{width:149.670000px;}
.w27{width:151.470000px;}
.w21{width:157.500000px;}
.w1b{width:162.450000px;}
.w16{width:162.630000px;}
.w24{width:179.220000px;}
.w31{width:187.320000px;}
.w10{width:187.560000px;}
.w1e{width:189.750000px;}
.w23{width:192.690000px;}
.w3{width:198.090000px;}
.w1d{width:198.720000px;}
.w7{width:199.890000px;}
.w18{width:203.580000px;}
.w13{width:203.760000px;}
.w1a{width:205.380000px;}
.w15{width:205.830000px;}
.w19{width:227.010000px;}
.w14{width:227.460000px;}
.wd{width:228.720000px;}
.w5{width:251.670000px;}
.w4{width:292.890000px;}
.w8{width:329.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x42{left:33.780000px;}
.x40{left:39.060000px;}
.x3e{left:40.230000px;}
.x3f{left:45.540000px;}
.x41{left:54.360000px;}
.x43{left:59.610000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x45{left:111.419987px;}
.x44{left:122.039987px;}
.x1e{left:163.650000px;}
.x2b{left:178.410000px;}
.x1a{left:181.560000px;}
.x23{left:185.970000px;}
.x27{left:187.050000px;}
.x7{left:200.730000px;}
.x5{left:211.619987px;}
.x2{left:250.499987px;}
.x35{left:253.020000px;}
.xe{left:286.499987px;}
.x3a{left:291.180000px;}
.x3c{left:296.040000px;}
.x1f{left:298.020000px;}
.xc{left:306.119987px;}
.x12{left:308.729987px;}
.x13{left:321.509987px;}
.x38{left:326.910000px;}
.x2f{left:330.600000px;}
.x2a{left:340.860000px;}
.x34{left:345.449987px;}
.x26{left:349.320000px;}
.x32{left:361.919987px;}
.x10{left:370.109987px;}
.x2c{left:371.820000px;}
.x1b{left:382.170000px;}
.x24{left:390.450000px;}
.x9{left:399.630000px;}
.x14{left:402.599987px;}
.x3d{left:409.890000px;}
.x39{left:461.730000px;}
.x36{left:466.230000px;}
.x15{left:469.019987px;}
.x22{left:486.300000px;}
.x1c{left:488.010000px;}
.x3b{left:504.480000px;}
.x18{left:511.889987px;}
.x20{left:527.460000px;}
.x19{left:538.889987px;}
.x17{left:541.139987px;}
.x2d{left:551.760000px;}
.x37{left:563.460000px;}
.x28{left:572.460000px;}
.x16{left:590.639987px;}
.x1d{left:594.690000px;}
.x11{left:610.889987px;}
.x25{left:618.630000px;}
.x21{left:648.600000px;}
.xa{left:652.110000px;}
.x4{left:661.559987px;}
.xf{left:667.139987px;}
.xb{left:675.059987px;}
.xd{left:691.889987px;}
.x2e{left:696.480000px;}
.x30{left:699.809987px;}
.x31{left:705.389987px;}
.x33{left:711.059987px;}
.x29{left:722.850000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-10.880000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:29.440000pt;}
.v6{vertical-align:40.320000pt;}
.ls2f{letter-spacing:-0.331733pt;}
.ls2d{letter-spacing:-0.274133pt;}
.ls36{letter-spacing:-0.269333pt;}
.ls35{letter-spacing:-0.266133pt;}
.ls1e{letter-spacing:-0.253867pt;}
.ls38{letter-spacing:-0.233067pt;}
.ls3d{letter-spacing:-0.232533pt;}
.ls10{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.147733pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.056533pt;}
.ls2c{letter-spacing:-0.043520pt;}
.ls2a{letter-spacing:-0.033600pt;}
.ls39{letter-spacing:-0.032000pt;}
.ls2b{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.011733pt;}
.ls3e{letter-spacing:-0.008000pt;}
.ls2e{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.001280pt;}
.ls26{letter-spacing:0.002560pt;}
.ls29{letter-spacing:0.003840pt;}
.ls25{letter-spacing:0.017920pt;}
.ls33{letter-spacing:0.020480pt;}
.ls30{letter-spacing:0.039040pt;}
.ls18{letter-spacing:0.040320pt;}
.ls24{letter-spacing:0.042240pt;}
.ls19{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.045867pt;}
.ls1c{letter-spacing:0.046080pt;}
.ls7{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.ls3a{letter-spacing:0.054400pt;}
.ls1a{letter-spacing:0.057600pt;}
.lsd{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.065920pt;}
.ls1d{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls34{letter-spacing:0.086720pt;}
.ls15{letter-spacing:0.086933pt;}
.ls28{letter-spacing:0.092160pt;}
.ls31{letter-spacing:0.105280pt;}
.ls20{letter-spacing:0.118400pt;}
.ls27{letter-spacing:0.118933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.142720pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.154240pt;}
.lse{letter-spacing:0.155200pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.386133pt;}
.ls23{letter-spacing:12.083840pt;}
.ls21{letter-spacing:14.302400pt;}
.ls22{letter-spacing:27.600320pt;}
.ls3c{letter-spacing:43.063680pt;}
.ls1b{letter-spacing:56.503680pt;}
.ls3b{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.255467pt;}
.wsd{word-spacing:-12.883200pt;}
.ws10{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.843733pt;}
.ws12{word-spacing:-11.822933pt;}
.ws23{word-spacing:-11.811200pt;}
.ws9{word-spacing:-11.810667pt;}
.wsf{word-spacing:-11.802880pt;}
.ws8{word-spacing:-11.802667pt;}
.ws11{word-spacing:-11.800320pt;}
.ws18{word-spacing:-11.799040pt;}
.ws7{word-spacing:-11.756800pt;}
.ws1d{word-spacing:-11.750080pt;}
.ws25{word-spacing:-11.748800pt;}
.wsb{word-spacing:-11.745067pt;}
.ws1a{word-spacing:-11.744960pt;}
.ws19{word-spacing:-11.723200pt;}
.ws1b{word-spacing:-11.713280pt;}
.ws13{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.590933pt;}
.ws24{word-spacing:-11.524267pt;}
.ws21{word-spacing:-11.523733pt;}
.ws1f{word-spacing:-11.490667pt;}
.ws20{word-spacing:-11.487467pt;}
.ws1c{word-spacing:-11.482667pt;}
.ws1e{word-spacing:-11.425067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.294933pt;}
.ws14{word-spacing:-8.236800pt;}
.ws16{word-spacing:-7.722133pt;}
.ws17{word-spacing:-7.607040pt;}
.ws15{word-spacing:-7.605760pt;}
.ws4{word-spacing:-7.603200pt;}
.ws22{word-spacing:-7.571200pt;}
.wse{word-spacing:0.000000pt;}
.wsc{word-spacing:3.826560pt;}
._17{margin-left:-7.160000pt;}
._16{margin-left:-5.240000pt;}
._18{margin-left:-3.683520pt;}
._2{margin-left:-2.622400pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.895018pt;}
._8{width:1.848450pt;}
._7{width:2.992533pt;}
._a{width:3.994585pt;}
._6{width:5.022932pt;}
._5{width:6.038934pt;}
._9{width:7.018152pt;}
._19{width:7.910714pt;}
._b{width:8.817600pt;}
._e{width:9.832960pt;}
._f{width:10.741440pt;}
._3{width:13.199466pt;}
._4{width:14.778243pt;}
._1a{width:16.192320pt;}
._1b{width:17.154240pt;}
._1e{width:18.137280pt;}
._d{width:19.345280pt;}
._c{width:20.414080pt;}
._12{width:26.239040pt;}
._1f{width:29.194347pt;}
._20{width:30.086720pt;}
._15{width:31.850240pt;}
._1d{width:36.335467pt;}
._1c{width:37.247680pt;}
._21{width:65.250240pt;}
._11{width:77.007040pt;}
._10{width:78.343040pt;}
._14{width:94.749120pt;}
._13{width:114.896000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:5.520000pt;}
.yc2{bottom:5.600000pt;}
.y146{bottom:6.720000pt;}
.y50{bottom:6.960000pt;}
.y105{bottom:6.986667pt;}
.y60{bottom:7.040000pt;}
.y104{bottom:10.986667pt;}
.y147{bottom:15.680000pt;}
.y149{bottom:16.000000pt;}
.ye4{bottom:21.200000pt;}
.yf6{bottom:21.280000pt;}
.y10f{bottom:22.640000pt;}
.y145{bottom:23.440000pt;}
.yd6{bottom:23.840000pt;}
.yf2{bottom:23.866667pt;}
.yc4{bottom:23.920000pt;}
.y148{bottom:26.080000pt;}
.y144{bottom:26.160000pt;}
.y100{bottom:26.560000pt;}
.yf0{bottom:26.586667pt;}
.y5f{bottom:26.640000pt;}
.yc0{bottom:27.280000pt;}
.y10b{bottom:30.640000pt;}
.y5a{bottom:31.280000pt;}
.yd5{bottom:42.160000pt;}
.yf1{bottom:42.186667pt;}
.y101{bottom:42.240000pt;}
.yef{bottom:42.266667pt;}
.yff{bottom:42.320000pt;}
.y5e{bottom:46.240000pt;}
.y10a{bottom:46.320000pt;}
.y142{bottom:48.666667pt;}
.y117{bottom:50.240000pt;}
.y59{bottom:50.880000pt;}
.yd7{bottom:60.400000pt;}
.yd4{bottom:60.480000pt;}
.yee{bottom:60.506667pt;}
.y2{bottom:65.226667pt;}
.y61{bottom:65.840000pt;}
.y5d{bottom:65.920000pt;}
.y2b{bottom:65.946667pt;}
.y58{bottom:70.560000pt;}
.yd3{bottom:78.800000pt;}
.yed{bottom:78.826667pt;}
.yfd{bottom:84.800000pt;}
.yeb{bottom:84.826667pt;}
.y5c{bottom:85.520000pt;}
.ydf{bottom:85.546667pt;}
.y57{bottom:90.160000pt;}
.y1{bottom:90.346667pt;}
.y108{bottom:94.160000pt;}
.y115{bottom:94.266667pt;}
.y20a{bottom:99.386667pt;}
.yfc{bottom:100.480000pt;}
.yea{bottom:100.506667pt;}
.y1b0{bottom:101.066667pt;}
.ycd{bottom:101.626667pt;}
.y127{bottom:102.666667pt;}
.y92{bottom:103.546667pt;}
.yf7{bottom:103.626667pt;}
.y48{bottom:107.146667pt;}
.y56{bottom:109.840000pt;}
.y114{bottom:109.866667pt;}
.y152{bottom:110.186667pt;}
.y185{bottom:110.506667pt;}
.y6b{bottom:112.586667pt;}
.y209{bottom:114.986667pt;}
.y1af{bottom:116.666667pt;}
.yd1{bottom:118.640000pt;}
.yfb{bottom:118.720000pt;}
.ye9{bottom:118.746667pt;}
.y29{bottom:123.626667pt;}
.y151{bottom:125.786667pt;}
.y184{bottom:126.106667pt;}
.y55{bottom:129.440000pt;}
.y113{bottom:129.466667pt;}
.y208{bottom:130.666667pt;}
.y1ae{bottom:133.066667pt;}
.y126{bottom:134.266667pt;}
.yd0{bottom:136.960000pt;}
.ye8{bottom:136.986667pt;}
.yfa{bottom:137.040000pt;}
.y1da{bottom:139.226667pt;}
.y28{bottom:139.306667pt;}
.y47{bottom:139.546667pt;}
.y150{bottom:141.386667pt;}
.y183{bottom:141.786667pt;}
.y6a{bottom:144.266667pt;}
.y1ad{bottom:148.666667pt;}
.y135{bottom:148.826667pt;}
.y54{bottom:149.040000pt;}
.y107{bottom:149.120000pt;}
.y112{bottom:149.146667pt;}
.yb5{bottom:151.306667pt;}
.y207{bottom:151.626667pt;}
.y27{bottom:154.906667pt;}
.ycf{bottom:155.280000pt;}
.ye7{bottom:155.306667pt;}
.yf9{bottom:155.360000pt;}
.y14f{bottom:157.786667pt;}
.y1d9{bottom:160.186667pt;}
.y125{bottom:162.906667pt;}
.y46{bottom:163.226667pt;}
.y1ac{bottom:165.066667pt;}
.yb4{bottom:166.906667pt;}
.y206{bottom:167.226667pt;}
.y53{bottom:168.720000pt;}
.ydd{bottom:168.746667pt;}
.y26{bottom:170.586667pt;}
.y69{bottom:172.906667pt;}
.y14e{bottom:173.386667pt;}
.yce{bottom:173.600000pt;}
.ye6{bottom:173.626667pt;}
.yf8{bottom:173.680000pt;}
.y1d8{bottom:175.866667pt;}
.y134{bottom:180.506667pt;}
.y1ab{bottom:180.666667pt;}
.yb3{bottom:182.586667pt;}
.y121{bottom:182.666667pt;}
.y205{bottom:182.826667pt;}
.y25{bottom:186.186667pt;}
.y52{bottom:188.320000pt;}
.ydc{bottom:188.346667pt;}
.y111{bottom:188.426667pt;}
.y14d{bottom:188.986667pt;}
.y182{bottom:189.066667pt;}
.y45{bottom:194.826667pt;}
.yd2{bottom:196.426667pt;}
.y1d7{bottom:196.826667pt;}
.y1aa{bottom:197.066667pt;}
.yfe{bottom:198.506667pt;}
.y24{bottom:201.786667pt;}
.y181{bottom:204.666667pt;}
.yb2{bottom:206.186667pt;}
.y91{bottom:210.426667pt;}
.y133{bottom:212.106667pt;}
.y1d6{bottom:212.426667pt;}
.y1a9{bottom:212.666667pt;}
.y14c{bottom:213.386667pt;}
.y204{bottom:214.106667pt;}
.y120{bottom:214.266667pt;}
.y23{bottom:217.466667pt;}
.y180{bottom:220.266667pt;}
.y44{bottom:223.466667pt;}
.y90{bottom:226.826667pt;}
.y1d5{bottom:228.026667pt;}
.y1a8{bottom:229.066667pt;}
.y75{bottom:232.106667pt;}
.y22{bottom:233.066667pt;}
.y203{bottom:235.066667pt;}
.y17f{bottom:235.946667pt;}
.yb1{bottom:237.786667pt;}
.y11f{bottom:242.906667pt;}
.y8f{bottom:243.226667pt;}
.y132{bottom:243.706667pt;}
.y1a7{bottom:244.666667pt;}
.y14b{bottom:245.306667pt;}
.y202{bottom:250.746667pt;}
.y17e{bottom:251.546667pt;}
.yb0{bottom:253.466667pt;}
.y21{bottom:256.986667pt;}
.y1d4{bottom:259.306667pt;}
.y131{bottom:259.386667pt;}
.y8e{bottom:259.626667pt;}
.y1a6{bottom:261.066667pt;}
.y74{bottom:263.786667pt;}
.y201{bottom:266.346667pt;}
.y11b{bottom:266.666667pt;}
.y17d{bottom:267.146667pt;}
.yaf{bottom:269.066667pt;}
.y8d{bottom:275.946667pt;}
.y1a5{bottom:276.666667pt;}
.y1d3{bottom:280.266667pt;}
.y11a{bottom:282.266667pt;}
.y17c{bottom:282.826667pt;}
.y130{bottom:282.986667pt;}
.y14a{bottom:285.946667pt;}
.y200{bottom:287.306667pt;}
.ycc{bottom:291.226667pt;}
.y8c{bottom:292.346667pt;}
.y73{bottom:292.426667pt;}
.y1a4{bottom:293.066667pt;}
.yf5{bottom:293.306667pt;}
.y1d2{bottom:295.946667pt;}
.y17b{bottom:298.426667pt;}
.y20{bottom:300.186667pt;}
.yae{bottom:300.746667pt;}
.y1ff{bottom:302.986667pt;}
.y119{bottom:305.946667pt;}
.y8b{bottom:308.666667pt;}
.y12f{bottom:309.626667pt;}
.y17a{bottom:314.106667pt;}
.y1d1{bottom:316.906667pt;}
.y1fe{bottom:323.946667pt;}
.y1a3{bottom:324.266667pt;}
.y8a{bottom:325.066667pt;}
.yad{bottom:329.386667pt;}
.y179{bottom:329.706667pt;}
.ycb{bottom:331.866667pt;}
.y1d0{bottom:332.506667pt;}
.y1f{bottom:333.066667pt;}
.y118{bottom:337.546667pt;}
.y1a2{bottom:340.666667pt;}
.y1fd{bottom:344.906667pt;}
.y178{bottom:345.306667pt;}
.y1cf{bottom:348.106667pt;}
.y1e{bottom:348.746667pt;}
.yf4{bottom:349.546667pt;}
.y1a1{bottom:356.266667pt;}
.y89{bottom:357.466667pt;}
.y1fc{bottom:360.506667pt;}
.y177{bottom:360.986667pt;}
.yca{bottom:363.466667pt;}
.y110{bottom:364.186667pt;}
.y1d{bottom:364.346667pt;}
.y1ce{bottom:369.146667pt;}
.y88{bottom:373.066667pt;}
.yf3{bottom:373.226667pt;}
.y1fb{bottom:376.106667pt;}
.y176{bottom:376.586667pt;}
.y1c{bottom:380.026667pt;}
.y1cd{bottom:384.746667pt;}
.yc9{bottom:387.066667pt;}
.y1a0{bottom:388.666667pt;}
.y87{bottom:388.746667pt;}
.y175{bottom:392.266667pt;}
.y1b{bottom:395.626667pt;}
.y1fa{bottom:397.146667pt;}
.yac{bottom:400.346667pt;}
.ye5{bottom:402.506667pt;}
.y86{bottom:404.346667pt;}
.y1cc{bottom:405.706667pt;}
.y174{bottom:407.866667pt;}
.y1a{bottom:411.226667pt;}
.y12e{bottom:412.506667pt;}
.y19f{bottom:412.586667pt;}
.y1f9{bottom:412.746667pt;}
.yc8{bottom:416.106667pt;}
.y85{bottom:419.973333pt;}
.y1cb{bottom:421.333333pt;}
.y173{bottom:423.493333pt;}
.y19{bottom:426.933333pt;}
.y143{bottom:430.373333pt;}
.yab{bottom:431.973333pt;}
.y1f8{bottom:433.733333pt;}
.y84{bottom:435.653333pt;}
.y1ca{bottom:437.013333pt;}
.y18{bottom:442.533333pt;}
.yc7{bottom:445.413333pt;}
.y1f7{bottom:449.333333pt;}
.y83{bottom:451.253333pt;}
.y172{bottom:455.173333pt;}
.y19e{bottom:455.493333pt;}
.y1c9{bottom:457.973333pt;}
.y17{bottom:458.213333pt;}
.yaa{bottom:463.653333pt;}
.y1f6{bottom:465.013333pt;}
.y82{bottom:466.933333pt;}
.y116{bottom:467.093333pt;}
.y171{bottom:470.773333pt;}
.y19d{bottom:471.173333pt;}
.y1c8{bottom:473.573333pt;}
.y141{bottom:473.653333pt;}
.y16{bottom:473.813333pt;}
.y12d{bottom:475.413333pt;}
.ya9{bottom:479.253333pt;}
.yc5{bottom:485.333333pt;}
.y1f5{bottom:485.973333pt;}
.y170{bottom:486.453333pt;}
.y19c{bottom:486.773333pt;}
.y15{bottom:489.413333pt;}
.y68{bottom:489.893333pt;}
.y81{bottom:490.533333pt;}
.y1c7{bottom:494.533333pt;}
.ya8{bottom:494.933333pt;}
.yec{bottom:497.333333pt;}
.y1f4{bottom:501.573333pt;}
.y16f{bottom:502.053333pt;}
.y19b{bottom:502.453333pt;}
.y14{bottom:505.093333pt;}
.y140{bottom:505.333333pt;}
.y67{bottom:505.573333pt;}
.yc6{bottom:507.013333pt;}
.y1c6{bottom:510.213333pt;}
.ya7{bottom:510.533333pt;}
.y1f3{bottom:517.253333pt;}
.y16e{bottom:517.653333pt;}
.y19a{bottom:518.053333pt;}
.y13{bottom:520.693333pt;}
.y66{bottom:521.173333pt;}
.y80{bottom:521.893333pt;}
.yc3{bottom:528.613333pt;}
.y7f{bottom:530.853333pt;}
.y1c5{bottom:531.173333pt;}
.y16d{bottom:533.333333pt;}
.y199{bottom:533.653333pt;}
.y65{bottom:536.773333pt;}
.y13f{bottom:536.933333pt;}
.y1f2{bottom:538.213333pt;}
.y12c{bottom:538.693333pt;}
.ya6{bottom:542.133333pt;}
.y12{bottom:544.613333pt;}
.y1c4{bottom:546.773333pt;}
.y16c{bottom:548.933333pt;}
.y198{bottom:549.333333pt;}
.y13e{bottom:552.613333pt;}
.y1f1{bottom:553.813333pt;}
.y12b{bottom:554.293333pt;}
.y64{bottom:560.453333pt;}
.y16b{bottom:564.613333pt;}
.y1c3{bottom:567.733333pt;}
.y13d{bottom:568.213333pt;}
.ybf{bottom:568.533333pt;}
.y10e{bottom:569.893333pt;}
.y12a{bottom:569.973333pt;}
.y7e{bottom:570.853333pt;}
.ya5{bottom:573.813333pt;}
.y1f0{bottom:574.773333pt;}
.y124{bottom:575.973333pt;}
.y16a{bottom:580.213333pt;}
.y197{bottom:580.933333pt;}
.y1c2{bottom:583.413333pt;}
.y43{bottom:586.453333pt;}
.y11{bottom:587.493333pt;}
.ya4{bottom:589.413333pt;}
.yc1{bottom:590.213333pt;}
.y1ef{bottom:590.453333pt;}
.y63{bottom:592.053333pt;}
.ye3{bottom:592.213333pt;}
.y7d{bottom:594.453333pt;}
.y169{bottom:595.813333pt;}
.y196{bottom:596.613333pt;}
.y13c{bottom:597.493333pt;}
.y1c1{bottom:599.013333pt;}
.y129{bottom:601.573333pt;}
.ya3{bottom:605.093333pt;}
.y72{bottom:605.413333pt;}
.y11e{bottom:605.973333pt;}
.y1ee{bottom:606.053333pt;}
.y123{bottom:607.573333pt;}
.y62{bottom:607.733333pt;}
.y168{bottom:611.493333pt;}
.y195{bottom:612.213333pt;}
.y1c0{bottom:614.613333pt;}
.y42{bottom:618.133333pt;}
.y10{bottom:619.333333pt;}
.ya2{bottom:620.693333pt;}
.y71{bottom:621.013333pt;}
.y7c{bottom:623.413333pt;}
.y1ed{bottom:627.013333pt;}
.y167{bottom:627.093333pt;}
.y194{bottom:627.813333pt;}
.y10d{bottom:628.773333pt;}
.y128{bottom:630.213333pt;}
.y1bf{bottom:630.293333pt;}
.ybe{bottom:630.773333pt;}
.y41{bottom:633.733333pt;}
.y122{bottom:636.213333pt;}
.y70{bottom:636.693333pt;}
.y51{bottom:637.013333pt;}
.y11d{bottom:637.573333pt;}
.y1ec{bottom:642.613333pt;}
.y166{bottom:642.773333pt;}
.y193{bottom:643.493333pt;}
.ya1{bottom:644.293333pt;}
.y1be{bottom:645.893333pt;}
.ye2{bottom:648.453333pt;}
.y40{bottom:649.413333pt;}
.yf{bottom:651.333333pt;}
.y6f{bottom:652.293333pt;}
.y7b{bottom:655.013333pt;}
.y165{bottom:658.373333pt;}
.y192{bottom:659.093333pt;}
.y10c{bottom:660.453333pt;}
.ybd{bottom:662.453333pt;}
.y1eb{bottom:663.573333pt;}
.y3f{bottom:665.013333pt;}
.y11c{bottom:666.213333pt;}
.y1bd{bottom:666.853333pt;}
.y7a{bottom:670.693333pt;}
.y164{bottom:673.973333pt;}
.y191{bottom:674.773333pt;}
.ya0{bottom:675.893333pt;}
.y6e{bottom:675.973333pt;}
.ybc{bottom:678.053333pt;}
.y1ea{bottom:679.253333pt;}
.ye1{bottom:680.053333pt;}
.y1bc{bottom:682.533333pt;}
.ye{bottom:683.333333pt;}
.y79{bottom:686.293333pt;}
.y3e{bottom:688.613333pt;}
.y163{bottom:689.653333pt;}
.y106{bottom:689.733333pt;}
.y190{bottom:690.373333pt;}
.y9f{bottom:692.293333pt;}
.y1bb{bottom:698.133333pt;}
.y1e9{bottom:700.213333pt;}
.y13b{bottom:700.373333pt;}
.ybb{bottom:701.733333pt;}
.yd{bottom:702.693333pt;}
.ye0{bottom:703.733333pt;}
.y162{bottom:705.253333pt;}
.y18f{bottom:705.973333pt;}
.y6d{bottom:707.573333pt;}
.y9e{bottom:708.613333pt;}
.y78{bottom:709.973333pt;}
.yc{bottom:715.333333pt;}
.y1e8{bottom:715.813333pt;}
.y1ba{bottom:719.093333pt;}
.y3d{bottom:720.533333pt;}
.y18e{bottom:721.573333pt;}
.y9d{bottom:725.013333pt;}
.y161{bottom:728.933333pt;}
.ydb{bottom:733.013333pt;}
.yba{bottom:733.573333pt;}
.yb{bottom:734.693333pt;}
.y6c{bottom:736.213333pt;}
.y1e7{bottom:736.773333pt;}
.y18d{bottom:737.973333pt;}
.y5b{bottom:739.813333pt;}
.y9c{bottom:741.413333pt;}
.y77{bottom:741.573333pt;}
.ya{bottom:747.333333pt;}
.y1e6{bottom:752.453333pt;}
.y18c{bottom:753.653333pt;}
.y9b{bottom:757.733333pt;}
.y1b9{bottom:758.613333pt;}
.y160{bottom:760.453333pt;}
.y13a{bottom:763.253333pt;}
.y3c{bottom:763.493333pt;}
.y9{bottom:766.693333pt;}
.y18b{bottom:769.253333pt;}
.y76{bottom:770.213333pt;}
.y1e5{bottom:773.413333pt;}
.yb9{bottom:776.533333pt;}
.y15f{bottom:776.933333pt;}
.y3b{bottom:779.093333pt;}
.y8{bottom:782.693333pt;}
.y18a{bottom:785.653333pt;}
.y9a{bottom:787.173333pt;}
.y1e4{bottom:789.013333pt;}
.y109{bottom:792.533333pt;}
.y3a{bottom:794.693333pt;}
.y139{bottom:794.853333pt;}
.y189{bottom:801.253333pt;}
.y1b8{bottom:801.573333pt;}
.y1e3{bottom:804.693333pt;}
.yb8{bottom:805.173333pt;}
.y15e{bottom:808.133333pt;}
.y39{bottom:810.373333pt;}
.y7{bottom:811.413333pt;}
.y188{bottom:816.853333pt;}
.y138{bottom:818.533333pt;}
.y15d{bottom:824.533333pt;}
.y1b7{bottom:825.493333pt;}
.y1e2{bottom:825.653333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:828.613333pt;}
.y187{bottom:832.453333pt;}
.yde{bottom:835.813333pt;}
.y15c{bottom:840.133333pt;}
.y1e1{bottom:841.253333pt;}
.y37{bottom:841.653333pt;}
.y4f{bottom:842.693333pt;}
.y5{bottom:845.813333pt;}
.y137{bottom:847.813333pt;}
.y15b{bottom:855.813333pt;}
.y186{bottom:856.853333pt;}
.y36{bottom:857.253333pt;}
.y1b6{bottom:858.693333pt;}
.y15a{bottom:871.413333pt;}
.yb7{bottom:872.133333pt;}
.y35{bottom:872.853333pt;}
.y1e0{bottom:877.893333pt;}
.y4{bottom:879.893333pt;}
.y4e{bottom:885.973333pt;}
.y159{bottom:887.013333pt;}
.y34{bottom:888.533333pt;}
.y1df{bottom:893.493333pt;}
.y103{bottom:895.413333pt;}
.yb6{bottom:895.813333pt;}
.y99{bottom:896.133333pt;}
.y1b5{bottom:901.600000pt;}
.y3{bottom:901.840000pt;}
.y158{bottom:902.720000pt;}
.y33{bottom:904.160000pt;}
.y1de{bottom:909.120000pt;}
.y98{bottom:911.840000pt;}
.y4d{bottom:917.600000pt;}
.y157{bottom:918.320000pt;}
.y32{bottom:919.840000pt;}
.y97{bottom:927.440000pt;}
.y1dd{bottom:930.080000pt;}
.y4c{bottom:933.200000pt;}
.y156{bottom:934.720000pt;}
.y31{bottom:935.440000pt;}
.yda{bottom:938.640000pt;}
.y96{bottom:943.040000pt;}
.y1dc{bottom:945.760000pt;}
.y1b4{bottom:948.800000pt;}
.y155{bottom:950.320000pt;}
.y136{bottom:950.640000pt;}
.y30{bottom:951.040000pt;}
.y102{bottom:958.320000pt;}
.y95{bottom:958.720000pt;}
.y1db{bottom:961.360000pt;}
.y4b{bottom:964.880000pt;}
.y1b3{bottom:965.200000pt;}
.y154{bottom:966.000000pt;}
.y2f{bottom:966.720000pt;}
.y94{bottom:974.320000pt;}
.y1b2{bottom:980.800000pt;}
.y153{bottom:981.600000pt;}
.yd9{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y93{bottom:990.000000pt;}
.y4a{bottom:996.400000pt;}
.y1b1{bottom:997.200000pt;}
.y2d{bottom:998.000000pt;}
.y49{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h16{height:20.960000pt;}
.he{height:23.600000pt;}
.h1a{height:23.680000pt;}
.h2{height:26.686562pt;}
.h28{height:31.553437pt;}
.h6{height:33.059063pt;}
.h3{height:35.644531pt;}
.h1d{height:36.560000pt;}
.h20{height:36.640000pt;}
.h17{height:39.280000pt;}
.h27{height:40.986667pt;}
.h15{height:42.640000pt;}
.h25{height:43.200000pt;}
.h22{height:43.226667pt;}
.h24{height:43.280000pt;}
.h14{height:45.037812pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:47.621094pt;}
.h9{height:49.581562pt;}
.h29{height:50.954062pt;}
.h5{height:52.183594pt;}
.h12{height:53.309531pt;}
.ha{height:54.187500pt;}
.hd{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h26{height:65.306667pt;}
.h4{height:66.441406pt;}
.h13{height:85.357812pt;}
.h19{height:94.160000pt;}
.h1f{height:94.186667pt;}
.h11{height:102.160000pt;}
.h1c{height:102.186667pt;}
.h18{height:188.960000pt;}
.h1e{height:188.986667pt;}
.h21{height:189.040000pt;}
.h10{height:204.960000pt;}
.h1b{height:204.986667pt;}
.h23{height:205.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:35.920000pt;}
.w11{width:35.946667pt;}
.w28{width:36.000000pt;}
.w2c{width:68.240000pt;}
.wf{width:72.000000pt;}
.w32{width:82.880000pt;}
.w33{width:82.906667pt;}
.w2b{width:85.786667pt;}
.w2f{width:86.746667pt;}
.w20{width:90.320000pt;}
.w2a{width:92.960000pt;}
.w2e{width:93.066667pt;}
.w9{width:93.440000pt;}
.wa{width:94.186667pt;}
.w29{width:95.200000pt;}
.w22{width:96.746667pt;}
.w1c{width:100.426667pt;}
.w30{width:100.480000pt;}
.w12{width:103.546667pt;}
.wb{width:104.000000pt;}
.w17{width:104.506667pt;}
.we{width:107.040000pt;}
.w26{width:113.760000pt;}
.wc{width:118.800000pt;}
.w2d{width:119.200000pt;}
.w25{width:127.920000pt;}
.w1f{width:133.040000pt;}
.w27{width:134.640000pt;}
.w21{width:140.000000pt;}
.w1b{width:144.400000pt;}
.w16{width:144.560000pt;}
.w24{width:159.306667pt;}
.w31{width:166.506667pt;}
.w10{width:166.720000pt;}
.w1e{width:168.666667pt;}
.w23{width:171.280000pt;}
.w3{width:176.080000pt;}
.w1d{width:176.640000pt;}
.w7{width:177.680000pt;}
.w18{width:180.960000pt;}
.w13{width:181.120000pt;}
.w1a{width:182.560000pt;}
.w15{width:182.960000pt;}
.w19{width:201.786667pt;}
.w14{width:202.186667pt;}
.wd{width:203.306667pt;}
.w5{width:223.706667pt;}
.w4{width:260.346667pt;}
.w8{width:292.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x42{left:30.026667pt;}
.x40{left:34.720000pt;}
.x3e{left:35.760000pt;}
.x3f{left:40.480000pt;}
.x41{left:48.320000pt;}
.x43{left:52.986667pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x45{left:99.039988pt;}
.x44{left:108.479988pt;}
.x1e{left:145.466667pt;}
.x2b{left:158.586667pt;}
.x1a{left:161.386667pt;}
.x23{left:165.306667pt;}
.x27{left:166.266667pt;}
.x7{left:178.426667pt;}
.x5{left:188.106655pt;}
.x2{left:222.666655pt;}
.x35{left:224.906667pt;}
.xe{left:254.666655pt;}
.x3a{left:258.826667pt;}
.x3c{left:263.146667pt;}
.x1f{left:264.906667pt;}
.xc{left:272.106655pt;}
.x12{left:274.426655pt;}
.x13{left:285.786655pt;}
.x38{left:290.586667pt;}
.x2f{left:293.866667pt;}
.x2a{left:302.986667pt;}
.x34{left:307.066655pt;}
.x26{left:310.506667pt;}
.x32{left:321.706655pt;}
.x10{left:328.986655pt;}
.x2c{left:330.506667pt;}
.x1b{left:339.706667pt;}
.x24{left:347.066667pt;}
.x9{left:355.226667pt;}
.x14{left:357.866655pt;}
.x3d{left:364.346667pt;}
.x39{left:410.426667pt;}
.x36{left:414.426667pt;}
.x15{left:416.906655pt;}
.x22{left:432.266667pt;}
.x1c{left:433.786667pt;}
.x3b{left:448.426667pt;}
.x18{left:455.013322pt;}
.x20{left:468.853333pt;}
.x19{left:479.013322pt;}
.x17{left:481.013322pt;}
.x2d{left:490.453333pt;}
.x37{left:500.853333pt;}
.x28{left:508.853333pt;}
.x16{left:525.013322pt;}
.x1d{left:528.613333pt;}
.x11{left:543.013322pt;}
.x25{left:549.893333pt;}
.x21{left:576.533333pt;}
.xa{left:579.653333pt;}
.x4{left:588.053322pt;}
.xf{left:593.013322pt;}
.xb{left:600.053322pt;}
.xd{left:615.013322pt;}
.x2e{left:619.093333pt;}
.x30{left:622.053322pt;}
.x31{left:627.013322pt;}
.x33{left:632.053322pt;}
.x29{left:642.533333pt;}
.x3{left:718.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; }
  