
    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_b7049d74c7db290d087afd65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_c6c45e8df8c5ccbd5373b2ff.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ff0d72b35767ee04ec75277c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_544f565af6fb6acde356e545.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_1b9f9a613aebc0fa6e880d7a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_246d1815bf0c9bfa4cad0cab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4627458f05420475a2969616.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.917480;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_1a3830d317612d16a243a947.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_a1aa95bf384402bcd2548769.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201660;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_bc0e29820efd4ed6ea910ce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_6bb7964edc86b0b0f4eb1e77.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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_9b9f90b68b27f494d0c834d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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);}
.v1{vertical-align:-50.400000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.381000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.333600px;}
.ls1d{letter-spacing:-0.263400px;}
.lsd{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.192000px;}
.ls21{letter-spacing:-0.175200px;}
.ls25{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.018000px;}
.ls2c{letter-spacing:-0.013680px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.022320px;}
.ls20{letter-spacing:0.044640px;}
.lsb{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.059760px;}
.ls18{letter-spacing:0.075600px;}
.ls17{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.121800px;}
.ls26{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.223800px;}
.ls13{letter-spacing:0.231000px;}
.ls1b{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.258000px;}
.ls5{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.301200px;}
.ls4{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.377400px;}
.ls16{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.460200px;}
.lsf{letter-spacing:16.560000px;}
.ls29{letter-spacing:17.768880px;}
.ls3{letter-spacing:32.544000px;}
.ls1{letter-spacing:64.224000px;}
.ls14{letter-spacing:135.364320px;}
.lse{letter-spacing:189.840000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws13{word-spacing:-24.301320px;}
.wsb{word-spacing:-22.824000px;}
.ws9{word-spacing:-22.752000px;}
.ws23{word-spacing:-22.536000px;}
.ws8{word-spacing:-22.464000px;}
.ws31{word-spacing:-21.384000px;}
.wsa{word-spacing:-21.312000px;}
.ws35{word-spacing:-21.096000px;}
.ws32{word-spacing:-20.880000px;}
.ws33{word-spacing:-20.736000px;}
.ws6{word-spacing:-20.304000px;}
.ws24{word-spacing:-18.848880px;}
.ws22{word-spacing:-18.529680px;}
.ws20{word-spacing:-17.887080px;}
.ws21{word-spacing:-17.554320px;}
.ws1e{word-spacing:-17.249880px;}
.wsd{word-spacing:-17.073480px;}
.wsf{word-spacing:-16.819680px;}
.wse{word-spacing:-16.666560px;}
.wsc{word-spacing:-16.613280px;}
.ws10{word-spacing:-16.353480px;}
.ws5{word-spacing:-16.128000px;}
.ws3{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.624000px;}
.ws17{word-spacing:-15.400320px;}
.ws2f{word-spacing:-15.390000px;}
.ws7{word-spacing:-15.158880px;}
.ws2d{word-spacing:-15.138000px;}
.ws2c{word-spacing:-15.012000px;}
.ws30{word-spacing:-14.994000px;}
.ws1a{word-spacing:-14.907120px;}
.ws2b{word-spacing:-14.904000px;}
.ws1b{word-spacing:-14.835720px;}
.ws1c{word-spacing:-14.765520px;}
.ws27{word-spacing:-14.392320px;}
.ws15{word-spacing:-14.365320px;}
.ws26{word-spacing:-14.358120px;}
.ws28{word-spacing:-14.256120px;}
.ws2e{word-spacing:-14.184000px;}
.ws2a{word-spacing:-14.134320px;}
.ws34{word-spacing:-14.120640px;}
.ws29{word-spacing:-13.972320px;}
.ws12{word-spacing:-13.070880px;}
.ws25{word-spacing:-12.235680px;}
.ws19{word-spacing:-11.520000px;}
.ws1d{word-spacing:-11.268000px;}
.ws18{word-spacing:-11.160000px;}
.ws1f{word-spacing:-10.902240px;}
.ws16{word-spacing:-10.548000px;}
.ws14{word-spacing:-5.760000px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-9.192000px;}
._1c{margin-left:-7.995120px;}
._1d{margin-left:-6.853200px;}
._22{margin-left:-2.329200px;}
._7{margin-left:-1.320000px;}
._0{width:1.254960px;}
._1a{width:2.355120px;}
._11{width:3.456000px;}
._12{width:4.620000px;}
._2{width:6.384000px;}
._1{width:8.064000px;}
._1b{width:10.152000px;}
._13{width:11.592000px;}
._23{width:12.600000px;}
._5{width:13.752000px;}
._6{width:14.760000px;}
._1f{width:15.840000px;}
._8{width:17.280000px;}
._9{width:18.504000px;}
._20{width:19.512000px;}
._b{width:20.592000px;}
._a{width:21.816000px;}
._4{width:22.824000px;}
._3{width:23.832000px;}
._e{width:25.344000px;}
._10{width:27.864000px;}
._18{width:29.376000px;}
._19{width:31.349040px;}
._14{width:36.936000px;}
._15{width:38.160000px;}
._24{width:39.312000px;}
._d{width:42.048000px;}
._c{width:43.344000px;}
._17{width:48.840000px;}
._16{width:49.896000px;}
._f{width:53.064000px;}
._25{width:58.088160px;}
._21{width:74.952000px;}
.fc9{color:rgb(63,212,168);}
.fc8{color:rgb(54,184,146);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc1{color:rgb(12,0,197);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(191,191,191);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs6{font-size:12.240000px;}
.fsb{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yea{bottom:0.900000px;}
.y1eb{bottom:1.785000px;}
.ye0{bottom:1.800000px;}
.ye5{bottom:1.980000px;}
.yd8{bottom:2.160000px;}
.y1aa{bottom:2.520000px;}
.y1a5{bottom:2.565000px;}
.y6e{bottom:2.700000px;}
.y102{bottom:3.060000px;}
.ya4{bottom:3.420000px;}
.y10c{bottom:3.600000px;}
.y197{bottom:3.780000px;}
.y4{bottom:3.960000px;}
.ycc{bottom:4.140000px;}
.ydb{bottom:4.500000px;}
.y9b{bottom:4.845000px;}
.y95{bottom:5.025000px;}
.y85{bottom:5.040000px;}
.y18f{bottom:5.220000px;}
.y101{bottom:5.580000px;}
.y11e{bottom:5.940000px;}
.y180{bottom:6.120000px;}
.ye9{bottom:6.300000px;}
.y196{bottom:6.660000px;}
.y122{bottom:6.840000px;}
.y184{bottom:7.020000px;}
.y1ac{bottom:7.200000px;}
.y193{bottom:7.380000px;}
.y9c{bottom:7.545000px;}
.yf6{bottom:7.560000px;}
.y18e{bottom:8.100000px;}
.y19c{bottom:8.280000px;}
.y189{bottom:8.310000px;}
.y10a{bottom:9.000000px;}
.y120{bottom:9.180000px;}
.yf5{bottom:9.360000px;}
.y1d8{bottom:9.540000px;}
.y199{bottom:9.720000px;}
.y137{bottom:9.900000px;}
.y186{bottom:10.080000px;}
.y192{bottom:10.260000px;}
.y103{bottom:10.620000px;}
.yf4{bottom:11.160000px;}
.y188{bottom:11.190000px;}
.y17b{bottom:11.340000px;}
.y83{bottom:11.505000px;}
.y182{bottom:12.060000px;}
.yd4{bottom:12.240000px;}
.yfc{bottom:12.420000px;}
.y110{bottom:12.600000px;}
.y1ea{bottom:12.630000px;}
.ydf{bottom:12.645000px;}
.ye4{bottom:12.780000px;}
.yf3{bottom:12.960000px;}
.y194{bottom:13.320000px;}
.yda{bottom:13.500000px;}
.y1ae{bottom:13.860000px;}
.y19e{bottom:14.220000px;}
.y18b{bottom:14.250000px;}
.y1d1{bottom:14.580000px;}
.yf2{bottom:14.760000px;}
.y1e8{bottom:14.790000px;}
.yd7{bottom:14.940000px;}
.ye8{bottom:15.120000px;}
.y69{bottom:15.840000px;}
.yf1{bottom:16.560000px;}
.y1e4{bottom:16.740000px;}
.y6d{bottom:17.100000px;}
.yfa{bottom:17.280000px;}
.y105{bottom:18.180000px;}
.y1d6{bottom:18.360000px;}
.y1a2{bottom:18.405000px;}
.yf0{bottom:18.540000px;}
.yf9{bottom:19.080000px;}
.y109{bottom:19.800000px;}
.y11f{bottom:19.980000px;}
.y198{bottom:20.160000px;}
.yef{bottom:20.340000px;}
.y185{bottom:20.520000px;}
.ya3{bottom:20.700000px;}
.y1e7{bottom:20.730000px;}
.ydd{bottom:20.745000px;}
.yf8{bottom:20.880000px;}
.y1a1{bottom:21.285000px;}
.y1ca{bottom:21.465000px;}
.y190{bottom:21.600000px;}
.y1ab{bottom:21.780000px;}
.y10b{bottom:21.960000px;}
.y1bb{bottom:22.140000px;}
.y1b0{bottom:22.320000px;}
.y181{bottom:22.500000px;}
.yeb{bottom:22.680000px;}
.yfd{bottom:22.860000px;}
.y1d2{bottom:23.400000px;}
.ye3{bottom:23.580000px;}
.y1e9{bottom:23.610000px;}
.yde{bottom:23.625000px;}
.yfe{bottom:23.760000px;}
.y1d9{bottom:23.940000px;}
.yed{bottom:24.300000px;}
.y1a6{bottom:24.345000px;}
.y19d{bottom:24.660000px;}
.y18a{bottom:24.690000px;}
.y10e{bottom:25.380000px;}
.y6c{bottom:25.740000px;}
.y17a{bottom:25.920000px;}
.yd6{bottom:27.540000px;}
.y107{bottom:27.900000px;}
.y11c{bottom:28.260000px;}
.y1b1{bottom:28.800000px;}
.y11a{bottom:28.980000px;}
.y1c9{bottom:29.025000px;}
.y1d5{bottom:29.340000px;}
.y1ad{bottom:29.700000px;}
.y108{bottom:30.780000px;}
.y1d3{bottom:30.960000px;}
.ye6{bottom:31.140000px;}
.y1de{bottom:31.170000px;}
.ye1{bottom:31.185000px;}
.y1cf{bottom:31.320000px;}
.y6b{bottom:31.680000px;}
.y1a4{bottom:32.985000px;}
.y1e1{bottom:34.560000px;}
.y1a3{bottom:34.785000px;}
.yd3{bottom:36.360000px;}
.y1cb{bottom:36.585000px;}
.y1ba{bottom:37.440000px;}
.ya2{bottom:37.980000px;}
.y10d{bottom:38.340000px;}
.yd5{bottom:40.140000px;}
.y82{bottom:40.665000px;}
.y179{bottom:40.680000px;}
.y1e2{bottom:42.120000px;}
.y1c8{bottom:45.585000px;}
.y1a8{bottom:51.480000px;}
.y3{bottom:52.920000px;}
.y119{bottom:53.100000px;}
.y1b9{bottom:53.310000px;}
.ya1{bottom:55.260000px;}
.y2{bottom:57.060000px;}
.y136{bottom:60.480000px;}
.y1b8{bottom:68.790000px;}
.y178{bottom:69.840000px;}
.y81{bottom:70.005000px;}
.y1dc{bottom:70.380000px;}
.ya0{bottom:72.540000px;}
.yd1{bottom:76.320000px;}
.y135{bottom:80.820000px;}
.y1b7{bottom:83.910000px;}
.y177{bottom:84.600000px;}
.y9f{bottom:89.640000px;}
.y134{bottom:94.320000px;}
.y1db{bottom:94.500000px;}
.y80{bottom:99.165000px;}
.y176{bottom:99.180000px;}
.y1b6{bottom:99.930000px;}
.yd0{bottom:100.440000px;}
.y9e{bottom:106.950000px;}
.y175{bottom:113.805000px;}
.y1b5{bottom:115.410000px;}
.y117{bottom:115.560000px;}
.y87{bottom:115.920000px;}
.y133{bottom:118.485000px;}
.yca{bottom:122.040000px;}
.y67{bottom:123.840000px;}
.y9d{bottom:124.230000px;}
.y7f{bottom:128.325000px;}
.y174{bottom:128.565000px;}
.y25{bottom:130.500000px;}
.y1b4{bottom:130.890000px;}
.y116{bottom:134.460000px;}
.y46{bottom:137.340000px;}
.y132{bottom:138.645000px;}
.y173{bottom:142.425000px;}
.y1b3{bottom:146.370000px;}
.y131{bottom:152.145000px;}
.y115{bottom:153.540000px;}
.yc9{bottom:153.720000px;}
.y66{bottom:155.520000px;}
.y1bc{bottom:156.450000px;}
.y7e{bottom:157.665000px;}
.y172{bottom:157.725000px;}
.y1b2{bottom:162.030000px;}
.y24{bottom:162.180000px;}
.y1bd{bottom:162.930000px;}
.y1f1{bottom:165.780000px;}
.y45{bottom:169.020000px;}
.y171{bottom:169.425000px;}
.y17c{bottom:169.560000px;}
.y170{bottom:171.225000px;}
.y16f{bottom:173.025000px;}
.y16e{bottom:174.825000px;}
.y130{bottom:176.445000px;}
.y16d{bottom:179.685000px;}
.yc8{bottom:185.400000px;}
.y1f0{bottom:185.760000px;}
.y7d{bottom:186.825000px;}
.y65{bottom:187.020000px;}
.y23{bottom:192.240000px;}
.y16c{bottom:192.285000px;}
.y1af{bottom:197.310000px;}
.y12f{bottom:200.565000px;}
.y44{bottom:200.700000px;}
.y16b{bottom:201.465000px;}
.y1ef{bottom:211.320000px;}
.y16a{bottom:213.165000px;}
.y169{bottom:214.965000px;}
.y7c{bottom:216.030000px;}
.y168{bottom:216.765000px;}
.yc7{bottom:216.900000px;}
.y64{bottom:218.730000px;}
.y167{bottom:218.745000px;}
.y166{bottom:220.545000px;}
.y22{bottom:222.330000px;}
.y165{bottom:222.345000px;}
.y164{bottom:224.145000px;}
.y12e{bottom:224.685000px;}
.y163{bottom:225.945000px;}
.y162{bottom:230.625000px;}
.y43{bottom:232.230000px;}
.y161{bottom:242.505000px;}
.y1ee{bottom:243.030000px;}
.y160{bottom:244.305000px;}
.y7b{bottom:245.370000px;}
.y15f{bottom:246.105000px;}
.y15e{bottom:247.905000px;}
.yc6{bottom:248.610000px;}
.y12d{bottom:248.805000px;}
.y63{bottom:250.410000px;}
.y15d{bottom:252.585000px;}
.y21{bottom:254.010000px;}
.y6f{bottom:254.565000px;}
.y42{bottom:263.910000px;}
.y15c{bottom:265.365000px;}
.y12c{bottom:272.925000px;}
.y7a{bottom:274.530000px;}
.y15b{bottom:274.545000px;}
.yc5{bottom:280.290000px;}
.y62{bottom:282.090000px;}
.y20{bottom:285.690000px;}
.y15a{bottom:286.245000px;}
.y9a{bottom:286.965000px;}
.y159{bottom:288.045000px;}
.y158{bottom:290.025000px;}
.y157{bottom:291.825000px;}
.y41{bottom:295.590000px;}
.y156{bottom:296.505000px;}
.y12b{bottom:297.225000px;}
.y79{bottom:303.690000px;}
.y155{bottom:311.085000px;}
.yc4{bottom:311.970000px;}
.y61{bottom:313.770000px;}
.y99{bottom:316.665000px;}
.y1f{bottom:317.370000px;}
.y12a{bottom:321.345000px;}
.y154{bottom:325.845000px;}
.y40{bottom:327.270000px;}
.y78{bottom:333.030000px;}
.y153{bottom:340.455000px;}
.yc3{bottom:343.650000px;}
.y123{bottom:344.550000px;}
.y60{bottom:345.450000px;}
.y129{bottom:345.495000px;}
.y98{bottom:346.365000px;}
.y1e{bottom:349.050000px;}
.y152{bottom:355.215000px;}
.y3f{bottom:358.950000px;}
.y77{bottom:362.190000px;}
.y151{bottom:366.915000px;}
.y150{bottom:368.715000px;}
.y128{bottom:369.615000px;}
.y14f{bottom:370.515000px;}
.y14e{bottom:372.315000px;}
.y14d{bottom:374.115000px;}
.yc2{bottom:375.330000px;}
.y97{bottom:376.065000px;}
.y14c{bottom:376.095000px;}
.y5f{bottom:377.130000px;}
.y1d{bottom:380.550000px;}
.y14b{bottom:380.775000px;}
.y1a7{bottom:385.590000px;}
.y76{bottom:388.470000px;}
.y3e{bottom:390.630000px;}
.y14a{bottom:392.475000px;}
.y127{bottom:393.735000px;}
.y149{bottom:394.275000px;}
.y148{bottom:396.075000px;}
.y147{bottom:398.055000px;}
.y1ed{bottom:400.530000px;}
.y75{bottom:402.510000px;}
.y146{bottom:402.735000px;}
.y96{bottom:405.765000px;}
.yc1{bottom:407.010000px;}
.y5e{bottom:408.630000px;}
.y1c{bottom:412.230000px;}
.y145{bottom:414.435000px;}
.y144{bottom:416.235000px;}
.y126{bottom:418.035000px;}
.y143{bottom:418.215000px;}
.y1a9{bottom:419.970000px;}
.y142{bottom:420.015000px;}
.y3d{bottom:422.310000px;}
.y141{bottom:424.695000px;}
.y74{bottom:431.880000px;}
.y1ec{bottom:434.550000px;}
.y94{bottom:435.465000px;}
.y140{bottom:436.395000px;}
.y1e6{bottom:438.165000px;}
.y13f{bottom:438.195000px;}
.yc0{bottom:438.510000px;}
.y13e{bottom:440.175000px;}
.y5d{bottom:440.310000px;}
.y13d{bottom:441.975000px;}
.y125{bottom:442.155000px;}
.y1b{bottom:443.910000px;}
.y13c{bottom:446.655000px;}
.y1a0{bottom:449.670000px;}
.y3c{bottom:453.855000px;}
.y13b{bottom:458.355000px;}
.y13a{bottom:460.335000px;}
.y73{bottom:461.040000px;}
.y139{bottom:462.135000px;}
.y93{bottom:465.195000px;}
.y124{bottom:466.275000px;}
.y138{bottom:466.815000px;}
.ybf{bottom:470.235000px;}
.y1e5{bottom:471.495000px;}
.y5c{bottom:472.035000px;}
.y1a{bottom:475.635000px;}
.y3b{bottom:485.535000px;}
.y19f{bottom:486.615000px;}
.y72{bottom:490.200000px;}
.y92{bottom:494.895000px;}
.ybe{bottom:501.915000px;}
.y5b{bottom:503.715000px;}
.y1e3{bottom:504.795000px;}
.y19{bottom:507.315000px;}
.y112{bottom:509.115000px;}
.y3a{bottom:517.215000px;}
.y71{bottom:519.540000px;}
.y91{bottom:524.595000px;}
.y19b{bottom:532.875000px;}
.ybd{bottom:533.595000px;}
.y5a{bottom:535.395000px;}
.y1e0{bottom:538.095000px;}
.y18{bottom:538.995000px;}
.y111{bottom:542.595000px;}
.y70{bottom:548.700000px;}
.y39{bottom:548.895000px;}
.y90{bottom:554.295000px;}
.y86{bottom:554.640000px;}
.y19a{bottom:559.695000px;}
.ybc{bottom:565.275000px;}
.y59{bottom:567.075000px;}
.y17{bottom:570.675000px;}
.y10f{bottom:575.895000px;}
.y38{bottom:580.575000px;}
.y195{bottom:582.195000px;}
.y1da{bottom:582.375000px;}
.y8f{bottom:584.175000px;}
.ybb{bottom:596.955000px;}
.y58{bottom:598.755000px;}
.y16{bottom:602.175000px;}
.y191{bottom:604.695000px;}
.y106{bottom:609.195000px;}
.y37{bottom:612.255000px;}
.y8e{bottom:613.875000px;}
.y1df{bottom:615.675000px;}
.yba{bottom:628.635000px;}
.y57{bottom:630.255000px;}
.y18d{bottom:630.795000px;}
.y15{bottom:633.855000px;}
.y17d{bottom:641.265000px;}
.y8d{bottom:643.575000px;}
.y36{bottom:643.935000px;}
.y104{bottom:649.695000px;}
.y18c{bottom:654.555000px;}
.y1dd{bottom:656.175000px;}
.yb9{bottom:660.135000px;}
.y56{bottom:661.935000px;}
.y14{bottom:665.535000px;}
.y8c{bottom:673.275000px;}
.y35{bottom:675.435000px;}
.y187{bottom:679.215000px;}
.yff{bottom:683.025000px;}
.yb8{bottom:691.845000px;}
.y88{bottom:693.285000px;}
.y55{bottom:693.645000px;}
.y100{bottom:695.805000px;}
.y13{bottom:697.245000px;}
.y1d7{bottom:699.945000px;}
.y8b{bottom:703.005000px;}
.y183{bottom:706.065000px;}
.y34{bottom:707.145000px;}
.yfb{bottom:716.505000px;}
.y54{bottom:726.225000px;}
.y12{bottom:728.925000px;}
.yb7{bottom:731.985000px;}
.y8a{bottom:732.705000px;}
.y1d4{bottom:733.425000px;}
.y33{bottom:738.825000px;}
.yf7{bottom:749.805000px;}
.y17f{bottom:753.585000px;}
.y53{bottom:757.905000px;}
.y11{bottom:760.605000px;}
.y89{bottom:762.405000px;}
.y1d0{bottom:766.725000px;}
.y32{bottom:770.505000px;}
.yb6{bottom:771.765000px;}
.yec{bottom:774.645000px;}
.y17e{bottom:776.085000px;}
.yee{bottom:789.045000px;}
.y52{bottom:789.585000px;}
.y84{bottom:792.105000px;}
.y10{bottom:792.285000px;}
.y1ce{bottom:799.845000px;}
.y121{bottom:800.925000px;}
.y31{bottom:802.185000px;}
.yb5{bottom:811.545000px;}
.y51{bottom:821.265000px;}
.y6a{bottom:821.805000px;}
.y11d{bottom:823.425000px;}
.yf{bottom:823.785000px;}
.y1cd{bottom:833.325000px;}
.y30{bottom:833.865000px;}
.ye7{bottom:836.385000px;}
.yb4{bottom:851.325000px;}
.y118{bottom:853.125000px;}
.y50{bottom:853.845000px;}
.ye{bottom:855.465000px;}
.y2f{bottom:865.545000px;}
.y68{bottom:866.085000px;}
.y1cc{bottom:866.625000px;}
.ye2{bottom:869.685000px;}
.y4f{bottom:885.525000px;}
.yd{bottom:887.145000px;}
.yb3{bottom:891.105000px;}
.y11b{bottom:893.985000px;}
.y2e{bottom:897.045000px;}
.y1c7{bottom:899.925000px;}
.ydc{bottom:903.165000px;}
.yb2{bottom:911.625000px;}
.y4e{bottom:918.330000px;}
.yc{bottom:918.870000px;}
.y2d{bottom:928.770000px;}
.yb1{bottom:930.570000px;}
.yd9{bottom:936.510000px;}
.y114{bottom:938.310000px;}
.y4d{bottom:949.830000px;}
.yb0{bottom:950.010000px;}
.yb{bottom:950.550000px;}
.y1c5{bottom:958.290000px;}
.y2c{bottom:960.450000px;}
.y113{bottom:962.250000px;}
.ycf{bottom:962.610000px;}
.yaf{bottom:970.710000px;}
.y4c{bottom:981.510000px;}
.ya{bottom:982.230000px;}
.yae{bottom:991.410000px;}
.y2b{bottom:992.130000px;}
.y1c6{bottom:998.970000px;}
.yce{bottom:1007.070000px;}
.yad{bottom:1008.510000px;}
.yac{bottom:1010.130000px;}
.y4b{bottom:1013.190000px;}
.y9{bottom:1013.910000px;}
.yab{bottom:1015.530000px;}
.y2a{bottom:1023.810000px;}
.yd2{bottom:1026.690000px;}
.y1c4{bottom:1027.590000px;}
.ycd{bottom:1028.490000px;}
.ycb{bottom:1030.290000px;}
.yaa{bottom:1036.230000px;}
.y8{bottom:1036.770000px;}
.y4a{bottom:1044.870000px;}
.y1c3{bottom:1046.670000px;}
.y29{bottom:1055.490000px;}
.ya9{bottom:1056.930000px;}
.y1c2{bottom:1065.570000px;}
.y7{bottom:1068.450000px;}
.y49{bottom:1076.550000px;}
.ya8{bottom:1077.630000px;}
.y1c1{bottom:1084.470000px;}
.y28{bottom:1086.990000px;}
.ya7{bottom:1098.330000px;}
.y6{bottom:1100.130000px;}
.y1c0{bottom:1103.550000px;}
.y48{bottom:1108.230000px;}
.y27{bottom:1118.670000px;}
.ya6{bottom:1119.570000px;}
.y1bf{bottom:1122.450000px;}
.y5{bottom:1131.990000px;}
.y26{bottom:1139.730000px;}
.y47{bottom:1139.910000px;}
.ya5{bottom:1140.270000px;}
.y1be{bottom:1141.530000px;}
.y1{bottom:1195.740000px;}
.h37{height:3.929063px;}
.h25{height:5.762813px;}
.h1c{height:6.007500px;}
.h52{height:8.361211px;}
.h2f{height:12.060000px;}
.h11{height:12.245977px;}
.h2a{height:13.680000px;}
.h2d{height:19.980000px;}
.h1d{height:20.700000px;}
.h4{height:21.058500px;}
.h40{height:21.600000px;}
.h29{height:21.780000px;}
.h3c{height:21.960000px;}
.h3e{height:23.040000px;}
.h39{height:23.771602px;}
.h3b{height:23.940000px;}
.h27{height:24.120000px;}
.h33{height:24.156000px;}
.h48{height:24.285000px;}
.h2b{height:24.300000px;}
.h3f{height:25.200000px;}
.h22{height:25.380000px;}
.h41{height:26.100000px;}
.h3d{height:26.136000px;}
.h18{height:28.785000px;}
.h16{height:28.965000px;}
.h12{height:28.980000px;}
.h17{height:29.001000px;}
.h15{height:29.010000px;}
.h19{height:31.485000px;}
.h4b{height:32.400000px;}
.h4f{height:32.565000px;}
.h26{height:32.580000px;}
.h51{height:32.601000px;}
.h4d{height:32.610000px;}
.h23{height:32.616000px;}
.h2c{height:32.760000px;}
.h38{height:32.905898px;}
.h43{height:33.660000px;}
.h24{height:36.017578px;}
.h28{height:36.180000px;}
.h42{height:36.216000px;}
.hb{height:36.720000px;}
.h4e{height:39.765000px;}
.h30{height:39.780000px;}
.h49{height:39.945000px;}
.h34{height:40.140000px;}
.h21{height:41.780391px;}
.h2{height:42.252188px;}
.h50{height:43.545000px;}
.hd{height:43.560000px;}
.h1f{height:48.240000px;}
.he{height:48.263555px;}
.h31{height:50.312812px;}
.h3{height:50.906250px;}
.h8{height:51.855469px;}
.h46{height:56.320312px;}
.h4a{height:57.442500px;}
.h2e{height:57.585938px;}
.h35{height:59.789180px;}
.h1b{height:62.327813px;}
.h20{height:63.360000px;}
.h47{height:64.965000px;}
.h32{height:65.016000px;}
.h53{height:66.272344px;}
.h9{height:69.086250px;}
.hf{height:72.035156px;}
.ha{height:75.093750px;}
.h7{height:76.359375px;}
.h6{height:77.783203px;}
.hc{height:84.281133px;}
.h13{height:95.806758px;}
.h4c{height:106.410000px;}
.h1e{height:112.320000px;}
.h5{height:112.640625px;}
.h1a{height:137.916000px;}
.h45{height:174.270000px;}
.h44{height:215.130000px;}
.h36{height:478.155000px;}
.h10{height:566.520000px;}
.h3a{height:653.145000px;}
.h14{height:705.165000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w53{width:-90.570000px;}
.w52{width:-48.600000px;}
.w2{width:10.065000px;}
.w12{width:11.325000px;}
.w49{width:11.340000px;}
.w14{width:11.505000px;}
.w27{width:14.580000px;}
.w15{width:16.200000px;}
.w2e{width:17.100000px;}
.w31{width:17.280000px;}
.w3d{width:17.460000px;}
.w24{width:18.000000px;}
.w43{width:18.180000px;}
.w42{width:18.216000px;}
.w2d{width:18.360000px;}
.w47{width:18.720000px;}
.w3f{width:19.080000px;}
.w41{width:19.260000px;}
.w46{width:19.980000px;}
.w67{width:20.325000px;}
.w63{width:20.505000px;}
.w3e{width:20.520000px;}
.w68{width:20.550000px;}
.w21{width:21.060000px;}
.wd{width:21.225000px;}
.w25{width:21.456000px;}
.w45{width:22.140000px;}
.w3c{width:23.400000px;}
.w29{width:23.580000px;}
.w2a{width:23.760000px;}
.w44{width:23.940000px;}
.w2c{width:24.120000px;}
.w40{width:24.480000px;}
.w30{width:25.200000px;}
.w2b{width:25.416000px;}
.w1f{width:26.136000px;}
.w34{width:26.856000px;}
.w22{width:27.900000px;}
.w23{width:28.080000px;}
.wf{width:28.425000px;}
.w26{width:29.340000px;}
.w28{width:29.520000px;}
.w6{width:29.685000px;}
.wc{width:30.585000px;}
.w3a{width:30.780000px;}
.w64{width:31.125000px;}
.w5b{width:31.129500px;}
.w20{width:31.140000px;}
.w66{width:31.161000px;}
.w65{width:31.305000px;}
.w48{width:31.356000px;}
.w13{width:32.205000px;}
.w10{width:32.385000px;}
.wb{width:32.565000px;}
.w4{width:32.749500px;}
.w17{width:32.760000px;}
.w4d{width:33.300000px;}
.w4c{width:33.480000px;}
.w7{width:33.681000px;}
.we{width:33.861000px;}
.w2f{width:36.180000px;}
.w39{width:41.040000px;}
.w61{width:41.745000px;}
.w5e{width:41.760000px;}
.w60{width:41.796000px;}
.w5{width:42.825000px;}
.w4a{width:43.200000px;}
.w4b{width:43.236000px;}
.w4f{width:43.560000px;}
.w11{width:43.725000px;}
.w16{width:48.240000px;}
.w8{width:51.660000px;}
.w62{width:52.401000px;}
.w9{width:60.480000px;}
.wa{width:60.696000px;}
.w1e{width:61.020000px;}
.w59{width:62.985000px;}
.w5c{width:62.989500px;}
.w5a{width:63.030000px;}
.w37{width:65.880000px;}
.w1b{width:70.416000px;}
.w4e{width:72.900000px;}
.w57{width:73.605000px;}
.w1d{width:74.196000px;}
.w1c{width:75.060000px;}
.w51{width:77.220000px;}
.w19{width:79.776000px;}
.w5f{width:84.420000px;}
.w58{width:84.441000px;}
.w1a{width:85.320000px;}
.w36{width:87.876000px;}
.w6c{width:95.040000px;}
.w5d{width:95.061000px;}
.w38{width:96.336000px;}
.w6a{width:97.729500px;}
.w35{width:100.620000px;}
.w6b{width:124.041000px;}
.w3b{width:233.490000px;}
.w50{width:233.850000px;}
.w32{width:306.750000px;}
.w69{width:318.259500px;}
.w56{width:350.160000px;}
.w55{width:360.784500px;}
.w33{width:380.445000px;}
.w18{width:449.565000px;}
.w3{width:605.970000px;}
.w54{width:688.290000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:4.849500px;}
.x40{left:6.480000px;}
.x23{left:7.560000px;}
.x31{left:9.000000px;}
.x22{left:10.800000px;}
.x3c{left:12.060000px;}
.x2c{left:13.140000px;}
.x39{left:14.580000px;}
.x1f{left:16.380000px;}
.x27{left:18.360000px;}
.x24{left:19.665000px;}
.x2e{left:20.880000px;}
.x43{left:22.680000px;}
.x21{left:24.345000px;}
.x32{left:26.505000px;}
.x2b{left:28.440000px;}
.x30{left:30.420000px;}
.x47{left:32.400000px;}
.x29{left:35.310000px;}
.x78{left:38.145000px;}
.xa{left:40.663500px;}
.x26{left:42.660000px;}
.x76{left:48.763500px;}
.x7a{left:50.565000px;}
.x63{left:55.785000px;}
.x45{left:70.950000px;}
.x41{left:114.516000px;}
.x44{left:118.254000px;}
.x2{left:127.656000px;}
.x61{left:138.763500px;}
.x68{left:149.266500px;}
.x42{left:153.399000px;}
.x7{left:154.650000px;}
.x4b{left:156.270000px;}
.xc{left:161.505000px;}
.x6{left:180.750000px;}
.x4c{left:187.770000px;}
.x8{left:202.170000px;}
.xd{left:205.245000px;}
.x69{left:212.985000px;}
.x77{left:215.865000px;}
.x1e{left:222.510000px;}
.x59{left:231.690000px;}
.x9{left:234.750000px;}
.xe{left:235.845000px;}
.x20{left:255.990000px;}
.x4{left:263.010000px;}
.xf{left:270.255000px;}
.x5a{left:275.655000px;}
.x5{left:279.615000px;}
.x33{left:282.855000px;}
.x6a{left:308.775000px;}
.x5b{left:309.855000px;}
.x34{left:314.715000px;}
.x10{left:322.635000px;}
.x25{left:336.495000px;}
.x79{left:340.635000px;}
.x5c{left:343.875000px;}
.x6b{left:351.255000px;}
.x35{left:365.115000px;}
.x5d{left:378.075000px;}
.x11{left:383.835000px;}
.x36{left:393.915000px;}
.x28{left:422.535000px;}
.x6c{left:436.395000px;}
.x37{left:441.435000px;}
.x12{left:445.035000px;}
.x7b{left:446.325000px;}
.x46{left:449.565000px;}
.x38{left:463.605000px;}
.x4d{left:473.685000px;}
.x62{left:478.920000px;}
.x4e{left:491.685000px;}
.x2a{left:493.665000px;}
.x6d{left:500.160000px;}
.x13{left:506.460000px;}
.x3a{left:508.965000px;}
.x6e{left:521.400000px;}
.x4f{left:531.105000px;}
.x14{left:539.760000px;}
.x48{left:550.905000px;}
.x64{left:553.260000px;}
.x2d{left:569.445000px;}
.x15{left:571.080000px;}
.x50{left:576.105000px;}
.x6f{left:585.300000px;}
.x16{left:593.220000px;}
.x1{left:597.525000px;}
.x51{left:600.585000px;}
.x70{left:606.540000px;}
.x3b{left:618.225000px;}
.x52{left:620.565000px;}
.x17{left:627.990000px;}
.x65{left:638.430000px;}
.x49{left:639.510000px;}
.x2f{left:644.550000px;}
.x18{left:657.150000px;}
.x53{left:658.410000px;}
.x71{left:659.670000px;}
.x3d{left:669.390000px;}
.x3f{left:670.470000px;}
.x72{left:680.910000px;}
.x54{left:683.250000px;}
.x3e{left:688.470000px;}
.x19{left:690.270000px;}
.x66{left:702.150000px;}
.x4a{left:706.110000px;}
.x1c{left:717.090000px;}
.x1b{left:722.490000px;}
.x55{left:726.990000px;}
.x1a{left:734.730000px;}
.x1d{left:737.070000px;}
.x73{left:744.810000px;}
.x56{left:751.470000px;}
.x3{left:755.070000px;}
.x67{left:766.050000px;}
.x57{left:771.090000px;}
.x74{left:787.290000px;}
.x58{left:803.160000px;}
.x75{left:808.560000px;}
.x5e{left:815.220000px;}
.x5f{left:941.040000px;}
.x60{left:983.010000px;}
@media print{
.v1{vertical-align:-44.800000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.338667pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.296533pt;}
.ls1d{letter-spacing:-0.234133pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.170667pt;}
.ls21{letter-spacing:-0.155733pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.016000pt;}
.ls2c{letter-spacing:-0.012160pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.019840pt;}
.ls20{letter-spacing:0.039680pt;}
.lsb{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.053120pt;}
.ls18{letter-spacing:0.067200pt;}
.ls17{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.108267pt;}
.ls26{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.198933pt;}
.ls13{letter-spacing:0.205333pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.229333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.267733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.335467pt;}
.ls16{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.409067pt;}
.lsf{letter-spacing:14.720000pt;}
.ls29{letter-spacing:15.794560pt;}
.ls3{letter-spacing:28.928000pt;}
.ls1{letter-spacing:57.088000pt;}
.ls14{letter-spacing:120.323840pt;}
.lse{letter-spacing:168.746667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws13{word-spacing:-21.601173pt;}
.wsb{word-spacing:-20.288000pt;}
.ws9{word-spacing:-20.224000pt;}
.ws23{word-spacing:-20.032000pt;}
.ws8{word-spacing:-19.968000pt;}
.ws31{word-spacing:-19.008000pt;}
.wsa{word-spacing:-18.944000pt;}
.ws35{word-spacing:-18.752000pt;}
.ws32{word-spacing:-18.560000pt;}
.ws33{word-spacing:-18.432000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws24{word-spacing:-16.754560pt;}
.ws22{word-spacing:-16.470827pt;}
.ws20{word-spacing:-15.899627pt;}
.ws21{word-spacing:-15.603840pt;}
.ws1e{word-spacing:-15.333227pt;}
.wsd{word-spacing:-15.176427pt;}
.wsf{word-spacing:-14.950827pt;}
.wse{word-spacing:-14.814720pt;}
.wsc{word-spacing:-14.767360pt;}
.ws10{word-spacing:-14.536427pt;}
.ws5{word-spacing:-14.336000pt;}
.ws3{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.888000pt;}
.ws17{word-spacing:-13.689173pt;}
.ws2f{word-spacing:-13.680000pt;}
.ws7{word-spacing:-13.474560pt;}
.ws2d{word-spacing:-13.456000pt;}
.ws2c{word-spacing:-13.344000pt;}
.ws30{word-spacing:-13.328000pt;}
.ws1a{word-spacing:-13.250773pt;}
.ws2b{word-spacing:-13.248000pt;}
.ws1b{word-spacing:-13.187307pt;}
.ws1c{word-spacing:-13.124907pt;}
.ws27{word-spacing:-12.793173pt;}
.ws15{word-spacing:-12.769173pt;}
.ws26{word-spacing:-12.762773pt;}
.ws28{word-spacing:-12.672107pt;}
.ws2e{word-spacing:-12.608000pt;}
.ws2a{word-spacing:-12.563840pt;}
.ws34{word-spacing:-12.551680pt;}
.ws29{word-spacing:-12.419840pt;}
.ws12{word-spacing:-11.618560pt;}
.ws25{word-spacing:-10.876160pt;}
.ws19{word-spacing:-10.240000pt;}
.ws1d{word-spacing:-10.016000pt;}
.ws18{word-spacing:-9.920000pt;}
.ws1f{word-spacing:-9.690880pt;}
.ws16{word-spacing:-9.376000pt;}
.ws14{word-spacing:-5.120000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-8.170667pt;}
._1c{margin-left:-7.106773pt;}
._1d{margin-left:-6.091733pt;}
._22{margin-left:-2.070400pt;}
._7{margin-left:-1.173333pt;}
._0{width:1.115520pt;}
._1a{width:2.093440pt;}
._11{width:3.072000pt;}
._12{width:4.106667pt;}
._2{width:5.674667pt;}
._1{width:7.168000pt;}
._1b{width:9.024000pt;}
._13{width:10.304000pt;}
._23{width:11.200000pt;}
._5{width:12.224000pt;}
._6{width:13.120000pt;}
._1f{width:14.080000pt;}
._8{width:15.360000pt;}
._9{width:16.448000pt;}
._20{width:17.344000pt;}
._b{width:18.304000pt;}
._a{width:19.392000pt;}
._4{width:20.288000pt;}
._3{width:21.184000pt;}
._e{width:22.528000pt;}
._10{width:24.768000pt;}
._18{width:26.112000pt;}
._19{width:27.865813pt;}
._14{width:32.832000pt;}
._15{width:33.920000pt;}
._24{width:34.944000pt;}
._d{width:37.376000pt;}
._c{width:38.528000pt;}
._17{width:43.413333pt;}
._16{width:44.352000pt;}
._f{width:47.168000pt;}
._25{width:51.633920pt;}
._21{width:66.624000pt;}
.fs8{font-size:5.120000pt;}
.fs6{font-size:10.880000pt;}
.fsb{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:0.800000pt;}
.y1eb{bottom:1.586667pt;}
.ye0{bottom:1.600000pt;}
.ye5{bottom:1.760000pt;}
.yd8{bottom:1.920000pt;}
.y1aa{bottom:2.240000pt;}
.y1a5{bottom:2.280000pt;}
.y6e{bottom:2.400000pt;}
.y102{bottom:2.720000pt;}
.ya4{bottom:3.040000pt;}
.y10c{bottom:3.200000pt;}
.y197{bottom:3.360000pt;}
.y4{bottom:3.520000pt;}
.ycc{bottom:3.680000pt;}
.ydb{bottom:4.000000pt;}
.y9b{bottom:4.306667pt;}
.y95{bottom:4.466667pt;}
.y85{bottom:4.480000pt;}
.y18f{bottom:4.640000pt;}
.y101{bottom:4.960000pt;}
.y11e{bottom:5.280000pt;}
.y180{bottom:5.440000pt;}
.ye9{bottom:5.600000pt;}
.y196{bottom:5.920000pt;}
.y122{bottom:6.080000pt;}
.y184{bottom:6.240000pt;}
.y1ac{bottom:6.400000pt;}
.y193{bottom:6.560000pt;}
.y9c{bottom:6.706667pt;}
.yf6{bottom:6.720000pt;}
.y18e{bottom:7.200000pt;}
.y19c{bottom:7.360000pt;}
.y189{bottom:7.386667pt;}
.y10a{bottom:8.000000pt;}
.y120{bottom:8.160000pt;}
.yf5{bottom:8.320000pt;}
.y1d8{bottom:8.480000pt;}
.y199{bottom:8.640000pt;}
.y137{bottom:8.800000pt;}
.y186{bottom:8.960000pt;}
.y192{bottom:9.120000pt;}
.y103{bottom:9.440000pt;}
.yf4{bottom:9.920000pt;}
.y188{bottom:9.946667pt;}
.y17b{bottom:10.080000pt;}
.y83{bottom:10.226667pt;}
.y182{bottom:10.720000pt;}
.yd4{bottom:10.880000pt;}
.yfc{bottom:11.040000pt;}
.y110{bottom:11.200000pt;}
.y1ea{bottom:11.226667pt;}
.ydf{bottom:11.240000pt;}
.ye4{bottom:11.360000pt;}
.yf3{bottom:11.520000pt;}
.y194{bottom:11.840000pt;}
.yda{bottom:12.000000pt;}
.y1ae{bottom:12.320000pt;}
.y19e{bottom:12.640000pt;}
.y18b{bottom:12.666667pt;}
.y1d1{bottom:12.960000pt;}
.yf2{bottom:13.120000pt;}
.y1e8{bottom:13.146667pt;}
.yd7{bottom:13.280000pt;}
.ye8{bottom:13.440000pt;}
.y69{bottom:14.080000pt;}
.yf1{bottom:14.720000pt;}
.y1e4{bottom:14.880000pt;}
.y6d{bottom:15.200000pt;}
.yfa{bottom:15.360000pt;}
.y105{bottom:16.160000pt;}
.y1d6{bottom:16.320000pt;}
.y1a2{bottom:16.360000pt;}
.yf0{bottom:16.480000pt;}
.yf9{bottom:16.960000pt;}
.y109{bottom:17.600000pt;}
.y11f{bottom:17.760000pt;}
.y198{bottom:17.920000pt;}
.yef{bottom:18.080000pt;}
.y185{bottom:18.240000pt;}
.ya3{bottom:18.400000pt;}
.y1e7{bottom:18.426667pt;}
.ydd{bottom:18.440000pt;}
.yf8{bottom:18.560000pt;}
.y1a1{bottom:18.920000pt;}
.y1ca{bottom:19.080000pt;}
.y190{bottom:19.200000pt;}
.y1ab{bottom:19.360000pt;}
.y10b{bottom:19.520000pt;}
.y1bb{bottom:19.680000pt;}
.y1b0{bottom:19.840000pt;}
.y181{bottom:20.000000pt;}
.yeb{bottom:20.160000pt;}
.yfd{bottom:20.320000pt;}
.y1d2{bottom:20.800000pt;}
.ye3{bottom:20.960000pt;}
.y1e9{bottom:20.986667pt;}
.yde{bottom:21.000000pt;}
.yfe{bottom:21.120000pt;}
.y1d9{bottom:21.280000pt;}
.yed{bottom:21.600000pt;}
.y1a6{bottom:21.640000pt;}
.y19d{bottom:21.920000pt;}
.y18a{bottom:21.946667pt;}
.y10e{bottom:22.560000pt;}
.y6c{bottom:22.880000pt;}
.y17a{bottom:23.040000pt;}
.yd6{bottom:24.480000pt;}
.y107{bottom:24.800000pt;}
.y11c{bottom:25.120000pt;}
.y1b1{bottom:25.600000pt;}
.y11a{bottom:25.760000pt;}
.y1c9{bottom:25.800000pt;}
.y1d5{bottom:26.080000pt;}
.y1ad{bottom:26.400000pt;}
.y108{bottom:27.360000pt;}
.y1d3{bottom:27.520000pt;}
.ye6{bottom:27.680000pt;}
.y1de{bottom:27.706667pt;}
.ye1{bottom:27.720000pt;}
.y1cf{bottom:27.840000pt;}
.y6b{bottom:28.160000pt;}
.y1a4{bottom:29.320000pt;}
.y1e1{bottom:30.720000pt;}
.y1a3{bottom:30.920000pt;}
.yd3{bottom:32.320000pt;}
.y1cb{bottom:32.520000pt;}
.y1ba{bottom:33.280000pt;}
.ya2{bottom:33.760000pt;}
.y10d{bottom:34.080000pt;}
.yd5{bottom:35.680000pt;}
.y82{bottom:36.146667pt;}
.y179{bottom:36.160000pt;}
.y1e2{bottom:37.440000pt;}
.y1c8{bottom:40.520000pt;}
.y1a8{bottom:45.760000pt;}
.y3{bottom:47.040000pt;}
.y119{bottom:47.200000pt;}
.y1b9{bottom:47.386667pt;}
.ya1{bottom:49.120000pt;}
.y2{bottom:50.720000pt;}
.y136{bottom:53.760000pt;}
.y1b8{bottom:61.146667pt;}
.y178{bottom:62.080000pt;}
.y81{bottom:62.226667pt;}
.y1dc{bottom:62.560000pt;}
.ya0{bottom:64.480000pt;}
.yd1{bottom:67.840000pt;}
.y135{bottom:71.840000pt;}
.y1b7{bottom:74.586667pt;}
.y177{bottom:75.200000pt;}
.y9f{bottom:79.680000pt;}
.y134{bottom:83.840000pt;}
.y1db{bottom:84.000000pt;}
.y80{bottom:88.146667pt;}
.y176{bottom:88.160000pt;}
.y1b6{bottom:88.826667pt;}
.yd0{bottom:89.280000pt;}
.y9e{bottom:95.066667pt;}
.y175{bottom:101.160000pt;}
.y1b5{bottom:102.586667pt;}
.y117{bottom:102.720000pt;}
.y87{bottom:103.040000pt;}
.y133{bottom:105.320000pt;}
.yca{bottom:108.480000pt;}
.y67{bottom:110.080000pt;}
.y9d{bottom:110.426667pt;}
.y7f{bottom:114.066667pt;}
.y174{bottom:114.280000pt;}
.y25{bottom:116.000000pt;}
.y1b4{bottom:116.346667pt;}
.y116{bottom:119.520000pt;}
.y46{bottom:122.080000pt;}
.y132{bottom:123.240000pt;}
.y173{bottom:126.600000pt;}
.y1b3{bottom:130.106667pt;}
.y131{bottom:135.240000pt;}
.y115{bottom:136.480000pt;}
.yc9{bottom:136.640000pt;}
.y66{bottom:138.240000pt;}
.y1bc{bottom:139.066667pt;}
.y7e{bottom:140.146667pt;}
.y172{bottom:140.200000pt;}
.y1b2{bottom:144.026667pt;}
.y24{bottom:144.160000pt;}
.y1bd{bottom:144.826667pt;}
.y1f1{bottom:147.360000pt;}
.y45{bottom:150.240000pt;}
.y171{bottom:150.600000pt;}
.y17c{bottom:150.720000pt;}
.y170{bottom:152.200000pt;}
.y16f{bottom:153.800000pt;}
.y16e{bottom:155.400000pt;}
.y130{bottom:156.840000pt;}
.y16d{bottom:159.720000pt;}
.yc8{bottom:164.800000pt;}
.y1f0{bottom:165.120000pt;}
.y7d{bottom:166.066667pt;}
.y65{bottom:166.240000pt;}
.y23{bottom:170.880000pt;}
.y16c{bottom:170.920000pt;}
.y1af{bottom:175.386667pt;}
.y12f{bottom:178.280000pt;}
.y44{bottom:178.400000pt;}
.y16b{bottom:179.080000pt;}
.y1ef{bottom:187.840000pt;}
.y16a{bottom:189.480000pt;}
.y169{bottom:191.080000pt;}
.y7c{bottom:192.026667pt;}
.y168{bottom:192.680000pt;}
.yc7{bottom:192.800000pt;}
.y64{bottom:194.426667pt;}
.y167{bottom:194.440000pt;}
.y166{bottom:196.040000pt;}
.y22{bottom:197.626667pt;}
.y165{bottom:197.640000pt;}
.y164{bottom:199.240000pt;}
.y12e{bottom:199.720000pt;}
.y163{bottom:200.840000pt;}
.y162{bottom:205.000000pt;}
.y43{bottom:206.426667pt;}
.y161{bottom:215.560000pt;}
.y1ee{bottom:216.026667pt;}
.y160{bottom:217.160000pt;}
.y7b{bottom:218.106667pt;}
.y15f{bottom:218.760000pt;}
.y15e{bottom:220.360000pt;}
.yc6{bottom:220.986667pt;}
.y12d{bottom:221.160000pt;}
.y63{bottom:222.586667pt;}
.y15d{bottom:224.520000pt;}
.y21{bottom:225.786667pt;}
.y6f{bottom:226.280000pt;}
.y42{bottom:234.586667pt;}
.y15c{bottom:235.880000pt;}
.y12c{bottom:242.600000pt;}
.y7a{bottom:244.026667pt;}
.y15b{bottom:244.040000pt;}
.yc5{bottom:249.146667pt;}
.y62{bottom:250.746667pt;}
.y20{bottom:253.946667pt;}
.y15a{bottom:254.440000pt;}
.y9a{bottom:255.080000pt;}
.y159{bottom:256.040000pt;}
.y158{bottom:257.800000pt;}
.y157{bottom:259.400000pt;}
.y41{bottom:262.746667pt;}
.y156{bottom:263.560000pt;}
.y12b{bottom:264.200000pt;}
.y79{bottom:269.946667pt;}
.y155{bottom:276.520000pt;}
.yc4{bottom:277.306667pt;}
.y61{bottom:278.906667pt;}
.y99{bottom:281.480000pt;}
.y1f{bottom:282.106667pt;}
.y12a{bottom:285.640000pt;}
.y154{bottom:289.640000pt;}
.y40{bottom:290.906667pt;}
.y78{bottom:296.026667pt;}
.y153{bottom:302.626667pt;}
.yc3{bottom:305.466667pt;}
.y123{bottom:306.266667pt;}
.y60{bottom:307.066667pt;}
.y129{bottom:307.106667pt;}
.y98{bottom:307.880000pt;}
.y1e{bottom:310.266667pt;}
.y152{bottom:315.746667pt;}
.y3f{bottom:319.066667pt;}
.y77{bottom:321.946667pt;}
.y151{bottom:326.146667pt;}
.y150{bottom:327.746667pt;}
.y128{bottom:328.546667pt;}
.y14f{bottom:329.346667pt;}
.y14e{bottom:330.946667pt;}
.y14d{bottom:332.546667pt;}
.yc2{bottom:333.626667pt;}
.y97{bottom:334.280000pt;}
.y14c{bottom:334.306667pt;}
.y5f{bottom:335.226667pt;}
.y1d{bottom:338.266667pt;}
.y14b{bottom:338.466667pt;}
.y1a7{bottom:342.746667pt;}
.y76{bottom:345.306667pt;}
.y3e{bottom:347.226667pt;}
.y14a{bottom:348.866667pt;}
.y127{bottom:349.986667pt;}
.y149{bottom:350.466667pt;}
.y148{bottom:352.066667pt;}
.y147{bottom:353.826667pt;}
.y1ed{bottom:356.026667pt;}
.y75{bottom:357.786667pt;}
.y146{bottom:357.986667pt;}
.y96{bottom:360.680000pt;}
.yc1{bottom:361.786667pt;}
.y5e{bottom:363.226667pt;}
.y1c{bottom:366.426667pt;}
.y145{bottom:368.386667pt;}
.y144{bottom:369.986667pt;}
.y126{bottom:371.586667pt;}
.y143{bottom:371.746667pt;}
.y1a9{bottom:373.306667pt;}
.y142{bottom:373.346667pt;}
.y3d{bottom:375.386667pt;}
.y141{bottom:377.506667pt;}
.y74{bottom:383.893333pt;}
.y1ec{bottom:386.266667pt;}
.y94{bottom:387.080000pt;}
.y140{bottom:387.906667pt;}
.y1e6{bottom:389.480000pt;}
.y13f{bottom:389.506667pt;}
.yc0{bottom:389.786667pt;}
.y13e{bottom:391.266667pt;}
.y5d{bottom:391.386667pt;}
.y13d{bottom:392.866667pt;}
.y125{bottom:393.026667pt;}
.y1b{bottom:394.586667pt;}
.y13c{bottom:397.026667pt;}
.y1a0{bottom:399.706667pt;}
.y3c{bottom:403.426667pt;}
.y13b{bottom:407.426667pt;}
.y13a{bottom:409.186667pt;}
.y73{bottom:409.813333pt;}
.y139{bottom:410.786667pt;}
.y93{bottom:413.506667pt;}
.y124{bottom:414.466667pt;}
.y138{bottom:414.946667pt;}
.ybf{bottom:417.986667pt;}
.y1e5{bottom:419.106667pt;}
.y5c{bottom:419.586667pt;}
.y1a{bottom:422.786667pt;}
.y3b{bottom:431.586667pt;}
.y19f{bottom:432.546667pt;}
.y72{bottom:435.733333pt;}
.y92{bottom:439.906667pt;}
.ybe{bottom:446.146667pt;}
.y5b{bottom:447.746667pt;}
.y1e3{bottom:448.706667pt;}
.y19{bottom:450.946667pt;}
.y112{bottom:452.546667pt;}
.y3a{bottom:459.746667pt;}
.y71{bottom:461.813333pt;}
.y91{bottom:466.306667pt;}
.y19b{bottom:473.666667pt;}
.ybd{bottom:474.306667pt;}
.y5a{bottom:475.906667pt;}
.y1e0{bottom:478.306667pt;}
.y18{bottom:479.106667pt;}
.y111{bottom:482.306667pt;}
.y70{bottom:487.733333pt;}
.y39{bottom:487.906667pt;}
.y90{bottom:492.706667pt;}
.y86{bottom:493.013333pt;}
.y19a{bottom:497.506667pt;}
.ybc{bottom:502.466667pt;}
.y59{bottom:504.066667pt;}
.y17{bottom:507.266667pt;}
.y10f{bottom:511.906667pt;}
.y38{bottom:516.066667pt;}
.y195{bottom:517.506667pt;}
.y1da{bottom:517.666667pt;}
.y8f{bottom:519.266667pt;}
.ybb{bottom:530.626667pt;}
.y58{bottom:532.226667pt;}
.y16{bottom:535.266667pt;}
.y191{bottom:537.506667pt;}
.y106{bottom:541.506667pt;}
.y37{bottom:544.226667pt;}
.y8e{bottom:545.666667pt;}
.y1df{bottom:547.266667pt;}
.yba{bottom:558.786667pt;}
.y57{bottom:560.226667pt;}
.y18d{bottom:560.706667pt;}
.y15{bottom:563.426667pt;}
.y17d{bottom:570.013333pt;}
.y8d{bottom:572.066667pt;}
.y36{bottom:572.386667pt;}
.y104{bottom:577.506667pt;}
.y18c{bottom:581.826667pt;}
.y1dd{bottom:583.266667pt;}
.yb9{bottom:586.786667pt;}
.y56{bottom:588.386667pt;}
.y14{bottom:591.586667pt;}
.y8c{bottom:598.466667pt;}
.y35{bottom:600.386667pt;}
.y187{bottom:603.746667pt;}
.yff{bottom:607.133333pt;}
.yb8{bottom:614.973333pt;}
.y88{bottom:616.253333pt;}
.y55{bottom:616.573333pt;}
.y100{bottom:618.493333pt;}
.y13{bottom:619.773333pt;}
.y1d7{bottom:622.173333pt;}
.y8b{bottom:624.893333pt;}
.y183{bottom:627.613333pt;}
.y34{bottom:628.573333pt;}
.yfb{bottom:636.893333pt;}
.y54{bottom:645.533333pt;}
.y12{bottom:647.933333pt;}
.yb7{bottom:650.653333pt;}
.y8a{bottom:651.293333pt;}
.y1d4{bottom:651.933333pt;}
.y33{bottom:656.733333pt;}
.yf7{bottom:666.493333pt;}
.y17f{bottom:669.853333pt;}
.y53{bottom:673.693333pt;}
.y11{bottom:676.093333pt;}
.y89{bottom:677.693333pt;}
.y1d0{bottom:681.533333pt;}
.y32{bottom:684.893333pt;}
.yb6{bottom:686.013333pt;}
.yec{bottom:688.573333pt;}
.y17e{bottom:689.853333pt;}
.yee{bottom:701.373333pt;}
.y52{bottom:701.853333pt;}
.y84{bottom:704.093333pt;}
.y10{bottom:704.253333pt;}
.y1ce{bottom:710.973333pt;}
.y121{bottom:711.933333pt;}
.y31{bottom:713.053333pt;}
.yb5{bottom:721.373333pt;}
.y51{bottom:730.013333pt;}
.y6a{bottom:730.493333pt;}
.y11d{bottom:731.933333pt;}
.yf{bottom:732.253333pt;}
.y1cd{bottom:740.733333pt;}
.y30{bottom:741.213333pt;}
.ye7{bottom:743.453333pt;}
.yb4{bottom:756.733333pt;}
.y118{bottom:758.333333pt;}
.y50{bottom:758.973333pt;}
.ye{bottom:760.413333pt;}
.y2f{bottom:769.373333pt;}
.y68{bottom:769.853333pt;}
.y1cc{bottom:770.333333pt;}
.ye2{bottom:773.053333pt;}
.y4f{bottom:787.133333pt;}
.yd{bottom:788.573333pt;}
.yb3{bottom:792.093333pt;}
.y11b{bottom:794.653333pt;}
.y2e{bottom:797.373333pt;}
.y1c7{bottom:799.933333pt;}
.ydc{bottom:802.813333pt;}
.yb2{bottom:810.333333pt;}
.y4e{bottom:816.293333pt;}
.yc{bottom:816.773333pt;}
.y2d{bottom:825.573333pt;}
.yb1{bottom:827.173333pt;}
.yd9{bottom:832.453333pt;}
.y114{bottom:834.053333pt;}
.y4d{bottom:844.293333pt;}
.yb0{bottom:844.453333pt;}
.yb{bottom:844.933333pt;}
.y1c5{bottom:851.813333pt;}
.y2c{bottom:853.733333pt;}
.y113{bottom:855.333333pt;}
.ycf{bottom:855.653333pt;}
.yaf{bottom:862.853333pt;}
.y4c{bottom:872.453333pt;}
.ya{bottom:873.093333pt;}
.yae{bottom:881.253333pt;}
.y2b{bottom:881.893333pt;}
.y1c6{bottom:887.973333pt;}
.yce{bottom:895.173333pt;}
.yad{bottom:896.453333pt;}
.yac{bottom:897.893333pt;}
.y4b{bottom:900.613333pt;}
.y9{bottom:901.253333pt;}
.yab{bottom:902.693333pt;}
.y2a{bottom:910.053333pt;}
.yd2{bottom:912.613333pt;}
.y1c4{bottom:913.413333pt;}
.ycd{bottom:914.213333pt;}
.ycb{bottom:915.813333pt;}
.yaa{bottom:921.093333pt;}
.y8{bottom:921.573333pt;}
.y4a{bottom:928.773333pt;}
.y1c3{bottom:930.373333pt;}
.y29{bottom:938.213333pt;}
.ya9{bottom:939.493333pt;}
.y1c2{bottom:947.173333pt;}
.y7{bottom:949.733333pt;}
.y49{bottom:956.933333pt;}
.ya8{bottom:957.893333pt;}
.y1c1{bottom:963.973333pt;}
.y28{bottom:966.213333pt;}
.ya7{bottom:976.293333pt;}
.y6{bottom:977.893333pt;}
.y1c0{bottom:980.933333pt;}
.y48{bottom:985.093333pt;}
.y27{bottom:994.373333pt;}
.ya6{bottom:995.173333pt;}
.y1bf{bottom:997.733333pt;}
.y5{bottom:1006.213333pt;}
.y26{bottom:1013.093333pt;}
.y47{bottom:1013.253333pt;}
.ya5{bottom:1013.573333pt;}
.y1be{bottom:1014.693333pt;}
.y1{bottom:1062.880000pt;}
.h37{height:3.492500pt;}
.h25{height:5.122500pt;}
.h1c{height:5.340000pt;}
.h52{height:7.432188pt;}
.h2f{height:10.720000pt;}
.h11{height:10.885312pt;}
.h2a{height:12.160000pt;}
.h2d{height:17.760000pt;}
.h1d{height:18.400000pt;}
.h4{height:18.718667pt;}
.h40{height:19.200000pt;}
.h29{height:19.360000pt;}
.h3c{height:19.520000pt;}
.h3e{height:20.480000pt;}
.h39{height:21.130312pt;}
.h3b{height:21.280000pt;}
.h27{height:21.440000pt;}
.h33{height:21.472000pt;}
.h48{height:21.586667pt;}
.h2b{height:21.600000pt;}
.h3f{height:22.400000pt;}
.h22{height:22.560000pt;}
.h41{height:23.200000pt;}
.h3d{height:23.232000pt;}
.h18{height:25.586667pt;}
.h16{height:25.746667pt;}
.h12{height:25.760000pt;}
.h17{height:25.778667pt;}
.h15{height:25.786667pt;}
.h19{height:27.986667pt;}
.h4b{height:28.800000pt;}
.h4f{height:28.946667pt;}
.h26{height:28.960000pt;}
.h51{height:28.978667pt;}
.h4d{height:28.986667pt;}
.h23{height:28.992000pt;}
.h2c{height:29.120000pt;}
.h38{height:29.249687pt;}
.h43{height:29.920000pt;}
.h24{height:32.015625pt;}
.h28{height:32.160000pt;}
.h42{height:32.192000pt;}
.hb{height:32.640000pt;}
.h4e{height:35.346667pt;}
.h30{height:35.360000pt;}
.h49{height:35.506667pt;}
.h34{height:35.680000pt;}
.h21{height:37.138125pt;}
.h2{height:37.557500pt;}
.h50{height:38.706667pt;}
.hd{height:38.720000pt;}
.h1f{height:42.880000pt;}
.he{height:42.900937pt;}
.h31{height:44.722500pt;}
.h3{height:45.250000pt;}
.h8{height:46.093750pt;}
.h46{height:50.062500pt;}
.h4a{height:51.060000pt;}
.h2e{height:51.187500pt;}
.h35{height:53.145938pt;}
.h1b{height:55.402500pt;}
.h20{height:56.320000pt;}
.h47{height:57.746667pt;}
.h32{height:57.792000pt;}
.h53{height:58.908750pt;}
.h9{height:61.410000pt;}
.hf{height:64.031250pt;}
.ha{height:66.750000pt;}
.h7{height:67.875000pt;}
.h6{height:69.140625pt;}
.hc{height:74.916562pt;}
.h13{height:85.161563pt;}
.h4c{height:94.586667pt;}
.h1e{height:99.840000pt;}
.h5{height:100.125000pt;}
.h1a{height:122.592000pt;}
.h45{height:154.906667pt;}
.h44{height:191.226667pt;}
.h36{height:425.026667pt;}
.h10{height:503.573333pt;}
.h3a{height:580.573333pt;}
.h14{height:626.813333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w53{width:-80.506667pt;}
.w52{width:-43.200000pt;}
.w2{width:8.946667pt;}
.w12{width:10.066667pt;}
.w49{width:10.080000pt;}
.w14{width:10.226667pt;}
.w27{width:12.960000pt;}
.w15{width:14.400000pt;}
.w2e{width:15.200000pt;}
.w31{width:15.360000pt;}
.w3d{width:15.520000pt;}
.w24{width:16.000000pt;}
.w43{width:16.160000pt;}
.w42{width:16.192000pt;}
.w2d{width:16.320000pt;}
.w47{width:16.640000pt;}
.w3f{width:16.960000pt;}
.w41{width:17.120000pt;}
.w46{width:17.760000pt;}
.w67{width:18.066667pt;}
.w63{width:18.226667pt;}
.w3e{width:18.240000pt;}
.w68{width:18.266667pt;}
.w21{width:18.720000pt;}
.wd{width:18.866667pt;}
.w25{width:19.072000pt;}
.w45{width:19.680000pt;}
.w3c{width:20.800000pt;}
.w29{width:20.960000pt;}
.w2a{width:21.120000pt;}
.w44{width:21.280000pt;}
.w2c{width:21.440000pt;}
.w40{width:21.760000pt;}
.w30{width:22.400000pt;}
.w2b{width:22.592000pt;}
.w1f{width:23.232000pt;}
.w34{width:23.872000pt;}
.w22{width:24.800000pt;}
.w23{width:24.960000pt;}
.wf{width:25.266667pt;}
.w26{width:26.080000pt;}
.w28{width:26.240000pt;}
.w6{width:26.386667pt;}
.wc{width:27.186667pt;}
.w3a{width:27.360000pt;}
.w64{width:27.666667pt;}
.w5b{width:27.670667pt;}
.w20{width:27.680000pt;}
.w66{width:27.698667pt;}
.w65{width:27.826667pt;}
.w48{width:27.872000pt;}
.w13{width:28.626667pt;}
.w10{width:28.786667pt;}
.wb{width:28.946667pt;}
.w4{width:29.110667pt;}
.w17{width:29.120000pt;}
.w4d{width:29.600000pt;}
.w4c{width:29.760000pt;}
.w7{width:29.938667pt;}
.we{width:30.098667pt;}
.w2f{width:32.160000pt;}
.w39{width:36.480000pt;}
.w61{width:37.106667pt;}
.w5e{width:37.120000pt;}
.w60{width:37.152000pt;}
.w5{width:38.066667pt;}
.w4a{width:38.400000pt;}
.w4b{width:38.432000pt;}
.w4f{width:38.720000pt;}
.w11{width:38.866667pt;}
.w16{width:42.880000pt;}
.w8{width:45.920000pt;}
.w62{width:46.578667pt;}
.w9{width:53.760000pt;}
.wa{width:53.952000pt;}
.w1e{width:54.240000pt;}
.w59{width:55.986667pt;}
.w5c{width:55.990667pt;}
.w5a{width:56.026667pt;}
.w37{width:58.560000pt;}
.w1b{width:62.592000pt;}
.w4e{width:64.800000pt;}
.w57{width:65.426667pt;}
.w1d{width:65.952000pt;}
.w1c{width:66.720000pt;}
.w51{width:68.640000pt;}
.w19{width:70.912000pt;}
.w5f{width:75.040000pt;}
.w58{width:75.058667pt;}
.w1a{width:75.840000pt;}
.w36{width:78.112000pt;}
.w6c{width:84.480000pt;}
.w5d{width:84.498667pt;}
.w38{width:85.632000pt;}
.w6a{width:86.870667pt;}
.w35{width:89.440000pt;}
.w6b{width:110.258667pt;}
.w3b{width:207.546667pt;}
.w50{width:207.866667pt;}
.w32{width:272.666667pt;}
.w69{width:282.897333pt;}
.w56{width:311.253333pt;}
.w55{width:320.697333pt;}
.w33{width:338.173333pt;}
.w18{width:399.613333pt;}
.w3{width:538.640000pt;}
.w54{width:611.813333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:4.310667pt;}
.x40{left:5.760000pt;}
.x23{left:6.720000pt;}
.x31{left:8.000000pt;}
.x22{left:9.600000pt;}
.x3c{left:10.720000pt;}
.x2c{left:11.680000pt;}
.x39{left:12.960000pt;}
.x1f{left:14.560000pt;}
.x27{left:16.320000pt;}
.x24{left:17.480000pt;}
.x2e{left:18.560000pt;}
.x43{left:20.160000pt;}
.x21{left:21.640000pt;}
.x32{left:23.560000pt;}
.x2b{left:25.280000pt;}
.x30{left:27.040000pt;}
.x47{left:28.800000pt;}
.x29{left:31.386667pt;}
.x78{left:33.906667pt;}
.xa{left:36.145333pt;}
.x26{left:37.920000pt;}
.x76{left:43.345333pt;}
.x7a{left:44.946667pt;}
.x63{left:49.586667pt;}
.x45{left:63.066667pt;}
.x41{left:101.792000pt;}
.x44{left:105.114667pt;}
.x2{left:113.472000pt;}
.x61{left:123.345333pt;}
.x68{left:132.681333pt;}
.x42{left:136.354667pt;}
.x7{left:137.466667pt;}
.x4b{left:138.906667pt;}
.xc{left:143.560000pt;}
.x6{left:160.666667pt;}
.x4c{left:166.906667pt;}
.x8{left:179.706667pt;}
.xd{left:182.440000pt;}
.x69{left:189.320000pt;}
.x77{left:191.880000pt;}
.x1e{left:197.786667pt;}
.x59{left:205.946667pt;}
.x9{left:208.666667pt;}
.xe{left:209.640000pt;}
.x20{left:227.546667pt;}
.x4{left:233.786667pt;}
.xf{left:240.226667pt;}
.x5a{left:245.026667pt;}
.x5{left:248.546667pt;}
.x33{left:251.426667pt;}
.x6a{left:274.466667pt;}
.x5b{left:275.426667pt;}
.x34{left:279.746667pt;}
.x10{left:286.786667pt;}
.x25{left:299.106667pt;}
.x79{left:302.786667pt;}
.x5c{left:305.666667pt;}
.x6b{left:312.226667pt;}
.x35{left:324.546667pt;}
.x5d{left:336.066667pt;}
.x11{left:341.186667pt;}
.x36{left:350.146667pt;}
.x28{left:375.586667pt;}
.x6c{left:387.906667pt;}
.x37{left:392.386667pt;}
.x12{left:395.586667pt;}
.x7b{left:396.733333pt;}
.x46{left:399.613333pt;}
.x38{left:412.093333pt;}
.x4d{left:421.053333pt;}
.x62{left:425.706667pt;}
.x4e{left:437.053333pt;}
.x2a{left:438.813333pt;}
.x6d{left:444.586667pt;}
.x13{left:450.186667pt;}
.x3a{left:452.413333pt;}
.x6e{left:463.466667pt;}
.x4f{left:472.093333pt;}
.x14{left:479.786667pt;}
.x48{left:489.693333pt;}
.x64{left:491.786667pt;}
.x2d{left:506.173333pt;}
.x15{left:507.626667pt;}
.x50{left:512.093333pt;}
.x6f{left:520.266667pt;}
.x16{left:527.306667pt;}
.x1{left:531.133333pt;}
.x51{left:533.853333pt;}
.x70{left:539.146667pt;}
.x3b{left:549.533333pt;}
.x52{left:551.613333pt;}
.x17{left:558.213333pt;}
.x65{left:567.493333pt;}
.x49{left:568.453333pt;}
.x2f{left:572.933333pt;}
.x18{left:584.133333pt;}
.x53{left:585.253333pt;}
.x71{left:586.373333pt;}
.x3d{left:595.013333pt;}
.x3f{left:595.973333pt;}
.x72{left:605.253333pt;}
.x54{left:607.333333pt;}
.x3e{left:611.973333pt;}
.x19{left:613.573333pt;}
.x66{left:624.133333pt;}
.x4a{left:627.653333pt;}
.x1c{left:637.413333pt;}
.x1b{left:642.213333pt;}
.x55{left:646.213333pt;}
.x1a{left:653.093333pt;}
.x1d{left:655.173333pt;}
.x73{left:662.053333pt;}
.x56{left:667.973333pt;}
.x3{left:671.173333pt;}
.x67{left:680.933333pt;}
.x57{left:685.413333pt;}
.x74{left:699.813333pt;}
.x58{left:713.920000pt;}
.x75{left:718.720000pt;}
.x5e{left:724.640000pt;}
.x5f{left:836.480000pt;}
.x60{left:873.786667pt;}
}




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