
    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_a0db0355edecc6c84d605c7e.woff2')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_1a06295e4a589f3b3ba7d684.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a33400918c1f831028a1871.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_b04c8a85e2c621871234d7b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e275519a4104293552973b6b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_381bdb10e5ce0349233f0a61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_525dd23d5253c143e75f0bfb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_894b3dd2c36f5155ad325302.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_b3224fc57a8617265a5eff7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-87.840000px;}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.262800px;}
.ls16{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.025920px;}
.lsd{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.404000px;}
.ls13{letter-spacing:1.812000px;}
.lse{letter-spacing:1.836000px;}
.lsf{letter-spacing:2.016000px;}
.ls1d{letter-spacing:25.308000px;}
.ls19{letter-spacing:52.668000px;}
.ls4{letter-spacing:79.920000px;}
.ls3{letter-spacing:80.640000px;}
.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;}
}
.ws13{word-spacing:-30.456000px;}
.ws6{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.431360px;}
.ws10{word-spacing:-19.414080px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.713200px;}
.wsb{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.626000px;}
.wse{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.ws11{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.248000px;}
.ws12{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
.ws4{word-spacing:68.760000px;}
._0{margin-left:-1.170000px;}
._1{width:1.002000px;}
._5{width:2.066400px;}
._4{width:3.107520px;}
._3{width:4.684032px;}
._7{width:6.468000px;}
._6{width:7.470000px;}
._9{width:8.964000px;}
._8{width:10.458000px;}
._11{width:11.598000px;}
._b{width:15.120000px;}
._a{width:16.362000px;}
._f{width:17.382000px;}
._10{width:19.170000px;}
._18{width:20.790000px;}
._13{width:21.870000px;}
._e{width:23.004000px;}
._14{width:24.840000px;}
._15{width:26.136000px;}
._1b{width:27.306000px;}
._12{width:28.404000px;}
._16{width:29.454000px;}
._1e{width:31.266000px;}
._17{width:32.346000px;}
._26{width:33.696000px;}
._29{width:35.100000px;}
._1c{width:36.234000px;}
._1d{width:37.818000px;}
._30{width:38.880000px;}
._2f{width:40.176000px;}
._3c{width:41.256000px;}
._3b{width:42.282000px;}
._c{width:43.416000px;}
._d{width:45.006000px;}
._3e{width:46.872000px;}
._38{width:52.110000px;}
._1a{width:54.594000px;}
._19{width:55.674000px;}
._32{width:57.906000px;}
._31{width:59.382000px;}
._1f{width:62.154000px;}
._33{width:66.960000px;}
._34{width:68.022000px;}
._27{width:70.176000px;}
._21{width:72.522000px;}
._23{width:75.870000px;}
._22{width:77.058000px;}
._2c{width:86.724000px;}
._2a{width:90.450000px;}
._20{width:100.818000px;}
._3a{width:105.354000px;}
._28{width:131.688000px;}
._2d{width:177.282000px;}
._3f{width:228.024000px;}
._24{width:324.594000px;}
._37{width:344.844000px;}
._36{width:349.488000px;}
._2b{width:364.296000px;}
._35{width:654.966000px;}
._2e{width:810.648000px;}
._3d{width:866.052000px;}
._39{width:875.832000px;}
._25{width:964.224000px;}
._2{width:1169.580000px;}
._40{width:1664.520000px;}
.fca{color:rgb(32,33,34);}
.fc9{color:rgb(79,129,189);}
.fc7{color:transparent;}
.fc8{color:rgb(54,95,145);}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y3b{bottom:-9.000000px;}
.y1fe{bottom:-3.435000px;}
.y1fc{bottom:-3.255000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.ycc{bottom:5.565000px;}
.yd8{bottom:5.580000px;}
.yc3{bottom:5.760000px;}
.yea{bottom:9.705000px;}
.y1f3{bottom:9.720000px;}
.y1fa{bottom:9.885000px;}
.yf0{bottom:10.065000px;}
.y104{bottom:10.080000px;}
.yfd{bottom:10.110000px;}
.y108{bottom:10.125000px;}
.y1f9{bottom:10.245000px;}
.yf8{bottom:10.260000px;}
.y1cf{bottom:13.680000px;}
.y10a{bottom:14.625000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yf1{bottom:19.065000px;}
.yf5{bottom:23.580000px;}
.yfb{bottom:23.610000px;}
.y103{bottom:27.900000px;}
.y107{bottom:27.945000px;}
.yef{bottom:28.065000px;}
.yf7{bottom:28.080000px;}
.yfc{bottom:28.110000px;}
.ycb{bottom:32.385000px;}
.yd7{bottom:32.400000px;}
.y109{bottom:32.445000px;}
.yc2{bottom:32.940000px;}
.y10e{bottom:36.720000px;}
.y5{bottom:39.780000px;}
.y101{bottom:41.220000px;}
.yed{bottom:41.385000px;}
.yf4{bottom:41.400000px;}
.y102{bottom:45.720000px;}
.yee{bottom:45.885000px;}
.yf6{bottom:45.900000px;}
.yfa{bottom:45.930000px;}
.y106{bottom:50.265000px;}
.y10d{bottom:59.040000px;}
.yd6{bottom:59.220000px;}
.yca{bottom:59.385000px;}
.yc1{bottom:60.120000px;}
.y1{bottom:60.660000px;}
.y100{bottom:63.540000px;}
.yec{bottom:63.705000px;}
.yf3{bottom:63.720000px;}
.y38{bottom:68.430000px;}
.y10c{bottom:81.540000px;}
.yd5{bottom:86.040000px;}
.yc9{bottom:86.205000px;}
.yc0{bottom:87.300000px;}
.y37{bottom:88.410000px;}
.y1d2{bottom:97.785000px;}
.y2c{bottom:102.780000px;}
.y1d3{bottom:106.785000px;}
.y22f{bottom:107.460000px;}
.y20a{bottom:108.000000px;}
.y36{bottom:108.210000px;}
.y76{bottom:109.080000px;}
.y147{bottom:109.800000px;}
.y1b1{bottom:109.980000px;}
.yd4{bottom:112.860000px;}
.yc8{bottom:113.025000px;}
.y1ca{bottom:114.300000px;}
.y1d1{bottom:115.605000px;}
.yae{bottom:116.100000px;}
.y205{bottom:116.820000px;}
.y1a8{bottom:118.800000px;}
.y17f{bottom:125.280000px;}
.y209{bottom:125.820000px;}
.y75{bottom:127.080000px;}
.y146{bottom:127.620000px;}
.y1b0{bottom:127.800000px;}
.y35{bottom:128.010000px;}
.y2b{bottom:129.600000px;}
.y1c9{bottom:132.120000px;}
.yad{bottom:133.920000px;}
.y249{bottom:134.280000px;}
.y204{bottom:134.640000px;}
.y1a7{bottom:136.620000px;}
.yc7{bottom:139.845000px;}
.yd3{bottom:139.860000px;}
.yf2{bottom:140.040000px;}
.y17e{bottom:143.100000px;}
.y208{bottom:143.640000px;}
.y74{bottom:144.900000px;}
.y144{bottom:145.440000px;}
.y1af{bottom:145.620000px;}
.y34{bottom:147.810000px;}
.yd0{bottom:148.500000px;}
.y1c8{bottom:149.940000px;}
.yac{bottom:151.740000px;}
.y184{bottom:152.100000px;}
.y203{bottom:152.640000px;}
.y1a6{bottom:154.440000px;}
.y2a{bottom:156.420000px;}
.y17d{bottom:160.920000px;}
.y22e{bottom:161.100000px;}
.y207{bottom:161.640000px;}
.y73{bottom:162.720000px;}
.y143{bottom:163.440000px;}
.y162{bottom:165.240000px;}
.yc6{bottom:166.665000px;}
.yd2{bottom:166.710000px;}
.y33{bottom:167.610000px;}
.y1c7{bottom:167.940000px;}
.yab{bottom:169.560000px;}
.y183{bottom:169.920000px;}
.y248{bottom:170.100000px;}
.y202{bottom:170.460000px;}
.y1a5{bottom:172.440000px;}
.ycf{bottom:175.860000px;}
.y17c{bottom:178.740000px;}
.y22d{bottom:178.920000px;}
.y206{bottom:179.460000px;}
.y142{bottom:181.260000px;}
.y1ae{bottom:181.440000px;}
.y72{bottom:182.520000px;}
.y29{bottom:184.320000px;}
.y1c6{bottom:185.760000px;}
.yaa{bottom:187.380000px;}
.y32{bottom:187.590000px;}
.y182{bottom:187.740000px;}
.y247{bottom:187.920000px;}
.y1a4{bottom:190.260000px;}
.y161{bottom:192.060000px;}
.yce{bottom:193.680000px;}
.y1cd{bottom:194.760000px;}
.y17b{bottom:196.740000px;}
.y201{bottom:197.280000px;}
.y141{bottom:199.080000px;}
.y1ad{bottom:199.260000px;}
.y1c5{bottom:203.580000px;}
.ya9{bottom:205.200000px;}
.y181{bottom:205.770000px;}
.y2d{bottom:205.920000px;}
.y31{bottom:207.390000px;}
.y1a3{bottom:208.110000px;}
.ycd{bottom:211.530000px;}
.y28{bottom:212.250000px;}
.y1cc{bottom:212.610000px;}
.y17a{bottom:214.230000px;}
.y22c{bottom:214.590000px;}
.y71{bottom:215.310000px;}
.y1ac{bottom:216.750000px;}
.y140{bottom:216.930000px;}
.y15f{bottom:218.910000px;}
.y200{bottom:219.285000px;}
.y1c4{bottom:221.430000px;}
.ya8{bottom:223.230000px;}
.y180{bottom:223.590000px;}
.yeb{bottom:224.865000px;}
.y3a{bottom:225.390000px;}
.y30{bottom:227.190000px;}
.y1cb{bottom:230.430000px;}
.y22b{bottom:232.410000px;}
.yc5{bottom:232.785000px;}
.y70{bottom:233.310000px;}
.y13f{bottom:234.750000px;}
.y1a2{bottom:234.930000px;}
.y15e{bottom:236.730000px;}
.ya7{bottom:241.050000px;}
.y179{bottom:241.410000px;}
.y1ab{bottom:243.930000px;}
.y1ff{bottom:246.825000px;}
.y2f{bottom:247.035000px;}
.y1c3{bottom:248.250000px;}
.y22a{bottom:250.230000px;}
.y6f{bottom:251.130000px;}
.y13e{bottom:252.570000px;}
.y1a1{bottom:252.750000px;}
.y39{bottom:254.550000px;}
.y27{bottom:258.150000px;}
.ya6{bottom:258.870000px;}
.y246{bottom:259.230000px;}
.y279{bottom:260.130000px;}
.y1aa{bottom:261.750000px;}
.y178{bottom:265.350000px;}
.y229{bottom:268.230000px;}
.y6e{bottom:268.950000px;}
.y145{bottom:270.210000px;}
.y13d{bottom:270.570000px;}
.y1c2{bottom:272.190000px;}
.y15d{bottom:272.370000px;}
.y1fd{bottom:274.545000px;}
.ya5{bottom:276.690000px;}
.y245{bottom:277.230000px;}
.y2e{bottom:277.455000px;}
.y278{bottom:277.950000px;}
.y1a9{bottom:279.570000px;}
.y228{bottom:286.050000px;}
.y6d{bottom:286.770000px;}
.y15c{bottom:290.370000px;}
.y1a0{bottom:294.330000px;}
.y244{bottom:295.050000px;}
.y277{bottom:296.130000px;}
.y13c{bottom:297.390000px;}
.y1fb{bottom:302.085000px;}
.ya4{bottom:303.510000px;}
.y227{bottom:303.870000px;}
.y26{bottom:304.050000px;}
.y6c{bottom:304.590000px;}
.y15b{bottom:308.190000px;}
.ye9{bottom:309.645000px;}
.y243{bottom:312.870000px;}
.y13b{bottom:321.150000px;}
.ya3{bottom:321.510000px;}
.y226{bottom:321.690000px;}
.y6b{bottom:322.410000px;}
.y276{bottom:322.950000px;}
.y160{bottom:325.650000px;}
.y15a{bottom:326.010000px;}
.y1f8{bottom:329.625000px;}
.y242{bottom:330.690000px;}
.ya2{bottom:339.330000px;}
.y225{bottom:339.510000px;}
.y6a{bottom:340.410000px;}
.ye8{bottom:346.530000px;}
.y241{bottom:348.510000px;}
.y275{bottom:350.490000px;}
.y25{bottom:351.570000px;}
.y159{bottom:352.830000px;}
.y125{bottom:356.610000px;}
.ya1{bottom:357.150000px;}
.y1f7{bottom:357.345000px;}
.y269{bottom:357.510000px;}
.y69{bottom:358.230000px;}
.y224{bottom:366.510000px;}
.ye4{bottom:373.350000px;}
.y24{bottom:374.970000px;}
.y268{bottom:375.330000px;}
.y68{bottom:376.050000px;}
.y158{bottom:376.590000px;}
.y274{bottom:378.390000px;}
.y124{bottom:383.430000px;}
.y223{bottom:384.330000px;}
.y1f6{bottom:384.885000px;}
.ye3{bottom:391.170000px;}
.y23{bottom:392.790000px;}
.y267{bottom:393.150000px;}
.y222{bottom:402.150000px;}
.y67{bottom:402.870000px;}
.y273{bottom:406.290000px;}
.ye2{bottom:408.990000px;}
.y11a{bottom:410.250000px;}
.y22{bottom:410.610000px;}
.y266{bottom:410.970000px;}
.y1f5{bottom:412.605000px;}
.y221{bottom:419.970000px;}
.y66{bottom:420.690000px;}
.yc4{bottom:426.270000px;}
.ye1{bottom:426.810000px;}
.y119{bottom:428.070000px;}
.y123{bottom:428.250000px;}
.y265{bottom:428.790000px;}
.y21{bottom:430.230000px;}
.y272{bottom:434.190000px;}
.ye7{bottom:435.810000px;}
.ya0{bottom:437.610000px;}
.y220{bottom:437.790000px;}
.y65{bottom:438.690000px;}
.y1f4{bottom:440.145000px;}
.ye0{bottom:444.855000px;}
.y118{bottom:445.935000px;}
.y122{bottom:446.115000px;}
.y264{bottom:446.655000px;}
.ybf{bottom:447.555000px;}
.ye6{bottom:453.855000px;}
.y20{bottom:454.215000px;}
.y9f{bottom:455.475000px;}
.y21f{bottom:455.655000px;}
.y64{bottom:456.555000px;}
.y271{bottom:462.315000px;}
.ydf{bottom:462.675000px;}
.y117{bottom:463.575000px;}
.y121{bottom:463.935000px;}
.y263{bottom:464.655000px;}
.y1f2{bottom:467.715000px;}
.ye5{bottom:471.675000px;}
.y9e{bottom:473.295000px;}
.y21e{bottom:473.655000px;}
.y63{bottom:474.375000px;}
.y1f{bottom:477.975000px;}
.y120{bottom:481.935000px;}
.y262{bottom:482.475000px;}
.yde{bottom:489.495000px;}
.y116{bottom:490.755000px;}
.y9d{bottom:491.115000px;}
.y240{bottom:491.475000px;}
.y62{bottom:492.195000px;}
.y11f{bottom:499.755000px;}
.y261{bottom:500.295000px;}
.y21d{bottom:500.475000px;}
.y1f1{bottom:501.015000px;}
.y1e{bottom:501.735000px;}
.y115{bottom:508.575000px;}
.y9c{bottom:508.935000px;}
.y23f{bottom:509.295000px;}
.y61{bottom:510.015000px;}
.ydd{bottom:513.255000px;}
.y11e{bottom:517.575000px;}
.y260{bottom:518.115000px;}
.y21c{bottom:518.295000px;}
.y1d{bottom:525.495000px;}
.y114{bottom:526.395000px;}
.y9b{bottom:526.935000px;}
.y60{bottom:527.835000px;}
.y23e{bottom:529.095000px;}
.y11d{bottom:535.395000px;}
.y25f{bottom:535.935000px;}
.y21b{bottom:536.115000px;}
.y113{bottom:544.215000px;}
.y9a{bottom:544.755000px;}
.y1e4{bottom:545.655000px;}
.y5f{bottom:545.835000px;}
.y270{bottom:546.195000px;}
.y1f0{bottom:546.555000px;}
.y1c{bottom:549.255000px;}
.y11c{bottom:553.215000px;}
.y21a{bottom:553.935000px;}
.y19f{bottom:560.955000px;}
.y112{bottom:561.675000px;}
.y23d{bottom:561.855000px;}
.ybe{bottom:562.035000px;}
.y1e3{bottom:563.475000px;}
.y5e{bottom:563.655000px;}
.y1ef{bottom:564.375000px;}
.y11b{bottom:571.035000px;}
.y99{bottom:571.575000px;}
.y219{bottom:571.755000px;}
.y1c1{bottom:573.195000px;}
.y26f{bottom:574.095000px;}
.y1b{bottom:575.535000px;}
.y23c{bottom:579.855000px;}
.y1e2{bottom:581.295000px;}
.y5d{bottom:581.475000px;}
.y1ee{bottom:582.195000px;}
.y177{bottom:585.795000px;}
.y19e{bottom:587.775000px;}
.ybd{bottom:588.855000px;}
.y111{bottom:589.035000px;}
.y98{bottom:589.395000px;}
.y25e{bottom:589.575000px;}
.y218{bottom:589.755000px;}
.y23b{bottom:597.675000px;}
.y5c{bottom:599.295000px;}
.y1c0{bottom:600.015000px;}
.y26e{bottom:601.995000px;}
.y1a{bottom:606.315000px;}
.y97{bottom:607.215000px;}
.y25d{bottom:607.395000px;}
.y217{bottom:607.575000px;}
.y110{bottom:610.995000px;}
.y176{bottom:612.615000px;}
.y19d{bottom:614.595000px;}
.y23a{bottom:615.495000px;}
.ybc{bottom:616.035000px;}
.y5b{bottom:617.115000px;}
.y1ed{bottom:617.835000px;}
.y96{bottom:625.035000px;}
.y25c{bottom:625.215000px;}
.y216{bottom:625.395000px;}
.y1bc{bottom:626.835000px;}
.y26d{bottom:629.895000px;}
.y19c{bottom:632.415000px;}
.y239{bottom:633.315000px;}
.y1e1{bottom:634.935000px;}
.y5a{bottom:635.115000px;}
.y1ec{bottom:635.835000px;}
.y16e{bottom:639.435000px;}
.y192{bottom:641.415000px;}
.y95{bottom:643.035000px;}
.y215{bottom:643.215000px;}
.y1bb{bottom:644.655000px;}
.y175{bottom:648.435000px;}
.y19b{bottom:650.235000px;}
.y238{bottom:651.135000px;}
.y1e0{bottom:652.755000px;}
.y59{bottom:652.935000px;}
.y1eb{bottom:653.655000px;}
.y13a{bottom:655.095000px;}
.y16d{bottom:657.255000px;}
.y26c{bottom:657.975000px;}
.y19{bottom:658.155000px;}
.y191{bottom:659.235000px;}
.y94{bottom:660.855000px;}
.y214{bottom:661.035000px;}
.y1ba{bottom:662.655000px;}
.y174{bottom:666.255000px;}
.y19a{bottom:668.055000px;}
.y237{bottom:668.955000px;}
.y1df{bottom:670.575000px;}
.y58{bottom:670.755000px;}
.y1ea{bottom:671.475000px;}
.y16c{bottom:675.255000px;}
.y190{bottom:677.085000px;}
.y93{bottom:678.705000px;}
.y25b{bottom:678.885000px;}
.y213{bottom:679.065000px;}
.y1b9{bottom:680.505000px;}
.y139{bottom:681.945000px;}
.y173{bottom:684.285000px;}
.y199{bottom:686.085000px;}
.y236{bottom:686.985000px;}
.y57{bottom:688.605000px;}
.y18{bottom:688.965000px;}
.y1e9{bottom:689.325000px;}
.y16b{bottom:692.745000px;}
.y18f{bottom:695.085000px;}
.y10f{bottom:695.805000px;}
.y92{bottom:696.525000px;}
.y25a{bottom:696.705000px;}
.y212{bottom:696.885000px;}
.y1b8{bottom:698.325000px;}
.y172{bottom:702.105000px;}
.y198{bottom:703.905000px;}
.y235{bottom:704.805000px;}
.y1de{bottom:706.425000px;}
.y1e8{bottom:707.145000px;}
.y131{bottom:708.765000px;}
.y18e{bottom:712.905000px;}
.y26b{bottom:713.805000px;}
.y91{bottom:714.345000px;}
.y259{bottom:714.525000px;}
.y211{bottom:714.705000px;}
.y56{bottom:715.425000px;}
.y1b7{bottom:716.145000px;}
.y17{bottom:719.925000px;}
.y197{bottom:721.725000px;}
.y234{bottom:722.625000px;}
.y1e7{bottom:725.145000px;}
.y130{bottom:726.585000px;}
.y18d{bottom:730.725000px;}
.y90{bottom:732.165000px;}
.y258{bottom:732.345000px;}
.y210{bottom:732.525000px;}
.y55{bottom:733.245000px;}
.y1bf{bottom:733.605000px;}
.y157{bottom:733.965000px;}
.y138{bottom:735.585000px;}
.y16a{bottom:737.745000px;}
.y196{bottom:739.545000px;}
.y26a{bottom:741.165000px;}
.y1e6{bottom:742.965000px;}
.y12f{bottom:744.585000px;}
.y18c{bottom:748.545000px;}
.y233{bottom:749.445000px;}
.y8f{bottom:750.165000px;}
.y20f{bottom:750.345000px;}
.y54{bottom:751.245000px;}
.y1dd{bottom:751.425000px;}
.y1b6{bottom:751.965000px;}
.y137{bottom:753.585000px;}
.y169{bottom:755.565000px;}
.y16{bottom:756.465000px;}
.y195{bottom:757.365000px;}
.yba{bottom:759.165000px;}
.y156{bottom:760.785000px;}
.y1be{bottom:760.965000px;}
.y12e{bottom:762.405000px;}
.y18b{bottom:766.365000px;}
.y232{bottom:767.265000px;}
.y8e{bottom:767.985000px;}
.y20e{bottom:768.165000px;}
.y53{bottom:769.065000px;}
.y1b5{bottom:769.785000px;}
.y136{bottom:771.405000px;}
.y168{bottom:773.565000px;}
.y194{bottom:775.365000px;}
.yb9{bottom:776.985000px;}
.y1dc{bottom:778.605000px;}
.y1bd{bottom:778.785000px;}
.y12d{bottom:780.225000px;}
.y18a{bottom:784.365000px;}
.y231{bottom:785.265000px;}
.y8d{bottom:785.805000px;}
.y257{bottom:785.985000px;}
.y52{bottom:786.885000px;}
.y150{bottom:787.785000px;}
.y20d{bottom:788.145000px;}
.y135{bottom:789.225000px;}
.y167{bottom:791.385000px;}
.yb8{bottom:794.805000px;}
.y1db{bottom:796.425000px;}
.y1b4{bottom:796.605000px;}
.y155{bottom:796.785000px;}
.y10b{bottom:798.405000px;}
.y171{bottom:800.385000px;}
.y193{bottom:801.825000px;}
.y189{bottom:802.185000px;}
.y230{bottom:803.085000px;}
.y8c{bottom:803.625000px;}
.y256{bottom:803.805000px;}
.y51{bottom:804.705000px;}
.y14f{bottom:805.605000px;}
.y12c{bottom:807.045000px;}
.y166{bottom:809.205000px;}
.yb7{bottom:812.625000px;}
.y1da{bottom:814.245000px;}
.y154{bottom:814.605000px;}
.y15{bottom:814.785000px;}
.y170{bottom:818.205000px;}
.y1b3{bottom:820.365000px;}
.y20c{bottom:820.905000px;}
.y8b{bottom:821.445000px;}
.y255{bottom:821.625000px;}
.y50{bottom:822.525000px;}
.y1e5{bottom:823.245000px;}
.y14e{bottom:823.425000px;}
.y12b{bottom:824.865000px;}
.y165{bottom:827.025000px;}
.y188{bottom:829.005000px;}
.yb6{bottom:830.445000px;}
.y1d9{bottom:831.885000px;}
.y153{bottom:832.425000px;}
.y134{bottom:833.865000px;}
.y16f{bottom:836.025000px;}
.ybb{bottom:839.085000px;}
.y8a{bottom:839.445000px;}
.y4f{bottom:840.345000px;}
.y14d{bottom:841.245000px;}
.y12a{bottom:842.865000px;}
.y20b{bottom:844.845000px;}
.yb5{bottom:848.445000px;}
.y152{bottom:850.245000px;}
.y14{bottom:851.865000px;}
.y187{bottom:852.945000px;}
.y164{bottom:853.845000px;}
.y1d0{bottom:854.205000px;}
.y89{bottom:857.265000px;}
.y254{bottom:857.445000px;}
.y4e{bottom:858.345000px;}
.y14c{bottom:858.705000px;}
.y129{bottom:860.685000px;}
.yb4{bottom:866.265000px;}
.y151{bottom:868.065000px;}
.y133{bottom:869.685000px;}
.y13{bottom:874.725000px;}
.y253{bottom:875.265000px;}
.y4d{bottom:876.165000px;}
.y163{bottom:877.785000px;}
.y128{bottom:878.505000px;}
.y1d8{bottom:881.745000px;}
.y88{bottom:884.085000px;}
.y14b{bottom:886.065000px;}
.y132{bottom:887.505000px;}
.y12{bottom:892.005000px;}
.y252{bottom:893.085000px;}
.y4c{bottom:893.985000px;}
.y105{bottom:901.005000px;}
.y87{bottom:901.905000px;}
.y127{bottom:905.325000px;}
.y11{bottom:909.465000px;}
.y14a{bottom:909.825000px;}
.y251{bottom:910.950000px;}
.y4b{bottom:911.850000px;}
.ydc{bottom:919.230000px;}
.y86{bottom:919.770000px;}
.y10{bottom:927.870000px;}
.y250{bottom:928.770000px;}
.y126{bottom:929.130000px;}
.y1d7{bottom:937.050000px;}
.y85{bottom:937.590000px;}
.y4a{bottom:938.670000px;}
.yf{bottom:945.510000px;}
.ydb{bottom:946.050000px;}
.y24f{bottom:946.590000px;}
.y84{bottom:955.590000px;}
.y49{bottom:956.670000px;}
.yda{bottom:963.870000px;}
.y1d6{bottom:964.590000px;}
.yff{bottom:972.510000px;}
.y83{bottom:973.410000px;}
.y48{bottom:974.490000px;}
.yd9{bottom:981.870000px;}
.y24e{bottom:982.410000px;}
.ye{bottom:985.650000px;}
.y82{bottom:991.230000px;}
.y47{bottom:992.310000px;}
.yd{bottom:997.710000px;}
.y24d{bottom:1000.230000px;}
.yd1{bottom:1003.110000px;}
.y81{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y46{bottom:1010.130000px;}
.y24c{bottom:1018.050000px;}
.y1d5{bottom:1019.850000px;}
.yb{bottom:1021.830000px;}
.y80{bottom:1026.870000px;}
.y45{bottom:1027.950000px;}
.y24b{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y7f{bottom:1044.870000px;}
.y44{bottom:1045.770000px;}
.y1d4{bottom:1047.390000px;}
.y24a{bottom:1053.870000px;}
.yfe{bottom:1057.110000px;}
.y9{bottom:1061.970000px;}
.y7e{bottom:1062.690000px;}
.y43{bottom:1063.770000px;}
.yb3{bottom:1071.690000px;}
.y1ce{bottom:1075.110000px;}
.y7d{bottom:1080.510000px;}
.y42{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.yb2{bottom:1089.510000px;}
.y7c{bottom:1098.330000px;}
.y41{bottom:1099.410000px;}
.y1b2{bottom:1107.150000px;}
.yb1{bottom:1107.330000px;}
.y7b{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y40{bottom:1117.230000px;}
.y149{bottom:1124.970000px;}
.yb0{bottom:1125.150000px;}
.y7a{bottom:1133.970000px;}
.y3f{bottom:1135.050000px;}
.yf9{bottom:1141.890000px;}
.yaf{bottom:1142.970000px;}
.y148{bottom:1152.000000px;}
.y3e{bottom:1153.080000px;}
.y186{bottom:1160.820000px;}
.y79{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y3d{bottom:1170.900000px;}
.y78{bottom:1178.820000px;}
.y185{bottom:1187.640000px;}
.y3c{bottom:1190.700000px;}
.y77{bottom:1196.640000px;}
.h1c{height:26.805000px;}
.h28{height:26.820000px;}
.h2a{height:26.841000px;}
.h29{height:26.856000px;}
.h2b{height:26.985000px;}
.h2{height:31.135500px;}
.h26{height:34.740000px;}
.h9{height:40.985156px;}
.h1a{height:52.971680px;}
.h3{height:52.998047px;}
.h25{height:53.709961px;}
.h11{height:54.421875px;}
.h13{height:55.291992px;}
.h2c{height:55.503491px;}
.h16{height:58.621992px;}
.ha{height:58.651172px;}
.h15{height:58.763250px;}
.h17{height:59.092031px;}
.hb{height:60.226875px;}
.h1f{height:62.662500px;}
.hf{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.h22{height:66.996000px;}
.hd{height:72.326250px;}
.h10{height:72.562500px;}
.h12{height:78.367500px;}
.h21{height:80.280000px;}
.h1d{height:80.445000px;}
.h20{height:80.460000px;}
.h24{height:80.490000px;}
.h1e{height:80.496000px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h23{height:98.280000px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h18{height:108.885000px;}
.h19{height:187.905000px;}
.h1b{height:187.950000px;}
.h27{height:219.990000px;}
.h14{height:307.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:64.440000px;}
.we{width:77.076000px;}
.wb{width:78.156000px;}
.w3{width:80.310000px;}
.w14{width:108.381000px;}
.w15{width:113.790000px;}
.w10{width:129.630000px;}
.w9{width:179.485500px;}
.wd{width:184.345500px;}
.wa{width:196.590000px;}
.w6{width:203.835000px;}
.w5{width:204.145500px;}
.w11{width:211.570500px;}
.w7{width:265.570500px;}
.w13{width:270.930000px;}
.wc{width:325.500000px;}
.w8{width:331.095000px;}
.wf{width:382.035000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:3.960000px;}
.x41{left:5.580000px;}
.x5{left:8.640000px;}
.x13{left:10.800000px;}
.x29{left:12.420000px;}
.x2a{left:13.860000px;}
.x2d{left:15.510000px;}
.x2e{left:17.445000px;}
.x2b{left:18.900000px;}
.x17{left:21.235500px;}
.x25{left:23.070000px;}
.x39{left:26.625000px;}
.x42{left:27.930000px;}
.x1d{left:29.335500px;}
.x1b{left:31.855500px;}
.x40{left:32.971500px;}
.x32{left:34.545000px;}
.x2c{left:35.850000px;}
.x3a{left:37.065000px;}
.x3e{left:38.865000px;}
.x12{left:40.140000px;}
.x3d{left:41.611500px;}
.x28{left:42.871500px;}
.x1{left:45.364500px;}
.x14{left:50.940000px;}
.x19{left:52.920000px;}
.x7{left:54.000000px;}
.x21{left:55.444500px;}
.x3c{left:57.631500px;}
.x38{left:59.625000px;}
.x23{left:61.965000px;}
.x1a{left:64.620000px;}
.x34{left:66.645000px;}
.x1c{left:72.031500px;}
.x2f{left:73.245000px;}
.x45{left:78.465000px;}
.x31{left:79.965000px;}
.x68{left:81.000000px;}
.x36{left:86.791500px;}
.x27{left:90.391500px;}
.x37{left:96.885000px;}
.xe{left:101.376000px;}
.x44{left:103.845000px;}
.x63{left:105.685500px;}
.x61{left:108.930000px;}
.x35{left:121.710000px;}
.xd{left:123.516000px;}
.x33{left:124.770000px;}
.x3f{left:126.210000px;}
.x56{left:129.270000px;}
.x5e{left:132.325500px;}
.x60{left:135.565500px;}
.x64{left:137.370000px;}
.x3b{left:147.810000px;}
.x5f{left:152.850000px;}
.x43{left:157.170000px;}
.x62{left:158.425500px;}
.x10{left:196.950000px;}
.x5d{left:200.910000px;}
.x2{left:220.210500px;}
.x54{left:228.630000px;}
.x22{left:235.830000px;}
.x53{left:239.070000px;}
.x50{left:244.470000px;}
.x16{left:250.050000px;}
.x49{left:251.490000px;}
.xf{left:255.450000px;}
.x58{left:265.035000px;}
.x55{left:267.915000px;}
.xa{left:269.715000px;}
.x3{left:271.330500px;}
.x59{left:272.775000px;}
.x4c{left:280.695000px;}
.x1f{left:284.835000px;}
.xb{left:290.955000px;}
.x46{left:301.755000px;}
.x18{left:311.475000px;}
.x11{left:314.355000px;}
.x20{left:315.435000px;}
.x8{left:322.275000px;}
.x5a{left:337.935000px;}
.x47{left:344.415000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.x24{left:433.155000px;}
.x6{left:446.505000px;}
.x15{left:473.505000px;}
.x66{left:500.505000px;}
.x26{left:512.220000px;}
.x67{left:527.505000px;}
.x5b{left:609.780000px;}
.x57{left:704.670000px;}
.x5c{left:718.890000px;}
.x1e{left:760.650000px;}
.x4{left:767.490000px;}
.x4a{left:797.580000px;}
.x51{left:800.280000px;}
.x4d{left:804.420000px;}
.x4f{left:806.580000px;}
.x65{left:818.280000px;}
.x52{left:820.080000px;}
.x4e{left:822.420000px;}
.x4b{left:829.080000px;}
.x48{left:830.160000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.233600pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.023040pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.832000pt;}
.ls14{letter-spacing:1.248000pt;}
.ls13{letter-spacing:1.610667pt;}
.lse{letter-spacing:1.632000pt;}
.lsf{letter-spacing:1.792000pt;}
.ls1d{letter-spacing:22.496000pt;}
.ls19{letter-spacing:46.816000pt;}
.ls4{letter-spacing:71.040000pt;}
.ls3{letter-spacing:71.680000pt;}
.ws13{word-spacing:-27.072000pt;}
.ws6{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.272320pt;}
.ws10{word-spacing:-17.256960pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.078400pt;}
.wsb{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.112000pt;}
.wse{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws11{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.776000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
.ws4{word-spacing:61.120000pt;}
._0{margin-left:-1.040000pt;}
._1{width:0.890667pt;}
._5{width:1.836800pt;}
._4{width:2.762240pt;}
._3{width:4.163584pt;}
._7{width:5.749333pt;}
._6{width:6.640000pt;}
._9{width:7.968000pt;}
._8{width:9.296000pt;}
._11{width:10.309333pt;}
._b{width:13.440000pt;}
._a{width:14.544000pt;}
._f{width:15.450667pt;}
._10{width:17.040000pt;}
._18{width:18.480000pt;}
._13{width:19.440000pt;}
._e{width:20.448000pt;}
._14{width:22.080000pt;}
._15{width:23.232000pt;}
._1b{width:24.272000pt;}
._12{width:25.248000pt;}
._16{width:26.181333pt;}
._1e{width:27.792000pt;}
._17{width:28.752000pt;}
._26{width:29.952000pt;}
._29{width:31.200000pt;}
._1c{width:32.208000pt;}
._1d{width:33.616000pt;}
._30{width:34.560000pt;}
._2f{width:35.712000pt;}
._3c{width:36.672000pt;}
._3b{width:37.584000pt;}
._c{width:38.592000pt;}
._d{width:40.005333pt;}
._3e{width:41.664000pt;}
._38{width:46.320000pt;}
._1a{width:48.528000pt;}
._19{width:49.488000pt;}
._32{width:51.472000pt;}
._31{width:52.784000pt;}
._1f{width:55.248000pt;}
._33{width:59.520000pt;}
._34{width:60.464000pt;}
._27{width:62.378667pt;}
._21{width:64.464000pt;}
._23{width:67.440000pt;}
._22{width:68.496000pt;}
._2c{width:77.088000pt;}
._2a{width:80.400000pt;}
._20{width:89.616000pt;}
._3a{width:93.648000pt;}
._28{width:117.056000pt;}
._2d{width:157.584000pt;}
._3f{width:202.688000pt;}
._24{width:288.528000pt;}
._37{width:306.528000pt;}
._36{width:310.656000pt;}
._2b{width:323.818667pt;}
._35{width:582.192000pt;}
._2e{width:720.576000pt;}
._3d{width:769.824000pt;}
._39{width:778.517333pt;}
._25{width:857.088000pt;}
._2{width:1039.626667pt;}
._40{width:1479.573333pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y3b{bottom:-8.000000pt;}
.y1fe{bottom:-3.053333pt;}
.y1fc{bottom:-2.893333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.ycc{bottom:4.946667pt;}
.yd8{bottom:4.960000pt;}
.yc3{bottom:5.120000pt;}
.yea{bottom:8.626667pt;}
.y1f3{bottom:8.640000pt;}
.y1fa{bottom:8.786667pt;}
.yf0{bottom:8.946667pt;}
.y104{bottom:8.960000pt;}
.yfd{bottom:8.986667pt;}
.y108{bottom:9.000000pt;}
.y1f9{bottom:9.106667pt;}
.yf8{bottom:9.120000pt;}
.y1cf{bottom:12.160000pt;}
.y10a{bottom:13.000000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yf1{bottom:16.946667pt;}
.yf5{bottom:20.960000pt;}
.yfb{bottom:20.986667pt;}
.y103{bottom:24.800000pt;}
.y107{bottom:24.840000pt;}
.yef{bottom:24.946667pt;}
.yf7{bottom:24.960000pt;}
.yfc{bottom:24.986667pt;}
.ycb{bottom:28.786667pt;}
.yd7{bottom:28.800000pt;}
.y109{bottom:28.840000pt;}
.yc2{bottom:29.280000pt;}
.y10e{bottom:32.640000pt;}
.y5{bottom:35.360000pt;}
.y101{bottom:36.640000pt;}
.yed{bottom:36.786667pt;}
.yf4{bottom:36.800000pt;}
.y102{bottom:40.640000pt;}
.yee{bottom:40.786667pt;}
.yf6{bottom:40.800000pt;}
.yfa{bottom:40.826667pt;}
.y106{bottom:44.680000pt;}
.y10d{bottom:52.480000pt;}
.yd6{bottom:52.640000pt;}
.yca{bottom:52.786667pt;}
.yc1{bottom:53.440000pt;}
.y1{bottom:53.920000pt;}
.y100{bottom:56.480000pt;}
.yec{bottom:56.626667pt;}
.yf3{bottom:56.640000pt;}
.y38{bottom:60.826667pt;}
.y10c{bottom:72.480000pt;}
.yd5{bottom:76.480000pt;}
.yc9{bottom:76.626667pt;}
.yc0{bottom:77.600000pt;}
.y37{bottom:78.586667pt;}
.y1d2{bottom:86.920000pt;}
.y2c{bottom:91.360000pt;}
.y1d3{bottom:94.920000pt;}
.y22f{bottom:95.520000pt;}
.y20a{bottom:96.000000pt;}
.y36{bottom:96.186667pt;}
.y76{bottom:96.960000pt;}
.y147{bottom:97.600000pt;}
.y1b1{bottom:97.760000pt;}
.yd4{bottom:100.320000pt;}
.yc8{bottom:100.466667pt;}
.y1ca{bottom:101.600000pt;}
.y1d1{bottom:102.760000pt;}
.yae{bottom:103.200000pt;}
.y205{bottom:103.840000pt;}
.y1a8{bottom:105.600000pt;}
.y17f{bottom:111.360000pt;}
.y209{bottom:111.840000pt;}
.y75{bottom:112.960000pt;}
.y146{bottom:113.440000pt;}
.y1b0{bottom:113.600000pt;}
.y35{bottom:113.786667pt;}
.y2b{bottom:115.200000pt;}
.y1c9{bottom:117.440000pt;}
.yad{bottom:119.040000pt;}
.y249{bottom:119.360000pt;}
.y204{bottom:119.680000pt;}
.y1a7{bottom:121.440000pt;}
.yc7{bottom:124.306667pt;}
.yd3{bottom:124.320000pt;}
.yf2{bottom:124.480000pt;}
.y17e{bottom:127.200000pt;}
.y208{bottom:127.680000pt;}
.y74{bottom:128.800000pt;}
.y144{bottom:129.280000pt;}
.y1af{bottom:129.440000pt;}
.y34{bottom:131.386667pt;}
.yd0{bottom:132.000000pt;}
.y1c8{bottom:133.280000pt;}
.yac{bottom:134.880000pt;}
.y184{bottom:135.200000pt;}
.y203{bottom:135.680000pt;}
.y1a6{bottom:137.280000pt;}
.y2a{bottom:139.040000pt;}
.y17d{bottom:143.040000pt;}
.y22e{bottom:143.200000pt;}
.y207{bottom:143.680000pt;}
.y73{bottom:144.640000pt;}
.y143{bottom:145.280000pt;}
.y162{bottom:146.880000pt;}
.yc6{bottom:148.146667pt;}
.yd2{bottom:148.186667pt;}
.y33{bottom:148.986667pt;}
.y1c7{bottom:149.280000pt;}
.yab{bottom:150.720000pt;}
.y183{bottom:151.040000pt;}
.y248{bottom:151.200000pt;}
.y202{bottom:151.520000pt;}
.y1a5{bottom:153.280000pt;}
.ycf{bottom:156.320000pt;}
.y17c{bottom:158.880000pt;}
.y22d{bottom:159.040000pt;}
.y206{bottom:159.520000pt;}
.y142{bottom:161.120000pt;}
.y1ae{bottom:161.280000pt;}
.y72{bottom:162.240000pt;}
.y29{bottom:163.840000pt;}
.y1c6{bottom:165.120000pt;}
.yaa{bottom:166.560000pt;}
.y32{bottom:166.746667pt;}
.y182{bottom:166.880000pt;}
.y247{bottom:167.040000pt;}
.y1a4{bottom:169.120000pt;}
.y161{bottom:170.720000pt;}
.yce{bottom:172.160000pt;}
.y1cd{bottom:173.120000pt;}
.y17b{bottom:174.880000pt;}
.y201{bottom:175.360000pt;}
.y141{bottom:176.960000pt;}
.y1ad{bottom:177.120000pt;}
.y1c5{bottom:180.960000pt;}
.ya9{bottom:182.400000pt;}
.y181{bottom:182.906667pt;}
.y2d{bottom:183.040000pt;}
.y31{bottom:184.346667pt;}
.y1a3{bottom:184.986667pt;}
.ycd{bottom:188.026667pt;}
.y28{bottom:188.666667pt;}
.y1cc{bottom:188.986667pt;}
.y17a{bottom:190.426667pt;}
.y22c{bottom:190.746667pt;}
.y71{bottom:191.386667pt;}
.y1ac{bottom:192.666667pt;}
.y140{bottom:192.826667pt;}
.y15f{bottom:194.586667pt;}
.y200{bottom:194.920000pt;}
.y1c4{bottom:196.826667pt;}
.ya8{bottom:198.426667pt;}
.y180{bottom:198.746667pt;}
.yeb{bottom:199.880000pt;}
.y3a{bottom:200.346667pt;}
.y30{bottom:201.946667pt;}
.y1cb{bottom:204.826667pt;}
.y22b{bottom:206.586667pt;}
.yc5{bottom:206.920000pt;}
.y70{bottom:207.386667pt;}
.y13f{bottom:208.666667pt;}
.y1a2{bottom:208.826667pt;}
.y15e{bottom:210.426667pt;}
.ya7{bottom:214.266667pt;}
.y179{bottom:214.586667pt;}
.y1ab{bottom:216.826667pt;}
.y1ff{bottom:219.400000pt;}
.y2f{bottom:219.586667pt;}
.y1c3{bottom:220.666667pt;}
.y22a{bottom:222.426667pt;}
.y6f{bottom:223.226667pt;}
.y13e{bottom:224.506667pt;}
.y1a1{bottom:224.666667pt;}
.y39{bottom:226.266667pt;}
.y27{bottom:229.466667pt;}
.ya6{bottom:230.106667pt;}
.y246{bottom:230.426667pt;}
.y279{bottom:231.226667pt;}
.y1aa{bottom:232.666667pt;}
.y178{bottom:235.866667pt;}
.y229{bottom:238.426667pt;}
.y6e{bottom:239.066667pt;}
.y145{bottom:240.186667pt;}
.y13d{bottom:240.506667pt;}
.y1c2{bottom:241.946667pt;}
.y15d{bottom:242.106667pt;}
.y1fd{bottom:244.040000pt;}
.ya5{bottom:245.946667pt;}
.y245{bottom:246.426667pt;}
.y2e{bottom:246.626667pt;}
.y278{bottom:247.066667pt;}
.y1a9{bottom:248.506667pt;}
.y228{bottom:254.266667pt;}
.y6d{bottom:254.906667pt;}
.y15c{bottom:258.106667pt;}
.y1a0{bottom:261.626667pt;}
.y244{bottom:262.266667pt;}
.y277{bottom:263.226667pt;}
.y13c{bottom:264.346667pt;}
.y1fb{bottom:268.520000pt;}
.ya4{bottom:269.786667pt;}
.y227{bottom:270.106667pt;}
.y26{bottom:270.266667pt;}
.y6c{bottom:270.746667pt;}
.y15b{bottom:273.946667pt;}
.ye9{bottom:275.240000pt;}
.y243{bottom:278.106667pt;}
.y13b{bottom:285.466667pt;}
.ya3{bottom:285.786667pt;}
.y226{bottom:285.946667pt;}
.y6b{bottom:286.586667pt;}
.y276{bottom:287.066667pt;}
.y160{bottom:289.466667pt;}
.y15a{bottom:289.786667pt;}
.y1f8{bottom:293.000000pt;}
.y242{bottom:293.946667pt;}
.ya2{bottom:301.626667pt;}
.y225{bottom:301.786667pt;}
.y6a{bottom:302.586667pt;}
.ye8{bottom:308.026667pt;}
.y241{bottom:309.786667pt;}
.y275{bottom:311.546667pt;}
.y25{bottom:312.506667pt;}
.y159{bottom:313.626667pt;}
.y125{bottom:316.986667pt;}
.ya1{bottom:317.466667pt;}
.y1f7{bottom:317.640000pt;}
.y269{bottom:317.786667pt;}
.y69{bottom:318.426667pt;}
.y224{bottom:325.786667pt;}
.ye4{bottom:331.866667pt;}
.y24{bottom:333.306667pt;}
.y268{bottom:333.626667pt;}
.y68{bottom:334.266667pt;}
.y158{bottom:334.746667pt;}
.y274{bottom:336.346667pt;}
.y124{bottom:340.826667pt;}
.y223{bottom:341.626667pt;}
.y1f6{bottom:342.120000pt;}
.ye3{bottom:347.706667pt;}
.y23{bottom:349.146667pt;}
.y267{bottom:349.466667pt;}
.y222{bottom:357.466667pt;}
.y67{bottom:358.106667pt;}
.y273{bottom:361.146667pt;}
.ye2{bottom:363.546667pt;}
.y11a{bottom:364.666667pt;}
.y22{bottom:364.986667pt;}
.y266{bottom:365.306667pt;}
.y1f5{bottom:366.760000pt;}
.y221{bottom:373.306667pt;}
.y66{bottom:373.946667pt;}
.yc4{bottom:378.906667pt;}
.ye1{bottom:379.386667pt;}
.y119{bottom:380.506667pt;}
.y123{bottom:380.666667pt;}
.y265{bottom:381.146667pt;}
.y21{bottom:382.426667pt;}
.y272{bottom:385.946667pt;}
.ye7{bottom:387.386667pt;}
.ya0{bottom:388.986667pt;}
.y220{bottom:389.146667pt;}
.y65{bottom:389.946667pt;}
.y1f4{bottom:391.240000pt;}
.ye0{bottom:395.426667pt;}
.y118{bottom:396.386667pt;}
.y122{bottom:396.546667pt;}
.y264{bottom:397.026667pt;}
.ybf{bottom:397.826667pt;}
.ye6{bottom:403.426667pt;}
.y20{bottom:403.746667pt;}
.y9f{bottom:404.866667pt;}
.y21f{bottom:405.026667pt;}
.y64{bottom:405.826667pt;}
.y271{bottom:410.946667pt;}
.ydf{bottom:411.266667pt;}
.y117{bottom:412.066667pt;}
.y121{bottom:412.386667pt;}
.y263{bottom:413.026667pt;}
.y1f2{bottom:415.746667pt;}
.ye5{bottom:419.266667pt;}
.y9e{bottom:420.706667pt;}
.y21e{bottom:421.026667pt;}
.y63{bottom:421.666667pt;}
.y1f{bottom:424.866667pt;}
.y120{bottom:428.386667pt;}
.y262{bottom:428.866667pt;}
.yde{bottom:435.106667pt;}
.y116{bottom:436.226667pt;}
.y9d{bottom:436.546667pt;}
.y240{bottom:436.866667pt;}
.y62{bottom:437.506667pt;}
.y11f{bottom:444.226667pt;}
.y261{bottom:444.706667pt;}
.y21d{bottom:444.866667pt;}
.y1f1{bottom:445.346667pt;}
.y1e{bottom:445.986667pt;}
.y115{bottom:452.066667pt;}
.y9c{bottom:452.386667pt;}
.y23f{bottom:452.706667pt;}
.y61{bottom:453.346667pt;}
.ydd{bottom:456.226667pt;}
.y11e{bottom:460.066667pt;}
.y260{bottom:460.546667pt;}
.y21c{bottom:460.706667pt;}
.y1d{bottom:467.106667pt;}
.y114{bottom:467.906667pt;}
.y9b{bottom:468.386667pt;}
.y60{bottom:469.186667pt;}
.y23e{bottom:470.306667pt;}
.y11d{bottom:475.906667pt;}
.y25f{bottom:476.386667pt;}
.y21b{bottom:476.546667pt;}
.y113{bottom:483.746667pt;}
.y9a{bottom:484.226667pt;}
.y1e4{bottom:485.026667pt;}
.y5f{bottom:485.186667pt;}
.y270{bottom:485.506667pt;}
.y1f0{bottom:485.826667pt;}
.y1c{bottom:488.226667pt;}
.y11c{bottom:491.746667pt;}
.y21a{bottom:492.386667pt;}
.y19f{bottom:498.626667pt;}
.y112{bottom:499.266667pt;}
.y23d{bottom:499.426667pt;}
.ybe{bottom:499.586667pt;}
.y1e3{bottom:500.866667pt;}
.y5e{bottom:501.026667pt;}
.y1ef{bottom:501.666667pt;}
.y11b{bottom:507.586667pt;}
.y99{bottom:508.066667pt;}
.y219{bottom:508.226667pt;}
.y1c1{bottom:509.506667pt;}
.y26f{bottom:510.306667pt;}
.y1b{bottom:511.586667pt;}
.y23c{bottom:515.426667pt;}
.y1e2{bottom:516.706667pt;}
.y5d{bottom:516.866667pt;}
.y1ee{bottom:517.506667pt;}
.y177{bottom:520.706667pt;}
.y19e{bottom:522.466667pt;}
.ybd{bottom:523.426667pt;}
.y111{bottom:523.586667pt;}
.y98{bottom:523.906667pt;}
.y25e{bottom:524.066667pt;}
.y218{bottom:524.226667pt;}
.y23b{bottom:531.266667pt;}
.y5c{bottom:532.706667pt;}
.y1c0{bottom:533.346667pt;}
.y26e{bottom:535.106667pt;}
.y1a{bottom:538.946667pt;}
.y97{bottom:539.746667pt;}
.y25d{bottom:539.906667pt;}
.y217{bottom:540.066667pt;}
.y110{bottom:543.106667pt;}
.y176{bottom:544.546667pt;}
.y19d{bottom:546.306667pt;}
.y23a{bottom:547.106667pt;}
.ybc{bottom:547.586667pt;}
.y5b{bottom:548.546667pt;}
.y1ed{bottom:549.186667pt;}
.y96{bottom:555.586667pt;}
.y25c{bottom:555.746667pt;}
.y216{bottom:555.906667pt;}
.y1bc{bottom:557.186667pt;}
.y26d{bottom:559.906667pt;}
.y19c{bottom:562.146667pt;}
.y239{bottom:562.946667pt;}
.y1e1{bottom:564.386667pt;}
.y5a{bottom:564.546667pt;}
.y1ec{bottom:565.186667pt;}
.y16e{bottom:568.386667pt;}
.y192{bottom:570.146667pt;}
.y95{bottom:571.586667pt;}
.y215{bottom:571.746667pt;}
.y1bb{bottom:573.026667pt;}
.y175{bottom:576.386667pt;}
.y19b{bottom:577.986667pt;}
.y238{bottom:578.786667pt;}
.y1e0{bottom:580.226667pt;}
.y59{bottom:580.386667pt;}
.y1eb{bottom:581.026667pt;}
.y13a{bottom:582.306667pt;}
.y16d{bottom:584.226667pt;}
.y26c{bottom:584.866667pt;}
.y19{bottom:585.026667pt;}
.y191{bottom:585.986667pt;}
.y94{bottom:587.426667pt;}
.y214{bottom:587.586667pt;}
.y1ba{bottom:589.026667pt;}
.y174{bottom:592.226667pt;}
.y19a{bottom:593.826667pt;}
.y237{bottom:594.626667pt;}
.y1df{bottom:596.066667pt;}
.y58{bottom:596.226667pt;}
.y1ea{bottom:596.866667pt;}
.y16c{bottom:600.226667pt;}
.y190{bottom:601.853333pt;}
.y93{bottom:603.293333pt;}
.y25b{bottom:603.453333pt;}
.y213{bottom:603.613333pt;}
.y1b9{bottom:604.893333pt;}
.y139{bottom:606.173333pt;}
.y173{bottom:608.253333pt;}
.y199{bottom:609.853333pt;}
.y236{bottom:610.653333pt;}
.y57{bottom:612.093333pt;}
.y18{bottom:612.413333pt;}
.y1e9{bottom:612.733333pt;}
.y16b{bottom:615.773333pt;}
.y18f{bottom:617.853333pt;}
.y10f{bottom:618.493333pt;}
.y92{bottom:619.133333pt;}
.y25a{bottom:619.293333pt;}
.y212{bottom:619.453333pt;}
.y1b8{bottom:620.733333pt;}
.y172{bottom:624.093333pt;}
.y198{bottom:625.693333pt;}
.y235{bottom:626.493333pt;}
.y1de{bottom:627.933333pt;}
.y1e8{bottom:628.573333pt;}
.y131{bottom:630.013333pt;}
.y18e{bottom:633.693333pt;}
.y26b{bottom:634.493333pt;}
.y91{bottom:634.973333pt;}
.y259{bottom:635.133333pt;}
.y211{bottom:635.293333pt;}
.y56{bottom:635.933333pt;}
.y1b7{bottom:636.573333pt;}
.y17{bottom:639.933333pt;}
.y197{bottom:641.533333pt;}
.y234{bottom:642.333333pt;}
.y1e7{bottom:644.573333pt;}
.y130{bottom:645.853333pt;}
.y18d{bottom:649.533333pt;}
.y90{bottom:650.813333pt;}
.y258{bottom:650.973333pt;}
.y210{bottom:651.133333pt;}
.y55{bottom:651.773333pt;}
.y1bf{bottom:652.093333pt;}
.y157{bottom:652.413333pt;}
.y138{bottom:653.853333pt;}
.y16a{bottom:655.773333pt;}
.y196{bottom:657.373333pt;}
.y26a{bottom:658.813333pt;}
.y1e6{bottom:660.413333pt;}
.y12f{bottom:661.853333pt;}
.y18c{bottom:665.373333pt;}
.y233{bottom:666.173333pt;}
.y8f{bottom:666.813333pt;}
.y20f{bottom:666.973333pt;}
.y54{bottom:667.773333pt;}
.y1dd{bottom:667.933333pt;}
.y1b6{bottom:668.413333pt;}
.y137{bottom:669.853333pt;}
.y169{bottom:671.613333pt;}
.y16{bottom:672.413333pt;}
.y195{bottom:673.213333pt;}
.yba{bottom:674.813333pt;}
.y156{bottom:676.253333pt;}
.y1be{bottom:676.413333pt;}
.y12e{bottom:677.693333pt;}
.y18b{bottom:681.213333pt;}
.y232{bottom:682.013333pt;}
.y8e{bottom:682.653333pt;}
.y20e{bottom:682.813333pt;}
.y53{bottom:683.613333pt;}
.y1b5{bottom:684.253333pt;}
.y136{bottom:685.693333pt;}
.y168{bottom:687.613333pt;}
.y194{bottom:689.213333pt;}
.yb9{bottom:690.653333pt;}
.y1dc{bottom:692.093333pt;}
.y1bd{bottom:692.253333pt;}
.y12d{bottom:693.533333pt;}
.y18a{bottom:697.213333pt;}
.y231{bottom:698.013333pt;}
.y8d{bottom:698.493333pt;}
.y257{bottom:698.653333pt;}
.y52{bottom:699.453333pt;}
.y150{bottom:700.253333pt;}
.y20d{bottom:700.573333pt;}
.y135{bottom:701.533333pt;}
.y167{bottom:703.453333pt;}
.yb8{bottom:706.493333pt;}
.y1db{bottom:707.933333pt;}
.y1b4{bottom:708.093333pt;}
.y155{bottom:708.253333pt;}
.y10b{bottom:709.693333pt;}
.y171{bottom:711.453333pt;}
.y193{bottom:712.733333pt;}
.y189{bottom:713.053333pt;}
.y230{bottom:713.853333pt;}
.y8c{bottom:714.333333pt;}
.y256{bottom:714.493333pt;}
.y51{bottom:715.293333pt;}
.y14f{bottom:716.093333pt;}
.y12c{bottom:717.373333pt;}
.y166{bottom:719.293333pt;}
.yb7{bottom:722.333333pt;}
.y1da{bottom:723.773333pt;}
.y154{bottom:724.093333pt;}
.y15{bottom:724.253333pt;}
.y170{bottom:727.293333pt;}
.y1b3{bottom:729.213333pt;}
.y20c{bottom:729.693333pt;}
.y8b{bottom:730.173333pt;}
.y255{bottom:730.333333pt;}
.y50{bottom:731.133333pt;}
.y1e5{bottom:731.773333pt;}
.y14e{bottom:731.933333pt;}
.y12b{bottom:733.213333pt;}
.y165{bottom:735.133333pt;}
.y188{bottom:736.893333pt;}
.yb6{bottom:738.173333pt;}
.y1d9{bottom:739.453333pt;}
.y153{bottom:739.933333pt;}
.y134{bottom:741.213333pt;}
.y16f{bottom:743.133333pt;}
.ybb{bottom:745.853333pt;}
.y8a{bottom:746.173333pt;}
.y4f{bottom:746.973333pt;}
.y14d{bottom:747.773333pt;}
.y12a{bottom:749.213333pt;}
.y20b{bottom:750.973333pt;}
.yb5{bottom:754.173333pt;}
.y152{bottom:755.773333pt;}
.y14{bottom:757.213333pt;}
.y187{bottom:758.173333pt;}
.y164{bottom:758.973333pt;}
.y1d0{bottom:759.293333pt;}
.y89{bottom:762.013333pt;}
.y254{bottom:762.173333pt;}
.y4e{bottom:762.973333pt;}
.y14c{bottom:763.293333pt;}
.y129{bottom:765.053333pt;}
.yb4{bottom:770.013333pt;}
.y151{bottom:771.613333pt;}
.y133{bottom:773.053333pt;}
.y13{bottom:777.533333pt;}
.y253{bottom:778.013333pt;}
.y4d{bottom:778.813333pt;}
.y163{bottom:780.253333pt;}
.y128{bottom:780.893333pt;}
.y1d8{bottom:783.773333pt;}
.y88{bottom:785.853333pt;}
.y14b{bottom:787.613333pt;}
.y132{bottom:788.893333pt;}
.y12{bottom:792.893333pt;}
.y252{bottom:793.853333pt;}
.y4c{bottom:794.653333pt;}
.y105{bottom:800.893333pt;}
.y87{bottom:801.693333pt;}
.y127{bottom:804.733333pt;}
.y11{bottom:808.413333pt;}
.y14a{bottom:808.733333pt;}
.y251{bottom:809.733333pt;}
.y4b{bottom:810.533333pt;}
.ydc{bottom:817.093333pt;}
.y86{bottom:817.573333pt;}
.y10{bottom:824.773333pt;}
.y250{bottom:825.573333pt;}
.y126{bottom:825.893333pt;}
.y1d7{bottom:832.933333pt;}
.y85{bottom:833.413333pt;}
.y4a{bottom:834.373333pt;}
.yf{bottom:840.453333pt;}
.ydb{bottom:840.933333pt;}
.y24f{bottom:841.413333pt;}
.y84{bottom:849.413333pt;}
.y49{bottom:850.373333pt;}
.yda{bottom:856.773333pt;}
.y1d6{bottom:857.413333pt;}
.yff{bottom:864.453333pt;}
.y83{bottom:865.253333pt;}
.y48{bottom:866.213333pt;}
.yd9{bottom:872.773333pt;}
.y24e{bottom:873.253333pt;}
.ye{bottom:876.133333pt;}
.y82{bottom:881.093333pt;}
.y47{bottom:882.053333pt;}
.yd{bottom:886.853333pt;}
.y24d{bottom:889.093333pt;}
.yd1{bottom:891.653333pt;}
.y81{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y46{bottom:897.893333pt;}
.y24c{bottom:904.933333pt;}
.y1d5{bottom:906.533333pt;}
.yb{bottom:908.293333pt;}
.y80{bottom:912.773333pt;}
.y45{bottom:913.733333pt;}
.y24b{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y7f{bottom:928.773333pt;}
.y44{bottom:929.573333pt;}
.y1d4{bottom:931.013333pt;}
.y24a{bottom:936.773333pt;}
.yfe{bottom:939.653333pt;}
.y9{bottom:943.973333pt;}
.y7e{bottom:944.613333pt;}
.y43{bottom:945.573333pt;}
.yb3{bottom:952.613333pt;}
.y1ce{bottom:955.653333pt;}
.y7d{bottom:960.453333pt;}
.y42{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.yb2{bottom:968.453333pt;}
.y7c{bottom:976.293333pt;}
.y41{bottom:977.253333pt;}
.y1b2{bottom:984.133333pt;}
.yb1{bottom:984.293333pt;}
.y7b{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y40{bottom:993.093333pt;}
.y149{bottom:999.973333pt;}
.yb0{bottom:1000.133333pt;}
.y7a{bottom:1007.973333pt;}
.y3f{bottom:1008.933333pt;}
.yf9{bottom:1015.013333pt;}
.yaf{bottom:1015.973333pt;}
.y148{bottom:1024.000000pt;}
.y3e{bottom:1024.960000pt;}
.y186{bottom:1031.840000pt;}
.y79{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y3d{bottom:1040.800000pt;}
.y78{bottom:1047.840000pt;}
.y185{bottom:1055.680000pt;}
.y3c{bottom:1058.400000pt;}
.y77{bottom:1063.680000pt;}
.h1c{height:23.826667pt;}
.h28{height:23.840000pt;}
.h2a{height:23.858667pt;}
.h29{height:23.872000pt;}
.h2b{height:23.986667pt;}
.h2{height:27.676000pt;}
.h26{height:30.880000pt;}
.h9{height:36.431250pt;}
.h1a{height:47.085938pt;}
.h3{height:47.109375pt;}
.h25{height:47.742188pt;}
.h11{height:48.375000pt;}
.h13{height:49.148438pt;}
.h2c{height:49.336436pt;}
.h16{height:52.108438pt;}
.ha{height:52.134375pt;}
.h15{height:52.234000pt;}
.h17{height:52.526250pt;}
.hb{height:53.535000pt;}
.h1f{height:55.700000pt;}
.hf{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.h22{height:59.552000pt;}
.hd{height:64.290000pt;}
.h10{height:64.500000pt;}
.h12{height:69.660000pt;}
.h21{height:71.360000pt;}
.h1d{height:71.506667pt;}
.h20{height:71.520000pt;}
.h24{height:71.546667pt;}
.h1e{height:71.552000pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h23{height:87.360000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h18{height:96.786667pt;}
.h19{height:167.026667pt;}
.h1b{height:167.066667pt;}
.h27{height:195.546667pt;}
.h14{height:273.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:57.280000pt;}
.we{width:68.512000pt;}
.wb{width:69.472000pt;}
.w3{width:71.386667pt;}
.w14{width:96.338667pt;}
.w15{width:101.146667pt;}
.w10{width:115.226667pt;}
.w9{width:159.542667pt;}
.wd{width:163.862667pt;}
.wa{width:174.746667pt;}
.w6{width:181.186667pt;}
.w5{width:181.462667pt;}
.w11{width:188.062667pt;}
.w7{width:236.062667pt;}
.w13{width:240.826667pt;}
.wc{width:289.333333pt;}
.w8{width:294.306667pt;}
.wf{width:339.586667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:3.520000pt;}
.x41{left:4.960000pt;}
.x5{left:7.680000pt;}
.x13{left:9.600000pt;}
.x29{left:11.040000pt;}
.x2a{left:12.320000pt;}
.x2d{left:13.786667pt;}
.x2e{left:15.506667pt;}
.x2b{left:16.800000pt;}
.x17{left:18.876000pt;}
.x25{left:20.506667pt;}
.x39{left:23.666667pt;}
.x42{left:24.826667pt;}
.x1d{left:26.076000pt;}
.x1b{left:28.316000pt;}
.x40{left:29.308000pt;}
.x32{left:30.706667pt;}
.x2c{left:31.866667pt;}
.x3a{left:32.946667pt;}
.x3e{left:34.546667pt;}
.x12{left:35.680000pt;}
.x3d{left:36.988000pt;}
.x28{left:38.108000pt;}
.x1{left:40.324000pt;}
.x14{left:45.280000pt;}
.x19{left:47.040000pt;}
.x7{left:48.000000pt;}
.x21{left:49.284000pt;}
.x3c{left:51.228000pt;}
.x38{left:53.000000pt;}
.x23{left:55.080000pt;}
.x1a{left:57.440000pt;}
.x34{left:59.240000pt;}
.x1c{left:64.028000pt;}
.x2f{left:65.106667pt;}
.x45{left:69.746667pt;}
.x31{left:71.080000pt;}
.x68{left:72.000000pt;}
.x36{left:77.148000pt;}
.x27{left:80.348000pt;}
.x37{left:86.120000pt;}
.xe{left:90.112000pt;}
.x44{left:92.306667pt;}
.x63{left:93.942667pt;}
.x61{left:96.826667pt;}
.x35{left:108.186667pt;}
.xd{left:109.792000pt;}
.x33{left:110.906667pt;}
.x3f{left:112.186667pt;}
.x56{left:114.906667pt;}
.x5e{left:117.622667pt;}
.x60{left:120.502667pt;}
.x64{left:122.106667pt;}
.x3b{left:131.386667pt;}
.x5f{left:135.866667pt;}
.x43{left:139.706667pt;}
.x62{left:140.822667pt;}
.x10{left:175.066667pt;}
.x5d{left:178.586667pt;}
.x2{left:195.742667pt;}
.x54{left:203.226667pt;}
.x22{left:209.626667pt;}
.x53{left:212.506667pt;}
.x50{left:217.306667pt;}
.x16{left:222.266667pt;}
.x49{left:223.546667pt;}
.xf{left:227.066667pt;}
.x58{left:235.586667pt;}
.x55{left:238.146667pt;}
.xa{left:239.746667pt;}
.x3{left:241.182667pt;}
.x59{left:242.466667pt;}
.x4c{left:249.506667pt;}
.x1f{left:253.186667pt;}
.xb{left:258.626667pt;}
.x46{left:268.226667pt;}
.x18{left:276.866667pt;}
.x11{left:279.426667pt;}
.x20{left:280.386667pt;}
.x8{left:286.466667pt;}
.x5a{left:300.386667pt;}
.x47{left:306.146667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.x24{left:385.026667pt;}
.x6{left:396.893333pt;}
.x15{left:420.893333pt;}
.x66{left:444.893333pt;}
.x26{left:455.306667pt;}
.x67{left:468.893333pt;}
.x5b{left:542.026667pt;}
.x57{left:626.373333pt;}
.x5c{left:639.013333pt;}
.x1e{left:676.133333pt;}
.x4{left:682.213333pt;}
.x4a{left:708.960000pt;}
.x51{left:711.360000pt;}
.x4d{left:715.040000pt;}
.x4f{left:716.960000pt;}
.x65{left:727.360000pt;}
.x52{left:728.960000pt;}
.x4e{left:731.040000pt;}
.x4b{left:736.960000pt;}
.x48{left:737.920000pt;}
}




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