
    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_3c66041b9d4173b6b3ab567f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df7256a7bfe1a36180911f01.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a24d4a3429898f0c1720c51a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6bfb4d8525c34aaf268c85ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9c41b83ec517aa3b002bac16.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f3961733f63592747f56c493.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_bfa5de02d2aa306e58d59649.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_1a58375a8ea688977d9e9ba6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976074;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_f7b5ddf058b9d848a60e80f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_282897b4191852fd2fb1f315.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e380047e30d7e9eb77169df7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_11d6a5aae2380634c9fed72f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-18.000000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:33.120000px;}
.ls2b{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.041040px;}
.ls3{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.072000px;}
.ls4a{letter-spacing:0.074880px;}
.ls4c{letter-spacing:0.075000px;}
.ls48{letter-spacing:0.089280px;}
.ls4e{letter-spacing:0.149760px;}
.ls4d{letter-spacing:0.180600px;}
.ls3b{letter-spacing:0.208200px;}
.ls41{letter-spacing:0.249120px;}
.ls4b{letter-spacing:0.309000px;}
.ls43{letter-spacing:0.313920px;}
.ls0{letter-spacing:0.360000px;}
.ls42{letter-spacing:20.160000px;}
.ls1{letter-spacing:33.960000px;}
.ls2{letter-spacing:33.984000px;}
.ls25{letter-spacing:87.834240px;}
.ls20{letter-spacing:88.494240px;}
.lsb{letter-spacing:102.654240px;}
.ls24{letter-spacing:102.834240px;}
.ls1f{letter-spacing:103.674240px;}
.lsa{letter-spacing:117.834240px;}
.ls21{letter-spacing:117.954240px;}
.ls23{letter-spacing:118.014240px;}
.ls22{letter-spacing:118.074240px;}
.ls1d{letter-spacing:118.674240px;}
.ls1e{letter-spacing:118.794240px;}
.ls1c{letter-spacing:118.854240px;}
.ls39{letter-spacing:120.534240px;}
.ls35{letter-spacing:123.294240px;}
.ls30{letter-spacing:123.834240px;}
.ls2a{letter-spacing:127.134240px;}
.ls40{letter-spacing:132.774240px;}
.ls9{letter-spacing:132.894240px;}
.ls8{letter-spacing:132.954240px;}
.ls49{letter-spacing:133.074240px;}
.ls38{letter-spacing:135.714240px;}
.ls34{letter-spacing:138.534240px;}
.ls2f{letter-spacing:138.834240px;}
.ls29{letter-spacing:142.314240px;}
.ls1b{letter-spacing:145.614240px;}
.ls3f{letter-spacing:148.074240px;}
.ls36{letter-spacing:150.774240px;}
.ls37{letter-spacing:150.834240px;}
.ls32{letter-spacing:153.534240px;}
.ls31{letter-spacing:153.654240px;}
.ls33{letter-spacing:153.714240px;}
.ls2e{letter-spacing:153.954240px;}
.ls2d{letter-spacing:154.074240px;}
.ls2c{letter-spacing:154.134240px;}
.ls27{letter-spacing:157.254240px;}
.ls28{letter-spacing:157.314240px;}
.ls26{letter-spacing:157.434240px;}
.ls1a{letter-spacing:160.734240px;}
.ls3c{letter-spacing:163.014240px;}
.ls3d{letter-spacing:163.074240px;}
.ls3e{letter-spacing:163.194240px;}
.ls18{letter-spacing:175.854240px;}
.ls19{letter-spacing:176.034240px;}
.ls17{letter-spacing:186.654240px;}
.ls16{letter-spacing:201.774240px;}
.ls14{letter-spacing:216.894240px;}
.ls13{letter-spacing:217.014240px;}
.ls15{letter-spacing:217.074240px;}
.lse{letter-spacing:323.634240px;}
.ls47{letter-spacing:336.234240px;}
.lsc{letter-spacing:338.694240px;}
.lsd{letter-spacing:338.754240px;}
.ls44{letter-spacing:351.294240px;}
.ls45{letter-spacing:351.354240px;}
.ls46{letter-spacing:351.414240px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.wse{word-spacing:-18.244200px;}
.wsd{word-spacing:-18.036000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.496000px;}
.wsc{word-spacing:-16.992000px;}
.ws10{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.300000px;}
.ws11{word-spacing:-13.814760px;}
.ws14{word-spacing:-13.686360px;}
.ws13{word-spacing:-13.580760px;}
.wsb{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.464720px;}
.ws7{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.396560px;}
.ws12{word-spacing:-9.112320px;}
.ws3{word-spacing:-6.840000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.608000px;}
._1b{margin-left:-3.600000px;}
._e{margin-left:-2.154240px;}
._0{margin-left:-1.010880px;}
._1{width:1.454880px;}
._5{width:2.735520px;}
._11{width:3.990720px;}
._8{width:5.184000px;}
._12{width:6.192000px;}
._9{width:7.632000px;}
._a{width:8.688000px;}
._13{width:10.131360px;}
._16{width:11.399520px;}
._c{width:12.528000px;}
._d{width:13.737120px;}
._f{width:14.777280px;}
._18{width:16.364160px;}
._4{width:19.641120px;}
._10{width:20.808000px;}
._6{width:22.464000px;}
._7{width:23.520000px;}
._17{width:25.250880px;}
._1e{width:26.338080px;}
._14{width:28.152000px;}
._15{width:29.160000px;}
._b{width:30.240000px;}
._2{width:32.256000px;}
._3{width:33.705120px;}
._1d{width:49.375920px;}
._1c{width:51.955920px;}
._19{width:107.976000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.360000px;}
.fs7{font-size:40.320000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y61{bottom:4.500000px;}
.y18a{bottom:6.195000px;}
.y1b5{bottom:7.020000px;}
.y9f{bottom:7.710000px;}
.y1ee{bottom:9.180000px;}
.y1c7{bottom:9.210000px;}
.y15b{bottom:10.185000px;}
.y79{bottom:10.260000px;}
.y9e{bottom:10.335000px;}
.yb3{bottom:10.410000px;}
.ye9{bottom:10.440000px;}
.y189{bottom:10.470000px;}
.ycd{bottom:10.515000px;}
.y17d{bottom:15.270000px;}
.yce{bottom:19.590000px;}
.y1b3{bottom:20.775000px;}
.y148{bottom:22.530000px;}
.y1a1{bottom:22.575000px;}
.y15c{bottom:22.605000px;}
.y1c8{bottom:22.650000px;}
.yea{bottom:22.680000px;}
.y7a{bottom:22.710000px;}
.yb4{bottom:22.755000px;}
.y11b{bottom:22.785000px;}
.y57{bottom:25.200000px;}
.y59{bottom:27.360000px;}
.y1b1{bottom:32.370000px;}
.y187{bottom:34.665000px;}
.ydc{bottom:34.920000px;}
.yf3{bottom:37.260000px;}
.y10c{bottom:38.085000px;}
.ycb{bottom:42.375000px;}
.y9c{bottom:42.555000px;}
.y1c5{bottom:45.465000px;}
.y132{bottom:45.510000px;}
.y77{bottom:45.540000px;}
.y119{bottom:45.570000px;}
.y1ec{bottom:45.615000px;}
.y60{bottom:45.900000px;}
.y146{bottom:47.880000px;}
.y159{bottom:47.955000px;}
.y1ab{bottom:51.870000px;}
.y107{bottom:52.410000px;}
.y17e{bottom:54.180000px;}
.yf4{bottom:55.980000px;}
.yc4{bottom:61.890000px;}
.y84{bottom:62.070000px;}
.y1be{bottom:64.980000px;}
.y128{bottom:65.010000px;}
.y6d{bottom:65.055000px;}
.y112{bottom:65.085000px;}
.y56{bottom:66.600000px;}
.ydd{bottom:66.780000px;}
.y13d{bottom:67.395000px;}
.y14e{bottom:67.470000px;}
.yf5{bottom:74.700000px;}
.y85{bottom:76.575000px;}
.y10b{bottom:76.935000px;}
.y86{bottom:91.080000px;}
.y6e{bottom:92.625000px;}
.y17f{bottom:93.090000px;}
.yf6{bottom:93.420000px;}
.y1ac{bottom:94.425000px;}
.y14f{bottom:94.575000px;}
.yd2{bottom:96.225000px;}
.yd6{bottom:96.270000px;}
.yd0{bottom:96.300000px;}
.yd4{bottom:96.330000px;}
.y1b9{bottom:96.810000px;}
.yf1{bottom:97.020000px;}
.y129{bottom:97.350000px;}
.y1a7{bottom:97.635000px;}
.y1a5{bottom:97.710000px;}
.y1a9{bottom:97.740000px;}
.y1a3{bottom:97.815000px;}
.yde{bottom:98.670000px;}
.y80{bottom:100.725000px;}
.y7c{bottom:100.770000px;}
.y82{bottom:100.800000px;}
.y7e{bottom:100.830000px;}
.y13e{bottom:102.165000px;}
.yab{bottom:103.350000px;}
.y1e3{bottom:104.250000px;}
.yc5{bottom:104.730000px;}
.y87{bottom:105.585000px;}
.y166{bottom:106.305000px;}
.y1b4{bottom:107.175000px;}
.ya3{bottom:109.830000px;}
.ya1{bottom:109.950000px;}
.yf7{bottom:112.140000px;}
.y113{bottom:113.790000px;}
.y10a{bottom:115.770000px;}
.y28{bottom:117.036000px;}
.y19b{bottom:120.030000px;}
.y88{bottom:120.135000px;}
.y6f{bottom:120.165000px;}
.y199{bottom:121.176000px;}
.yf0{bottom:121.215000px;}
.yee{bottom:121.290000px;}
.yec{bottom:121.350000px;}
.y150{bottom:121.710000px;}
.y1bf{bottom:123.690000px;}
.y1b8{bottom:123.945000px;}
.y1e1{bottom:126.216000px;}
.y191{bottom:129.090000px;}
.y18c{bottom:129.135000px;}
.y18f{bottom:129.165000px;}
.y18e{bottom:129.240000px;}
.y12a{bottom:129.675000px;}
.ydf{bottom:130.530000px;}
.yf8{bottom:130.860000px;}
.y180{bottom:132.015000px;}
.yba{bottom:133.950000px;}
.yb6{bottom:134.100000px;}
.yb8{bottom:134.130000px;}
.y89{bottom:134.640000px;}
.y160{bottom:134.820000px;}
.y171{bottom:135.210000px;}
.y13f{bottom:136.980000px;}
.y1ad{bottom:137.010000px;}
.y27{bottom:137.736000px;}
.y14c{bottom:138.315000px;}
.y109{bottom:140.970000px;}
.yac{bottom:141.660000px;}
.y1e4{bottom:143.385000px;}
.y137{bottom:143.460000px;}
.y11f{bottom:144.150000px;}
.y167{bottom:145.185000px;}
.y1e0{bottom:146.916000px;}
.yc6{bottom:147.570000px;}
.y70{bottom:147.750000px;}
.y151{bottom:148.830000px;}
.y8a{bottom:149.145000px;}
.y53{bottom:149.256000px;}
.yf9{bottom:149.580000px;}
.y1b7{bottom:151.050000px;}
.y198{bottom:157.530000px;}
.y26{bottom:158.430000px;}
.y15f{bottom:161.970000px;}
.y12b{bottom:162.030000px;}
.y170{bottom:162.360000px;}
.ye0{bottom:162.390000px;}
.y114{bottom:162.510000px;}
.y8b{bottom:163.650000px;}
.y14b{bottom:165.450000px;}
.yda{bottom:165.810000px;}
.y1df{bottom:167.610000px;}
.yfa{bottom:168.270000px;}
.y52{bottom:169.950000px;}
.y136{bottom:170.565000px;}
.y181{bottom:170.925000px;}
.y11e{bottom:171.255000px;}
.y140{bottom:171.795000px;}
.y19c{bottom:172.695000px;}
.y1cc{bottom:174.060000px;}
.y1f2{bottom:174.165000px;}
.y71{bottom:175.320000px;}
.y152{bottom:175.965000px;}
.y6b{bottom:177.150000px;}
.y8c{bottom:178.170000px;}
.y1b6{bottom:178.200000px;}
.y25{bottom:179.130000px;}
.y1ae{bottom:179.565000px;}
.yad{bottom:179.970000px;}
.y1c0{bottom:182.415000px;}
.y1e5{bottom:182.520000px;}
.y168{bottom:184.035000px;}
.yfb{bottom:186.990000px;}
.y1de{bottom:188.310000px;}
.y15e{bottom:189.105000px;}
.y16f{bottom:189.465000px;}
.yc7{bottom:190.410000px;}
.y51{bottom:190.650000px;}
.y14a{bottom:192.570000px;}
.y8d{bottom:192.675000px;}
.ye1{bottom:194.295000px;}
.y12c{bottom:194.370000px;}
.y135{bottom:197.715000px;}
.y11d{bottom:198.390000px;}
.y24{bottom:199.830000px;}
.y1cb{bottom:201.165000px;}
.y1f1{bottom:201.315000px;}
.y72{bottom:202.890000px;}
.y153{bottom:203.070000px;}
.y13b{bottom:203.970000px;}
.yfc{bottom:205.710000px;}
.y141{bottom:206.565000px;}
.y8e{bottom:207.210000px;}
.y1dd{bottom:209.010000px;}
.y182{bottom:209.880000px;}
.y115{bottom:211.215000px;}
.y50{bottom:211.350000px;}
.y197{bottom:213.510000px;}
.y15d{bottom:216.210000px;}
.y16e{bottom:216.615000px;}
.yd9{bottom:218.190000px;}
.yae{bottom:218.265000px;}
.y149{bottom:219.705000px;}
.y23{bottom:220.530000px;}
.yf2{bottom:220.680000px;}
.y1e6{bottom:221.685000px;}
.y8f{bottom:221.730000px;}
.y1af{bottom:222.150000px;}
.y169{bottom:222.915000px;}
.yfd{bottom:224.430000px;}
.y134{bottom:224.850000px;}
.y19d{bottom:225.330000px;}
.y11c{bottom:225.540000px;}
.ye2{bottom:226.155000px;}
.y12d{bottom:226.695000px;}
.y1ca{bottom:228.315000px;}
.y1f0{bottom:228.450000px;}
.y6a{bottom:229.530000px;}
.y1dc{bottom:229.710000px;}
.y154{bottom:230.220000px;}
.y73{bottom:230.475000px;}
.y83{bottom:230.760000px;}
.y4f{bottom:232.050000px;}
.yc8{bottom:233.250000px;}
.y108{bottom:234.360000px;}
.y90{bottom:236.235000px;}
.y1c1{bottom:241.125000px;}
.y22{bottom:241.230000px;}
.y142{bottom:241.380000px;}
.yfe{bottom:243.150000px;}
.y183{bottom:248.790000px;}
.y1db{bottom:250.410000px;}
.y91{bottom:250.740000px;}
.y4e{bottom:252.750000px;}
.y196{bottom:255.090000px;}
.y1c9{bottom:255.420000px;}
.y1ef{bottom:255.570000px;}
.y13a{bottom:256.350000px;}
.yaf{bottom:256.575000px;}
.y155{bottom:257.370000px;}
.y74{bottom:258.045000px;}
.y12e{bottom:259.020000px;}
.y14d{bottom:259.200000px;}
.y116{bottom:259.920000px;}
.y1e7{bottom:260.820000px;}
.y104{bottom:261.075000px;}
.y16a{bottom:261.750000px;}
.yff{bottom:261.870000px;}
.y21{bottom:261.930000px;}
.y1b0{bottom:264.750000px;}
.y92{bottom:265.245000px;}
.ye7{bottom:270.390000px;}
.y1da{bottom:271.110000px;}
.y4d{bottom:273.450000px;}
.yc9{bottom:276.120000px;}
.y143{bottom:276.150000px;}
.y19e{bottom:277.995000px;}
.y93{bottom:279.795000px;}
.y100{bottom:280.590000px;}
.y20{bottom:282.630000px;}
.y156{bottom:284.475000px;}
.y75{bottom:285.585000px;}
.y184{bottom:287.715000px;}
.ye3{bottom:289.905000px;}
.y12f{bottom:291.345000px;}
.y1d9{bottom:291.810000px;}
.y4c{bottom:294.150000px;}
.y94{bottom:294.300000px;}
.yb0{bottom:294.870000px;}
.y101{bottom:299.265000px;}
.y1c2{bottom:299.850000px;}
.y1e8{bottom:299.955000px;}
.y16b{bottom:300.630000px;}
.y1f{bottom:303.330000px;}
.y164{bottom:303.870000px;}
.y195{bottom:307.470000px;}
.y117{bottom:308.625000px;}
.y95{bottom:308.805000px;}
.y1aa{bottom:309.600000px;}
.y144{bottom:310.965000px;}
.y157{bottom:311.610000px;}
.y1d8{bottom:312.510000px;}
.y76{bottom:313.170000px;}
.y4b{bottom:314.850000px;}
.y102{bottom:317.985000px;}
.yca{bottom:318.960000px;}
.ye4{bottom:321.765000px;}
.y96{bottom:323.310000px;}
.y130{bottom:323.670000px;}
.y185{bottom:326.625000px;}
.y19f{bottom:330.630000px;}
.yb1{bottom:333.180000px;}
.y1d7{bottom:333.255000px;}
.y4a{bottom:335.595000px;}
.y1e{bottom:335.775000px;}
.y103{bottom:336.705000px;}
.y105{bottom:337.140000px;}
.y97{bottom:337.830000px;}
.y158{bottom:338.730000px;}
.y1e9{bottom:339.090000px;}
.y1b2{bottom:339.300000px;}
.y16c{bottom:339.480000px;}
.y163{bottom:345.495000px;}
.y145{bottom:345.750000px;}
.y98{bottom:352.335000px;}
.ye5{bottom:353.670000px;}
.y1d6{bottom:353.955000px;}
.y131{bottom:356.010000px;}
.y49{bottom:356.295000px;}
.y118{bottom:357.300000px;}
.y1c3{bottom:358.560000px;}
.y186{bottom:365.580000px;}
.y99{bottom:366.870000px;}
.y1d{bottom:371.595000px;}
.y1d5{bottom:374.655000px;}
.y48{bottom:376.995000px;}
.y1ea{bottom:378.255000px;}
.y15a{bottom:379.800000px;}
.y9a{bottom:381.390000px;}
.ye6{bottom:385.530000px;}
.y9b{bottom:395.895000px;}
.y162{bottom:397.695000px;}
.y165{bottom:399.780000px;}
.y106{bottom:405.720000px;}
.y1c{bottom:406.875000px;}
.y1d4{bottom:409.755000px;}
.y47{bottom:412.275000px;}
.y9d{bottom:414.900000px;}
.y1c4{bottom:417.270000px;}
.y1eb{bottom:417.390000px;}
.ya5{bottom:418.500000px;}
.y17b{bottom:419.655000px;}
.y67{bottom:432.615000px;}
.ya9{bottom:440.895000px;}
.y1b{bottom:443.055000px;}
.y1d3{bottom:445.935000px;}
.y46{bottom:448.275000px;}
.ya4{bottom:449.460000px;}
.y1bc{bottom:452.955000px;}
.y17a{bottom:455.655000px;}
.y1a{bottom:463.935000px;}
.y1d2{bottom:466.815000px;}
.y45{bottom:469.155000px;}
.y179{bottom:476.535000px;}
.ya2{bottom:480.600000px;}
.y19{bottom:484.635000px;}
.y1d1{bottom:487.515000px;}
.y66{bottom:489.315000px;}
.y44{bottom:489.855000px;}
.y16d{bottom:491.400000px;}
.y126{bottom:492.915000px;}
.y110{bottom:493.095000px;}
.ya8{bottom:497.055000px;}
.y178{bottom:497.235000px;}
.y200{bottom:502.635000px;}
.y18{bottom:505.335000px;}
.y65{bottom:506.415000px;}
.y1bd{bottom:508.320000px;}
.y1d0{bottom:508.935000px;}
.y43{bottom:510.555000px;}
.ya0{bottom:511.560000px;}
.y177{bottom:517.935000px;}
.y17{bottom:526.035000px;}
.y64{bottom:528.015000px;}
.y125{bottom:529.095000px;}
.y1cf{bottom:529.815000px;}
.y42{bottom:531.255000px;}
.yc2{bottom:535.755000px;}
.y176{bottom:538.635000px;}
.y10f{bottom:545.475000px;}
.y16{bottom:546.735000px;}
.y111{bottom:547.560000px;}
.y63{bottom:549.435000px;}
.y124{bottom:549.975000px;}
.yaa{bottom:550.980000px;}
.y41{bottom:551.955000px;}
.y1ff{bottom:558.975000px;}
.y175{bottom:559.335000px;}
.y15{bottom:567.435000px;}
.y123{bottom:570.705000px;}
.y62{bottom:570.885000px;}
.yc1{bottom:571.785000px;}
.y40{bottom:572.685000px;}
.y174{bottom:580.065000px;}
.y1ce{bottom:586.365000px;}
.y14{bottom:588.165000px;}
.y122{bottom:591.405000px;}
.y5f{bottom:592.305000px;}
.yc0{bottom:592.665000px;}
.y3f{bottom:593.385000px;}
.y1fe{bottom:594.285000px;}
.y13{bottom:608.865000px;}
.y1fd{bottom:612.465000px;}
.ybf{bottom:613.365000px;}
.y3e{bottom:614.085000px;}
.ybb{bottom:614.520000px;}
.yd8{bottom:618.405000px;}
.y12{bottom:629.565000px;}
.y194{bottom:632.805000px;}
.ybe{bottom:634.065000px;}
.y3d{bottom:634.785000px;}
.y173{bottom:635.865000px;}
.y1cd{bottom:638.925000px;}
.y1e2{bottom:641.700000px;}
.y121{bottom:647.205000px;}
.y1fc{bottom:648.105000px;}
.y11{bottom:650.265000px;}
.yb9{bottom:651.600000px;}
.y3c{bottom:655.485000px;}
.y139{bottom:658.545000px;}
.yd7{bottom:670.425000px;}
.y10{bottom:670.965000px;}
.ydb{bottom:673.560000px;}
.y193{bottom:674.385000px;}
.y3b{bottom:676.185000px;}
.y11a{bottom:676.260000px;}
.yb2{bottom:677.160000px;}
.y5e{bottom:679.965000px;}
.yef{bottom:683.280000px;}
.y1fb{bottom:683.745000px;}
.y172{bottom:688.425000px;}
.yb7{bottom:688.500000px;}
.ybd{bottom:690.045000px;}
.y17c{bottom:690.660000px;}
.yf{bottom:691.665000px;}
.y69{bottom:692.205000px;}
.y3a{bottom:696.885000px;}
.y1c6{bottom:698.040000px;}
.y120{bottom:699.765000px;}
.y127{bottom:703.080000px;}
.y1fa{bottom:704.625000px;}
.y138{bottom:710.925000px;}
.ye{bottom:712.365000px;}
.y13c{bottom:713.340000px;}
.yed{bottom:717.120000px;}
.y39{bottom:717.585000px;}
.y5d{bottom:721.725000px;}
.yb5{bottom:725.580000px;}
.y192{bottom:726.765000px;}
.y19a{bottom:728.460000px;}
.yd{bottom:733.065000px;}
.y38{bottom:738.285000px;}
.y5c{bottom:738.645000px;}
.y1f9{bottom:740.085000px;}
.ybc{bottom:742.425000px;}
.y68{bottom:744.765000px;}
.yc3{bottom:744.840000px;}
.y6c{bottom:745.920000px;}
.yeb{bottom:750.960000px;}
.yc{bottom:753.765000px;}
.y37{bottom:758.985000px;}
.y1f8{bottom:760.965000px;}
.y188{bottom:769.140000px;}
.yb{bottom:774.465000px;}
.y1a0{bottom:778.680000px;}
.y36{bottom:779.685000px;}
.y5b{bottom:782.925000px;}
.y190{bottom:795.240000px;}
.y1f7{bottom:796.605000px;}
.y161{bottom:799.845000px;}
.y35{bottom:800.385000px;}
.ya{bottom:809.565000px;}
.y147{bottom:816.300000px;}
.y1f6{bottom:817.530000px;}
.y34{bottom:821.130000px;}
.ye8{bottom:822.060000px;}
.y5a{bottom:825.090000px;}
.y133{bottom:831.060000px;}
.y1ed{bottom:831.600000px;}
.y9{bottom:842.910000px;}
.y1f5{bottom:852.990000px;}
.y1a8{bottom:856.440000px;}
.y33{bottom:856.590000px;}
.y81{bottom:861.660000px;}
.ycc{bottom:862.200000px;}
.yd5{bottom:863.280000px;}
.y8{bottom:863.610000px;}
.y78{bottom:863.640000px;}
.y18d{bottom:866.880000px;}
.y58{bottom:869.370000px;}
.y1f4{bottom:873.870000px;}
.y32{bottom:877.470000px;}
.y7{bottom:884.310000px;}
.y1a6{bottom:884.520000px;}
.y7f{bottom:890.460000px;}
.yd3{bottom:890.820000px;}
.y31{bottom:898.170000px;}
.y18b{bottom:902.880000px;}
.y6{bottom:905.010000px;}
.y1f3{bottom:909.330000px;}
.y1a4{bottom:912.420000px;}
.y55{bottom:913.650000px;}
.yd1{bottom:918.540000px;}
.y30{bottom:918.870000px;}
.y7d{bottom:919.080000px;}
.y2f{bottom:939.570000px;}
.y1a2{bottom:940.320000px;}
.y5{bottom:940.470000px;}
.ya7{bottom:944.790000px;}
.ycf{bottom:946.080000px;}
.y7b{bottom:947.880000px;}
.y2e{bottom:960.270000px;}
.y10e{bottom:965.490000px;}
.y4{bottom:976.110000px;}
.ya6{bottom:980.790000px;}
.y2d{bottom:980.970000px;}
.y1bb{bottom:986.190000px;}
.y54{bottom:1001.310000px;}
.y10d{bottom:1001.490000px;}
.y2c{bottom:1001.670000px;}
.y3{bottom:1012.290000px;}
.y1ba{bottom:1022.190000px;}
.y2b{bottom:1022.370000px;}
.y2{bottom:1036.410000px;}
.y2a{bottom:1043.070000px;}
.y1{bottom:1060.530000px;}
.y29{bottom:1063.770000px;}
.hb{height:20.700000px;}
.hc{height:20.736000px;}
.h15{height:24.300000px;}
.h4a{height:25.200000px;}
.h51{height:26.100000px;}
.h1c{height:36.180000px;}
.h10{height:39.240000px;}
.h2b{height:39.420000px;}
.h9{height:41.436000px;}
.h37{height:41.580000px;}
.h3e{height:41.760000px;}
.h8{height:43.560000px;}
.h11{height:48.029766px;}
.he{height:48.088125px;}
.h59{height:50.405625px;}
.h28{height:52.380000px;}
.ha{height:62.100000px;}
.h3{height:70.664062px;}
.h24{height:71.460000px;}
.h5{height:72.562500px;}
.h38{height:72.707625px;}
.h4{height:74.004654px;}
.h6{height:74.953125px;}
.h2{height:80.464922px;}
.h56{height:81.736875px;}
.h7{height:82.800000px;}
.h1{height:84.898125px;}
.h27{height:91.260000px;}
.h1d{height:110.520000px;}
.h55{height:111.060000px;}
.h21{height:111.240000px;}
.h58{height:111.420000px;}
.h4e{height:111.960000px;}
.h12{height:115.020000px;}
.h16{height:124.200000px;}
.h14{height:125.280000px;}
.hf{height:129.240000px;}
.h26{height:130.140000px;}
.h1f{height:132.120000px;}
.h20{height:135.540000px;}
.h54{height:138.240000px;}
.h4b{height:143.460000px;}
.h19{height:148.320000px;}
.h42{height:149.220000px;}
.h48{height:149.580000px;}
.h23{height:149.760000px;}
.h3c{height:152.640000px;}
.h18{height:154.440000px;}
.h1b{height:154.620000px;}
.h25{height:155.340000px;}
.h34{height:157.680000px;}
.h2f{height:158.400000px;}
.h53{height:165.420000px;}
.h2a{height:173.700000px;}
.h41{height:176.220000px;}
.h47{height:176.580000px;}
.h3b{height:179.640000px;}
.h33{height:184.860000px;}
.h2e{height:185.580000px;}
.h5d{height:188.280000px;}
.h60{height:188.460000px;}
.h52{height:192.600000px;}
.h40{height:203.400000px;}
.h46{height:203.760000px;}
.h3a{height:206.820000px;}
.h32{height:212.040000px;}
.h2d{height:212.760000px;}
.h5c{height:215.460000px;}
.h36{height:215.640000px;}
.h3f{height:230.580000px;}
.h45{height:230.940000px;}
.h44{height:232.380000px;}
.h39{height:234.000000px;}
.h31{height:239.040000px;}
.h2c{height:239.760000px;}
.h5b{height:242.640000px;}
.h50{height:253.440000px;}
.h5a{height:269.640000px;}
.h5f{height:269.820000px;}
.h4f{height:283.680000px;}
.h4d{height:290.520000px;}
.hd{height:334.080000px;}
.h1a{height:335.160000px;}
.h4c{height:351.540000px;}
.h17{height:354.060000px;}
.h22{height:357.660000px;}
.h3d{height:359.640000px;}
.h43{height:360.360000px;}
.h35{height:366.660000px;}
.h30{height:376.920000px;}
.h29{height:378.180000px;}
.h49{height:389.340000px;}
.h1e{height:406.440000px;}
.h13{height:421.920000px;}
.h57{height:438.120000px;}
.h5e{height:438.300000px;}
.h0{height:1188.000000px;}
.wc{width:34.020000px;}
.w10{width:34.200000px;}
.wa{width:34.560000px;}
.w13{width:34.740000px;}
.w1{width:44.640000px;}
.w2{width:70.380000px;}
.w6{width:100.476000px;}
.w12{width:125.100000px;}
.w15{width:126.180000px;}
.we{width:131.220000px;}
.w8{width:131.400000px;}
.w3{width:131.436000px;}
.wb{width:131.580000px;}
.w24{width:135.720000px;}
.wf{width:137.160000px;}
.w9{width:137.340000px;}
.w21{width:138.060000px;}
.w1a{width:138.960000px;}
.w1d{width:139.140000px;}
.w18{width:140.400000px;}
.w1e{width:140.580000px;}
.w1b{width:154.620000px;}
.w22{width:157.500000px;}
.w1f{width:162.540000px;}
.w16{width:166.500000px;}
.w5{width:178.050000px;}
.w4{width:180.930000px;}
.w11{width:625.500000px;}
.w14{width:631.080000px;}
.wd{width:656.820000px;}
.w7{width:657.000000px;}
.w23{width:679.320000px;}
.w20{width:690.660000px;}
.w19{width:694.800000px;}
.w1c{width:695.880000px;}
.w17{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:8.280000px;}
.x16{left:9.390000px;}
.x32{left:10.545000px;}
.x4b{left:16.452000px;}
.x14{left:18.972000px;}
.x23{left:28.800000px;}
.x4f{left:33.660000px;}
.x22{left:36.360000px;}
.x46{left:39.675000px;}
.x49{left:41.580000px;}
.x11{left:44.070000px;}
.x24{left:46.515000px;}
.x2b{left:48.495000px;}
.x10{left:51.630000px;}
.x3b{left:54.180000px;}
.x2a{left:56.085000px;}
.x3c{left:57.885000px;}
.xf{left:59.220000px;}
.x1e{left:61.710000px;}
.x2f{left:63.795000px;}
.x2c{left:66.240000px;}
.x1a{left:67.935000px;}
.x12{left:69.375000px;}
.x43{left:70.590000px;}
.x30{left:73.950000px;}
.x19{left:75.495000px;}
.x42{left:82.050000px;}
.x18{left:83.085000px;}
.x4a{left:89.250000px;}
.x44{left:92.190000px;}
.x1b{left:93.240000px;}
.x4e{left:94.536000px;}
.x7{left:99.756000px;}
.x50{left:101.196000px;}
.x4{left:108.036000px;}
.x25{left:109.260000px;}
.x13{left:115.560000px;}
.x1c{left:117.720000px;}
.x45{left:118.980000px;}
.x1{left:120.816000px;}
.x1f{left:124.560000px;}
.x3d{left:133.740000px;}
.x5{left:135.036000px;}
.x9{left:145.116000px;}
.x2{left:156.270000px;}
.x6{left:162.030000px;}
.xa{left:216.390000px;}
.x3{left:285.195000px;}
.x3e{left:333.900000px;}
.x2d{left:340.020000px;}
.x1d{left:345.780000px;}
.xb{left:348.735000px;}
.x20{left:353.340000px;}
.x15{left:357.120000px;}
.x31{left:358.740000px;}
.x3a{left:364.140000px;}
.x47{left:365.400000px;}
.x40{left:367.020000px;}
.x39{left:372.960000px;}
.x37{left:374.580000px;}
.x26{left:377.280000px;}
.xc{left:530.385000px;}
.x2e{left:681.300000px;}
.x33{left:692.100000px;}
.x17{left:707.940000px;}
.xd{left:709.170000px;}
.x27{left:711.180000px;}
.x21{left:714.960000px;}
.x28{left:735.810000px;}
.x29{left:740.310000px;}
.x4d{left:747.360000px;}
.x3f{left:758.160000px;}
.x38{left:762.840000px;}
.xe{left:767.310000px;}
.x35{left:769.320000px;}
.x41{left:772.020000px;}
.x4c{left:789.840000px;}
.x48{left:801.180000px;}
.x36{left:805.680000px;}
.x34{left:812.340000px;}
@media print{
.v5{vertical-align:-16.000000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2b{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.036480pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.064000pt;}
.ls4a{letter-spacing:0.066560pt;}
.ls4c{letter-spacing:0.066667pt;}
.ls48{letter-spacing:0.079360pt;}
.ls4e{letter-spacing:0.133120pt;}
.ls4d{letter-spacing:0.160533pt;}
.ls3b{letter-spacing:0.185067pt;}
.ls41{letter-spacing:0.221440pt;}
.ls4b{letter-spacing:0.274667pt;}
.ls43{letter-spacing:0.279040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls42{letter-spacing:17.920000pt;}
.ls1{letter-spacing:30.186667pt;}
.ls2{letter-spacing:30.208000pt;}
.ls25{letter-spacing:78.074880pt;}
.ls20{letter-spacing:78.661547pt;}
.lsb{letter-spacing:91.248213pt;}
.ls24{letter-spacing:91.408213pt;}
.ls1f{letter-spacing:92.154880pt;}
.lsa{letter-spacing:104.741547pt;}
.ls21{letter-spacing:104.848213pt;}
.ls23{letter-spacing:104.901547pt;}
.ls22{letter-spacing:104.954880pt;}
.ls1d{letter-spacing:105.488213pt;}
.ls1e{letter-spacing:105.594880pt;}
.ls1c{letter-spacing:105.648213pt;}
.ls39{letter-spacing:107.141547pt;}
.ls35{letter-spacing:109.594880pt;}
.ls30{letter-spacing:110.074880pt;}
.ls2a{letter-spacing:113.008213pt;}
.ls40{letter-spacing:118.021547pt;}
.ls9{letter-spacing:118.128213pt;}
.ls8{letter-spacing:118.181547pt;}
.ls49{letter-spacing:118.288213pt;}
.ls38{letter-spacing:120.634880pt;}
.ls34{letter-spacing:123.141547pt;}
.ls2f{letter-spacing:123.408213pt;}
.ls29{letter-spacing:126.501547pt;}
.ls1b{letter-spacing:129.434880pt;}
.ls3f{letter-spacing:131.621547pt;}
.ls36{letter-spacing:134.021547pt;}
.ls37{letter-spacing:134.074880pt;}
.ls32{letter-spacing:136.474880pt;}
.ls31{letter-spacing:136.581547pt;}
.ls33{letter-spacing:136.634880pt;}
.ls2e{letter-spacing:136.848213pt;}
.ls2d{letter-spacing:136.954880pt;}
.ls2c{letter-spacing:137.008213pt;}
.ls27{letter-spacing:139.781547pt;}
.ls28{letter-spacing:139.834880pt;}
.ls26{letter-spacing:139.941547pt;}
.ls1a{letter-spacing:142.874880pt;}
.ls3c{letter-spacing:144.901547pt;}
.ls3d{letter-spacing:144.954880pt;}
.ls3e{letter-spacing:145.061547pt;}
.ls18{letter-spacing:156.314880pt;}
.ls19{letter-spacing:156.474880pt;}
.ls17{letter-spacing:165.914880pt;}
.ls16{letter-spacing:179.354880pt;}
.ls14{letter-spacing:192.794880pt;}
.ls13{letter-spacing:192.901547pt;}
.ls15{letter-spacing:192.954880pt;}
.lse{letter-spacing:287.674880pt;}
.ls47{letter-spacing:298.874880pt;}
.lsc{letter-spacing:301.061547pt;}
.lsd{letter-spacing:301.114880pt;}
.ls44{letter-spacing:312.261547pt;}
.ls45{letter-spacing:312.314880pt;}
.ls46{letter-spacing:312.368213pt;}
.wsf{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.wse{word-spacing:-16.217067pt;}
.wsd{word-spacing:-16.032000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.552000pt;}
.wsc{word-spacing:-15.104000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws11{word-spacing:-12.279787pt;}
.ws14{word-spacing:-12.165653pt;}
.ws13{word-spacing:-12.071787pt;}
.wsb{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.968640pt;}
.ws7{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.908053pt;}
.ws12{word-spacing:-8.099840pt;}
.ws3{word-spacing:-6.080000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.096000pt;}
._1b{margin-left:-3.200000pt;}
._e{margin-left:-1.914880pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.293227pt;}
._5{width:2.431573pt;}
._11{width:3.547307pt;}
._8{width:4.608000pt;}
._12{width:5.504000pt;}
._9{width:6.784000pt;}
._a{width:7.722667pt;}
._13{width:9.005653pt;}
._16{width:10.132907pt;}
._c{width:11.136000pt;}
._d{width:12.210773pt;}
._f{width:13.135360pt;}
._18{width:14.545920pt;}
._4{width:17.458773pt;}
._10{width:18.496000pt;}
._6{width:19.968000pt;}
._7{width:20.906667pt;}
._17{width:22.445227pt;}
._1e{width:23.411627pt;}
._14{width:25.024000pt;}
._15{width:25.920000pt;}
._b{width:26.880000pt;}
._2{width:28.672000pt;}
._3{width:29.960107pt;}
._1d{width:43.889707pt;}
._1c{width:46.183040pt;}
._19{width:95.978667pt;}
.fs3{font-size:24.320000pt;}
.fs7{font-size:35.840000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:4.000000pt;}
.y18a{bottom:5.506667pt;}
.y1b5{bottom:6.240000pt;}
.y9f{bottom:6.853333pt;}
.y1ee{bottom:8.160000pt;}
.y1c7{bottom:8.186667pt;}
.y15b{bottom:9.053333pt;}
.y79{bottom:9.120000pt;}
.y9e{bottom:9.186667pt;}
.yb3{bottom:9.253333pt;}
.ye9{bottom:9.280000pt;}
.y189{bottom:9.306667pt;}
.ycd{bottom:9.346667pt;}
.y17d{bottom:13.573333pt;}
.yce{bottom:17.413333pt;}
.y1b3{bottom:18.466667pt;}
.y148{bottom:20.026667pt;}
.y1a1{bottom:20.066667pt;}
.y15c{bottom:20.093333pt;}
.y1c8{bottom:20.133333pt;}
.yea{bottom:20.160000pt;}
.y7a{bottom:20.186667pt;}
.yb4{bottom:20.226667pt;}
.y11b{bottom:20.253333pt;}
.y57{bottom:22.400000pt;}
.y59{bottom:24.320000pt;}
.y1b1{bottom:28.773333pt;}
.y187{bottom:30.813333pt;}
.ydc{bottom:31.040000pt;}
.yf3{bottom:33.120000pt;}
.y10c{bottom:33.853333pt;}
.ycb{bottom:37.666667pt;}
.y9c{bottom:37.826667pt;}
.y1c5{bottom:40.413333pt;}
.y132{bottom:40.453333pt;}
.y77{bottom:40.480000pt;}
.y119{bottom:40.506667pt;}
.y1ec{bottom:40.546667pt;}
.y60{bottom:40.800000pt;}
.y146{bottom:42.560000pt;}
.y159{bottom:42.626667pt;}
.y1ab{bottom:46.106667pt;}
.y107{bottom:46.586667pt;}
.y17e{bottom:48.160000pt;}
.yf4{bottom:49.760000pt;}
.yc4{bottom:55.013333pt;}
.y84{bottom:55.173333pt;}
.y1be{bottom:57.760000pt;}
.y128{bottom:57.786667pt;}
.y6d{bottom:57.826667pt;}
.y112{bottom:57.853333pt;}
.y56{bottom:59.200000pt;}
.ydd{bottom:59.360000pt;}
.y13d{bottom:59.906667pt;}
.y14e{bottom:59.973333pt;}
.yf5{bottom:66.400000pt;}
.y85{bottom:68.066667pt;}
.y10b{bottom:68.386667pt;}
.y86{bottom:80.960000pt;}
.y6e{bottom:82.333333pt;}
.y17f{bottom:82.746667pt;}
.yf6{bottom:83.040000pt;}
.y1ac{bottom:83.933333pt;}
.y14f{bottom:84.066667pt;}
.yd2{bottom:85.533333pt;}
.yd6{bottom:85.573333pt;}
.yd0{bottom:85.600000pt;}
.yd4{bottom:85.626667pt;}
.y1b9{bottom:86.053333pt;}
.yf1{bottom:86.240000pt;}
.y129{bottom:86.533333pt;}
.y1a7{bottom:86.786667pt;}
.y1a5{bottom:86.853333pt;}
.y1a9{bottom:86.880000pt;}
.y1a3{bottom:86.946667pt;}
.yde{bottom:87.706667pt;}
.y80{bottom:89.533333pt;}
.y7c{bottom:89.573333pt;}
.y82{bottom:89.600000pt;}
.y7e{bottom:89.626667pt;}
.y13e{bottom:90.813333pt;}
.yab{bottom:91.866667pt;}
.y1e3{bottom:92.666667pt;}
.yc5{bottom:93.093333pt;}
.y87{bottom:93.853333pt;}
.y166{bottom:94.493333pt;}
.y1b4{bottom:95.266667pt;}
.ya3{bottom:97.626667pt;}
.ya1{bottom:97.733333pt;}
.yf7{bottom:99.680000pt;}
.y113{bottom:101.146667pt;}
.y10a{bottom:102.906667pt;}
.y28{bottom:104.032000pt;}
.y19b{bottom:106.693333pt;}
.y88{bottom:106.786667pt;}
.y6f{bottom:106.813333pt;}
.y199{bottom:107.712000pt;}
.yf0{bottom:107.746667pt;}
.yee{bottom:107.813333pt;}
.yec{bottom:107.866667pt;}
.y150{bottom:108.186667pt;}
.y1bf{bottom:109.946667pt;}
.y1b8{bottom:110.173333pt;}
.y1e1{bottom:112.192000pt;}
.y191{bottom:114.746667pt;}
.y18c{bottom:114.786667pt;}
.y18f{bottom:114.813333pt;}
.y18e{bottom:114.880000pt;}
.y12a{bottom:115.266667pt;}
.ydf{bottom:116.026667pt;}
.yf8{bottom:116.320000pt;}
.y180{bottom:117.346667pt;}
.yba{bottom:119.066667pt;}
.yb6{bottom:119.200000pt;}
.yb8{bottom:119.226667pt;}
.y89{bottom:119.680000pt;}
.y160{bottom:119.840000pt;}
.y171{bottom:120.186667pt;}
.y13f{bottom:121.760000pt;}
.y1ad{bottom:121.786667pt;}
.y27{bottom:122.432000pt;}
.y14c{bottom:122.946667pt;}
.y109{bottom:125.306667pt;}
.yac{bottom:125.920000pt;}
.y1e4{bottom:127.453333pt;}
.y137{bottom:127.520000pt;}
.y11f{bottom:128.133333pt;}
.y167{bottom:129.053333pt;}
.y1e0{bottom:130.592000pt;}
.yc6{bottom:131.173333pt;}
.y70{bottom:131.333333pt;}
.y151{bottom:132.293333pt;}
.y8a{bottom:132.573333pt;}
.y53{bottom:132.672000pt;}
.yf9{bottom:132.960000pt;}
.y1b7{bottom:134.266667pt;}
.y198{bottom:140.026667pt;}
.y26{bottom:140.826667pt;}
.y15f{bottom:143.973333pt;}
.y12b{bottom:144.026667pt;}
.y170{bottom:144.320000pt;}
.ye0{bottom:144.346667pt;}
.y114{bottom:144.453333pt;}
.y8b{bottom:145.466667pt;}
.y14b{bottom:147.066667pt;}
.yda{bottom:147.386667pt;}
.y1df{bottom:148.986667pt;}
.yfa{bottom:149.573333pt;}
.y52{bottom:151.066667pt;}
.y136{bottom:151.613333pt;}
.y181{bottom:151.933333pt;}
.y11e{bottom:152.226667pt;}
.y140{bottom:152.706667pt;}
.y19c{bottom:153.506667pt;}
.y1cc{bottom:154.720000pt;}
.y1f2{bottom:154.813333pt;}
.y71{bottom:155.840000pt;}
.y152{bottom:156.413333pt;}
.y6b{bottom:157.466667pt;}
.y8c{bottom:158.373333pt;}
.y1b6{bottom:158.400000pt;}
.y25{bottom:159.226667pt;}
.y1ae{bottom:159.613333pt;}
.yad{bottom:159.973333pt;}
.y1c0{bottom:162.146667pt;}
.y1e5{bottom:162.240000pt;}
.y168{bottom:163.586667pt;}
.yfb{bottom:166.213333pt;}
.y1de{bottom:167.386667pt;}
.y15e{bottom:168.093333pt;}
.y16f{bottom:168.413333pt;}
.yc7{bottom:169.253333pt;}
.y51{bottom:169.466667pt;}
.y14a{bottom:171.173333pt;}
.y8d{bottom:171.266667pt;}
.ye1{bottom:172.706667pt;}
.y12c{bottom:172.773333pt;}
.y135{bottom:175.746667pt;}
.y11d{bottom:176.346667pt;}
.y24{bottom:177.626667pt;}
.y1cb{bottom:178.813333pt;}
.y1f1{bottom:178.946667pt;}
.y72{bottom:180.346667pt;}
.y153{bottom:180.506667pt;}
.y13b{bottom:181.306667pt;}
.yfc{bottom:182.853333pt;}
.y141{bottom:183.613333pt;}
.y8e{bottom:184.186667pt;}
.y1dd{bottom:185.786667pt;}
.y182{bottom:186.560000pt;}
.y115{bottom:187.746667pt;}
.y50{bottom:187.866667pt;}
.y197{bottom:189.786667pt;}
.y15d{bottom:192.186667pt;}
.y16e{bottom:192.546667pt;}
.yd9{bottom:193.946667pt;}
.yae{bottom:194.013333pt;}
.y149{bottom:195.293333pt;}
.y23{bottom:196.026667pt;}
.yf2{bottom:196.160000pt;}
.y1e6{bottom:197.053333pt;}
.y8f{bottom:197.093333pt;}
.y1af{bottom:197.466667pt;}
.y169{bottom:198.146667pt;}
.yfd{bottom:199.493333pt;}
.y134{bottom:199.866667pt;}
.y19d{bottom:200.293333pt;}
.y11c{bottom:200.480000pt;}
.ye2{bottom:201.026667pt;}
.y12d{bottom:201.506667pt;}
.y1ca{bottom:202.946667pt;}
.y1f0{bottom:203.066667pt;}
.y6a{bottom:204.026667pt;}
.y1dc{bottom:204.186667pt;}
.y154{bottom:204.640000pt;}
.y73{bottom:204.866667pt;}
.y83{bottom:205.120000pt;}
.y4f{bottom:206.266667pt;}
.yc8{bottom:207.333333pt;}
.y108{bottom:208.320000pt;}
.y90{bottom:209.986667pt;}
.y1c1{bottom:214.333333pt;}
.y22{bottom:214.426667pt;}
.y142{bottom:214.560000pt;}
.yfe{bottom:216.133333pt;}
.y183{bottom:221.146667pt;}
.y1db{bottom:222.586667pt;}
.y91{bottom:222.880000pt;}
.y4e{bottom:224.666667pt;}
.y196{bottom:226.746667pt;}
.y1c9{bottom:227.040000pt;}
.y1ef{bottom:227.173333pt;}
.y13a{bottom:227.866667pt;}
.yaf{bottom:228.066667pt;}
.y155{bottom:228.773333pt;}
.y74{bottom:229.373333pt;}
.y12e{bottom:230.240000pt;}
.y14d{bottom:230.400000pt;}
.y116{bottom:231.040000pt;}
.y1e7{bottom:231.840000pt;}
.y104{bottom:232.066667pt;}
.y16a{bottom:232.666667pt;}
.yff{bottom:232.773333pt;}
.y21{bottom:232.826667pt;}
.y1b0{bottom:235.333333pt;}
.y92{bottom:235.773333pt;}
.ye7{bottom:240.346667pt;}
.y1da{bottom:240.986667pt;}
.y4d{bottom:243.066667pt;}
.yc9{bottom:245.440000pt;}
.y143{bottom:245.466667pt;}
.y19e{bottom:247.106667pt;}
.y93{bottom:248.706667pt;}
.y100{bottom:249.413333pt;}
.y20{bottom:251.226667pt;}
.y156{bottom:252.866667pt;}
.y75{bottom:253.853333pt;}
.y184{bottom:255.746667pt;}
.ye3{bottom:257.693333pt;}
.y12f{bottom:258.973333pt;}
.y1d9{bottom:259.386667pt;}
.y4c{bottom:261.466667pt;}
.y94{bottom:261.600000pt;}
.yb0{bottom:262.106667pt;}
.y101{bottom:266.013333pt;}
.y1c2{bottom:266.533333pt;}
.y1e8{bottom:266.626667pt;}
.y16b{bottom:267.226667pt;}
.y1f{bottom:269.626667pt;}
.y164{bottom:270.106667pt;}
.y195{bottom:273.306667pt;}
.y117{bottom:274.333333pt;}
.y95{bottom:274.493333pt;}
.y1aa{bottom:275.200000pt;}
.y144{bottom:276.413333pt;}
.y157{bottom:276.986667pt;}
.y1d8{bottom:277.786667pt;}
.y76{bottom:278.373333pt;}
.y4b{bottom:279.866667pt;}
.y102{bottom:282.653333pt;}
.yca{bottom:283.520000pt;}
.ye4{bottom:286.013333pt;}
.y96{bottom:287.386667pt;}
.y130{bottom:287.706667pt;}
.y185{bottom:290.333333pt;}
.y19f{bottom:293.893333pt;}
.yb1{bottom:296.160000pt;}
.y1d7{bottom:296.226667pt;}
.y4a{bottom:298.306667pt;}
.y1e{bottom:298.466667pt;}
.y103{bottom:299.293333pt;}
.y105{bottom:299.680000pt;}
.y97{bottom:300.293333pt;}
.y158{bottom:301.093333pt;}
.y1e9{bottom:301.413333pt;}
.y1b2{bottom:301.600000pt;}
.y16c{bottom:301.760000pt;}
.y163{bottom:307.106667pt;}
.y145{bottom:307.333333pt;}
.y98{bottom:313.186667pt;}
.ye5{bottom:314.373333pt;}
.y1d6{bottom:314.626667pt;}
.y131{bottom:316.453333pt;}
.y49{bottom:316.706667pt;}
.y118{bottom:317.600000pt;}
.y1c3{bottom:318.720000pt;}
.y186{bottom:324.960000pt;}
.y99{bottom:326.106667pt;}
.y1d{bottom:330.306667pt;}
.y1d5{bottom:333.026667pt;}
.y48{bottom:335.106667pt;}
.y1ea{bottom:336.226667pt;}
.y15a{bottom:337.600000pt;}
.y9a{bottom:339.013333pt;}
.ye6{bottom:342.693333pt;}
.y9b{bottom:351.906667pt;}
.y162{bottom:353.506667pt;}
.y165{bottom:355.360000pt;}
.y106{bottom:360.640000pt;}
.y1c{bottom:361.666667pt;}
.y1d4{bottom:364.226667pt;}
.y47{bottom:366.466667pt;}
.y9d{bottom:368.800000pt;}
.y1c4{bottom:370.906667pt;}
.y1eb{bottom:371.013333pt;}
.ya5{bottom:372.000000pt;}
.y17b{bottom:373.026667pt;}
.y67{bottom:384.546667pt;}
.ya9{bottom:391.906667pt;}
.y1b{bottom:393.826667pt;}
.y1d3{bottom:396.386667pt;}
.y46{bottom:398.466667pt;}
.ya4{bottom:399.520000pt;}
.y1bc{bottom:402.626667pt;}
.y17a{bottom:405.026667pt;}
.y1a{bottom:412.386667pt;}
.y1d2{bottom:414.946667pt;}
.y45{bottom:417.026667pt;}
.y179{bottom:423.586667pt;}
.ya2{bottom:427.200000pt;}
.y19{bottom:430.786667pt;}
.y1d1{bottom:433.346667pt;}
.y66{bottom:434.946667pt;}
.y44{bottom:435.426667pt;}
.y16d{bottom:436.800000pt;}
.y126{bottom:438.146667pt;}
.y110{bottom:438.306667pt;}
.ya8{bottom:441.826667pt;}
.y178{bottom:441.986667pt;}
.y200{bottom:446.786667pt;}
.y18{bottom:449.186667pt;}
.y65{bottom:450.146667pt;}
.y1bd{bottom:451.840000pt;}
.y1d0{bottom:452.386667pt;}
.y43{bottom:453.826667pt;}
.ya0{bottom:454.720000pt;}
.y177{bottom:460.386667pt;}
.y17{bottom:467.586667pt;}
.y64{bottom:469.346667pt;}
.y125{bottom:470.306667pt;}
.y1cf{bottom:470.946667pt;}
.y42{bottom:472.226667pt;}
.yc2{bottom:476.226667pt;}
.y176{bottom:478.786667pt;}
.y10f{bottom:484.866667pt;}
.y16{bottom:485.986667pt;}
.y111{bottom:486.720000pt;}
.y63{bottom:488.386667pt;}
.y124{bottom:488.866667pt;}
.yaa{bottom:489.760000pt;}
.y41{bottom:490.626667pt;}
.y1ff{bottom:496.866667pt;}
.y175{bottom:497.186667pt;}
.y15{bottom:504.386667pt;}
.y123{bottom:507.293333pt;}
.y62{bottom:507.453333pt;}
.yc1{bottom:508.253333pt;}
.y40{bottom:509.053333pt;}
.y174{bottom:515.613333pt;}
.y1ce{bottom:521.213333pt;}
.y14{bottom:522.813333pt;}
.y122{bottom:525.693333pt;}
.y5f{bottom:526.493333pt;}
.yc0{bottom:526.813333pt;}
.y3f{bottom:527.453333pt;}
.y1fe{bottom:528.253333pt;}
.y13{bottom:541.213333pt;}
.y1fd{bottom:544.413333pt;}
.ybf{bottom:545.213333pt;}
.y3e{bottom:545.853333pt;}
.ybb{bottom:546.240000pt;}
.yd8{bottom:549.693333pt;}
.y12{bottom:559.613333pt;}
.y194{bottom:562.493333pt;}
.ybe{bottom:563.613333pt;}
.y3d{bottom:564.253333pt;}
.y173{bottom:565.213333pt;}
.y1cd{bottom:567.933333pt;}
.y1e2{bottom:570.400000pt;}
.y121{bottom:575.293333pt;}
.y1fc{bottom:576.093333pt;}
.y11{bottom:578.013333pt;}
.yb9{bottom:579.200000pt;}
.y3c{bottom:582.653333pt;}
.y139{bottom:585.373333pt;}
.yd7{bottom:595.933333pt;}
.y10{bottom:596.413333pt;}
.ydb{bottom:598.720000pt;}
.y193{bottom:599.453333pt;}
.y3b{bottom:601.053333pt;}
.y11a{bottom:601.120000pt;}
.yb2{bottom:601.920000pt;}
.y5e{bottom:604.413333pt;}
.yef{bottom:607.360000pt;}
.y1fb{bottom:607.773333pt;}
.y172{bottom:611.933333pt;}
.yb7{bottom:612.000000pt;}
.ybd{bottom:613.373333pt;}
.y17c{bottom:613.920000pt;}
.yf{bottom:614.813333pt;}
.y69{bottom:615.293333pt;}
.y3a{bottom:619.453333pt;}
.y1c6{bottom:620.480000pt;}
.y120{bottom:622.013333pt;}
.y127{bottom:624.960000pt;}
.y1fa{bottom:626.333333pt;}
.y138{bottom:631.933333pt;}
.ye{bottom:633.213333pt;}
.y13c{bottom:634.080000pt;}
.yed{bottom:637.440000pt;}
.y39{bottom:637.853333pt;}
.y5d{bottom:641.533333pt;}
.yb5{bottom:644.960000pt;}
.y192{bottom:646.013333pt;}
.y19a{bottom:647.520000pt;}
.yd{bottom:651.613333pt;}
.y38{bottom:656.253333pt;}
.y5c{bottom:656.573333pt;}
.y1f9{bottom:657.853333pt;}
.ybc{bottom:659.933333pt;}
.y68{bottom:662.013333pt;}
.yc3{bottom:662.080000pt;}
.y6c{bottom:663.040000pt;}
.yeb{bottom:667.520000pt;}
.yc{bottom:670.013333pt;}
.y37{bottom:674.653333pt;}
.y1f8{bottom:676.413333pt;}
.y188{bottom:683.680000pt;}
.yb{bottom:688.413333pt;}
.y1a0{bottom:692.160000pt;}
.y36{bottom:693.053333pt;}
.y5b{bottom:695.933333pt;}
.y190{bottom:706.880000pt;}
.y1f7{bottom:708.093333pt;}
.y161{bottom:710.973333pt;}
.y35{bottom:711.453333pt;}
.ya{bottom:719.613333pt;}
.y147{bottom:725.600000pt;}
.y1f6{bottom:726.693333pt;}
.y34{bottom:729.893333pt;}
.ye8{bottom:730.720000pt;}
.y5a{bottom:733.413333pt;}
.y133{bottom:738.720000pt;}
.y1ed{bottom:739.200000pt;}
.y9{bottom:749.253333pt;}
.y1f5{bottom:758.213333pt;}
.y1a8{bottom:761.280000pt;}
.y33{bottom:761.413333pt;}
.y81{bottom:765.920000pt;}
.ycc{bottom:766.400000pt;}
.yd5{bottom:767.360000pt;}
.y8{bottom:767.653333pt;}
.y78{bottom:767.680000pt;}
.y18d{bottom:770.560000pt;}
.y58{bottom:772.773333pt;}
.y1f4{bottom:776.773333pt;}
.y32{bottom:779.973333pt;}
.y7{bottom:786.053333pt;}
.y1a6{bottom:786.240000pt;}
.y7f{bottom:791.520000pt;}
.yd3{bottom:791.840000pt;}
.y31{bottom:798.373333pt;}
.y18b{bottom:802.560000pt;}
.y6{bottom:804.453333pt;}
.y1f3{bottom:808.293333pt;}
.y1a4{bottom:811.040000pt;}
.y55{bottom:812.133333pt;}
.yd1{bottom:816.480000pt;}
.y30{bottom:816.773333pt;}
.y7d{bottom:816.960000pt;}
.y2f{bottom:835.173333pt;}
.y1a2{bottom:835.840000pt;}
.y5{bottom:835.973333pt;}
.ya7{bottom:839.813333pt;}
.ycf{bottom:840.960000pt;}
.y7b{bottom:842.560000pt;}
.y2e{bottom:853.573333pt;}
.y10e{bottom:858.213333pt;}
.y4{bottom:867.653333pt;}
.ya6{bottom:871.813333pt;}
.y2d{bottom:871.973333pt;}
.y1bb{bottom:876.613333pt;}
.y54{bottom:890.053333pt;}
.y10d{bottom:890.213333pt;}
.y2c{bottom:890.373333pt;}
.y3{bottom:899.813333pt;}
.y1ba{bottom:908.613333pt;}
.y2b{bottom:908.773333pt;}
.y2{bottom:921.253333pt;}
.y2a{bottom:927.173333pt;}
.y1{bottom:942.693333pt;}
.y29{bottom:945.573333pt;}
.hb{height:18.400000pt;}
.hc{height:18.432000pt;}
.h15{height:21.600000pt;}
.h4a{height:22.400000pt;}
.h51{height:23.200000pt;}
.h1c{height:32.160000pt;}
.h10{height:34.880000pt;}
.h2b{height:35.040000pt;}
.h9{height:36.832000pt;}
.h37{height:36.960000pt;}
.h3e{height:37.120000pt;}
.h8{height:38.720000pt;}
.h11{height:42.693125pt;}
.he{height:42.745000pt;}
.h59{height:44.805000pt;}
.h28{height:46.560000pt;}
.ha{height:55.200000pt;}
.h3{height:62.812500pt;}
.h24{height:63.520000pt;}
.h5{height:64.500000pt;}
.h38{height:64.629000pt;}
.h4{height:65.781915pt;}
.h6{height:66.625000pt;}
.h2{height:71.524375pt;}
.h56{height:72.655000pt;}
.h7{height:73.600000pt;}
.h1{height:75.465000pt;}
.h27{height:81.120000pt;}
.h1d{height:98.240000pt;}
.h55{height:98.720000pt;}
.h21{height:98.880000pt;}
.h58{height:99.040000pt;}
.h4e{height:99.520000pt;}
.h12{height:102.240000pt;}
.h16{height:110.400000pt;}
.h14{height:111.360000pt;}
.hf{height:114.880000pt;}
.h26{height:115.680000pt;}
.h1f{height:117.440000pt;}
.h20{height:120.480000pt;}
.h54{height:122.880000pt;}
.h4b{height:127.520000pt;}
.h19{height:131.840000pt;}
.h42{height:132.640000pt;}
.h48{height:132.960000pt;}
.h23{height:133.120000pt;}
.h3c{height:135.680000pt;}
.h18{height:137.280000pt;}
.h1b{height:137.440000pt;}
.h25{height:138.080000pt;}
.h34{height:140.160000pt;}
.h2f{height:140.800000pt;}
.h53{height:147.040000pt;}
.h2a{height:154.400000pt;}
.h41{height:156.640000pt;}
.h47{height:156.960000pt;}
.h3b{height:159.680000pt;}
.h33{height:164.320000pt;}
.h2e{height:164.960000pt;}
.h5d{height:167.360000pt;}
.h60{height:167.520000pt;}
.h52{height:171.200000pt;}
.h40{height:180.800000pt;}
.h46{height:181.120000pt;}
.h3a{height:183.840000pt;}
.h32{height:188.480000pt;}
.h2d{height:189.120000pt;}
.h5c{height:191.520000pt;}
.h36{height:191.680000pt;}
.h3f{height:204.960000pt;}
.h45{height:205.280000pt;}
.h44{height:206.560000pt;}
.h39{height:208.000000pt;}
.h31{height:212.480000pt;}
.h2c{height:213.120000pt;}
.h5b{height:215.680000pt;}
.h50{height:225.280000pt;}
.h5a{height:239.680000pt;}
.h5f{height:239.840000pt;}
.h4f{height:252.160000pt;}
.h4d{height:258.240000pt;}
.hd{height:296.960000pt;}
.h1a{height:297.920000pt;}
.h4c{height:312.480000pt;}
.h17{height:314.720000pt;}
.h22{height:317.920000pt;}
.h3d{height:319.680000pt;}
.h43{height:320.320000pt;}
.h35{height:325.920000pt;}
.h30{height:335.040000pt;}
.h29{height:336.160000pt;}
.h49{height:346.080000pt;}
.h1e{height:361.280000pt;}
.h13{height:375.040000pt;}
.h57{height:389.440000pt;}
.h5e{height:389.600000pt;}
.h0{height:1056.000000pt;}
.wc{width:30.240000pt;}
.w10{width:30.400000pt;}
.wa{width:30.720000pt;}
.w13{width:30.880000pt;}
.w1{width:39.680000pt;}
.w2{width:62.560000pt;}
.w6{width:89.312000pt;}
.w12{width:111.200000pt;}
.w15{width:112.160000pt;}
.we{width:116.640000pt;}
.w8{width:116.800000pt;}
.w3{width:116.832000pt;}
.wb{width:116.960000pt;}
.w24{width:120.640000pt;}
.wf{width:121.920000pt;}
.w9{width:122.080000pt;}
.w21{width:122.720000pt;}
.w1a{width:123.520000pt;}
.w1d{width:123.680000pt;}
.w18{width:124.800000pt;}
.w1e{width:124.960000pt;}
.w1b{width:137.440000pt;}
.w22{width:140.000000pt;}
.w1f{width:144.480000pt;}
.w16{width:148.000000pt;}
.w5{width:158.266667pt;}
.w4{width:160.826667pt;}
.w11{width:556.000000pt;}
.w14{width:560.960000pt;}
.wd{width:583.840000pt;}
.w7{width:584.000000pt;}
.w23{width:603.840000pt;}
.w20{width:613.920000pt;}
.w19{width:617.600000pt;}
.w1c{width:618.560000pt;}
.w17{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.360000pt;}
.x16{left:8.346667pt;}
.x32{left:9.373333pt;}
.x4b{left:14.624000pt;}
.x14{left:16.864000pt;}
.x23{left:25.600000pt;}
.x4f{left:29.920000pt;}
.x22{left:32.320000pt;}
.x46{left:35.266667pt;}
.x49{left:36.960000pt;}
.x11{left:39.173333pt;}
.x24{left:41.346667pt;}
.x2b{left:43.106667pt;}
.x10{left:45.893333pt;}
.x3b{left:48.160000pt;}
.x2a{left:49.853333pt;}
.x3c{left:51.453333pt;}
.xf{left:52.640000pt;}
.x1e{left:54.853333pt;}
.x2f{left:56.706667pt;}
.x2c{left:58.880000pt;}
.x1a{left:60.386667pt;}
.x12{left:61.666667pt;}
.x43{left:62.746667pt;}
.x30{left:65.733333pt;}
.x19{left:67.106667pt;}
.x42{left:72.933333pt;}
.x18{left:73.853333pt;}
.x4a{left:79.333333pt;}
.x44{left:81.946667pt;}
.x1b{left:82.880000pt;}
.x4e{left:84.032000pt;}
.x7{left:88.672000pt;}
.x50{left:89.952000pt;}
.x4{left:96.032000pt;}
.x25{left:97.120000pt;}
.x13{left:102.720000pt;}
.x1c{left:104.640000pt;}
.x45{left:105.760000pt;}
.x1{left:107.392000pt;}
.x1f{left:110.720000pt;}
.x3d{left:118.880000pt;}
.x5{left:120.032000pt;}
.x9{left:128.992000pt;}
.x2{left:138.906667pt;}
.x6{left:144.026667pt;}
.xa{left:192.346667pt;}
.x3{left:253.506667pt;}
.x3e{left:296.800000pt;}
.x2d{left:302.240000pt;}
.x1d{left:307.360000pt;}
.xb{left:309.986667pt;}
.x20{left:314.080000pt;}
.x15{left:317.440000pt;}
.x31{left:318.880000pt;}
.x3a{left:323.680000pt;}
.x47{left:324.800000pt;}
.x40{left:326.240000pt;}
.x39{left:331.520000pt;}
.x37{left:332.960000pt;}
.x26{left:335.360000pt;}
.xc{left:471.453333pt;}
.x2e{left:605.600000pt;}
.x33{left:615.200000pt;}
.x17{left:629.280000pt;}
.xd{left:630.373333pt;}
.x27{left:632.160000pt;}
.x21{left:635.520000pt;}
.x28{left:654.053333pt;}
.x29{left:658.053333pt;}
.x4d{left:664.320000pt;}
.x3f{left:673.920000pt;}
.x38{left:678.080000pt;}
.xe{left:682.053333pt;}
.x35{left:683.840000pt;}
.x41{left:686.240000pt;}
.x4c{left:702.080000pt;}
.x48{left:712.160000pt;}
.x36{left:716.160000pt;}
.x34{left:722.080000pt;}
}




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