
    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_99d69117aca09eafdf9b0803.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945801;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_cf716c07a8f75e776e7a19d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_c2059b19d2288f0519765a82.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_e47c9b8701a5c689d5e31dae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_54933a81d6b64d12db65b954.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f6ebb3924cdc6c8c5ac44a1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_24a43b2f78eb902bb99794e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_68e7c23d10f9a35a65d6913f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d03f15f334cebcd26fd3d900.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_99fc180b4882daa1e0d0c1af.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.955078;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-79.920000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.828000px;}
.ls2b{letter-spacing:-0.738000px;}
.ls9{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.450600px;}
.ls1b{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.303600px;}
.ls2e{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.132600px;}
.ls2c{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls27{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls2d{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.121200px;}
.lsc{letter-spacing:0.131040px;}
.ls1{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.223800px;}
.ls16{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.276480px;}
.ls20{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.468000px;}
.ls14{letter-spacing:0.924000px;}
.ls13{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.233360px;}
.ls28{letter-spacing:2.340000px;}
.ls1e{letter-spacing:3.060000px;}
.ls24{letter-spacing:3.780000px;}
.ls25{letter-spacing:4.500000px;}
.ls26{letter-spacing:4.680000px;}
.ls5{letter-spacing:8.100000px;}
.lse{letter-spacing:8.586720px;}
.ls11{letter-spacing:8.706720px;}
.ls1d{letter-spacing:9.540000px;}
.ls22{letter-spacing:13.860000px;}
.ls21{letter-spacing:15.066720px;}
.ls1c{letter-spacing:44.562720px;}
.ls18{letter-spacing:87.996000px;}
.ls2{letter-spacing:308.316000px;}
.ls12{letter-spacing:501.996000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws15{word-spacing:-16.085040px;}
.wse{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.864000px;}
.ws0{word-spacing:-15.831240px;}
.ws3{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.400000px;}
.ws19{word-spacing:-13.968000px;}
.ws1c{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.518000px;}
.ws10{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.140000px;}
.ws1a{word-spacing:-12.762000px;}
.ws14{word-spacing:-12.672000px;}
.ws6{word-spacing:-12.283800px;}
.ws5{word-spacing:-12.060000px;}
.ws1e{word-spacing:-11.790600px;}
.ws9{word-spacing:-11.625840px;}
.wsb{word-spacing:-10.064160px;}
.wsa{word-spacing:-9.760560px;}
.ws8{word-spacing:0.000000px;}
._23{margin-left:-4.310400px;}
._16{margin-left:-2.986560px;}
._1{margin-left:-1.116000px;}
._0{width:1.200000px;}
._4{width:2.623440px;}
._b{width:3.666240px;}
._a{width:4.734000px;}
._f{width:5.981760px;}
._c{width:7.091280px;}
._10{width:8.538480px;}
._19{width:9.583200px;}
._d{width:10.741680px;}
._1b{width:11.952000px;}
._1f{width:13.218240px;}
._e{width:14.436240px;}
._11{width:16.446480px;}
._1a{width:17.594640px;}
._13{width:18.740400px;}
._14{width:20.079360px;}
._17{width:21.150240px;}
._18{width:22.594080px;}
._1c{width:23.662080px;}
._6{width:25.326480px;}
._5{width:26.676720px;}
._9{width:28.226880px;}
._3{width:29.384640px;}
._2{width:30.535920px;}
._20{width:31.553520px;}
._2b{width:32.748480px;}
._29{width:33.943680px;}
._27{width:34.959600px;}
._24{width:36.095040px;}
._2a{width:37.345200px;}
._21{width:38.365920px;}
._22{width:39.620880px;}
._26{width:41.055120px;}
._25{width:42.429600px;}
._28{width:44.162640px;}
._1e{width:45.178560px;}
._8{width:46.656480px;}
._7{width:47.860560px;}
._15{width:49.780080px;}
._12{width:51.230880px;}
._2e{width:52.542000px;}
._34{width:53.586960px;}
._1d{width:54.919440px;}
._32{width:56.209920px;}
._2c{width:60.102000px;}
._2d{width:61.398000px;}
._31{width:63.774000px;}
._35{width:65.541840px;}
._36{width:68.066640px;}
._33{width:69.237600px;}
._30{width:70.308000px;}
._2f{width:107.784000px;}
.fc3{color:transparent;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsa{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y22b{bottom:0.180000px;}
.y18f{bottom:0.570000px;}
.ydf{bottom:2.880000px;}
.y152{bottom:3.060000px;}
.y1ce{bottom:3.495000px;}
.y6b{bottom:3.780000px;}
.y6e{bottom:4.320000px;}
.y1a4{bottom:5.250000px;}
.y6d{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y2{bottom:7.200000px;}
.y1cc{bottom:7.995000px;}
.y18c{bottom:8.175000px;}
.yfa{bottom:10.620000px;}
.y1d8{bottom:10.650000px;}
.y1d3{bottom:10.800000px;}
.y22c{bottom:12.060000px;}
.y3{bottom:12.240000px;}
.y18e{bottom:16.275000px;}
.yf8{bottom:18.360000px;}
.y1d9{bottom:18.390000px;}
.y1d0{bottom:18.435000px;}
.yea{bottom:18.540000px;}
.y1ca{bottom:18.615000px;}
.y1cd{bottom:19.155000px;}
.y1c7{bottom:19.725000px;}
.y1a3{bottom:20.910000px;}
.y164{bottom:22.860000px;}
.y156{bottom:26.100000px;}
.ye4{bottom:26.280000px;}
.y8{bottom:32.940000px;}
.yf7{bottom:33.840000px;}
.y155{bottom:33.885000px;}
.ye9{bottom:34.020000px;}
.y199{bottom:34.950000px;}
.y1a2{bottom:36.570000px;}
.y158{bottom:41.580000px;}
.ye3{bottom:41.760000px;}
.y6{bottom:48.600000px;}
.y222{bottom:49.320000px;}
.ye8{bottom:49.500000px;}
.y15c{bottom:49.530000px;}
.y198{bottom:50.430000px;}
.ye2{bottom:57.240000px;}
.ye7{bottom:64.980000px;}
.y15d{bottom:65.010000px;}
.y197{bottom:65.910000px;}
.y1a0{bottom:67.530000px;}
.ye1{bottom:72.720000px;}
.y5{bottom:72.900000px;}
.yf6{bottom:80.460000px;}
.yfe{bottom:80.490000px;}
.ye6{bottom:80.640000px;}
.y196{bottom:81.390000px;}
.y19f{bottom:83.010000px;}
.yee{bottom:88.200000px;}
.y160{bottom:90.360000px;}
.y1f9{bottom:90.900000px;}
.y22e{bottom:91.260000px;}
.y22d{bottom:93.060000px;}
.yde{bottom:93.420000px;}
.y22a{bottom:94.500000px;}
.yf5{bottom:95.985000px;}
.ye5{bottom:96.120000px;}
.yfd{bottom:96.150000px;}
.y1c4{bottom:96.480000px;}
.y195{bottom:97.050000px;}
.y19e{bottom:98.670000px;}
.ya5{bottom:99.180000px;}
.y69{bottom:99.360000px;}
.y11b{bottom:100.620000px;}
.y4c{bottom:100.980000px;}
.yed{bottom:103.905000px;}
.y188{bottom:104.220000px;}
.y21d{bottom:105.480000px;}
.y15f{bottom:107.460000px;}
.y1f8{bottom:108.180000px;}
.y1ba{bottom:110.520000px;}
.ydd{bottom:110.700000px;}
.yfc{bottom:111.630000px;}
.yf4{bottom:111.645000px;}
.y194{bottom:112.530000px;}
.y1c3{bottom:113.760000px;}
.y19d{bottom:114.150000px;}
.y4b{bottom:114.840000px;}
.ya4{bottom:116.460000px;}
.y68{bottom:116.640000px;}
.y11a{bottom:117.900000px;}
.yec{bottom:119.385000px;}
.y187{bottom:121.500000px;}
.y21b{bottom:122.760000px;}
.y15e{bottom:124.740000px;}
.y1f7{bottom:125.460000px;}
.yf3{bottom:127.125000px;}
.y1b9{bottom:127.620000px;}
.ydc{bottom:127.980000px;}
.y193{bottom:128.010000px;}
.y4a{bottom:128.520000px;}
.y19c{bottom:129.630000px;}
.y229{bottom:130.500000px;}
.y1c2{bottom:130.860000px;}
.ya3{bottom:133.740000px;}
.y67{bottom:133.920000px;}
.y119{bottom:135.180000px;}
.y186{bottom:138.600000px;}
.y15b{bottom:139.500000px;}
.y21a{bottom:140.040000px;}
.y49{bottom:142.380000px;}
.yf2{bottom:142.605000px;}
.y1f6{bottom:142.740000px;}
.y192{bottom:143.490000px;}
.y19b{bottom:145.110000px;}
.ydb{bottom:145.260000px;}
.y1b8{bottom:145.980000px;}
.y228{bottom:147.780000px;}
.y1c1{bottom:148.140000px;}
.y1ee{bottom:150.840000px;}
.ya2{bottom:151.020000px;}
.y66{bottom:151.200000px;}
.y118{bottom:152.280000px;}
.y185{bottom:155.160000px;}
.y48{bottom:156.240000px;}
.y219{bottom:157.140000px;}
.yf1{bottom:158.085000px;}
.y1f5{bottom:159.840000px;}
.yda{bottom:162.540000px;}
.y1b7{bottom:163.260000px;}
.y227{bottom:164.880000px;}
.y1c0{bottom:165.420000px;}
.y1ed{bottom:168.120000px;}
.ya1{bottom:168.300000px;}
.y65{bottom:168.480000px;}
.y117{bottom:169.560000px;}
.y184{bottom:169.740000px;}
.y47{bottom:169.920000px;}
.yf0{bottom:173.745000px;}
.y218{bottom:174.420000px;}
.y1f4{bottom:177.120000px;}
.yd9{bottom:179.640000px;}
.y1b6{bottom:180.540000px;}
.y226{bottom:182.160000px;}
.y1bf{bottom:182.700000px;}
.y46{bottom:183.810000px;}
.y1ec{bottom:185.430000px;}
.y64{bottom:185.610000px;}
.y116{bottom:186.870000px;}
.y183{bottom:187.050000px;}
.yef{bottom:189.225000px;}
.y217{bottom:191.730000px;}
.y1f3{bottom:194.430000px;}
.y225{bottom:196.230000px;}
.yd8{bottom:196.950000px;}
.y45{bottom:197.670000px;}
.y1b5{bottom:198.930000px;}
.y1be{bottom:200.010000px;}
.y182{bottom:201.090000px;}
.ya0{bottom:202.710000px;}
.y63{bottom:202.890000px;}
.y115{bottom:204.150000px;}
.y216{bottom:209.010000px;}
.y44{bottom:211.350000px;}
.y1f2{bottom:211.710000px;}
.yd7{bottom:214.230000px;}
.y1b4{bottom:216.030000px;}
.y1bd{bottom:217.110000px;}
.y15a{bottom:218.010000px;}
.y9f{bottom:219.990000px;}
.y62{bottom:220.170000px;}
.y114{bottom:221.430000px;}
.y43{bottom:225.210000px;}
.y191{bottom:225.900000px;}
.y215{bottom:226.290000px;}
.y1f1{bottom:228.990000px;}
.yd6{bottom:231.510000px;}
.y1b3{bottom:233.310000px;}
.y1bc{bottom:234.390000px;}
.y9e{bottom:237.270000px;}
.y61{bottom:237.450000px;}
.y113{bottom:238.710000px;}
.y42{bottom:239.070000px;}
.y214{bottom:243.570000px;}
.y19a{bottom:245.370000px;}
.y1f0{bottom:246.270000px;}
.yd5{bottom:248.790000px;}
.y1b2{bottom:250.590000px;}
.y1bb{bottom:251.670000px;}
.y41{bottom:252.750000px;}
.y9d{bottom:254.550000px;}
.y60{bottom:254.730000px;}
.y112{bottom:255.810000px;}
.y224{bottom:258.330000px;}
.y1eb{bottom:258.870000px;}
.y213{bottom:260.670000px;}
.y1ef{bottom:263.370000px;}
.y159{bottom:265.170000px;}
.yd4{bottom:266.070000px;}
.y40{bottom:266.610000px;}
.y1b1{bottom:268.950000px;}
.y9c{bottom:271.830000px;}
.y5f{bottom:272.010000px;}
.y111{bottom:273.090000px;}
.y223{bottom:273.810000px;}
.y1a1{bottom:277.950000px;}
.y3f{bottom:280.470000px;}
.y1ea{bottom:280.650000px;}
.yd3{bottom:283.170000px;}
.y1b0{bottom:286.230000px;}
.y9b{bottom:288.930000px;}
.y5e{bottom:289.110000px;}
.y221{bottom:289.470000px;}
.y110{bottom:290.370000px;}
.y3e{bottom:294.150000px;}
.y212{bottom:295.230000px;}
.y1e9{bottom:297.930000px;}
.yd2{bottom:300.450000px;}
.y1af{bottom:303.510000px;}
.y9a{bottom:306.210000px;}
.y5d{bottom:306.390000px;}
.y10f{bottom:307.650000px;}
.y3d{bottom:308.010000px;}
.y211{bottom:312.510000px;}
.y1e8{bottom:315.210000px;}
.yd1{bottom:317.730000px;}
.y1ae{bottom:320.610000px;}
.y3c{bottom:321.870000px;}
.y99{bottom:323.490000px;}
.y5c{bottom:323.670000px;}
.y10e{bottom:324.930000px;}
.y157{bottom:328.170000px;}
.y1e7{bottom:332.490000px;}
.yd0{bottom:335.010000px;}
.y3b{bottom:335.550000px;}
.y1ad{bottom:337.890000px;}
.y98{bottom:340.770000px;}
.y5b{bottom:340.950000px;}
.y10d{bottom:342.030000px;}
.y3a{bottom:349.410000px;}
.y1e6{bottom:349.770000px;}
.y21c{bottom:349.950000px;}
.y189{bottom:350.670000px;}
.y220{bottom:351.390000px;}
.ycf{bottom:352.290000px;}
.y1ac{bottom:356.250000px;}
.y97{bottom:358.050000px;}
.y5a{bottom:358.230000px;}
.y10c{bottom:359.310000px;}
.y39{bottom:363.270000px;}
.y1e5{bottom:366.870000px;}
.y210{bottom:367.230000px;}
.yce{bottom:369.570000px;}
.y21f{bottom:370.290000px;}
.y1ab{bottom:373.530000px;}
.y18a{bottom:374.790000px;}
.y59{bottom:375.330000px;}
.y10b{bottom:376.590000px;}
.y38{bottom:376.950000px;}
.y1e4{bottom:384.150000px;}
.ycd{bottom:386.670000px;}
.y21e{bottom:387.570000px;}
.y37{bottom:390.810000px;}
.y154{bottom:390.990000px;}
.y96{bottom:392.430000px;}
.y58{bottom:392.610000px;}
.y10a{bottom:393.870000px;}
.y1e3{bottom:401.430000px;}
.ycc{bottom:403.950000px;}
.y36{bottom:404.670000px;}
.y1aa{bottom:408.090000px;}
.y95{bottom:409.710000px;}
.y57{bottom:409.890000px;}
.y109{bottom:411.150000px;}
.y35{bottom:418.350000px;}
.y1e2{bottom:418.710000px;}
.ycb{bottom:421.230000px;}
.y20f{bottom:421.950000px;}
.y190{bottom:423.900000px;}
.y18d{bottom:424.080000px;}
.y1a9{bottom:425.235000px;}
.y94{bottom:427.035000px;}
.y56{bottom:427.215000px;}
.y108{bottom:428.475000px;}
.y34{bottom:432.255000px;}
.y1e1{bottom:436.035000px;}
.y153{bottom:438.375000px;}
.yca{bottom:438.555000px;}
.y20e{bottom:439.275000px;}
.y93{bottom:444.315000px;}
.y55{bottom:444.495000px;}
.y107{bottom:445.575000px;}
.y33{bottom:446.115000px;}
.y1e0{bottom:453.135000px;}
.y1a8{bottom:454.215000px;}
.yc9{bottom:455.835000px;}
.y20d{bottom:456.555000px;}
.y32{bottom:459.795000px;}
.y92{bottom:461.595000px;}
.y54{bottom:461.775000px;}
.y106{bottom:462.855000px;}
.y1df{bottom:470.415000px;}
.yc8{bottom:472.935000px;}
.y31{bottom:473.655000px;}
.y20c{bottom:473.835000px;}
.y1cb{bottom:474.480000px;}
.y53{bottom:478.875000px;}
.y105{bottom:480.135000px;}
.y151{bottom:485.535000px;}
.y30{bottom:487.515000px;}
.y1de{bottom:487.695000px;}
.yc7{bottom:490.215000px;}
.y20b{bottom:490.935000px;}
.y91{bottom:495.975000px;}
.y52{bottom:496.155000px;}
.y104{bottom:497.415000px;}
.y2f{bottom:501.195000px;}
.y1dd{bottom:504.975000px;}
.y18b{bottom:506.160000px;}
.yc6{bottom:507.495000px;}
.y20a{bottom:508.215000px;}
.y90{bottom:513.255000px;}
.y51{bottom:513.435000px;}
.y103{bottom:514.695000px;}
.y2e{bottom:515.055000px;}
.y1dc{bottom:519.735000px;}
.yc5{bottom:524.775000px;}
.y209{bottom:525.495000px;}
.y2d{bottom:528.915000px;}
.y8f{bottom:530.535000px;}
.y50{bottom:530.715000px;}
.y102{bottom:531.975000px;}
.y150{bottom:537.375000px;}
.yc4{bottom:542.055000px;}
.y2c{bottom:542.595000px;}
.y208{bottom:542.775000px;}
.y181{bottom:546.375000px;}
.y1c9{bottom:547.740000px;}
.y8e{bottom:547.815000px;}
.y4f{bottom:547.995000px;}
.y101{bottom:549.075000px;}
.y12f{bottom:554.655000px;}
.y2b{bottom:556.455000px;}
.yc3{bottom:559.335000px;}
.y207{bottom:560.055000px;}
.y180{bottom:563.655000px;}
.y8d{bottom:565.095000px;}
.y4e{bottom:565.275000px;}
.y100{bottom:566.355000px;}
.y1db{bottom:567.075000px;}
.y2a{bottom:570.315000px;}
.y12e{bottom:571.935000px;}
.y14f{bottom:573.015000px;}
.yc2{bottom:576.435000px;}
.y206{bottom:577.335000px;}
.y17f{bottom:580.935000px;}
.y8c{bottom:582.195000px;}
.y4d{bottom:582.375000px;}
.yff{bottom:583.635000px;}
.y29{bottom:583.995000px;}
.y12d{bottom:589.215000px;}
.y14e{bottom:590.295000px;}
.yc1{bottom:593.715000px;}
.y205{bottom:594.435000px;}
.y17e{bottom:598.035000px;}
.yfb{bottom:598.395000px;}
.y8b{bottom:599.475000px;}
.y28{bottom:599.655000px;}
.y12c{bottom:606.315000px;}
.y6a{bottom:607.395000px;}
.yc0{bottom:610.995000px;}
.y204{bottom:611.715000px;}
.y1da{bottom:614.415000px;}
.y17d{bottom:615.315000px;}
.y8a{bottom:616.755000px;}
.y27{bottom:616.935000px;}
.y12b{bottom:623.595000px;}
.y14d{bottom:624.675000px;}
.y1c5{bottom:625.395000px;}
.ybf{bottom:628.275000px;}
.y203{bottom:628.995000px;}
.y1cf{bottom:632.160000px;}
.y17c{bottom:632.595000px;}
.y89{bottom:634.035000px;}
.y26{bottom:634.215000px;}
.y12a{bottom:641.955000px;}
.ybe{bottom:645.555000px;}
.y202{bottom:646.275000px;}
.y1c8{bottom:647.715000px;}
.y17b{bottom:649.875000px;}
.y88{bottom:651.315000px;}
.y25{bottom:651.495000px;}
.y129{bottom:659.235000px;}
.y1d7{bottom:661.755000px;}
.ybd{bottom:662.835000px;}
.y201{bottom:663.555000px;}
.y24{bottom:667.005000px;}
.y17a{bottom:667.185000px;}
.y87{bottom:668.625000px;}
.y14c{bottom:676.545000px;}
.y23{bottom:677.265000px;}
.y128{bottom:677.625000px;}
.ybc{bottom:679.965000px;}
.y200{bottom:680.865000px;}
.y179{bottom:684.465000px;}
.y86{bottom:685.725000px;}
.y1d6{bottom:693.465000px;}
.y14b{bottom:693.645000px;}
.y22{bottom:694.545000px;}
.y127{bottom:694.725000px;}
.ybb{bottom:697.245000px;}
.y1ff{bottom:697.965000px;}
.y178{bottom:701.565000px;}
.y85{bottom:703.005000px;}
.y14a{bottom:710.925000px;}
.y21{bottom:711.825000px;}
.y126{bottom:712.005000px;}
.yba{bottom:714.525000px;}
.y1fe{bottom:715.245000px;}
.y177{bottom:718.845000px;}
.y84{bottom:720.285000px;}
.yf9{bottom:723.345000px;}
.y149{bottom:728.205000px;}
.y20{bottom:729.105000px;}
.y125{bottom:730.365000px;}
.y1fd{bottom:732.525000px;}
.y1c6{bottom:735.660000px;}
.y176{bottom:736.125000px;}
.yb9{bottom:736.305000px;}
.y83{bottom:737.565000px;}
.y1d5{bottom:740.805000px;}
.y148{bottom:745.485000px;}
.y1f{bottom:746.385000px;}
.y124{bottom:747.645000px;}
.y1fc{bottom:749.805000px;}
.y175{bottom:753.405000px;}
.y82{bottom:754.845000px;}
.yb8{bottom:758.085000px;}
.y147{bottom:762.765000px;}
.y1e{bottom:763.665000px;}
.y123{bottom:764.925000px;}
.y1fb{bottom:767.085000px;}
.y174{bottom:770.685000px;}
.y1d4{bottom:772.665000px;}
.yb7{bottom:775.365000px;}
.y81{bottom:776.445000px;}
.y146{bottom:780.045000px;}
.y1d{bottom:780.765000px;}
.y122{bottom:783.285000px;}
.y1fa{bottom:784.365000px;}
.y173{bottom:787.785000px;}
.y1a7{bottom:791.205000px;}
.yb6{bottom:792.465000px;}
.y145{bottom:797.145000px;}
.y1c{bottom:798.045000px;}
.y80{bottom:798.225000px;}
.y121{bottom:800.385000px;}
.y1a6{bottom:801.465000px;}
.y1d2{bottom:804.345000px;}
.y172{bottom:805.065000px;}
.yb5{bottom:809.745000px;}
.y144{bottom:814.425000px;}
.y1b{bottom:815.325000px;}
.y7f{bottom:815.505000px;}
.yeb{bottom:817.305000px;}
.y120{bottom:817.665000px;}
.y1a5{bottom:818.745000px;}
.y171{bottom:822.345000px;}
.yb4{bottom:827.025000px;}
.y143{bottom:831.705000px;}
.y1a{bottom:832.605000px;}
.y7e{bottom:833.865000px;}
.y11f{bottom:836.025000px;}
.y170{bottom:839.625000px;}
.yb3{bottom:844.305000px;}
.y142{bottom:848.985000px;}
.y19{bottom:849.885000px;}
.y7d{bottom:851.145000px;}
.y1d1{bottom:851.685000px;}
.y11e{bottom:853.305000px;}
.y16f{bottom:856.905000px;}
.yb2{bottom:861.585000px;}
.y18{bottom:866.985000px;}
.y141{bottom:867.345000px;}
.y7c{bottom:869.505000px;}
.y11d{bottom:870.585000px;}
.y16e{bottom:874.185000px;}
.yb1{bottom:878.685000px;}
.y17{bottom:884.265000px;}
.y140{bottom:884.625000px;}
.y7b{bottom:886.605000px;}
.y11c{bottom:887.685000px;}
.y16d{bottom:891.285000px;}
.yb0{bottom:895.965000px;}
.y16{bottom:901.545000px;}
.y13f{bottom:901.725000px;}
.y7a{bottom:904.965000px;}
.y16c{bottom:908.610000px;}
.yaf{bottom:913.290000px;}
.y15{bottom:918.870000px;}
.y13e{bottom:919.050000px;}
.y79{bottom:922.290000px;}
.y16b{bottom:925.890000px;}
.yae{bottom:930.570000px;}
.y14{bottom:936.150000px;}
.y13d{bottom:936.330000px;}
.y78{bottom:939.570000px;}
.y16a{bottom:943.170000px;}
.yad{bottom:947.850000px;}
.y13{bottom:953.430000px;}
.y13c{bottom:953.610000px;}
.y77{bottom:956.850000px;}
.y169{bottom:960.450000px;}
.yac{bottom:965.130000px;}
.y13b{bottom:970.890000px;}
.y12{bottom:971.250000px;}
.y76{bottom:974.130000px;}
.y168{bottom:977.730000px;}
.yab{bottom:982.230000px;}
.y13a{bottom:987.990000px;}
.y75{bottom:991.230000px;}
.y11{bottom:991.950000px;}
.y167{bottom:994.830000px;}
.yaa{bottom:999.510000px;}
.y139{bottom:1006.350000px;}
.y74{bottom:1008.510000px;}
.y166{bottom:1011.390000px;}
.y10{bottom:1012.650000px;}
.ya9{bottom:1016.790000px;}
.ye0{bottom:1019.850000px;}
.y138{bottom:1023.630000px;}
.y73{bottom:1025.790000px;}
.y165{bottom:1025.970000px;}
.yf{bottom:1033.350000px;}
.ya8{bottom:1034.070000px;}
.y163{bottom:1040.730000px;}
.y137{bottom:1040.910000px;}
.y72{bottom:1043.070000px;}
.ya7{bottom:1051.350000px;}
.ye{bottom:1054.050000px;}
.y136{bottom:1058.190000px;}
.y71{bottom:1060.350000px;}
.ya6{bottom:1072.950000px;}
.y135{bottom:1076.550000px;}
.y70{bottom:1077.630000px;}
.y162{bottom:1081.230000px;}
.y134{bottom:1093.650000px;}
.yd{bottom:1094.730000px;}
.y133{bottom:1110.930000px;}
.yc{bottom:1112.010000px;}
.y161{bottom:1113.090000px;}
.y132{bottom:1128.210000px;}
.yb{bottom:1129.290000px;}
.y131{bottom:1145.490000px;}
.ya{bottom:1146.570000px;}
.y130{bottom:1162.800000px;}
.y9{bottom:1163.880000px;}
.y6f{bottom:1184.940000px;}
.y4{bottom:1188.000000px;}
.y1{bottom:1199.880000px;}
.y6c{bottom:1200.060000px;}
.h3a{height:5.729063px;}
.h1b{height:15.480000px;}
.h21{height:15.660000px;}
.h30{height:17.100000px;}
.h5{height:17.903320px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h2e{height:20.880000px;}
.h28{height:21.060000px;}
.h6{height:21.420000px;}
.h3{height:27.210938px;}
.h29{height:29.160000px;}
.h2b{height:29.678906px;}
.hd{height:30.476250px;}
.h26{height:30.960000px;}
.h33{height:30.996000px;}
.h32{height:31.140000px;}
.h2f{height:31.680000px;}
.h2d{height:31.860000px;}
.h37{height:32.760000px;}
.h2c{height:34.020000px;}
.h10{height:34.625391px;}
.h16{height:36.462656px;}
.h1d{height:38.759766px;}
.hf{height:39.760312px;}
.h27{height:39.780000px;}
.h14{height:40.964766px;}
.h38{height:40.985156px;}
.h1a{height:42.894141px;}
.h22{height:46.440000px;}
.h23{height:46.476000px;}
.h31{height:46.620000px;}
.he{height:47.321367px;}
.h4{height:47.344922px;}
.h39{height:48.616875px;}
.h7{height:50.068125px;}
.h34{height:52.971680px;}
.h15{height:52.998047px;}
.h36{height:53.709961px;}
.hc{height:58.621992px;}
.h9{height:58.651172px;}
.h17{height:59.439023px;}
.h19{height:60.226875px;}
.h18{height:61.423863px;}
.h35{height:61.920000px;}
.h24{height:62.100000px;}
.hb{height:62.261719px;}
.h8{height:65.884219px;}
.ha{height:72.562500px;}
.h11{height:73.296000px;}
.h25{height:77.616000px;}
.h1f{height:93.240000px;}
.h1c{height:108.720000px;}
.h20{height:124.236000px;}
.h2a{height:158.040000px;}
.h1e{height:201.810000px;}
.h12{height:290.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w7{width:65.736000px;}
.w20{width:84.960000px;}
.wc{width:136.980000px;}
.we{width:138.060000px;}
.w1c{width:168.840000px;}
.w19{width:180.540000px;}
.w1b{width:180.720000px;}
.w18{width:191.880000px;}
.w15{width:196.380000px;}
.w1a{width:197.640000px;}
.w16{width:202.860000px;}
.w14{width:206.820000px;}
.w17{width:207.000000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w2{width:229.350000px;}
.wb{width:229.530000px;}
.w1e{width:254.190000px;}
.w1d{width:254.235000px;}
.w10{width:269.670000px;}
.wf{width:269.715000px;}
.w11{width:338.970000px;}
.w12{width:339.195000px;}
.w13{width:351.720000px;}
.w4{width:434.235000px;}
.wd{width:541.185000px;}
.w21{width:595.545000px;}
.w6{width:680.325000px;}
.w1f{width:680.505000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:1.980000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x3b{left:11.016000px;}
.x1b{left:12.240000px;}
.x3a{left:15.765000px;}
.x35{left:20.916000px;}
.x42{left:24.555000px;}
.x47{left:33.945000px;}
.x45{left:34.950000px;}
.x38{left:38.055000px;}
.x27{left:44.634000px;}
.x24{left:53.454000px;}
.x48{left:55.365000px;}
.x4c{left:59.034000px;}
.x4a{left:61.485000px;}
.x34{left:65.055000px;}
.x36{left:67.170000px;}
.x1d{left:70.740000px;}
.x54{left:71.994000px;}
.x29{left:87.525000px;}
.x4e{left:89.865000px;}
.x2b{left:100.260000px;}
.x1{left:104.256000px;}
.x6{left:106.380000px;}
.x20{left:108.216000px;}
.x2d{left:109.830000px;}
.x53{left:114.516000px;}
.x18{left:127.655987px;}
.x32{left:129.275987px;}
.x51{left:133.235987px;}
.x41{left:135.575987px;}
.x3c{left:139.535987px;}
.xb{left:141.515987px;}
.x31{left:156.629987px;}
.x43{left:160.769987px;}
.x40{left:172.289987px;}
.x55{left:199.470000px;}
.x44{left:214.740000px;}
.x2c{left:220.529987px;}
.x26{left:233.145000px;}
.x25{left:244.830000px;}
.x28{left:245.910000px;}
.x33{left:266.400000px;}
.x4d{left:276.870000px;}
.x23{left:279.029987px;}
.xc{left:291.854987px;}
.x9{left:295.094987px;}
.x30{left:303.734987px;}
.x2f{left:308.414987px;}
.x4b{left:330.159000px;}
.x8{left:331.239000px;}
.x3{left:333.615000px;}
.x1c{left:335.055000px;}
.x21{left:337.755000px;}
.x37{left:351.000000px;}
.x5{left:354.675000px;}
.x22{left:358.815000px;}
.x3d{left:361.874987px;}
.xd{left:402.554987px;}
.x50{left:418.574987px;}
.x17{left:442.514987px;}
.xa{left:446.474987px;}
.xe{left:448.814987px;}
.x1a{left:459.254987px;}
.x1f{left:480.524987px;}
.x46{left:494.460000px;}
.x19{left:508.064987px;}
.x2a{left:516.345000px;}
.x4f{left:531.825000px;}
.x39{left:558.900000px;}
.x1e{left:563.505000px;}
.x3e{left:569.804987px;}
.x49{left:574.200000px;}
.x13{left:580.424987px;}
.x10{left:586.724987px;}
.x12{left:595.364987px;}
.xf{left:596.984987px;}
.x15{left:599.504987px;}
.x11{left:655.484987px;}
.x16{left:661.244987px;}
.x14{left:737.969987px;}
.x3f{left:768.389987px;}
.x2e{left:774.689987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls2b{letter-spacing:-0.656000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.400533pt;}
.ls1b{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.269867pt;}
.ls2e{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls27{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.107733pt;}
.lsc{letter-spacing:0.116480pt;}
.ls1{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.245760pt;}
.ls20{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.416000pt;}
.ls14{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.096320pt;}
.ls28{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls24{letter-spacing:3.360000pt;}
.ls25{letter-spacing:4.000000pt;}
.ls26{letter-spacing:4.160000pt;}
.ls5{letter-spacing:7.200000pt;}
.lse{letter-spacing:7.632640pt;}
.ls11{letter-spacing:7.739307pt;}
.ls1d{letter-spacing:8.480000pt;}
.ls22{letter-spacing:12.320000pt;}
.ls21{letter-spacing:13.392640pt;}
.ls1c{letter-spacing:39.611307pt;}
.ls18{letter-spacing:78.218667pt;}
.ls2{letter-spacing:274.058667pt;}
.ls12{letter-spacing:446.218667pt;}
.ws7{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws15{word-spacing:-14.297813pt;}
.wse{word-spacing:-14.240000pt;}
.wsf{word-spacing:-14.101333pt;}
.ws0{word-spacing:-14.072213pt;}
.ws3{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.800000pt;}
.ws19{word-spacing:-12.416000pt;}
.ws1c{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.344000pt;}
.ws14{word-spacing:-11.264000pt;}
.ws6{word-spacing:-10.918933pt;}
.ws5{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.480533pt;}
.ws9{word-spacing:-10.334080pt;}
.wsb{word-spacing:-8.945920pt;}
.wsa{word-spacing:-8.676053pt;}
.ws8{word-spacing:0.000000pt;}
._23{margin-left:-3.831467pt;}
._16{margin-left:-2.654720pt;}
._1{margin-left:-0.992000pt;}
._0{width:1.066667pt;}
._4{width:2.331947pt;}
._b{width:3.258880pt;}
._a{width:4.208000pt;}
._f{width:5.317120pt;}
._c{width:6.303360pt;}
._10{width:7.589760pt;}
._19{width:8.518400pt;}
._d{width:9.548160pt;}
._1b{width:10.624000pt;}
._1f{width:11.749547pt;}
._e{width:12.832213pt;}
._11{width:14.619093pt;}
._1a{width:15.639680pt;}
._13{width:16.658133pt;}
._14{width:17.848320pt;}
._17{width:18.800213pt;}
._18{width:20.083627pt;}
._1c{width:21.032960pt;}
._6{width:22.512427pt;}
._5{width:23.712640pt;}
._9{width:25.090560pt;}
._3{width:26.119680pt;}
._2{width:27.143040pt;}
._20{width:28.047573pt;}
._2b{width:29.109760pt;}
._29{width:30.172160pt;}
._27{width:31.075200pt;}
._24{width:32.084480pt;}
._2a{width:33.195733pt;}
._21{width:34.103040pt;}
._22{width:35.218560pt;}
._26{width:36.493440pt;}
._25{width:37.715200pt;}
._28{width:39.255680pt;}
._1e{width:40.158720pt;}
._8{width:41.472427pt;}
._7{width:42.542720pt;}
._15{width:44.248960pt;}
._12{width:45.538560pt;}
._2e{width:46.704000pt;}
._34{width:47.632853pt;}
._1d{width:48.817280pt;}
._32{width:49.964373pt;}
._2c{width:53.424000pt;}
._2d{width:54.576000pt;}
._31{width:56.688000pt;}
._35{width:58.259413pt;}
._36{width:60.503680pt;}
._33{width:61.544533pt;}
._30{width:62.496000pt;}
._2f{width:95.808000pt;}
.fsa{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y22b{bottom:0.160000pt;}
.y18f{bottom:0.506667pt;}
.ydf{bottom:2.560000pt;}
.y152{bottom:2.720000pt;}
.y1ce{bottom:3.106667pt;}
.y6b{bottom:3.360000pt;}
.y6e{bottom:3.840000pt;}
.y1a4{bottom:4.666667pt;}
.y6d{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y2{bottom:6.400000pt;}
.y1cc{bottom:7.106667pt;}
.y18c{bottom:7.266667pt;}
.yfa{bottom:9.440000pt;}
.y1d8{bottom:9.466667pt;}
.y1d3{bottom:9.600000pt;}
.y22c{bottom:10.720000pt;}
.y3{bottom:10.880000pt;}
.y18e{bottom:14.466667pt;}
.yf8{bottom:16.320000pt;}
.y1d9{bottom:16.346667pt;}
.y1d0{bottom:16.386667pt;}
.yea{bottom:16.480000pt;}
.y1ca{bottom:16.546667pt;}
.y1cd{bottom:17.026667pt;}
.y1c7{bottom:17.533333pt;}
.y1a3{bottom:18.586667pt;}
.y164{bottom:20.320000pt;}
.y156{bottom:23.200000pt;}
.ye4{bottom:23.360000pt;}
.y8{bottom:29.280000pt;}
.yf7{bottom:30.080000pt;}
.y155{bottom:30.120000pt;}
.ye9{bottom:30.240000pt;}
.y199{bottom:31.066667pt;}
.y1a2{bottom:32.506667pt;}
.y158{bottom:36.960000pt;}
.ye3{bottom:37.120000pt;}
.y6{bottom:43.200000pt;}
.y222{bottom:43.840000pt;}
.ye8{bottom:44.000000pt;}
.y15c{bottom:44.026667pt;}
.y198{bottom:44.826667pt;}
.ye2{bottom:50.880000pt;}
.ye7{bottom:57.760000pt;}
.y15d{bottom:57.786667pt;}
.y197{bottom:58.586667pt;}
.y1a0{bottom:60.026667pt;}
.ye1{bottom:64.640000pt;}
.y5{bottom:64.800000pt;}
.yf6{bottom:71.520000pt;}
.yfe{bottom:71.546667pt;}
.ye6{bottom:71.680000pt;}
.y196{bottom:72.346667pt;}
.y19f{bottom:73.786667pt;}
.yee{bottom:78.400000pt;}
.y160{bottom:80.320000pt;}
.y1f9{bottom:80.800000pt;}
.y22e{bottom:81.120000pt;}
.y22d{bottom:82.720000pt;}
.yde{bottom:83.040000pt;}
.y22a{bottom:84.000000pt;}
.yf5{bottom:85.320000pt;}
.ye5{bottom:85.440000pt;}
.yfd{bottom:85.466667pt;}
.y1c4{bottom:85.760000pt;}
.y195{bottom:86.266667pt;}
.y19e{bottom:87.706667pt;}
.ya5{bottom:88.160000pt;}
.y69{bottom:88.320000pt;}
.y11b{bottom:89.440000pt;}
.y4c{bottom:89.760000pt;}
.yed{bottom:92.360000pt;}
.y188{bottom:92.640000pt;}
.y21d{bottom:93.760000pt;}
.y15f{bottom:95.520000pt;}
.y1f8{bottom:96.160000pt;}
.y1ba{bottom:98.240000pt;}
.ydd{bottom:98.400000pt;}
.yfc{bottom:99.226667pt;}
.yf4{bottom:99.240000pt;}
.y194{bottom:100.026667pt;}
.y1c3{bottom:101.120000pt;}
.y19d{bottom:101.466667pt;}
.y4b{bottom:102.080000pt;}
.ya4{bottom:103.520000pt;}
.y68{bottom:103.680000pt;}
.y11a{bottom:104.800000pt;}
.yec{bottom:106.120000pt;}
.y187{bottom:108.000000pt;}
.y21b{bottom:109.120000pt;}
.y15e{bottom:110.880000pt;}
.y1f7{bottom:111.520000pt;}
.yf3{bottom:113.000000pt;}
.y1b9{bottom:113.440000pt;}
.ydc{bottom:113.760000pt;}
.y193{bottom:113.786667pt;}
.y4a{bottom:114.240000pt;}
.y19c{bottom:115.226667pt;}
.y229{bottom:116.000000pt;}
.y1c2{bottom:116.320000pt;}
.ya3{bottom:118.880000pt;}
.y67{bottom:119.040000pt;}
.y119{bottom:120.160000pt;}
.y186{bottom:123.200000pt;}
.y15b{bottom:124.000000pt;}
.y21a{bottom:124.480000pt;}
.y49{bottom:126.560000pt;}
.yf2{bottom:126.760000pt;}
.y1f6{bottom:126.880000pt;}
.y192{bottom:127.546667pt;}
.y19b{bottom:128.986667pt;}
.ydb{bottom:129.120000pt;}
.y1b8{bottom:129.760000pt;}
.y228{bottom:131.360000pt;}
.y1c1{bottom:131.680000pt;}
.y1ee{bottom:134.080000pt;}
.ya2{bottom:134.240000pt;}
.y66{bottom:134.400000pt;}
.y118{bottom:135.360000pt;}
.y185{bottom:137.920000pt;}
.y48{bottom:138.880000pt;}
.y219{bottom:139.680000pt;}
.yf1{bottom:140.520000pt;}
.y1f5{bottom:142.080000pt;}
.yda{bottom:144.480000pt;}
.y1b7{bottom:145.120000pt;}
.y227{bottom:146.560000pt;}
.y1c0{bottom:147.040000pt;}
.y1ed{bottom:149.440000pt;}
.ya1{bottom:149.600000pt;}
.y65{bottom:149.760000pt;}
.y117{bottom:150.720000pt;}
.y184{bottom:150.880000pt;}
.y47{bottom:151.040000pt;}
.yf0{bottom:154.440000pt;}
.y218{bottom:155.040000pt;}
.y1f4{bottom:157.440000pt;}
.yd9{bottom:159.680000pt;}
.y1b6{bottom:160.480000pt;}
.y226{bottom:161.920000pt;}
.y1bf{bottom:162.400000pt;}
.y46{bottom:163.386667pt;}
.y1ec{bottom:164.826667pt;}
.y64{bottom:164.986667pt;}
.y116{bottom:166.106667pt;}
.y183{bottom:166.266667pt;}
.yef{bottom:168.200000pt;}
.y217{bottom:170.426667pt;}
.y1f3{bottom:172.826667pt;}
.y225{bottom:174.426667pt;}
.yd8{bottom:175.066667pt;}
.y45{bottom:175.706667pt;}
.y1b5{bottom:176.826667pt;}
.y1be{bottom:177.786667pt;}
.y182{bottom:178.746667pt;}
.ya0{bottom:180.186667pt;}
.y63{bottom:180.346667pt;}
.y115{bottom:181.466667pt;}
.y216{bottom:185.786667pt;}
.y44{bottom:187.866667pt;}
.y1f2{bottom:188.186667pt;}
.yd7{bottom:190.426667pt;}
.y1b4{bottom:192.026667pt;}
.y1bd{bottom:192.986667pt;}
.y15a{bottom:193.786667pt;}
.y9f{bottom:195.546667pt;}
.y62{bottom:195.706667pt;}
.y114{bottom:196.826667pt;}
.y43{bottom:200.186667pt;}
.y191{bottom:200.800000pt;}
.y215{bottom:201.146667pt;}
.y1f1{bottom:203.546667pt;}
.yd6{bottom:205.786667pt;}
.y1b3{bottom:207.386667pt;}
.y1bc{bottom:208.346667pt;}
.y9e{bottom:210.906667pt;}
.y61{bottom:211.066667pt;}
.y113{bottom:212.186667pt;}
.y42{bottom:212.506667pt;}
.y214{bottom:216.506667pt;}
.y19a{bottom:218.106667pt;}
.y1f0{bottom:218.906667pt;}
.yd5{bottom:221.146667pt;}
.y1b2{bottom:222.746667pt;}
.y1bb{bottom:223.706667pt;}
.y41{bottom:224.666667pt;}
.y9d{bottom:226.266667pt;}
.y60{bottom:226.426667pt;}
.y112{bottom:227.386667pt;}
.y224{bottom:229.626667pt;}
.y1eb{bottom:230.106667pt;}
.y213{bottom:231.706667pt;}
.y1ef{bottom:234.106667pt;}
.y159{bottom:235.706667pt;}
.yd4{bottom:236.506667pt;}
.y40{bottom:236.986667pt;}
.y1b1{bottom:239.066667pt;}
.y9c{bottom:241.626667pt;}
.y5f{bottom:241.786667pt;}
.y111{bottom:242.746667pt;}
.y223{bottom:243.386667pt;}
.y1a1{bottom:247.066667pt;}
.y3f{bottom:249.306667pt;}
.y1ea{bottom:249.466667pt;}
.yd3{bottom:251.706667pt;}
.y1b0{bottom:254.426667pt;}
.y9b{bottom:256.826667pt;}
.y5e{bottom:256.986667pt;}
.y221{bottom:257.306667pt;}
.y110{bottom:258.106667pt;}
.y3e{bottom:261.466667pt;}
.y212{bottom:262.426667pt;}
.y1e9{bottom:264.826667pt;}
.yd2{bottom:267.066667pt;}
.y1af{bottom:269.786667pt;}
.y9a{bottom:272.186667pt;}
.y5d{bottom:272.346667pt;}
.y10f{bottom:273.466667pt;}
.y3d{bottom:273.786667pt;}
.y211{bottom:277.786667pt;}
.y1e8{bottom:280.186667pt;}
.yd1{bottom:282.426667pt;}
.y1ae{bottom:284.986667pt;}
.y3c{bottom:286.106667pt;}
.y99{bottom:287.546667pt;}
.y5c{bottom:287.706667pt;}
.y10e{bottom:288.826667pt;}
.y157{bottom:291.706667pt;}
.y1e7{bottom:295.546667pt;}
.yd0{bottom:297.786667pt;}
.y3b{bottom:298.266667pt;}
.y1ad{bottom:300.346667pt;}
.y98{bottom:302.906667pt;}
.y5b{bottom:303.066667pt;}
.y10d{bottom:304.026667pt;}
.y3a{bottom:310.586667pt;}
.y1e6{bottom:310.906667pt;}
.y21c{bottom:311.066667pt;}
.y189{bottom:311.706667pt;}
.y220{bottom:312.346667pt;}
.ycf{bottom:313.146667pt;}
.y1ac{bottom:316.666667pt;}
.y97{bottom:318.266667pt;}
.y5a{bottom:318.426667pt;}
.y10c{bottom:319.386667pt;}
.y39{bottom:322.906667pt;}
.y1e5{bottom:326.106667pt;}
.y210{bottom:326.426667pt;}
.yce{bottom:328.506667pt;}
.y21f{bottom:329.146667pt;}
.y1ab{bottom:332.026667pt;}
.y18a{bottom:333.146667pt;}
.y59{bottom:333.626667pt;}
.y10b{bottom:334.746667pt;}
.y38{bottom:335.066667pt;}
.y1e4{bottom:341.466667pt;}
.ycd{bottom:343.706667pt;}
.y21e{bottom:344.506667pt;}
.y37{bottom:347.386667pt;}
.y154{bottom:347.546667pt;}
.y96{bottom:348.826667pt;}
.y58{bottom:348.986667pt;}
.y10a{bottom:350.106667pt;}
.y1e3{bottom:356.826667pt;}
.ycc{bottom:359.066667pt;}
.y36{bottom:359.706667pt;}
.y1aa{bottom:362.746667pt;}
.y95{bottom:364.186667pt;}
.y57{bottom:364.346667pt;}
.y109{bottom:365.466667pt;}
.y35{bottom:371.866667pt;}
.y1e2{bottom:372.186667pt;}
.ycb{bottom:374.426667pt;}
.y20f{bottom:375.066667pt;}
.y190{bottom:376.800000pt;}
.y18d{bottom:376.960000pt;}
.y1a9{bottom:377.986667pt;}
.y94{bottom:379.586667pt;}
.y56{bottom:379.746667pt;}
.y108{bottom:380.866667pt;}
.y34{bottom:384.226667pt;}
.y1e1{bottom:387.586667pt;}
.y153{bottom:389.666667pt;}
.yca{bottom:389.826667pt;}
.y20e{bottom:390.466667pt;}
.y93{bottom:394.946667pt;}
.y55{bottom:395.106667pt;}
.y107{bottom:396.066667pt;}
.y33{bottom:396.546667pt;}
.y1e0{bottom:402.786667pt;}
.y1a8{bottom:403.746667pt;}
.yc9{bottom:405.186667pt;}
.y20d{bottom:405.826667pt;}
.y32{bottom:408.706667pt;}
.y92{bottom:410.306667pt;}
.y54{bottom:410.466667pt;}
.y106{bottom:411.426667pt;}
.y1df{bottom:418.146667pt;}
.yc8{bottom:420.386667pt;}
.y31{bottom:421.026667pt;}
.y20c{bottom:421.186667pt;}
.y1cb{bottom:421.760000pt;}
.y53{bottom:425.666667pt;}
.y105{bottom:426.786667pt;}
.y151{bottom:431.586667pt;}
.y30{bottom:433.346667pt;}
.y1de{bottom:433.506667pt;}
.yc7{bottom:435.746667pt;}
.y20b{bottom:436.386667pt;}
.y91{bottom:440.866667pt;}
.y52{bottom:441.026667pt;}
.y104{bottom:442.146667pt;}
.y2f{bottom:445.506667pt;}
.y1dd{bottom:448.866667pt;}
.y18b{bottom:449.920000pt;}
.yc6{bottom:451.106667pt;}
.y20a{bottom:451.746667pt;}
.y90{bottom:456.226667pt;}
.y51{bottom:456.386667pt;}
.y103{bottom:457.506667pt;}
.y2e{bottom:457.826667pt;}
.y1dc{bottom:461.986667pt;}
.yc5{bottom:466.466667pt;}
.y209{bottom:467.106667pt;}
.y2d{bottom:470.146667pt;}
.y8f{bottom:471.586667pt;}
.y50{bottom:471.746667pt;}
.y102{bottom:472.866667pt;}
.y150{bottom:477.666667pt;}
.yc4{bottom:481.826667pt;}
.y2c{bottom:482.306667pt;}
.y208{bottom:482.466667pt;}
.y181{bottom:485.666667pt;}
.y1c9{bottom:486.880000pt;}
.y8e{bottom:486.946667pt;}
.y4f{bottom:487.106667pt;}
.y101{bottom:488.066667pt;}
.y12f{bottom:493.026667pt;}
.y2b{bottom:494.626667pt;}
.yc3{bottom:497.186667pt;}
.y207{bottom:497.826667pt;}
.y180{bottom:501.026667pt;}
.y8d{bottom:502.306667pt;}
.y4e{bottom:502.466667pt;}
.y100{bottom:503.426667pt;}
.y1db{bottom:504.066667pt;}
.y2a{bottom:506.946667pt;}
.y12e{bottom:508.386667pt;}
.y14f{bottom:509.346667pt;}
.yc2{bottom:512.386667pt;}
.y206{bottom:513.186667pt;}
.y17f{bottom:516.386667pt;}
.y8c{bottom:517.506667pt;}
.y4d{bottom:517.666667pt;}
.yff{bottom:518.786667pt;}
.y29{bottom:519.106667pt;}
.y12d{bottom:523.746667pt;}
.y14e{bottom:524.706667pt;}
.yc1{bottom:527.746667pt;}
.y205{bottom:528.386667pt;}
.y17e{bottom:531.586667pt;}
.yfb{bottom:531.906667pt;}
.y8b{bottom:532.866667pt;}
.y28{bottom:533.026667pt;}
.y12c{bottom:538.946667pt;}
.y6a{bottom:539.906667pt;}
.yc0{bottom:543.106667pt;}
.y204{bottom:543.746667pt;}
.y1da{bottom:546.146667pt;}
.y17d{bottom:546.946667pt;}
.y8a{bottom:548.226667pt;}
.y27{bottom:548.386667pt;}
.y12b{bottom:554.306667pt;}
.y14d{bottom:555.266667pt;}
.y1c5{bottom:555.906667pt;}
.ybf{bottom:558.466667pt;}
.y203{bottom:559.106667pt;}
.y1cf{bottom:561.920000pt;}
.y17c{bottom:562.306667pt;}
.y89{bottom:563.586667pt;}
.y26{bottom:563.746667pt;}
.y12a{bottom:570.626667pt;}
.ybe{bottom:573.826667pt;}
.y202{bottom:574.466667pt;}
.y1c8{bottom:575.746667pt;}
.y17b{bottom:577.666667pt;}
.y88{bottom:578.946667pt;}
.y25{bottom:579.106667pt;}
.y129{bottom:585.986667pt;}
.y1d7{bottom:588.226667pt;}
.ybd{bottom:589.186667pt;}
.y201{bottom:589.826667pt;}
.y24{bottom:592.893333pt;}
.y17a{bottom:593.053333pt;}
.y87{bottom:594.333333pt;}
.y14c{bottom:601.373333pt;}
.y23{bottom:602.013333pt;}
.y128{bottom:602.333333pt;}
.ybc{bottom:604.413333pt;}
.y200{bottom:605.213333pt;}
.y179{bottom:608.413333pt;}
.y86{bottom:609.533333pt;}
.y1d6{bottom:616.413333pt;}
.y14b{bottom:616.573333pt;}
.y22{bottom:617.373333pt;}
.y127{bottom:617.533333pt;}
.ybb{bottom:619.773333pt;}
.y1ff{bottom:620.413333pt;}
.y178{bottom:623.613333pt;}
.y85{bottom:624.893333pt;}
.y14a{bottom:631.933333pt;}
.y21{bottom:632.733333pt;}
.y126{bottom:632.893333pt;}
.yba{bottom:635.133333pt;}
.y1fe{bottom:635.773333pt;}
.y177{bottom:638.973333pt;}
.y84{bottom:640.253333pt;}
.yf9{bottom:642.973333pt;}
.y149{bottom:647.293333pt;}
.y20{bottom:648.093333pt;}
.y125{bottom:649.213333pt;}
.y1fd{bottom:651.133333pt;}
.y1c6{bottom:653.920000pt;}
.y176{bottom:654.333333pt;}
.yb9{bottom:654.493333pt;}
.y83{bottom:655.613333pt;}
.y1d5{bottom:658.493333pt;}
.y148{bottom:662.653333pt;}
.y1f{bottom:663.453333pt;}
.y124{bottom:664.573333pt;}
.y1fc{bottom:666.493333pt;}
.y175{bottom:669.693333pt;}
.y82{bottom:670.973333pt;}
.yb8{bottom:673.853333pt;}
.y147{bottom:678.013333pt;}
.y1e{bottom:678.813333pt;}
.y123{bottom:679.933333pt;}
.y1fb{bottom:681.853333pt;}
.y174{bottom:685.053333pt;}
.y1d4{bottom:686.813333pt;}
.yb7{bottom:689.213333pt;}
.y81{bottom:690.173333pt;}
.y146{bottom:693.373333pt;}
.y1d{bottom:694.013333pt;}
.y122{bottom:696.253333pt;}
.y1fa{bottom:697.213333pt;}
.y173{bottom:700.253333pt;}
.y1a7{bottom:703.293333pt;}
.yb6{bottom:704.413333pt;}
.y145{bottom:708.573333pt;}
.y1c{bottom:709.373333pt;}
.y80{bottom:709.533333pt;}
.y121{bottom:711.453333pt;}
.y1a6{bottom:712.413333pt;}
.y1d2{bottom:714.973333pt;}
.y172{bottom:715.613333pt;}
.yb5{bottom:719.773333pt;}
.y144{bottom:723.933333pt;}
.y1b{bottom:724.733333pt;}
.y7f{bottom:724.893333pt;}
.yeb{bottom:726.493333pt;}
.y120{bottom:726.813333pt;}
.y1a5{bottom:727.773333pt;}
.y171{bottom:730.973333pt;}
.yb4{bottom:735.133333pt;}
.y143{bottom:739.293333pt;}
.y1a{bottom:740.093333pt;}
.y7e{bottom:741.213333pt;}
.y11f{bottom:743.133333pt;}
.y170{bottom:746.333333pt;}
.yb3{bottom:750.493333pt;}
.y142{bottom:754.653333pt;}
.y19{bottom:755.453333pt;}
.y7d{bottom:756.573333pt;}
.y1d1{bottom:757.053333pt;}
.y11e{bottom:758.493333pt;}
.y16f{bottom:761.693333pt;}
.yb2{bottom:765.853333pt;}
.y18{bottom:770.653333pt;}
.y141{bottom:770.973333pt;}
.y7c{bottom:772.893333pt;}
.y11d{bottom:773.853333pt;}
.y16e{bottom:777.053333pt;}
.yb1{bottom:781.053333pt;}
.y17{bottom:786.013333pt;}
.y140{bottom:786.333333pt;}
.y7b{bottom:788.093333pt;}
.y11c{bottom:789.053333pt;}
.y16d{bottom:792.253333pt;}
.yb0{bottom:796.413333pt;}
.y16{bottom:801.373333pt;}
.y13f{bottom:801.533333pt;}
.y7a{bottom:804.413333pt;}
.y16c{bottom:807.653333pt;}
.yaf{bottom:811.813333pt;}
.y15{bottom:816.773333pt;}
.y13e{bottom:816.933333pt;}
.y79{bottom:819.813333pt;}
.y16b{bottom:823.013333pt;}
.yae{bottom:827.173333pt;}
.y14{bottom:832.133333pt;}
.y13d{bottom:832.293333pt;}
.y78{bottom:835.173333pt;}
.y16a{bottom:838.373333pt;}
.yad{bottom:842.533333pt;}
.y13{bottom:847.493333pt;}
.y13c{bottom:847.653333pt;}
.y77{bottom:850.533333pt;}
.y169{bottom:853.733333pt;}
.yac{bottom:857.893333pt;}
.y13b{bottom:863.013333pt;}
.y12{bottom:863.333333pt;}
.y76{bottom:865.893333pt;}
.y168{bottom:869.093333pt;}
.yab{bottom:873.093333pt;}
.y13a{bottom:878.213333pt;}
.y75{bottom:881.093333pt;}
.y11{bottom:881.733333pt;}
.y167{bottom:884.293333pt;}
.yaa{bottom:888.453333pt;}
.y139{bottom:894.533333pt;}
.y74{bottom:896.453333pt;}
.y166{bottom:899.013333pt;}
.y10{bottom:900.133333pt;}
.ya9{bottom:903.813333pt;}
.ye0{bottom:906.533333pt;}
.y138{bottom:909.893333pt;}
.y73{bottom:911.813333pt;}
.y165{bottom:911.973333pt;}
.yf{bottom:918.533333pt;}
.ya8{bottom:919.173333pt;}
.y163{bottom:925.093333pt;}
.y137{bottom:925.253333pt;}
.y72{bottom:927.173333pt;}
.ya7{bottom:934.533333pt;}
.ye{bottom:936.933333pt;}
.y136{bottom:940.613333pt;}
.y71{bottom:942.533333pt;}
.ya6{bottom:953.733333pt;}
.y135{bottom:956.933333pt;}
.y70{bottom:957.893333pt;}
.y162{bottom:961.093333pt;}
.y134{bottom:972.133333pt;}
.yd{bottom:973.093333pt;}
.y133{bottom:987.493333pt;}
.yc{bottom:988.453333pt;}
.y161{bottom:989.413333pt;}
.y132{bottom:1002.853333pt;}
.yb{bottom:1003.813333pt;}
.y131{bottom:1018.213333pt;}
.ya{bottom:1019.173333pt;}
.y130{bottom:1033.600000pt;}
.y9{bottom:1034.560000pt;}
.y6f{bottom:1053.280000pt;}
.y4{bottom:1056.000000pt;}
.y1{bottom:1066.560000pt;}
.y6c{bottom:1066.720000pt;}
.h3a{height:5.092500pt;}
.h1b{height:13.760000pt;}
.h21{height:13.920000pt;}
.h30{height:15.200000pt;}
.h5{height:15.914062pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h2e{height:18.560000pt;}
.h28{height:18.720000pt;}
.h6{height:19.040000pt;}
.h3{height:24.187500pt;}
.h29{height:25.920000pt;}
.h2b{height:26.381250pt;}
.hd{height:27.090000pt;}
.h26{height:27.520000pt;}
.h33{height:27.552000pt;}
.h32{height:27.680000pt;}
.h2f{height:28.160000pt;}
.h2d{height:28.320000pt;}
.h37{height:29.120000pt;}
.h2c{height:30.240000pt;}
.h10{height:30.778125pt;}
.h16{height:32.411250pt;}
.h1d{height:34.453125pt;}
.hf{height:35.342500pt;}
.h27{height:35.360000pt;}
.h14{height:36.413125pt;}
.h38{height:36.431250pt;}
.h1a{height:38.128125pt;}
.h22{height:41.280000pt;}
.h23{height:41.312000pt;}
.h31{height:41.440000pt;}
.he{height:42.063437pt;}
.h4{height:42.084375pt;}
.h39{height:43.215000pt;}
.h7{height:44.505000pt;}
.h34{height:47.085938pt;}
.h15{height:47.109375pt;}
.h36{height:47.742188pt;}
.hc{height:52.108438pt;}
.h9{height:52.134375pt;}
.h17{height:52.834688pt;}
.h19{height:53.535000pt;}
.h18{height:54.598989pt;}
.h35{height:55.040000pt;}
.h24{height:55.200000pt;}
.hb{height:55.343750pt;}
.h8{height:58.563750pt;}
.ha{height:64.500000pt;}
.h11{height:65.152000pt;}
.h25{height:68.992000pt;}
.h1f{height:82.880000pt;}
.h1c{height:96.640000pt;}
.h20{height:110.432000pt;}
.h2a{height:140.480000pt;}
.h1e{height:179.386667pt;}
.h12{height:258.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w7{width:58.432000pt;}
.w20{width:75.520000pt;}
.wc{width:121.760000pt;}
.we{width:122.720000pt;}
.w1c{width:150.080000pt;}
.w19{width:160.480000pt;}
.w1b{width:160.640000pt;}
.w18{width:170.560000pt;}
.w15{width:174.560000pt;}
.w1a{width:175.680000pt;}
.w16{width:180.320000pt;}
.w14{width:183.840000pt;}
.w17{width:184.000000pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w2{width:203.866667pt;}
.wb{width:204.026667pt;}
.w1e{width:225.946667pt;}
.w1d{width:225.986667pt;}
.w10{width:239.706667pt;}
.wf{width:239.746667pt;}
.w11{width:301.306667pt;}
.w12{width:301.506667pt;}
.w13{width:312.640000pt;}
.w4{width:385.986667pt;}
.wd{width:481.053333pt;}
.w21{width:529.373333pt;}
.w6{width:604.733333pt;}
.w1f{width:604.893333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:1.760000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x3b{left:9.792000pt;}
.x1b{left:10.880000pt;}
.x3a{left:14.013333pt;}
.x35{left:18.592000pt;}
.x42{left:21.826667pt;}
.x47{left:30.173333pt;}
.x45{left:31.066667pt;}
.x38{left:33.826667pt;}
.x27{left:39.674667pt;}
.x24{left:47.514667pt;}
.x48{left:49.213333pt;}
.x4c{left:52.474667pt;}
.x4a{left:54.653333pt;}
.x34{left:57.826667pt;}
.x36{left:59.706667pt;}
.x1d{left:62.880000pt;}
.x54{left:63.994667pt;}
.x29{left:77.800000pt;}
.x4e{left:79.880000pt;}
.x2b{left:89.120000pt;}
.x1{left:92.672000pt;}
.x6{left:94.560000pt;}
.x20{left:96.192000pt;}
.x2d{left:97.626667pt;}
.x53{left:101.792000pt;}
.x18{left:113.471988pt;}
.x32{left:114.911988pt;}
.x51{left:118.431988pt;}
.x41{left:120.511988pt;}
.x3c{left:124.031988pt;}
.xb{left:125.791988pt;}
.x31{left:139.226655pt;}
.x43{left:142.906655pt;}
.x40{left:153.146655pt;}
.x55{left:177.306667pt;}
.x44{left:190.880000pt;}
.x2c{left:196.026655pt;}
.x26{left:207.240000pt;}
.x25{left:217.626667pt;}
.x28{left:218.586667pt;}
.x33{left:236.800000pt;}
.x4d{left:246.106667pt;}
.x23{left:248.026655pt;}
.xc{left:259.426655pt;}
.x9{left:262.306655pt;}
.x30{left:269.986655pt;}
.x2f{left:274.146655pt;}
.x4b{left:293.474667pt;}
.x8{left:294.434667pt;}
.x3{left:296.546667pt;}
.x1c{left:297.826667pt;}
.x21{left:300.226667pt;}
.x37{left:312.000000pt;}
.x5{left:315.266667pt;}
.x22{left:318.946667pt;}
.x3d{left:321.666655pt;}
.xd{left:357.826655pt;}
.x50{left:372.066655pt;}
.x17{left:393.346655pt;}
.xa{left:396.866655pt;}
.xe{left:398.946655pt;}
.x1a{left:408.226655pt;}
.x1f{left:427.133322pt;}
.x46{left:439.520000pt;}
.x19{left:451.613322pt;}
.x2a{left:458.973333pt;}
.x4f{left:472.733333pt;}
.x39{left:496.800000pt;}
.x1e{left:500.893333pt;}
.x3e{left:506.493322pt;}
.x49{left:510.400000pt;}
.x13{left:515.933322pt;}
.x10{left:521.533322pt;}
.x12{left:529.213322pt;}
.xf{left:530.653322pt;}
.x15{left:532.893322pt;}
.x11{left:582.653322pt;}
.x16{left:587.773322pt;}
.x14{left:655.973322pt;}
.x3f{left:683.013322pt;}
.x2e{left:688.613322pt;}
.x7{left:699.333322pt;}
}




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