
    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_4307d40674b32170051706b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cf318e06028ef729f79f8bd7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f1703a0ac2bb7ba8feceb2a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0fb24a17e019a5528bff5c1d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_dd096065a17432df74644a53.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.737793;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_77108d3b1cccc7bb2e03a876.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_8425e66e58e97f5f4469f1b7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_63c005c3b04fee9b640d3fa4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_abc47a760fcf8f5d4d80c34e.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8d6873e2d97cfae8fa236f68.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c6c9182094f032d2fc83d996.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_66ff1d7bf59240a43e858722.woff')format("woff");}.ff12{font-family:ff12;line-height:1.040039;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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-78.480000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.150600px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.666000px;}
.lsa{letter-spacing:0.666720px;}
.ls14{letter-spacing:3.705120px;}
.lsf{letter-spacing:5.139360px;}
.ls13{letter-spacing:8.784720px;}
.ls12{letter-spacing:8.820000px;}
.ls16{letter-spacing:10.980000px;}
.ls1{letter-spacing:15.300000px;}
.ls15{letter-spacing:25.338240px;}
.ls2{letter-spacing:47.700000px;}
.ls1a{letter-spacing:57.780000px;}
.ls0{letter-spacing:71.280000px;}
.ls17{letter-spacing:98.820000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.950480px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:115.680000px;}
.wse{word-spacing:665.940000px;}
._38{margin-left:-753.622560px;}
._3c{margin-left:-421.528080px;}
._5{margin-left:-59.580000px;}
._3b{margin-left:-26.026080px;}
._39{margin-left:-8.665200px;}
._37{margin-left:-7.192320px;}
._34{margin-left:-5.989200px;}
._35{margin-left:-4.949280px;}
._18{margin-left:-3.556800px;}
._f{margin-left:-2.390400px;}
._2{margin-left:-1.324800px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._17{width:3.942000px;}
._e{width:5.318640px;}
._7{width:6.394320px;}
._8{width:7.979760px;}
._9{width:9.262800px;}
._16{width:10.797600px;}
._15{width:12.150000px;}
._a{width:13.325760px;}
._c{width:16.135200px;}
._12{width:17.270640px;}
._13{width:18.441360px;}
._14{width:20.367360px;}
._1f{width:21.447360px;}
._d{width:22.469760px;}
._25{width:23.485680px;}
._1e{width:24.680880px;}
._10{width:26.115120px;}
._11{width:27.310320px;}
._b{width:28.923840px;}
._21{width:30.119040px;}
._1c{width:31.314240px;}
._1d{width:32.569200px;}
._28{width:34.481520px;}
._29{width:35.560800px;}
._2c{width:37.525680px;}
._2d{width:39.888000px;}
._1a{width:41.385600px;}
._20{width:43.027200px;}
._27{width:45.417600px;}
._2a{width:47.389680px;}
._45{width:49.094640px;}
._33{width:50.106960px;}
._1b{width:51.186240px;}
._24{width:52.947360px;}
._2f{width:54.180720px;}
._2b{width:55.608480px;}
._36{width:57.530880px;}
._2e{width:58.863600px;}
._26{width:60.297840px;}
._3e{width:62.002800px;}
._3f{width:63.014400px;}
._43{width:64.361520px;}
._3{width:65.496000px;}
._22{width:66.931200px;}
._23{width:68.365440px;}
._30{width:69.523920px;}
._44{width:71.233920px;}
._3a{width:72.844320px;}
._40{width:73.926240px;}
._41{width:78.942720px;}
._32{width:83.280960px;}
._47{width:165.555840px;}
._42{width:197.000640px;}
._4{width:199.620000px;}
._31{width:274.987440px;}
._19{width:285.870000px;}
._3d{width:337.873440px;}
._46{width:522.147600px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y6f{bottom:-251.490000px;}
.y6e{bottom:-217.830000px;}
.y7c{bottom:-187.770000px;}
.y6d{bottom:-183.990000px;}
.y7b{bottom:-153.885000px;}
.y6c{bottom:-150.300000px;}
.y7a{bottom:-120.225000px;}
.y6b{bottom:-116.460000px;}
.y79{bottom:-86.385000px;}
.y6a{bottom:-82.800000px;}
.y78{bottom:-52.725000px;}
.y69{bottom:-49.140000px;}
.y62{bottom:-28.650000px;}
.y3b{bottom:-27.180000px;}
.y77{bottom:-18.885000px;}
.y7e{bottom:-17.922750px;}
.y68{bottom:-15.300000px;}
.y58{bottom:-9.525000px;}
.y0{bottom:0.000000px;}
.y214{bottom:1.837500px;}
.y5f{bottom:2.520000px;}
.y67{bottom:2.700000px;}
.y1f0{bottom:2.880000px;}
.y143{bottom:2.895000px;}
.y1f8{bottom:2.925000px;}
.y1ff{bottom:3.045000px;}
.y1ee{bottom:3.060000px;}
.y2{bottom:3.960000px;}
.y127{bottom:4.665000px;}
.y128{bottom:4.845000px;}
.y147{bottom:4.860000px;}
.y12f{bottom:4.890000px;}
.y14a{bottom:5.025000px;}
.y3a{bottom:5.040000px;}
.y130{bottom:5.070000px;}
.y129{bottom:5.385000px;}
.y131{bottom:5.430000px;}
.y120{bottom:5.565000px;}
.y61{bottom:5.580000px;}
.y57{bottom:5.955000px;}
.y123{bottom:9.165000px;}
.y20e{bottom:9.180000px;}
.y124{bottom:9.345000px;}
.y205{bottom:9.360000px;}
.y133{bottom:9.540000px;}
.y125{bottom:9.705000px;}
.y134{bottom:9.720000px;}
.y140{bottom:9.735000px;}
.y1fd{bottom:9.885000px;}
.y1ec{bottom:9.900000px;}
.y1f6{bottom:9.945000px;}
.y135{bottom:10.260000px;}
.y1fa{bottom:10.620000px;}
.y121{bottom:10.785000px;}
.y212{bottom:11.910000px;}
.y76{bottom:12.075000px;}
.y7{bottom:12.420000px;}
.y12c{bottom:12.765000px;}
.y12d{bottom:13.125000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y5e{bottom:14.580000px;}
.y206{bottom:15.480000px;}
.y66{bottom:15.660000px;}
.y142{bottom:16.560000px;}
.y1ed{bottom:16.740000px;}
.y1f7{bottom:16.785000px;}
.y1fe{bottom:16.905000px;}
.y1f5{bottom:16.920000px;}
.y13d{bottom:17.460000px;}
.y1fb{bottom:18.180000px;}
.y56{bottom:19.275000px;}
.y11e{bottom:19.605000px;}
.y12b{bottom:20.505000px;}
.y213{bottom:20.910000px;}
.y13e{bottom:23.580000px;}
.y75{bottom:25.035000px;}
.y6{bottom:25.200000px;}
.y14f{bottom:26.265000px;}
.y5d{bottom:26.640000px;}
.y55{bottom:28.095000px;}
.y65{bottom:28.800000px;}
.y13c{bottom:30.240000px;}
.y141{bottom:30.420000px;}
.y209{bottom:30.600000px;}
.y149{bottom:36.885000px;}
.y74{bottom:37.995000px;}
.y5{bottom:38.160000px;}
.y5c{bottom:38.700000px;}
.y64{bottom:41.040000px;}
.y54{bottom:45.915000px;}
.ydf{bottom:46.260000px;}
.y5b{bottom:50.760000px;}
.y73{bottom:51.135000px;}
.y80{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yde{bottom:62.640000px;}
.y53{bottom:63.735000px;}
.y7d{bottom:63.780000px;}
.y72{bottom:64.125000px;}
.y5a{bottom:67.860000px;}
.y71{bottom:76.545000px;}
.y52{bottom:77.055000px;}
.y14c{bottom:77.205000px;}
.ydd{bottom:80.460000px;}
.y51{bottom:86.055000px;}
.y145{bottom:87.870000px;}
.y15e{bottom:99.720000px;}
.y153{bottom:101.340000px;}
.yb2{bottom:103.680000px;}
.y50{bottom:103.875000px;}
.y1e3{bottom:109.800000px;}
.y181{bottom:111.060000px;}
.y1ac{bottom:113.400000px;}
.y15d{bottom:119.520000px;}
.y136{bottom:121.320000px;}
.y38{bottom:121.680000px;}
.y4f{bottom:121.695000px;}
.yb1{bottom:123.480000px;}
.y1e2{bottom:127.080000px;}
.y1ab{bottom:130.680000px;}
.y180{bottom:130.860000px;}
.ydb{bottom:132.300000px;}
.y132{bottom:132.840000px;}
.y15c{bottom:139.320000px;}
.y4e{bottom:139.515000px;}
.y37{bottom:141.480000px;}
.y152{bottom:143.100000px;}
.yb0{bottom:143.280000px;}
.y1e1{bottom:144.360000px;}
.y1aa{bottom:147.960000px;}
.y17f{bottom:151.560000px;}
.yda{bottom:152.280000px;}
.y4d{bottom:157.335000px;}
.y12e{bottom:159.120000px;}
.y36{bottom:161.460000px;}
.y1e0{bottom:161.640000px;}
.yaf{bottom:163.110000px;}
.y1a9{bottom:165.090000px;}
.yd9{bottom:172.110000px;}
.y4c{bottom:175.155000px;}
.y12a{bottom:175.905000px;}
.y1df{bottom:178.950000px;}
.y15b{bottom:179.130000px;}
.y151{bottom:180.390000px;}
.y35{bottom:181.290000px;}
.y1a8{bottom:182.370000px;}
.yae{bottom:183.090000px;}
.yd8{bottom:191.910000px;}
.y150{bottom:192.450000px;}
.y4b{bottom:193.185000px;}
.y1de{bottom:196.050000px;}
.y15a{bottom:198.930000px;}
.y1a7{bottom:199.650000px;}
.y34{bottom:201.090000px;}
.yad{bottom:202.890000px;}
.y14b{bottom:204.345000px;}
.y4a{bottom:206.505000px;}
.y126{bottom:208.305000px;}
.yd7{bottom:211.710000px;}
.y17e{bottom:212.250000px;}
.y1dd{bottom:213.330000px;}
.y49{bottom:215.325000px;}
.y1a6{bottom:216.930000px;}
.y159{bottom:218.730000px;}
.y33{bottom:220.890000px;}
.yac{bottom:222.690000px;}
.y122{bottom:225.045000px;}
.y1dc{bottom:230.610000px;}
.yd6{bottom:231.510000px;}
.y17d{bottom:233.130000px;}
.y48{bottom:233.145000px;}
.y1a5{bottom:234.210000px;}
.y158{bottom:238.530000px;}
.y32{bottom:240.690000px;}
.y14e{bottom:242.325000px;}
.yab{bottom:242.490000px;}
.y1db{bottom:247.890000px;}
.y11d{bottom:250.605000px;}
.y47{bottom:250.965000px;}
.yd5{bottom:251.490000px;}
.y17c{bottom:256.890000px;}
.y157{bottom:258.330000px;}
.y31{bottom:260.670000px;}
.yaa{bottom:262.290000px;}
.y1da{bottom:265.170000px;}
.y1a4{bottom:268.590000px;}
.y46{bottom:268.785000px;}
.yd4{bottom:271.290000px;}
.y14d{bottom:276.885000px;}
.y156{bottom:278.310000px;}
.y30{bottom:280.470000px;}
.y11f{bottom:280.485000px;}
.ya9{bottom:282.270000px;}
.y1d9{bottom:282.450000px;}
.y1a3{bottom:285.870000px;}
.y45{bottom:286.605000px;}
.yd3{bottom:291.090000px;}
.y17b{bottom:297.750000px;}
.y155{bottom:298.110000px;}
.y1d8{bottom:299.550000px;}
.y2f{bottom:300.270000px;}
.ya8{bottom:302.070000px;}
.y1a2{bottom:303.150000px;}
.y11c{bottom:303.510000px;}
.y44{bottom:304.605000px;}
.y1e9{bottom:305.850000px;}
.yd2{bottom:310.890000px;}
.y144{bottom:311.445000px;}
.y1d7{bottom:316.830000px;}
.y17a{bottom:317.550000px;}
.y154{bottom:317.910000px;}
.y2e{bottom:320.070000px;}
.y11b{bottom:320.430000px;}
.ya7{bottom:321.870000px;}
.y43{bottom:322.425000px;}
.yd1{bottom:330.690000px;}
.y1e8{bottom:333.390000px;}
.y1d6{bottom:334.110000px;}
.yf4{bottom:336.270000px;}
.y179{bottom:337.350000px;}
.y11a{bottom:337.710000px;}
.y2d{bottom:339.870000px;}
.y42{bottom:340.245000px;}
.ya6{bottom:341.670000px;}
.y1e7{bottom:346.530000px;}
.yd0{bottom:350.670000px;}
.y1d5{bottom:351.390000px;}
.yf3{bottom:353.550000px;}
.y41{bottom:353.565000px;}
.y1a1{bottom:354.990000px;}
.y178{bottom:357.330000px;}
.y119{bottom:357.510000px;}
.y1e6{bottom:359.490000px;}
.y2c{bottom:359.850000px;}
.y148{bottom:359.865000px;}
.ya5{bottom:361.470000px;}
.y40{bottom:362.385000px;}
.y1d4{bottom:368.670000px;}
.ycf{bottom:370.470000px;}
.y1a0{bottom:372.090000px;}
.y1e5{bottom:372.630000px;}
.yf2{bottom:373.350000px;}
.y177{bottom:377.130000px;}
.y118{bottom:377.310000px;}
.y2b{bottom:379.650000px;}
.y3f{bottom:380.205000px;}
.ya4{bottom:381.450000px;}
.y211{bottom:382.905000px;}
.y1d3{bottom:385.770000px;}
.y19f{bottom:389.370000px;}
.yce{bottom:390.270000px;}
.yf1{bottom:393.375000px;}
.y146{bottom:394.635000px;}
.y176{bottom:396.975000px;}
.y117{bottom:397.335000px;}
.y3e{bottom:398.025000px;}
.y2a{bottom:400.395000px;}
.ya3{bottom:401.295000px;}
.y1d2{bottom:403.095000px;}
.y19e{bottom:406.695000px;}
.ycd{bottom:410.115000px;}
.yf0{bottom:413.175000px;}
.y210{bottom:415.335000px;}
.y3d{bottom:416.070000px;}
.y116{bottom:417.135000px;}
.y175{bottom:417.675000px;}
.y1d1{bottom:420.375000px;}
.y29{bottom:420.735000px;}
.ya2{bottom:421.095000px;}
.y19d{bottom:423.975000px;}
.ycc{bottom:429.915000px;}
.y13f{bottom:430.620000px;}
.y28{bottom:430.635000px;}
.yef{bottom:432.975000px;}
.y115{bottom:436.935000px;}
.y1d0{bottom:437.655000px;}
.ya1{bottom:440.895000px;}
.y19c{bottom:441.255000px;}
.y27{bottom:441.975000px;}
.y20f{bottom:443.595000px;}
.y3c{bottom:445.020000px;}
.ycb{bottom:449.895000px;}
.yee{bottom:452.775000px;}
.y1cf{bottom:454.935000px;}
.y114{bottom:456.735000px;}
.y174{bottom:458.535000px;}
.ya0{bottom:460.695000px;}
.y26{bottom:465.915000px;}
.yca{bottom:469.695000px;}
.y20d{bottom:470.595000px;}
.y1ce{bottom:472.215000px;}
.yed{bottom:472.575000px;}
.y19b{bottom:475.635000px;}
.y113{bottom:476.535000px;}
.y173{bottom:478.515000px;}
.y13b{bottom:479.955000px;}
.y9f{bottom:480.675000px;}
.y1cd{bottom:489.315000px;}
.yc9{bottom:489.495000px;}
.y25{bottom:489.675000px;}
.yec{bottom:492.555000px;}
.y19a{bottom:492.915000px;}
.y112{bottom:496.515000px;}
.y20c{bottom:497.595000px;}
.y13a{bottom:497.775000px;}
.y172{bottom:498.315000px;}
.y9e{bottom:500.475000px;}
.y1cc{bottom:506.595000px;}
.yc8{bottom:509.295000px;}
.y199{bottom:510.195000px;}
.yeb{bottom:512.355000px;}
.y24{bottom:513.435000px;}
.y139{bottom:515.595000px;}
.y111{bottom:516.315000px;}
.y171{bottom:518.115000px;}
.y9d{bottom:520.275000px;}
.y1cb{bottom:523.875000px;}
.y20b{bottom:526.035000px;}
.y198{bottom:527.475000px;}
.yc7{bottom:529.095000px;}
.yea{bottom:532.155000px;}
.y138{bottom:533.415000px;}
.y23{bottom:534.315000px;}
.y110{bottom:536.115000px;}
.y170{bottom:537.915000px;}
.y9c{bottom:540.075000px;}
.y1ca{bottom:541.155000px;}
.y197{bottom:544.755000px;}
.yc6{bottom:549.075000px;}
.y137{bottom:549.255000px;}
.ye9{bottom:552.855000px;}
.y22{bottom:554.115000px;}
.y20a{bottom:554.295000px;}
.y10f{bottom:555.915000px;}
.y16f{bottom:557.715000px;}
.y1c9{bottom:558.435000px;}
.y9b{bottom:559.875000px;}
.y196{bottom:561.855000px;}
.y70{bottom:566.880000px;}
.y21{bottom:567.975000px;}
.yc5{bottom:568.875000px;}
.ye8{bottom:572.655000px;}
.y10e{bottom:575.715000px;}
.y20{bottom:576.615000px;}
.y16e{bottom:577.695000px;}
.y195{bottom:579.135000px;}
.y9a{bottom:579.855000px;}
.y208{bottom:582.735000px;}
.ye7{bottom:585.795000px;}
.yc4{bottom:589.575000px;}
.y1c8{bottom:592.815000px;}
.y10d{bottom:595.695000px;}
.y194{bottom:596.415000px;}
.y16d{bottom:597.495000px;}
.y99{bottom:599.655000px;}
.y1f{bottom:599.835000px;}
.ye6{bottom:605.595000px;}
.yc3{bottom:609.195000px;}
.y1c7{bottom:610.095000px;}
.y193{bottom:613.695000px;}
.y10c{bottom:615.495000px;}
.y16c{bottom:617.295000px;}
.y98{bottom:619.455000px;}
.yc2{bottom:622.335000px;}
.y1e{bottom:623.265000px;}
.y207{bottom:624.885000px;}
.ye5{bottom:625.425000px;}
.y1c6{bottom:627.405000px;}
.y192{bottom:631.005000px;}
.y10b{bottom:635.325000px;}
.y16b{bottom:637.125000px;}
.y97{bottom:639.285000px;}
.yc1{bottom:642.345000px;}
.y1c5{bottom:644.685000px;}
.ye4{bottom:645.225000px;}
.y1d{bottom:646.485000px;}
.y191{bottom:648.285000px;}
.y204{bottom:653.145000px;}
.y10a{bottom:655.125000px;}
.y16a{bottom:656.925000px;}
.y96{bottom:659.085000px;}
.y1c4{bottom:661.965000px;}
.yc0{bottom:662.145000px;}
.ye3{bottom:665.025000px;}
.y190{bottom:665.385000px;}
.y109{bottom:674.925000px;}
.y169{bottom:676.905000px;}
.y95{bottom:679.065000px;}
.y1c3{bottom:679.245000px;}
.y203{bottom:680.145000px;}
.ybf{bottom:681.945000px;}
.y18f{bottom:682.665000px;}
.ye2{bottom:685.005000px;}
.y59{bottom:694.365000px;}
.y108{bottom:694.905000px;}
.y1c2{bottom:696.345000px;}
.y168{bottom:696.705000px;}
.y94{bottom:698.865000px;}
.y18e{bottom:699.945000px;}
.y1c{bottom:701.385000px;}
.ybe{bottom:701.745000px;}
.ye1{bottom:705.705000px;}
.y202{bottom:708.585000px;}
.y1c1{bottom:713.625000px;}
.y107{bottom:714.705000px;}
.y167{bottom:716.505000px;}
.y1b{bottom:716.865000px;}
.y18d{bottom:717.225000px;}
.y93{bottom:718.665000px;}
.ybd{bottom:721.545000px;}
.ye0{bottom:725.325000px;}
.y1c0{bottom:730.905000px;}
.y1a{bottom:732.345000px;}
.y106{bottom:734.505000px;}
.y166{bottom:736.305000px;}
.y201{bottom:736.845000px;}
.y92{bottom:738.465000px;}
.ybc{bottom:741.525000px;}
.y19{bottom:747.825000px;}
.y1bf{bottom:748.185000px;}
.y18c{bottom:751.785000px;}
.y105{bottom:754.305000px;}
.y165{bottom:756.105000px;}
.y91{bottom:758.265000px;}
.ybb{bottom:762.225000px;}
.y18{bottom:763.485000px;}
.y200{bottom:765.285000px;}
.y1be{bottom:765.465000px;}
.y18b{bottom:768.885000px;}
.y104{bottom:774.105000px;}
.y17{bottom:774.465000px;}
.y164{bottom:776.085000px;}
.y90{bottom:778.245000px;}
.yba{bottom:781.845000px;}
.y1bd{bottom:782.565000px;}
.y63{bottom:786.345000px;}
.y16{bottom:788.145000px;}
.y18a{bottom:789.585000px;}
.y1fc{bottom:793.560000px;}
.y103{bottom:794.085000px;}
.yb9{bottom:794.985000px;}
.y163{bottom:795.885000px;}
.y8f{bottom:798.045000px;}
.y1bc{bottom:799.845000px;}
.y15{bottom:800.745000px;}
.y14{bottom:813.165000px;}
.y102{bottom:813.885000px;}
.yb8{bottom:814.785000px;}
.y162{bottom:815.685000px;}
.y1bb{bottom:817.125000px;}
.y8e{bottom:817.845000px;}
.y1f9{bottom:821.985000px;}
.y13{bottom:826.125000px;}
.y189{bottom:830.445000px;}
.y101{bottom:833.685000px;}
.y1ba{bottom:834.405000px;}
.yb7{bottom:834.585000px;}
.y161{bottom:835.485000px;}
.y8d{bottom:837.645000px;}
.y12{bottom:839.985000px;}
.y188{bottom:850.245000px;}
.y1b9{bottom:851.685000px;}
.y11{bottom:852.810000px;}
.y100{bottom:853.530000px;}
.yb6{bottom:854.610000px;}
.y160{bottom:855.330000px;}
.y8c{bottom:857.490000px;}
.y1b8{bottom:869.010000px;}
.y187{bottom:870.990000px;}
.yff{bottom:873.330000px;}
.yb5{bottom:874.410000px;}
.y15f{bottom:876.210000px;}
.y8b{bottom:877.470000px;}
.y10{bottom:879.630000px;}
.y1f4{bottom:879.990000px;}
.y1b7{bottom:886.110000px;}
.yfe{bottom:893.310000px;}
.yb4{bottom:895.110000px;}
.y8a{bottom:897.270000px;}
.y1b6{bottom:903.390000px;}
.y1f3{bottom:908.430000px;}
.yf{bottom:910.410000px;}
.y186{bottom:911.850000px;}
.yfd{bottom:913.110000px;}
.yb3{bottom:915.990000px;}
.y89{bottom:917.070000px;}
.y1b5{bottom:920.670000px;}
.y1f2{bottom:923.010000px;}
.ye{bottom:928.590000px;}
.y185{bottom:929.670000px;}
.yfc{bottom:932.910000px;}
.y88{bottom:936.870000px;}
.y1b4{bottom:937.950000px;}
.yd{bottom:939.750000px;}
.y1f1{bottom:951.270000px;}
.yfb{bottom:952.710000px;}
.y1b3{bottom:955.230000px;}
.y87{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y184{bottom:970.530000px;}
.yfa{bottom:972.510000px;}
.y86{bottom:976.650000px;}
.y1ef{bottom:979.710000px;}
.yb{bottom:980.970000px;}
.y1b2{bottom:989.610000px;}
.y183{bottom:990.330000px;}
.yf9{bottom:992.490000px;}
.y85{bottom:996.450000px;}
.ya{bottom:1004.550000px;}
.y1b1{bottom:1006.890000px;}
.y1eb{bottom:1007.970000px;}
.y182{bottom:1011.030000px;}
.yf8{bottom:1012.290000px;}
.y84{bottom:1016.250000px;}
.y1b0{bottom:1024.170000px;}
.yf7{bottom:1032.090000px;}
.y83{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y1ea{bottom:1036.410000px;}
.y1af{bottom:1041.450000px;}
.yf6{bottom:1051.890000px;}
.y82{bottom:1055.850000px;}
.y1ae{bottom:1058.730000px;}
.y8{bottom:1063.230000px;}
.yf5{bottom:1072.590000px;}
.y81{bottom:1075.650000px;}
.y1ad{bottom:1075.830000px;}
.y1e4{bottom:1077.090000px;}
.y60{bottom:1096.200000px;}
.ydc{bottom:1103.940000px;}
.y7f{bottom:1123.200000px;}
.y39{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h49{height:6.257812px;}
.h2{height:13.500000px;}
.h3f{height:13.665000px;}
.h2d{height:15.825000px;}
.h2f{height:16.056000px;}
.h18{height:16.920000px;}
.h2a{height:17.445000px;}
.h16{height:18.140625px;}
.h1e{height:22.140000px;}
.h14{height:23.319141px;}
.h2c{height:24.825000px;}
.h30{height:25.560000px;}
.h47{height:26.265000px;}
.h45{height:26.280000px;}
.h2b{height:27.525000px;}
.h43{height:27.540000px;}
.h41{height:27.562500px;}
.h40{height:27.705000px;}
.h44{height:27.720000px;}
.h42{height:28.980000px;}
.h26{height:29.664141px;}
.hd{height:29.678906px;}
.he{height:30.963516px;}
.h2e{height:31.665000px;}
.h48{height:31.701000px;}
.h35{height:33.825000px;}
.h36{height:33.861000px;}
.h17{height:36.281250px;}
.h3a{height:37.071000px;}
.h3b{height:37.080000px;}
.h12{height:39.503370px;}
.h3e{height:40.964766px;}
.h5{height:40.985156px;}
.h31{height:41.385000px;}
.h32{height:41.395500px;}
.h33{height:41.400000px;}
.h46{height:41.430000px;}
.h27{height:41.535703px;}
.h3c{height:41.726953px;}
.h1d{height:42.086250px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.h29{height:47.325000px;}
.hc{height:47.344922px;}
.h37{height:47.691000px;}
.h4{height:47.699850px;}
.h38{height:47.700000px;}
.h19{height:48.616875px;}
.h28{height:50.218594px;}
.h20{height:52.020000px;}
.h13{height:52.998047px;}
.h1a{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.ha{height:60.226875px;}
.h24{height:61.423863px;}
.h3d{height:62.211094px;}
.hb{height:65.010937px;}
.h21{height:65.884219px;}
.h25{height:70.628906px;}
.h15{height:72.562500px;}
.h1f{height:74.953125px;}
.h23{height:75.093750px;}
.h1c{height:75.960000px;}
.h7{height:86.585445px;}
.h22{height:87.525000px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h39{height:106.365000px;}
.h34{height:117.021000px;}
.h1b{height:428.295000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w2e{width:32.571000px;}
.w11{width:36.900000px;}
.w14{width:36.936000px;}
.w10{width:38.181000px;}
.w18{width:38.325000px;}
.w13{width:38.340000px;}
.w19{width:43.230000px;}
.w15{width:52.185000px;}
.w12{width:52.200000px;}
.w2a{width:53.301000px;}
.w1b{width:60.681000px;}
.w27{width:60.682500px;}
.w2c{width:66.630000px;}
.w17{width:72.921000px;}
.w16{width:73.065000px;}
.w2b{width:73.425000px;}
.w29{width:75.225000px;}
.w3{width:82.071000px;}
.w2d{width:85.500000px;}
.w25{width:100.965000px;}
.w1a{width:100.971000px;}
.w21{width:100.980000px;}
.w26{width:101.550000px;}
.w22{width:101.556000px;}
.w23{width:101.565000px;}
.wb{width:111.411000px;}
.w1c{width:114.655500px;}
.w1d{width:114.660000px;}
.w1e{width:114.876000px;}
.w1f{width:114.885000px;}
.w24{width:126.921000px;}
.w20{width:126.922500px;}
.wc{width:127.281000px;}
.wd{width:127.476000px;}
.wf{width:133.770000px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.we{width:219.075000px;}
.w2f{width:328.386000px;}
.w28{width:361.866000px;}
.w6{width:532.905000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:4.252500px;}
.x2{left:8.091000px;}
.x10{left:10.791000px;}
.x2b{left:12.945000px;}
.x34{left:14.400000px;}
.x2c{left:15.480000px;}
.x36{left:16.590000px;}
.x28{left:18.540000px;}
.x21{left:20.160000px;}
.x16{left:21.255000px;}
.x2d{left:23.040000px;}
.x3d{left:24.300000px;}
.x26{left:25.545000px;}
.x37{left:27.000000px;}
.x30{left:30.225000px;}
.x38{left:33.105000px;}
.x3e{left:36.900000px;}
.x1d{left:38.010000px;}
.x3c{left:39.960000px;}
.x3b{left:42.825000px;}
.x39{left:46.830000px;}
.x3a{left:49.860000px;}
.x3{left:73.965000px;}
.xf{left:81.765000px;}
.x15{left:93.105000px;}
.x12{left:94.725000px;}
.xb{left:101.196000px;}
.x1{left:108.045000px;}
.x6{left:126.036000px;}
.xc{left:132.696000px;}
.x19{left:135.036000px;}
.x44{left:142.245000px;}
.x3f{left:151.950000px;}
.xa{left:158.790000px;}
.x4{left:190.125000px;}
.x2f{left:209.370000px;}
.x1c{left:219.465000px;}
.x18{left:253.335000px;}
.x22{left:257.655000px;}
.x31{left:269.715000px;}
.x7{left:277.815000px;}
.x23{left:294.555000px;}
.x11{left:302.115000px;}
.x13{left:310.350000px;}
.x1e{left:346.755000px;}
.x14{left:371.580000px;}
.x24{left:385.095000px;}
.x9{left:390.135000px;}
.x25{left:422.040000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.x40{left:471.360000px;}
.x1f{left:474.240000px;}
.xd{left:489.165000px;}
.xe{left:490.785000px;}
.x32{left:499.245000px;}
.x27{left:547.320000px;}
.x41{left:601.350000px;}
.x17{left:620.253000px;}
.x33{left:626.190000px;}
.x1b{left:645.450000px;}
.x42{left:675.690000px;}
.x20{left:693.330000px;}
.x35{left:727.170000px;}
.x29{left:731.670000px;}
.x43{left:743.220000px;}
.x2e{left:750.240000px;}
.x2a{left:774.900000px;}
.x1a{left:799.200000px;}
@media print{
.v3{vertical-align:-69.760000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.133867pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.592000pt;}
.lsa{letter-spacing:0.592640pt;}
.ls14{letter-spacing:3.293440pt;}
.lsf{letter-spacing:4.568320pt;}
.ls13{letter-spacing:7.808640pt;}
.ls12{letter-spacing:7.840000pt;}
.ls16{letter-spacing:9.760000pt;}
.ls1{letter-spacing:13.600000pt;}
.ls15{letter-spacing:22.522880pt;}
.ls2{letter-spacing:42.400000pt;}
.ls1a{letter-spacing:51.360000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls17{letter-spacing:87.840000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.733760pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:102.826667pt;}
.wse{word-spacing:591.946667pt;}
._38{margin-left:-669.886720pt;}
._3c{margin-left:-374.691627pt;}
._5{margin-left:-52.960000pt;}
._3b{margin-left:-23.134293pt;}
._39{margin-left:-7.702400pt;}
._37{margin-left:-6.393173pt;}
._34{margin-left:-5.323733pt;}
._35{margin-left:-4.399360pt;}
._18{margin-left:-3.161600pt;}
._f{margin-left:-2.124800pt;}
._2{margin-left:-1.177600pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._17{width:3.504000pt;}
._e{width:4.727680pt;}
._7{width:5.683840pt;}
._8{width:7.093120pt;}
._9{width:8.233600pt;}
._16{width:9.597867pt;}
._15{width:10.800000pt;}
._a{width:11.845120pt;}
._c{width:14.342400pt;}
._12{width:15.351680pt;}
._13{width:16.392320pt;}
._14{width:18.104320pt;}
._1f{width:19.064320pt;}
._d{width:19.973120pt;}
._25{width:20.876160pt;}
._1e{width:21.938560pt;}
._10{width:23.213440pt;}
._11{width:24.275840pt;}
._b{width:25.710080pt;}
._21{width:26.772480pt;}
._1c{width:27.834880pt;}
._1d{width:28.950400pt;}
._28{width:30.650240pt;}
._29{width:31.609600pt;}
._2c{width:33.356160pt;}
._2d{width:35.456000pt;}
._1a{width:36.787200pt;}
._20{width:38.246400pt;}
._27{width:40.371200pt;}
._2a{width:42.124160pt;}
._45{width:43.639680pt;}
._33{width:44.539520pt;}
._1b{width:45.498880pt;}
._24{width:47.064320pt;}
._2f{width:48.160640pt;}
._2b{width:49.429760pt;}
._36{width:51.138560pt;}
._2e{width:52.323200pt;}
._26{width:53.598080pt;}
._3e{width:55.113600pt;}
._3f{width:56.012800pt;}
._43{width:57.210240pt;}
._3{width:58.218667pt;}
._22{width:59.494400pt;}
._23{width:60.769280pt;}
._30{width:61.799040pt;}
._44{width:63.319040pt;}
._3a{width:64.750507pt;}
._40{width:65.712213pt;}
._41{width:70.171307pt;}
._32{width:74.027520pt;}
._47{width:147.160747pt;}
._42{width:175.111680pt;}
._4{width:177.440000pt;}
._31{width:244.433280pt;}
._19{width:254.106667pt;}
._3d{width:300.331947pt;}
._46{width:464.131200pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y6f{bottom:-223.546667pt;}
.y6e{bottom:-193.626667pt;}
.y7c{bottom:-166.906667pt;}
.y6d{bottom:-163.546667pt;}
.y7b{bottom:-136.786667pt;}
.y6c{bottom:-133.600000pt;}
.y7a{bottom:-106.866667pt;}
.y6b{bottom:-103.520000pt;}
.y79{bottom:-76.786667pt;}
.y6a{bottom:-73.600000pt;}
.y78{bottom:-46.866667pt;}
.y69{bottom:-43.680000pt;}
.y62{bottom:-25.466667pt;}
.y3b{bottom:-24.160000pt;}
.y77{bottom:-16.786667pt;}
.y7e{bottom:-15.931333pt;}
.y68{bottom:-13.600000pt;}
.y58{bottom:-8.466667pt;}
.y0{bottom:0.000000pt;}
.y214{bottom:1.633333pt;}
.y5f{bottom:2.240000pt;}
.y67{bottom:2.400000pt;}
.y1f0{bottom:2.560000pt;}
.y143{bottom:2.573333pt;}
.y1f8{bottom:2.600000pt;}
.y1ff{bottom:2.706667pt;}
.y1ee{bottom:2.720000pt;}
.y2{bottom:3.520000pt;}
.y127{bottom:4.146667pt;}
.y128{bottom:4.306667pt;}
.y147{bottom:4.320000pt;}
.y12f{bottom:4.346667pt;}
.y14a{bottom:4.466667pt;}
.y3a{bottom:4.480000pt;}
.y130{bottom:4.506667pt;}
.y129{bottom:4.786667pt;}
.y131{bottom:4.826667pt;}
.y120{bottom:4.946667pt;}
.y61{bottom:4.960000pt;}
.y57{bottom:5.293333pt;}
.y123{bottom:8.146667pt;}
.y20e{bottom:8.160000pt;}
.y124{bottom:8.306667pt;}
.y205{bottom:8.320000pt;}
.y133{bottom:8.480000pt;}
.y125{bottom:8.626667pt;}
.y134{bottom:8.640000pt;}
.y140{bottom:8.653333pt;}
.y1fd{bottom:8.786667pt;}
.y1ec{bottom:8.800000pt;}
.y1f6{bottom:8.840000pt;}
.y135{bottom:9.120000pt;}
.y1fa{bottom:9.440000pt;}
.y121{bottom:9.586667pt;}
.y212{bottom:10.586667pt;}
.y76{bottom:10.733333pt;}
.y7{bottom:11.040000pt;}
.y12c{bottom:11.346667pt;}
.y12d{bottom:11.666667pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y5e{bottom:12.960000pt;}
.y206{bottom:13.760000pt;}
.y66{bottom:13.920000pt;}
.y142{bottom:14.720000pt;}
.y1ed{bottom:14.880000pt;}
.y1f7{bottom:14.920000pt;}
.y1fe{bottom:15.026667pt;}
.y1f5{bottom:15.040000pt;}
.y13d{bottom:15.520000pt;}
.y1fb{bottom:16.160000pt;}
.y56{bottom:17.133333pt;}
.y11e{bottom:17.426667pt;}
.y12b{bottom:18.226667pt;}
.y213{bottom:18.586667pt;}
.y13e{bottom:20.960000pt;}
.y75{bottom:22.253333pt;}
.y6{bottom:22.400000pt;}
.y14f{bottom:23.346667pt;}
.y5d{bottom:23.680000pt;}
.y55{bottom:24.973333pt;}
.y65{bottom:25.600000pt;}
.y13c{bottom:26.880000pt;}
.y141{bottom:27.040000pt;}
.y209{bottom:27.200000pt;}
.y149{bottom:32.786667pt;}
.y74{bottom:33.773333pt;}
.y5{bottom:33.920000pt;}
.y5c{bottom:34.400000pt;}
.y64{bottom:36.480000pt;}
.y54{bottom:40.813333pt;}
.ydf{bottom:41.120000pt;}
.y5b{bottom:45.120000pt;}
.y73{bottom:45.453333pt;}
.y80{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yde{bottom:55.680000pt;}
.y53{bottom:56.653333pt;}
.y7d{bottom:56.693333pt;}
.y72{bottom:57.000000pt;}
.y5a{bottom:60.320000pt;}
.y71{bottom:68.040000pt;}
.y52{bottom:68.493333pt;}
.y14c{bottom:68.626667pt;}
.ydd{bottom:71.520000pt;}
.y51{bottom:76.493333pt;}
.y145{bottom:78.106667pt;}
.y15e{bottom:88.640000pt;}
.y153{bottom:90.080000pt;}
.yb2{bottom:92.160000pt;}
.y50{bottom:92.333333pt;}
.y1e3{bottom:97.600000pt;}
.y181{bottom:98.720000pt;}
.y1ac{bottom:100.800000pt;}
.y15d{bottom:106.240000pt;}
.y136{bottom:107.840000pt;}
.y38{bottom:108.160000pt;}
.y4f{bottom:108.173333pt;}
.yb1{bottom:109.760000pt;}
.y1e2{bottom:112.960000pt;}
.y1ab{bottom:116.160000pt;}
.y180{bottom:116.320000pt;}
.ydb{bottom:117.600000pt;}
.y132{bottom:118.080000pt;}
.y15c{bottom:123.840000pt;}
.y4e{bottom:124.013333pt;}
.y37{bottom:125.760000pt;}
.y152{bottom:127.200000pt;}
.yb0{bottom:127.360000pt;}
.y1e1{bottom:128.320000pt;}
.y1aa{bottom:131.520000pt;}
.y17f{bottom:134.720000pt;}
.yda{bottom:135.360000pt;}
.y4d{bottom:139.853333pt;}
.y12e{bottom:141.440000pt;}
.y36{bottom:143.520000pt;}
.y1e0{bottom:143.680000pt;}
.yaf{bottom:144.986667pt;}
.y1a9{bottom:146.746667pt;}
.yd9{bottom:152.986667pt;}
.y4c{bottom:155.693333pt;}
.y12a{bottom:156.360000pt;}
.y1df{bottom:159.066667pt;}
.y15b{bottom:159.226667pt;}
.y151{bottom:160.346667pt;}
.y35{bottom:161.146667pt;}
.y1a8{bottom:162.106667pt;}
.yae{bottom:162.746667pt;}
.yd8{bottom:170.586667pt;}
.y150{bottom:171.066667pt;}
.y4b{bottom:171.720000pt;}
.y1de{bottom:174.266667pt;}
.y15a{bottom:176.826667pt;}
.y1a7{bottom:177.466667pt;}
.y34{bottom:178.746667pt;}
.yad{bottom:180.346667pt;}
.y14b{bottom:181.640000pt;}
.y4a{bottom:183.560000pt;}
.y126{bottom:185.160000pt;}
.yd7{bottom:188.186667pt;}
.y17e{bottom:188.666667pt;}
.y1dd{bottom:189.626667pt;}
.y49{bottom:191.400000pt;}
.y1a6{bottom:192.826667pt;}
.y159{bottom:194.426667pt;}
.y33{bottom:196.346667pt;}
.yac{bottom:197.946667pt;}
.y122{bottom:200.040000pt;}
.y1dc{bottom:204.986667pt;}
.yd6{bottom:205.786667pt;}
.y17d{bottom:207.226667pt;}
.y48{bottom:207.240000pt;}
.y1a5{bottom:208.186667pt;}
.y158{bottom:212.026667pt;}
.y32{bottom:213.946667pt;}
.y14e{bottom:215.400000pt;}
.yab{bottom:215.546667pt;}
.y1db{bottom:220.346667pt;}
.y11d{bottom:222.760000pt;}
.y47{bottom:223.080000pt;}
.yd5{bottom:223.546667pt;}
.y17c{bottom:228.346667pt;}
.y157{bottom:229.626667pt;}
.y31{bottom:231.706667pt;}
.yaa{bottom:233.146667pt;}
.y1da{bottom:235.706667pt;}
.y1a4{bottom:238.746667pt;}
.y46{bottom:238.920000pt;}
.yd4{bottom:241.146667pt;}
.y14d{bottom:246.120000pt;}
.y156{bottom:247.386667pt;}
.y30{bottom:249.306667pt;}
.y11f{bottom:249.320000pt;}
.ya9{bottom:250.906667pt;}
.y1d9{bottom:251.066667pt;}
.y1a3{bottom:254.106667pt;}
.y45{bottom:254.760000pt;}
.yd3{bottom:258.746667pt;}
.y17b{bottom:264.666667pt;}
.y155{bottom:264.986667pt;}
.y1d8{bottom:266.266667pt;}
.y2f{bottom:266.906667pt;}
.ya8{bottom:268.506667pt;}
.y1a2{bottom:269.466667pt;}
.y11c{bottom:269.786667pt;}
.y44{bottom:270.760000pt;}
.y1e9{bottom:271.866667pt;}
.yd2{bottom:276.346667pt;}
.y144{bottom:276.840000pt;}
.y1d7{bottom:281.626667pt;}
.y17a{bottom:282.266667pt;}
.y154{bottom:282.586667pt;}
.y2e{bottom:284.506667pt;}
.y11b{bottom:284.826667pt;}
.ya7{bottom:286.106667pt;}
.y43{bottom:286.600000pt;}
.yd1{bottom:293.946667pt;}
.y1e8{bottom:296.346667pt;}
.y1d6{bottom:296.986667pt;}
.yf4{bottom:298.906667pt;}
.y179{bottom:299.866667pt;}
.y11a{bottom:300.186667pt;}
.y2d{bottom:302.106667pt;}
.y42{bottom:302.440000pt;}
.ya6{bottom:303.706667pt;}
.y1e7{bottom:308.026667pt;}
.yd0{bottom:311.706667pt;}
.y1d5{bottom:312.346667pt;}
.yf3{bottom:314.266667pt;}
.y41{bottom:314.280000pt;}
.y1a1{bottom:315.546667pt;}
.y178{bottom:317.626667pt;}
.y119{bottom:317.786667pt;}
.y1e6{bottom:319.546667pt;}
.y2c{bottom:319.866667pt;}
.y148{bottom:319.880000pt;}
.ya5{bottom:321.306667pt;}
.y40{bottom:322.120000pt;}
.y1d4{bottom:327.706667pt;}
.ycf{bottom:329.306667pt;}
.y1a0{bottom:330.746667pt;}
.y1e5{bottom:331.226667pt;}
.yf2{bottom:331.866667pt;}
.y177{bottom:335.226667pt;}
.y118{bottom:335.386667pt;}
.y2b{bottom:337.466667pt;}
.y3f{bottom:337.960000pt;}
.ya4{bottom:339.066667pt;}
.y211{bottom:340.360000pt;}
.y1d3{bottom:342.906667pt;}
.y19f{bottom:346.106667pt;}
.yce{bottom:346.906667pt;}
.yf1{bottom:349.666667pt;}
.y146{bottom:350.786667pt;}
.y176{bottom:352.866667pt;}
.y117{bottom:353.186667pt;}
.y3e{bottom:353.800000pt;}
.y2a{bottom:355.906667pt;}
.ya3{bottom:356.706667pt;}
.y1d2{bottom:358.306667pt;}
.y19e{bottom:361.506667pt;}
.ycd{bottom:364.546667pt;}
.yf0{bottom:367.266667pt;}
.y210{bottom:369.186667pt;}
.y3d{bottom:369.840000pt;}
.y116{bottom:370.786667pt;}
.y175{bottom:371.266667pt;}
.y1d1{bottom:373.666667pt;}
.y29{bottom:373.986667pt;}
.ya2{bottom:374.306667pt;}
.y19d{bottom:376.866667pt;}
.ycc{bottom:382.146667pt;}
.y13f{bottom:382.773333pt;}
.y28{bottom:382.786667pt;}
.yef{bottom:384.866667pt;}
.y115{bottom:388.386667pt;}
.y1d0{bottom:389.026667pt;}
.ya1{bottom:391.906667pt;}
.y19c{bottom:392.226667pt;}
.y27{bottom:392.866667pt;}
.y20f{bottom:394.306667pt;}
.y3c{bottom:395.573333pt;}
.ycb{bottom:399.906667pt;}
.yee{bottom:402.466667pt;}
.y1cf{bottom:404.386667pt;}
.y114{bottom:405.986667pt;}
.y174{bottom:407.586667pt;}
.ya0{bottom:409.506667pt;}
.y26{bottom:414.146667pt;}
.yca{bottom:417.506667pt;}
.y20d{bottom:418.306667pt;}
.y1ce{bottom:419.746667pt;}
.yed{bottom:420.066667pt;}
.y19b{bottom:422.786667pt;}
.y113{bottom:423.586667pt;}
.y173{bottom:425.346667pt;}
.y13b{bottom:426.626667pt;}
.y9f{bottom:427.266667pt;}
.y1cd{bottom:434.946667pt;}
.yc9{bottom:435.106667pt;}
.y25{bottom:435.266667pt;}
.yec{bottom:437.826667pt;}
.y19a{bottom:438.146667pt;}
.y112{bottom:441.346667pt;}
.y20c{bottom:442.306667pt;}
.y13a{bottom:442.466667pt;}
.y172{bottom:442.946667pt;}
.y9e{bottom:444.866667pt;}
.y1cc{bottom:450.306667pt;}
.yc8{bottom:452.706667pt;}
.y199{bottom:453.506667pt;}
.yeb{bottom:455.426667pt;}
.y24{bottom:456.386667pt;}
.y139{bottom:458.306667pt;}
.y111{bottom:458.946667pt;}
.y171{bottom:460.546667pt;}
.y9d{bottom:462.466667pt;}
.y1cb{bottom:465.666667pt;}
.y20b{bottom:467.586667pt;}
.y198{bottom:468.866667pt;}
.yc7{bottom:470.306667pt;}
.yea{bottom:473.026667pt;}
.y138{bottom:474.146667pt;}
.y23{bottom:474.946667pt;}
.y110{bottom:476.546667pt;}
.y170{bottom:478.146667pt;}
.y9c{bottom:480.066667pt;}
.y1ca{bottom:481.026667pt;}
.y197{bottom:484.226667pt;}
.yc6{bottom:488.066667pt;}
.y137{bottom:488.226667pt;}
.ye9{bottom:491.426667pt;}
.y22{bottom:492.546667pt;}
.y20a{bottom:492.706667pt;}
.y10f{bottom:494.146667pt;}
.y16f{bottom:495.746667pt;}
.y1c9{bottom:496.386667pt;}
.y9b{bottom:497.666667pt;}
.y196{bottom:499.426667pt;}
.y70{bottom:503.893333pt;}
.y21{bottom:504.866667pt;}
.yc5{bottom:505.666667pt;}
.ye8{bottom:509.026667pt;}
.y10e{bottom:511.746667pt;}
.y20{bottom:512.546667pt;}
.y16e{bottom:513.506667pt;}
.y195{bottom:514.786667pt;}
.y9a{bottom:515.426667pt;}
.y208{bottom:517.986667pt;}
.ye7{bottom:520.706667pt;}
.yc4{bottom:524.066667pt;}
.y1c8{bottom:526.946667pt;}
.y10d{bottom:529.506667pt;}
.y194{bottom:530.146667pt;}
.y16d{bottom:531.106667pt;}
.y99{bottom:533.026667pt;}
.y1f{bottom:533.186667pt;}
.ye6{bottom:538.306667pt;}
.yc3{bottom:541.506667pt;}
.y1c7{bottom:542.306667pt;}
.y193{bottom:545.506667pt;}
.y10c{bottom:547.106667pt;}
.y16c{bottom:548.706667pt;}
.y98{bottom:550.626667pt;}
.yc2{bottom:553.186667pt;}
.y1e{bottom:554.013333pt;}
.y207{bottom:555.453333pt;}
.ye5{bottom:555.933333pt;}
.y1c6{bottom:557.693333pt;}
.y192{bottom:560.893333pt;}
.y10b{bottom:564.733333pt;}
.y16b{bottom:566.333333pt;}
.y97{bottom:568.253333pt;}
.yc1{bottom:570.973333pt;}
.y1c5{bottom:573.053333pt;}
.ye4{bottom:573.533333pt;}
.y1d{bottom:574.653333pt;}
.y191{bottom:576.253333pt;}
.y204{bottom:580.573333pt;}
.y10a{bottom:582.333333pt;}
.y16a{bottom:583.933333pt;}
.y96{bottom:585.853333pt;}
.y1c4{bottom:588.413333pt;}
.yc0{bottom:588.573333pt;}
.ye3{bottom:591.133333pt;}
.y190{bottom:591.453333pt;}
.y109{bottom:599.933333pt;}
.y169{bottom:601.693333pt;}
.y95{bottom:603.613333pt;}
.y1c3{bottom:603.773333pt;}
.y203{bottom:604.573333pt;}
.ybf{bottom:606.173333pt;}
.y18f{bottom:606.813333pt;}
.ye2{bottom:608.893333pt;}
.y59{bottom:617.213333pt;}
.y108{bottom:617.693333pt;}
.y1c2{bottom:618.973333pt;}
.y168{bottom:619.293333pt;}
.y94{bottom:621.213333pt;}
.y18e{bottom:622.173333pt;}
.y1c{bottom:623.453333pt;}
.ybe{bottom:623.773333pt;}
.ye1{bottom:627.293333pt;}
.y202{bottom:629.853333pt;}
.y1c1{bottom:634.333333pt;}
.y107{bottom:635.293333pt;}
.y167{bottom:636.893333pt;}
.y1b{bottom:637.213333pt;}
.y18d{bottom:637.533333pt;}
.y93{bottom:638.813333pt;}
.ybd{bottom:641.373333pt;}
.ye0{bottom:644.733333pt;}
.y1c0{bottom:649.693333pt;}
.y1a{bottom:650.973333pt;}
.y106{bottom:652.893333pt;}
.y166{bottom:654.493333pt;}
.y201{bottom:654.973333pt;}
.y92{bottom:656.413333pt;}
.ybc{bottom:659.133333pt;}
.y19{bottom:664.733333pt;}
.y1bf{bottom:665.053333pt;}
.y18c{bottom:668.253333pt;}
.y105{bottom:670.493333pt;}
.y165{bottom:672.093333pt;}
.y91{bottom:674.013333pt;}
.ybb{bottom:677.533333pt;}
.y18{bottom:678.653333pt;}
.y200{bottom:680.253333pt;}
.y1be{bottom:680.413333pt;}
.y18b{bottom:683.453333pt;}
.y104{bottom:688.093333pt;}
.y17{bottom:688.413333pt;}
.y164{bottom:689.853333pt;}
.y90{bottom:691.773333pt;}
.yba{bottom:694.973333pt;}
.y1bd{bottom:695.613333pt;}
.y63{bottom:698.973333pt;}
.y16{bottom:700.573333pt;}
.y18a{bottom:701.853333pt;}
.y1fc{bottom:705.386667pt;}
.y103{bottom:705.853333pt;}
.yb9{bottom:706.653333pt;}
.y163{bottom:707.453333pt;}
.y8f{bottom:709.373333pt;}
.y1bc{bottom:710.973333pt;}
.y15{bottom:711.773333pt;}
.y14{bottom:722.813333pt;}
.y102{bottom:723.453333pt;}
.yb8{bottom:724.253333pt;}
.y162{bottom:725.053333pt;}
.y1bb{bottom:726.333333pt;}
.y8e{bottom:726.973333pt;}
.y1f9{bottom:730.653333pt;}
.y13{bottom:734.333333pt;}
.y189{bottom:738.173333pt;}
.y101{bottom:741.053333pt;}
.y1ba{bottom:741.693333pt;}
.yb7{bottom:741.853333pt;}
.y161{bottom:742.653333pt;}
.y8d{bottom:744.573333pt;}
.y12{bottom:746.653333pt;}
.y188{bottom:755.773333pt;}
.y1b9{bottom:757.053333pt;}
.y11{bottom:758.053333pt;}
.y100{bottom:758.693333pt;}
.yb6{bottom:759.653333pt;}
.y160{bottom:760.293333pt;}
.y8c{bottom:762.213333pt;}
.y1b8{bottom:772.453333pt;}
.y187{bottom:774.213333pt;}
.yff{bottom:776.293333pt;}
.yb5{bottom:777.253333pt;}
.y15f{bottom:778.853333pt;}
.y8b{bottom:779.973333pt;}
.y10{bottom:781.893333pt;}
.y1f4{bottom:782.213333pt;}
.y1b7{bottom:787.653333pt;}
.yfe{bottom:794.053333pt;}
.yb4{bottom:795.653333pt;}
.y8a{bottom:797.573333pt;}
.y1b6{bottom:803.013333pt;}
.y1f3{bottom:807.493333pt;}
.yf{bottom:809.253333pt;}
.y186{bottom:810.533333pt;}
.yfd{bottom:811.653333pt;}
.yb3{bottom:814.213333pt;}
.y89{bottom:815.173333pt;}
.y1b5{bottom:818.373333pt;}
.y1f2{bottom:820.453333pt;}
.ye{bottom:825.413333pt;}
.y185{bottom:826.373333pt;}
.yfc{bottom:829.253333pt;}
.y88{bottom:832.773333pt;}
.y1b4{bottom:833.733333pt;}
.yd{bottom:835.333333pt;}
.y1f1{bottom:845.573333pt;}
.yfb{bottom:846.853333pt;}
.y1b3{bottom:849.093333pt;}
.y87{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y184{bottom:862.693333pt;}
.yfa{bottom:864.453333pt;}
.y86{bottom:868.133333pt;}
.y1ef{bottom:870.853333pt;}
.yb{bottom:871.973333pt;}
.y1b2{bottom:879.653333pt;}
.y183{bottom:880.293333pt;}
.yf9{bottom:882.213333pt;}
.y85{bottom:885.733333pt;}
.ya{bottom:892.933333pt;}
.y1b1{bottom:895.013333pt;}
.y1eb{bottom:895.973333pt;}
.y182{bottom:898.693333pt;}
.yf8{bottom:899.813333pt;}
.y84{bottom:903.333333pt;}
.y1b0{bottom:910.373333pt;}
.yf7{bottom:917.413333pt;}
.y83{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y1ea{bottom:921.253333pt;}
.y1af{bottom:925.733333pt;}
.yf6{bottom:935.013333pt;}
.y82{bottom:938.533333pt;}
.y1ae{bottom:941.093333pt;}
.y8{bottom:945.093333pt;}
.yf5{bottom:953.413333pt;}
.y81{bottom:956.133333pt;}
.y1ad{bottom:956.293333pt;}
.y1e4{bottom:957.413333pt;}
.y60{bottom:974.400000pt;}
.ydc{bottom:981.280000pt;}
.y7f{bottom:998.400000pt;}
.y39{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h49{height:5.562500pt;}
.h2{height:12.000000pt;}
.h3f{height:12.146667pt;}
.h2d{height:14.066667pt;}
.h2f{height:14.272000pt;}
.h18{height:15.040000pt;}
.h2a{height:15.506667pt;}
.h16{height:16.125000pt;}
.h1e{height:19.680000pt;}
.h14{height:20.728125pt;}
.h2c{height:22.066667pt;}
.h30{height:22.720000pt;}
.h47{height:23.346667pt;}
.h45{height:23.360000pt;}
.h2b{height:24.466667pt;}
.h43{height:24.480000pt;}
.h41{height:24.500000pt;}
.h40{height:24.626667pt;}
.h44{height:24.640000pt;}
.h42{height:25.760000pt;}
.h26{height:26.368125pt;}
.hd{height:26.381250pt;}
.he{height:27.523125pt;}
.h2e{height:28.146667pt;}
.h48{height:28.178667pt;}
.h35{height:30.066667pt;}
.h36{height:30.098667pt;}
.h17{height:32.250000pt;}
.h3a{height:32.952000pt;}
.h3b{height:32.960000pt;}
.h12{height:35.114107pt;}
.h3e{height:36.413125pt;}
.h5{height:36.431250pt;}
.h31{height:36.786667pt;}
.h32{height:36.796000pt;}
.h33{height:36.800000pt;}
.h46{height:36.826667pt;}
.h27{height:36.920625pt;}
.h3c{height:37.090625pt;}
.h1d{height:37.410000pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.h29{height:42.066667pt;}
.hc{height:42.084375pt;}
.h37{height:42.392000pt;}
.h4{height:42.399867pt;}
.h38{height:42.400000pt;}
.h19{height:43.215000pt;}
.h28{height:44.638750pt;}
.h20{height:46.240000pt;}
.h13{height:47.109375pt;}
.h1a{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.ha{height:53.535000pt;}
.h24{height:54.598989pt;}
.h3d{height:55.298750pt;}
.hb{height:57.787500pt;}
.h21{height:58.563750pt;}
.h25{height:62.781250pt;}
.h15{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h23{height:66.750000pt;}
.h1c{height:67.520000pt;}
.h7{height:76.964840pt;}
.h22{height:77.800000pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h39{height:94.546667pt;}
.h34{height:104.018667pt;}
.h1b{height:380.706667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w2e{width:28.952000pt;}
.w11{width:32.800000pt;}
.w14{width:32.832000pt;}
.w10{width:33.938667pt;}
.w18{width:34.066667pt;}
.w13{width:34.080000pt;}
.w19{width:38.426667pt;}
.w15{width:46.386667pt;}
.w12{width:46.400000pt;}
.w2a{width:47.378667pt;}
.w1b{width:53.938667pt;}
.w27{width:53.940000pt;}
.w2c{width:59.226667pt;}
.w17{width:64.818667pt;}
.w16{width:64.946667pt;}
.w2b{width:65.266667pt;}
.w29{width:66.866667pt;}
.w3{width:72.952000pt;}
.w2d{width:76.000000pt;}
.w25{width:89.746667pt;}
.w1a{width:89.752000pt;}
.w21{width:89.760000pt;}
.w26{width:90.266667pt;}
.w22{width:90.272000pt;}
.w23{width:90.280000pt;}
.wb{width:99.032000pt;}
.w1c{width:101.916000pt;}
.w1d{width:101.920000pt;}
.w1e{width:102.112000pt;}
.w1f{width:102.120000pt;}
.w24{width:112.818667pt;}
.w20{width:112.820000pt;}
.wc{width:113.138667pt;}
.wd{width:113.312000pt;}
.wf{width:118.906667pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.we{width:194.733333pt;}
.w2f{width:291.898667pt;}
.w28{width:321.658667pt;}
.w6{width:473.693333pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.780000pt;}
.x2{left:7.192000pt;}
.x10{left:9.592000pt;}
.x2b{left:11.506667pt;}
.x34{left:12.800000pt;}
.x2c{left:13.760000pt;}
.x36{left:14.746667pt;}
.x28{left:16.480000pt;}
.x21{left:17.920000pt;}
.x16{left:18.893333pt;}
.x2d{left:20.480000pt;}
.x3d{left:21.600000pt;}
.x26{left:22.706667pt;}
.x37{left:24.000000pt;}
.x30{left:26.866667pt;}
.x38{left:29.426667pt;}
.x3e{left:32.800000pt;}
.x1d{left:33.786667pt;}
.x3c{left:35.520000pt;}
.x3b{left:38.066667pt;}
.x39{left:41.626667pt;}
.x3a{left:44.320000pt;}
.x3{left:65.746667pt;}
.xf{left:72.680000pt;}
.x15{left:82.760000pt;}
.x12{left:84.200000pt;}
.xb{left:89.952000pt;}
.x1{left:96.040000pt;}
.x6{left:112.032000pt;}
.xc{left:117.952000pt;}
.x19{left:120.032000pt;}
.x44{left:126.440000pt;}
.x3f{left:135.066667pt;}
.xa{left:141.146667pt;}
.x4{left:169.000000pt;}
.x2f{left:186.106667pt;}
.x1c{left:195.080000pt;}
.x18{left:225.186667pt;}
.x22{left:229.026667pt;}
.x31{left:239.746667pt;}
.x7{left:246.946667pt;}
.x23{left:261.826667pt;}
.x11{left:268.546667pt;}
.x13{left:275.866667pt;}
.x1e{left:308.226667pt;}
.x14{left:330.293333pt;}
.x24{left:342.306667pt;}
.x9{left:346.786667pt;}
.x25{left:375.146667pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.x40{left:418.986667pt;}
.x1f{left:421.546667pt;}
.xd{left:434.813333pt;}
.xe{left:436.253333pt;}
.x32{left:443.773333pt;}
.x27{left:486.506667pt;}
.x41{left:534.533333pt;}
.x17{left:551.336000pt;}
.x33{left:556.613333pt;}
.x1b{left:573.733333pt;}
.x42{left:600.613333pt;}
.x20{left:616.293333pt;}
.x35{left:646.373333pt;}
.x29{left:650.373333pt;}
.x43{left:660.640000pt;}
.x2e{left:666.880000pt;}
.x2a{left:688.800000pt;}
.x1a{left:710.400000pt;}
}




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