
    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_7b991a356da7816e08e48bc0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6405abf0f006340f8a500d3c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2004e4b4a0897dc0ac95c40.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3085355bb9b57fa9386048d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.897461;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_55a99bd3e5520e58df08547c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_0f1a3a94226e2b623a986379.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_1f4116bb7af1b2023283a5a2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.975586;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_c90a7dc1d41817035e737a92.woff')format("woff");}.ffa{font-family:ffa;line-height:0.803711;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_8e7a07c58604cda7b3041318.woff')format("woff");}.ffb{font-family:ffb;line-height:0.771973;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_ddf00da3ce2a559b6cd7eddf.woff')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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);}
.v3{vertical-align:-22.500000px;}
.v2{vertical-align:-18.120000px;}
.v7{vertical-align:-13.500000px;}
.va{vertical-align:-8.940003px;}
.v4{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.500000px;}
.vb{vertical-align:8.999997px;}
.v1{vertical-align:18.120000px;}
.v6{vertical-align:22.500000px;}
.v8{vertical-align:49.500000px;}
.v9{vertical-align:58.500000px;}
.ls6{letter-spacing:-2.766000px;}
.ls32{letter-spacing:-2.238000px;}
.ls2a{letter-spacing:-2.100000px;}
.ls11{letter-spacing:-2.016000px;}
.ls1d{letter-spacing:-1.998000px;}
.ls10{letter-spacing:-1.482000px;}
.ls5{letter-spacing:-1.128000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-0.912000px;}
.ls35{letter-spacing:-0.351600px;}
.ls27{letter-spacing:-0.256200px;}
.ls24{letter-spacing:-0.113400px;}
.ls33{letter-spacing:-0.075000px;}
.ls20{letter-spacing:-0.018000px;}
.ls26{letter-spacing:-0.013500px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.013500px;}
.ls4{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.075000px;}
.ls21{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.256200px;}
.lse{letter-spacing:0.378000px;}
.ls36{letter-spacing:0.486000px;}
.ls23{letter-spacing:0.504000px;}
.ls30{letter-spacing:0.737250px;}
.ls2f{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.840000px;}
.ls2c{letter-spacing:1.026000px;}
.ls29{letter-spacing:1.158000px;}
.lsc{letter-spacing:1.218000px;}
.ls15{letter-spacing:1.255500px;}
.ls2b{letter-spacing:1.435950px;}
.ls2d{letter-spacing:1.482000px;}
.ls34{letter-spacing:1.494000px;}
.ls1b{letter-spacing:1.917000px;}
.ls12{letter-spacing:2.016000px;}
.ls0{letter-spacing:2.164500px;}
.ls1a{letter-spacing:2.190000px;}
.ls7{letter-spacing:2.238000px;}
.ls1{letter-spacing:2.250000px;}
.ls1c{letter-spacing:2.262000px;}
.ls28{letter-spacing:3.018000px;}
.ls2e{letter-spacing:3.375000px;}
.ls25{letter-spacing:3.495000px;}
.lsd{letter-spacing:3.550500px;}
.ls17{letter-spacing:4.603500px;}
.lsf{letter-spacing:5.526000px;}
.ls19{letter-spacing:12.231000px;}
.ls16{letter-spacing:14.980500px;}
.ls18{letter-spacing:16.281000px;}
.lsb{letter-spacing:19.737000px;}
.lsa{letter-spacing:24.237000px;}
.ls22{letter-spacing:24.357000px;}
.ls2{letter-spacing:74.634000px;}
.ls9{letter-spacing:78.387000px;}
.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:-58.756200px;}
.ws14{word-spacing:-58.500000px;}
.ws16{word-spacing:-57.588000px;}
.ws2d{word-spacing:-49.650000px;}
.ws2c{word-spacing:-49.500000px;}
.ws10{word-spacing:-41.340000px;}
.wse{word-spacing:-39.199500px;}
.ws15{word-spacing:-34.519500px;}
.ws0{word-spacing:-21.412500px;}
.ws26{word-spacing:-20.151000px;}
.ws2{word-spacing:-18.000000px;}
.ws28{word-spacing:-17.643000px;}
.ws3{word-spacing:-16.875000px;}
.ws1b{word-spacing:-16.789500px;}
.ws2f{word-spacing:-16.107000px;}
.ws2e{word-spacing:-15.651000px;}
.ws1a{word-spacing:-14.662500px;}
.ws8{word-spacing:-14.625000px;}
.ws27{word-spacing:-14.368800px;}
.ws13{word-spacing:-13.612500px;}
.ws17{word-spacing:-13.599000px;}
.ws2b{word-spacing:-13.537500px;}
.wsc{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.143000px;}
.ws32{word-spacing:-12.412500px;}
.ws11{word-spacing:-12.387000px;}
.ws21{word-spacing:-12.375000px;}
.ws5{word-spacing:-12.363000px;}
.ws4{word-spacing:-11.859000px;}
.wsb{word-spacing:-11.016000px;}
.ws1c{word-spacing:-10.257000px;}
.ws1e{word-spacing:-10.162500px;}
.ws6{word-spacing:-10.138500px;}
.ws12{word-spacing:-10.125000px;}
.ws19{word-spacing:-10.107000px;}
.ws1d{word-spacing:-9.504000px;}
.wsd{word-spacing:-9.000000px;}
.ws31{word-spacing:-7.887000px;}
.wsa{word-spacing:-6.984000px;}
.ws1{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws2a{word-spacing:0.702000px;}
.ws34{word-spacing:7.680450px;}
.ws33{word-spacing:44.346000px;}
.ws29{word-spacing:74.656500px;}
.ws24{word-spacing:79.769400px;}
.ws30{word-spacing:98.869950px;}
.ws25{word-spacing:146.956500px;}
.ws20{word-spacing:198.755850px;}
.ws23{word-spacing:199.349400px;}
.ws1f{word-spacing:199.456500px;}
.ws22{word-spacing:201.123000px;}
._a{margin-left:-6.364950px;}
._4{margin-left:-4.486050px;}
._2{margin-left:-2.826450px;}
._1{margin-left:-1.541700px;}
._0{width:1.798650px;}
._3{width:2.997750px;}
._6{width:4.343850px;}
._5{width:5.714400px;}
._10{width:6.843600px;}
._8{width:7.969500px;}
._7{width:8.987850px;}
._d{width:10.383300px;}
._15{width:11.456400px;}
._9{width:12.458250px;}
._12{width:13.533000px;}
._f{width:14.697000px;}
._c{width:16.254150px;}
._b{width:17.263650px;}
._16{width:18.305550px;}
._e{width:20.831250px;}
._19{width:55.441050px;}
._17{width:73.350000px;}
._18{width:74.683200px;}
._14{width:105.675000px;}
._11{width:202.289850px;}
._13{width:208.451400px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:9.000000px;}
.fs13{font-size:31.500000px;}
.fs12{font-size:31.650000px;}
.fs5{font-size:36.000000px;}
.fsc{font-size:36.150000px;}
.fs3{font-size:40.500000px;}
.fsa{font-size:40.650000px;}
.fs4{font-size:49.500000px;}
.fsd{font-size:49.650000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:54.150000px;}
.fs2{font-size:58.500000px;}
.fs9{font-size:58.650000px;}
.fs10{font-size:67.500000px;}
.fs11{font-size:67.650000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs1{font-size:85.650000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:108.150000px;}
.y97{bottom:-13.245000px;}
.y1a0{bottom:-1.725000px;}
.y1a2{bottom:-0.630000px;}
.yc4{bottom:-0.600000px;}
.y1da{bottom:-0.300000px;}
.y1dc{bottom:-0.255000px;}
.y1e3{bottom:-0.180000px;}
.y1df{bottom:-0.150000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:0.015000px;}
.yc6{bottom:0.420000px;}
.y1a6{bottom:0.450000px;}
.y1a4{bottom:0.495000px;}
.y1e1{bottom:0.945000px;}
.y120{bottom:1.125000px;}
.y1aa{bottom:1.320000px;}
.ya1{bottom:1.425000px;}
.y1a8{bottom:1.455000px;}
.y19d{bottom:1.695000px;}
.y11f{bottom:2.250000px;}
.y9f{bottom:2.670000px;}
.y41{bottom:3.360000px;}
.y4b{bottom:3.375000px;}
.ya6{bottom:3.390000px;}
.y53{bottom:3.420000px;}
.yc1{bottom:4.170000px;}
.y44{bottom:4.500000px;}
.y106{bottom:4.515000px;}
.y162{bottom:4.725000px;}
.y94{bottom:4.800000px;}
.ye9{bottom:4.830000px;}
.y99{bottom:4.845000px;}
.y90{bottom:4.875000px;}
.yf3{bottom:5.550000px;}
.y102{bottom:5.625000px;}
.y92{bottom:5.895000px;}
.y107{bottom:6.795000px;}
.y146{bottom:7.080000px;}
.y148{bottom:7.170000px;}
.y172{bottom:7.875000px;}
.yab{bottom:7.905000px;}
.y9d{bottom:9.300000px;}
.y49{bottom:11.295000px;}
.y72{bottom:13.500000px;}
.y101{bottom:16.875000px;}
.yc9{bottom:16.905000px;}
.ya3{bottom:18.000000px;}
.y16c{bottom:18.015000px;}
.y4a{bottom:19.155000px;}
.yfe{bottom:19.470000px;}
.y142{bottom:19.950000px;}
.y12f{bottom:20.250000px;}
.y88{bottom:20.280000px;}
.ya5{bottom:20.295000px;}
.y1d5{bottom:20.445000px;}
.y35{bottom:21.375000px;}
.y197{bottom:21.390000px;}
.y43{bottom:21.405000px;}
.y47{bottom:21.420000px;}
.ybf{bottom:23.700000px;}
.ye7{bottom:24.375000px;}
.yf1{bottom:25.080000px;}
.y196{bottom:34.890000px;}
.y194{bottom:34.920000px;}
.yba{bottom:36.030000px;}
.ye2{bottom:36.705000px;}
.yfc{bottom:36.750000px;}
.yec{bottom:37.425000px;}
.y181{bottom:37.575000px;}
.y1d2{bottom:38.250000px;}
.y34{bottom:38.295000px;}
.y13f{bottom:39.450000px;}
.yf6{bottom:49.095000px;}
.y17b{bottom:49.920000px;}
.y138{bottom:51.825000px;}
.y1c9{bottom:52.350000px;}
.y33{bottom:55.170000px;}
.ybb{bottom:58.920000px;}
.ye3{bottom:59.580000px;}
.yed{bottom:60.300000px;}
.yf7{bottom:69.630000px;}
.yc0{bottom:70.980000px;}
.ye8{bottom:71.670000px;}
.yf2{bottom:72.375000px;}
.y139{bottom:75.825000px;}
.ybc{bottom:81.825000px;}
.yfd{bottom:82.155000px;}
.ye4{bottom:82.500000px;}
.y1ce{bottom:82.830000px;}
.yee{bottom:83.130000px;}
.y17c{bottom:89.475000px;}
.yf8{bottom:90.150000px;}
.y1d3{bottom:94.380000px;}
.y1ca{bottom:98.070000px;}
.y13a{bottom:99.870000px;}
.y140{bottom:100.650000px;}
.y9b{bottom:102.705000px;}
.ybd{bottom:104.700000px;}
.ye5{bottom:105.375000px;}
.yef{bottom:106.005000px;}
.y2{bottom:106.950000px;}
.y1d4{bottom:107.955000px;}
.yf9{bottom:110.700000px;}
.y141{bottom:111.330000px;}
.y1cf{bottom:113.295000px;}
.yc2{bottom:119.325000px;}
.yea{bottom:121.080000px;}
.yf4{bottom:121.170000px;}
.y1{bottom:122.737500px;}
.y13b{bottom:123.870000px;}
.ybe{bottom:127.575000px;}
.ye6{bottom:128.250000px;}
.yf0{bottom:128.850000px;}
.y17d{bottom:129.045000px;}
.yfa{bottom:131.205000px;}
.y31{bottom:138.487500px;}
.y8e{bottom:140.737500px;}
.y1cb{bottom:143.745000px;}
.y30{bottom:144.112500px;}
.y136{bottom:147.487500px;}
.y13c{bottom:147.870000px;}
.yff{bottom:149.220000px;}
.y19b{bottom:149.737500px;}
.y182{bottom:150.045000px;}
.yfb{bottom:151.770000px;}
.y15f{bottom:151.995000px;}
.y2f{bottom:154.245000px;}
.y6a{bottom:155.370000px;}
.y8d{bottom:157.620000px;}
.yb8{bottom:163.275000px;}
.y135{bottom:164.400000px;}
.y15e{bottom:165.525000px;}
.y17e{bottom:168.630000px;}
.ye0{bottom:171.150000px;}
.y13d{bottom:171.900000px;}
.y1c7{bottom:172.275000px;}
.y69{bottom:173.400000px;}
.y1d0{bottom:174.225000px;}
.y8c{bottom:175.650000px;}
.y134{bottom:181.275000px;}
.yb9{bottom:183.375000px;}
.y144{bottom:184.995000px;}
.ydf{bottom:188.025000px;}
.y1cc{bottom:189.450000px;}
.y68{bottom:190.275000px;}
.y8b{bottom:192.525000px;}
.y13e{bottom:195.900000px;}
.y19a{bottom:197.025000px;}
.y133{bottom:199.275000px;}
.y143{bottom:199.980000px;}
.y2e{bottom:200.400000px;}
.y1d8{bottom:202.125000px;}
.y67{bottom:203.775000px;}
.y1d1{bottom:204.675000px;}
.yde{bottom:206.070000px;}
.y179{bottom:207.195000px;}
.y17f{bottom:208.200000px;}
.y8a{bottom:209.445000px;}
.y185{bottom:209.505000px;}
.y1d7{bottom:215.850000px;}
.y132{bottom:216.195000px;}
.y2d{bottom:218.445000px;}
.y1c6{bottom:219.570000px;}
.y66{bottom:220.695000px;}
.ydd{bottom:222.945000px;}
.y178{bottom:225.195000px;}
.y184{bottom:225.330000px;}
.y89{bottom:227.445000px;}
.y1d6{bottom:229.575000px;}
.y131{bottom:233.070000px;}
.y1c5{bottom:234.195000px;}
.y1cd{bottom:235.125000px;}
.y2c{bottom:235.320000px;}
.y1a9{bottom:237.375000px;}
.ydc{bottom:239.820000px;}
.y87{bottom:240.945000px;}
.y183{bottom:241.200000px;}
.y65{bottom:242.070000px;}
.y180{bottom:247.755000px;}
.y1c4{bottom:249.975000px;}
.y130{bottom:251.100000px;}
.y2b{bottom:252.225000px;}
.y161{bottom:254.250000px;}
.ydb{bottom:257.850000px;}
.y177{bottom:258.975000px;}
.y64{bottom:260.100000px;}
.y12e{bottom:264.600000px;}
.y1c3{bottom:265.725000px;}
.y2a{bottom:270.225000px;}
.y86{bottom:273.600000px;}
.y9a{bottom:274.500000px;}
.yda{bottom:274.725000px;}
.y63{bottom:276.975000px;}
.y1c2{bottom:281.475000px;}
.y29{bottom:287.130000px;}
.yd9{bottom:291.645000px;}
.y62{bottom:293.880000px;}
.y1c1{bottom:297.255000px;}
.y12c{bottom:298.380000px;}
.y137{bottom:302.625000px;}
.y28{bottom:304.005000px;}
.y91{bottom:306.000000px;}
.yd8{bottom:309.630000px;}
.y176{bottom:310.755000px;}
.y61{bottom:311.895000px;}
.y27{bottom:322.020000px;}
.y175{bottom:324.255000px;}
.yd7{bottom:326.505000px;}
.y1c0{bottom:327.630000px;}
.y60{bottom:328.800000px;}
.y96{bottom:330.750000px;}
.y174{bottom:331.050000px;}
.y26{bottom:338.925000px;}
.y93{bottom:339.750000px;}
.yd6{bottom:343.425000px;}
.y5f{bottom:345.675000px;}
.y9c{bottom:348.750000px;}
.y25{bottom:355.800000px;}
.y173{bottom:359.175000px;}
.yd5{bottom:361.425000px;}
.yb7{bottom:362.550000px;}
.y5e{bottom:363.675000px;}
.y1a7{bottom:372.375000px;}
.y24{bottom:373.830000px;}
.y98{bottom:374.625000px;}
.yd4{bottom:378.330000px;}
.yb6{bottom:379.455000px;}
.y5d{bottom:380.580000px;}
.y145{bottom:384.750000px;}
.y171{bottom:386.205000px;}
.y1bf{bottom:389.595000px;}
.y23{bottom:390.705000px;}
.yd3{bottom:395.205000px;}
.y5c{bottom:397.455000px;}
.y199{bottom:406.455000px;}
.y22{bottom:407.580000px;}
.y170{bottom:408.705000px;}
.yd2{bottom:413.250000px;}
.yb5{bottom:414.375000px;}
.y5b{bottom:415.500000px;}
.y1be{bottom:420.000000px;}
.y198{bottom:424.500000px;}
.y21{bottom:425.625000px;}
.y8f{bottom:429.750000px;}
.yd1{bottom:430.125000px;}
.y5a{bottom:432.375000px;}
.y95{bottom:435.375000px;}
.y20{bottom:442.500000px;}
.y160{bottom:446.625000px;}
.yd0{bottom:447.000000px;}
.y59{bottom:449.250000px;}
.y9e{bottom:451.125000px;}
.y147{bottom:455.625000px;}
.y195{bottom:458.280000px;}
.yc5{bottom:459.000000px;}
.y1f{bottom:459.420000px;}
.y16f{bottom:460.530000px;}
.ycf{bottom:465.030000px;}
.y58{bottom:467.295000px;}
.y1bd{bottom:471.780000px;}
.y16e{bottom:477.405000px;}
.y1e{bottom:477.420000px;}
.ya0{bottom:478.125000px;}
.yce{bottom:481.905000px;}
.y57{bottom:484.170000px;}
.y1bc{bottom:488.655000px;}
.y1d{bottom:494.295000px;}
.ycd{bottom:495.450000px;}
.y56{bottom:501.075000px;}
.y1a5{bottom:501.750000px;}
.y85{bottom:503.325000px;}
.y1bb{bottom:505.575000px;}
.y1c{bottom:511.200000px;}
.y16d{bottom:512.325000px;}
.y118{bottom:515.700000px;}
.y15d{bottom:517.950000px;}
.y55{bottom:519.075000px;}
.y84{bottom:520.200000px;}
.y1ba{bottom:523.575000px;}
.y12b{bottom:525.825000px;}
.y1b{bottom:529.200000px;}
.ycc{bottom:530.325000px;}
.yf5{bottom:532.125000px;}
.y54{bottom:532.575000px;}
.y117{bottom:533.700000px;}
.y15c{bottom:534.825000px;}
.y52{bottom:535.950000px;}
.y83{bottom:537.120000px;}
.y1b9{bottom:540.495000px;}
.y12a{bottom:542.745000px;}
.y1a{bottom:546.120000px;}
.y1a3{bottom:546.750000px;}
.y1a1{bottom:547.875000px;}
.y116{bottom:550.620000px;}
.y16b{bottom:552.855000px;}
.y15b{bottom:552.870000px;}
.y82{bottom:555.105000px;}
.y1b8{bottom:557.370000px;}
.y51{bottom:558.480000px;}
.y129{bottom:559.620000px;}
.y19{bottom:562.995000px;}
.y193{bottom:565.230000px;}
.y115{bottom:567.495000px;}
.y15a{bottom:569.745000px;}
.y81{bottom:571.980000px;}
.y1b7{bottom:575.355000px;}
.y128{bottom:577.620000px;}
.y18{bottom:581.025000px;}
.y50{bottom:582.150000px;}
.y114{bottom:585.525000px;}
.y159{bottom:586.650000px;}
.y80{bottom:588.900000px;}
.y1b6{bottom:592.275000px;}
.y127{bottom:594.525000px;}
.y17{bottom:597.900000px;}
.y113{bottom:602.400000px;}
.y4f{bottom:604.650000px;}
.yc3{bottom:605.250000px;}
.y7f{bottom:606.900000px;}
.y19e{bottom:608.625000px;}
.y1b5{bottom:609.150000px;}
.y19f{bottom:609.750000px;}
.y126{bottom:611.400000px;}
.y112{bottom:619.275000px;}
.y158{bottom:621.570000px;}
.y7e{bottom:623.820000px;}
.y4e{bottom:627.195000px;}
.y16{bottom:629.445000px;}
.y111{bottom:637.320000px;}
.y157{bottom:638.445000px;}
.y7d{bottom:640.695000px;}
.y1b4{bottom:644.070000px;}
.y125{bottom:646.320000px;}
.y4d{bottom:649.695000px;}
.y110{bottom:654.195000px;}
.y19c{bottom:654.750000px;}
.y156{bottom:656.445000px;}
.y7c{bottom:658.695000px;}
.y1b3{bottom:660.945000px;}
.y124{bottom:663.225000px;}
.y10f{bottom:671.100000px;}
.y4c{bottom:672.225000px;}
.y155{bottom:673.350000px;}
.y7b{bottom:675.600000px;}
.y123{bottom:676.725000px;}
.y192{bottom:677.850000px;}
.y1b2{bottom:678.975000px;}
.y15{bottom:680.100000px;}
.y10e{bottom:689.100000px;}
.y154{bottom:690.225000px;}
.y7a{bottom:692.475000px;}
.y48{bottom:694.725000px;}
.y1b1{bottom:695.850000px;}
.y10d{bottom:706.020000px;}
.ycb{bottom:707.130000px;}
.y153{bottom:708.255000px;}
.y79{bottom:710.505000px;}
.y122{bottom:711.630000px;}
.y191{bottom:712.770000px;}
.y14{bottom:713.880000px;}
.y16a{bottom:716.145000px;}
.yca{bottom:720.630000px;}
.y152{bottom:725.130000px;}
.y78{bottom:727.380000px;}
.y46{bottom:729.630000px;}
.y13{bottom:729.645000px;}
.y1b0{bottom:730.755000px;}
.y169{bottom:733.020000px;}
.y10c{bottom:735.255000px;}
.y151{bottom:742.005000px;}
.yb4{bottom:744.255000px;}
.y12{bottom:745.425000px;}
.y190{bottom:746.550000px;}
.y1af{bottom:747.675000px;}
.y168{bottom:751.050000px;}
.y77{bottom:756.675000px;}
.y121{bottom:758.925000px;}
.y11{bottom:760.050000px;}
.yb3{bottom:762.300000px;}
.y18f{bottom:764.550000px;}
.y45{bottom:767.925000px;}
.y10b{bottom:770.175000px;}
.yc8{bottom:772.425000px;}
.y10{bottom:775.800000px;}
.y150{bottom:776.925000px;}
.yb2{bottom:779.175000px;}
.y1ae{bottom:780.300000px;}
.y42{bottom:781.425000px;}
.y167{bottom:784.800000px;}
.yeb{bottom:790.875000px;}
.yf{bottom:791.580000px;}
.y14f{bottom:793.830000px;}
.yb1{bottom:796.080000px;}
.y18e{bottom:798.330000px;}
.y166{bottom:802.830000px;}
.ye{bottom:807.330000px;}
.y76{bottom:809.580000px;}
.y14e{bottom:811.830000px;}
.yb0{bottom:814.080000px;}
.y40{bottom:814.095000px;}
.y18d{bottom:816.330000px;}
.y165{bottom:819.705000px;}
.y10a{bottom:820.830000px;}
.yd{bottom:823.080000px;}
.y75{bottom:826.455000px;}
.yaf{bottom:827.580000px;}
.y14d{bottom:828.750000px;}
.y1ad{bottom:831.000000px;}
.yae{bottom:832.125000px;}
.y164{bottom:833.250000px;}
.y109{bottom:834.375000px;}
.yc{bottom:837.750000px;}
.y108{bottom:841.125000px;}
.y74{bottom:843.375000px;}
.y1ac{bottom:844.500000px;}
.y14c{bottom:845.625000px;}
.y18c{bottom:850.125000px;}
.yb{bottom:853.500000px;}
.yad{bottom:856.875000px;}
.y73{bottom:861.375000px;}
.y14b{bottom:863.625000px;}
.y163{bottom:868.125000px;}
.y17a{bottom:868.500000px;}
.ya{bottom:869.250000px;}
.y71{bottom:874.920000px;}
.y1ab{bottom:879.420000px;}
.y1c8{bottom:879.750000px;}
.y14a{bottom:880.545000px;}
.yac{bottom:881.670000px;}
.y9{bottom:885.045000px;}
.y3f{bottom:886.170000px;}
.y11e{bottom:889.545000px;}
.y105{bottom:890.655000px;}
.y149{bottom:897.420000px;}
.y8{bottom:900.795000px;}
.y18b{bottom:901.920000px;}
.y3e{bottom:903.045000px;}
.yaa{bottom:905.295000px;}
.y70{bottom:915.450000px;}
.y18a{bottom:919.950000px;}
.y3d{bottom:921.075000px;}
.ya9{bottom:926.700000px;}
.y104{bottom:928.950000px;}
.y6f{bottom:932.325000px;}
.y189{bottom:936.825000px;}
.y103{bottom:942.450000px;}
.ya8{bottom:946.950000px;}
.y1d9{bottom:947.250000px;}
.y3c{bottom:949.200000px;}
.yc7{bottom:953.745000px;}
.ya7{bottom:964.995000px;}
.y7{bottom:966.120000px;}
.y6e{bottom:967.245000px;}
.y1db{bottom:969.750000px;}
.y188{bottom:971.745000px;}
.ye1{bottom:973.125000px;}
.y100{bottom:977.370000px;}
.ya4{bottom:978.480000px;}
.y6d{bottom:984.120000px;}
.y3b{bottom:985.245000px;}
.y1dd{bottom:987.750000px;}
.y187{bottom:988.620000px;}
.y5{bottom:993.120000px;}
.y6{bottom:998.775000px;}
.y6c{bottom:1001.025000px;}
.y186{bottom:1005.525000px;}
.ya2{bottom:1012.275000px;}
.y6b{bottom:1019.025000px;}
.y11d{bottom:1023.525000px;}
.y4{bottom:1033.650000px;}
.y3a{bottom:1035.945000px;}
.y11c{bottom:1041.570000px;}
.y39{bottom:1052.820000px;}
.y1e2{bottom:1056.375000px;}
.y11b{bottom:1058.445000px;}
.y1e0{bottom:1059.750000px;}
.y3{bottom:1061.820000px;}
.y38{bottom:1070.820000px;}
.y11a{bottom:1075.320000px;}
.y37{bottom:1087.725000px;}
.y119{bottom:1093.350000px;}
.y1de{bottom:1094.625000px;}
.y36{bottom:1104.600000px;}
.y32{bottom:1122.630000px;}
.h18{height:6.284180px;}
.h33{height:11.250000px;}
.h57{height:12.375000px;}
.h58{height:13.500000px;}
.h2b{height:14.610000px;}
.h15{height:14.625000px;}
.h3c{height:14.662500px;}
.h13{height:15.750000px;}
.h2a{height:15.772500px;}
.h14{height:15.787500px;}
.h27{height:16.875000px;}
.h1b{height:16.912500px;}
.h19{height:18.000000px;}
.h54{height:18.037500px;}
.h20{height:20.250000px;}
.h22{height:21.375000px;}
.h4b{height:23.625000px;}
.h45{height:24.750000px;}
.h7{height:25.136719px;}
.h32{height:27.000000px;}
.h30{height:28.278809px;}
.h31{height:28.383545px;}
.h12{height:30.412500px;}
.h35{height:31.797510px;}
.hf{height:32.662500px;}
.h49{height:33.750000px;}
.h29{height:33.787500px;}
.h5{height:34.562988px;}
.h5d{height:34.667725px;}
.h39{height:34.875000px;}
.h11{height:34.912500px;}
.h1c{height:35.985000px;}
.h2{height:37.705078px;}
.h44{height:37.809814px;}
.h8{height:38.100586px;}
.h46{height:38.720215px;}
.h47{height:38.837549px;}
.h4f{height:40.537500px;}
.h6{height:40.847168px;}
.h24{height:40.951904px;}
.h10{height:41.275635px;}
.h34{height:42.240234px;}
.hd{height:42.589600px;}
.h9{height:44.507812px;}
.hc{height:46.278809px;}
.h4{height:46.398809px;}
.h41{height:47.287500px;}
.h16{height:47.636719px;}
.h26{height:48.375000px;}
.h5b{height:50.800781px;}
.h37{height:51.787500px;}
.ha{height:52.417969px;}
.h56{height:52.800293px;}
.h59{height:52.917627px;}
.h3d{height:56.287500px;}
.h21{height:56.320312px;}
.h23{height:56.437646px;}
.h3{height:60.431763px;}
.hb{height:68.662500px;}
.he{height:68.685000px;}
.h1a{height:74.496094px;}
.h50{height:84.450000px;}
.h4a{height:84.480469px;}
.h4c{height:84.597803px;}
.h2c{height:99.112500px;}
.h53{height:106.950000px;}
.h52{height:109.237500px;}
.h1e{height:119.496094px;}
.h28{height:123.862500px;}
.h1d{height:123.996094px;}
.h3f{height:130.597500px;}
.h40{height:130.612500px;}
.h3b{height:140.737500px;}
.h4e{height:159.900000px;}
.h2f{height:163.125000px;}
.h3a{height:172.125000px;}
.h38{height:173.430000px;}
.h36{height:181.320000px;}
.h2e{height:182.400000px;}
.h17{height:197.070000px;}
.h55{height:209.445000px;}
.h43{height:216.000000px;}
.h2d{height:222.930000px;}
.h42{height:222.945000px;}
.h25{height:225.000000px;}
.h1f{height:225.225000px;}
.h3e{height:254.475000px;}
.h5c{height:256.500000px;}
.h5a{height:256.725000px;}
.h51{height:267.750000px;}
.h4d{height:268.005000px;}
.h48{height:297.300000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w31{width:41.625000px;}
.w30{width:42.750000px;}
.w28{width:43.875000px;}
.w27{width:49.500000px;}
.w26{width:50.625000px;}
.w2d{width:55.125000px;}
.wc{width:55.162500px;}
.wd{width:55.200000px;}
.w2e{width:56.250000px;}
.wf{width:58.500000px;}
.w11{width:59.625000px;}
.w15{width:63.000000px;}
.w10{width:69.750000px;}
.w16{width:72.000000px;}
.w14{width:78.750000px;}
.w13{width:94.500000px;}
.w2f{width:104.625000px;}
.w19{width:104.737500px;}
.w1b{width:105.900000px;}
.w1c{width:106.987500px;}
.w1a{width:119.400000px;}
.w9{width:140.812500px;}
.wa{width:141.937500px;}
.w8{width:143.062500px;}
.w22{width:170.055000px;}
.w24{width:170.070000px;}
.w23{width:170.100000px;}
.w2a{width:192.600000px;}
.w2b{width:193.725000px;}
.w29{width:193.755000px;}
.w1e{width:202.500000px;}
.w5{width:250.050000px;}
.w7{width:259.050000px;}
.w18{width:309.750000px;}
.w20{width:340.155000px;}
.w21{width:340.170000px;}
.w17{width:370.575000px;}
.w25{width:388.125000px;}
.w4{width:430.275000px;}
.w1f{width:444.375000px;}
.wb{width:455.085000px;}
.we{width:456.225000px;}
.w1d{width:552.375000px;}
.w2c{width:646.875000px;}
.w32{width:663.750000px;}
.w12{width:679.500000px;}
.w6{width:680.325000px;}
.w3{width:691.575000px;}
.w2{width:893.249973px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:7.875000px;}
.x1c{left:9.000000px;}
.xf{left:10.125000px;}
.x38{left:11.775000px;}
.x3a{left:12.975000px;}
.x3c{left:14.175000px;}
.x93{left:15.225000px;}
.x3f{left:16.230000px;}
.x36{left:17.445000px;}
.x7e{left:18.525000px;}
.x63{left:20.655000px;}
.x43{left:22.980000px;}
.x3d{left:27.450000px;}
.x2e{left:29.280000px;}
.x2c{left:30.420000px;}
.xe{left:31.537500px;}
.x4f{left:32.655000px;}
.x4d{left:36.030000px;}
.x52{left:37.155000px;}
.x55{left:38.280000px;}
.x54{left:39.405000px;}
.x19{left:40.575000px;}
.x53{left:41.655000px;}
.x51{left:43.950000px;}
.x7a{left:48.525000px;}
.x1a{left:49.575000px;}
.x1f{left:51.825000px;}
.x25{left:52.950000px;}
.x21{left:55.185000px;}
.x23{left:56.325000px;}
.x27{left:59.685000px;}
.x8d{left:63.075000px;}
.x26{left:66.450000px;}
.x69{left:69.750000px;}
.x8c{left:73.230000px;}
.x5e{left:78.270000px;}
.x1d{left:83.370000px;}
.x22{left:84.495000px;}
.x28{left:85.605000px;}
.x29{left:87.870000px;}
.x60{left:88.995000px;}
.x24{left:90.120000px;}
.x5b{left:91.155000px;}
.x12{left:92.355000px;}
.x5c{left:94.695000px;}
.xd{left:105.900000px;}
.x9{left:107.024987px;}
.x5d{left:113.700000px;}
.x15{left:114.870000px;}
.x17{left:117.150000px;}
.x70{left:118.275000px;}
.x76{left:119.400000px;}
.xa1{left:120.524987px;}
.x66{left:121.649987px;}
.xa0{left:123.900000px;}
.x85{left:125.025000px;}
.xa2{left:127.274987px;}
.xa{left:128.399987px;}
.x82{left:129.525000px;}
.x1{left:132.899987px;}
.xc{left:137.437487px;}
.x87{left:139.650000px;}
.x4a{left:144.150000px;}
.x78{left:146.400000px;}
.x8{left:149.812487px;}
.x89{left:156.570000px;}
.x46{left:157.695000px;}
.x6c{left:161.070000px;}
.x2a{left:164.445000px;}
.x5a{left:168.750000px;}
.x2{left:171.224987px;}
.x73{left:172.320000px;}
.x16{left:174.600000px;}
.x14{left:182.475000px;}
.x92{left:186.975000px;}
.x2f{left:191.475000px;}
.x7c{left:193.005000px;}
.x65{left:194.850000px;}
.x72{left:195.975000px;}
.x10{left:203.850000px;}
.x6f{left:210.630000px;}
.x68{left:222.750000px;}
.x30{left:226.425000px;}
.x4b{left:228.675000px;}
.x57{left:232.020000px;}
.x49{left:236.505000px;}
.x34{left:237.630000px;}
.x83{left:239.625000px;}
.x79{left:250.875000px;}
.xa9{left:256.500000px;}
.x7{left:266.954987px;}
.x74{left:277.095000px;}
.x44{left:282.375000px;}
.x59{left:296.205000px;}
.x6e{left:297.375000px;}
.x48{left:299.625000px;}
.x9e{left:301.500000px;}
.x62{left:309.375000px;}
.x86{left:312.000000px;}
.x6b{left:316.500000px;}
.xa5{left:317.745000px;}
.x90{left:321.000000px;}
.x7b{left:323.580000px;}
.x4c{left:333.420000px;}
.x13{left:340.170000px;}
.xb{left:344.654987px;}
.x8a{left:350.325000px;}
.xa7{left:355.500000px;}
.x4{left:357.074987px;}
.x6a{left:360.300000px;}
.x45{left:361.575000px;}
.x95{left:373.500000px;}
.x42{left:380.250000px;}
.x98{left:381.375000px;}
.x3e{left:383.625000px;}
.x5f{left:384.750000px;}
.x7d{left:388.125000px;}
.x3{left:393.104987px;}
.x40{left:405.645000px;}
.x67{left:406.875000px;}
.x61{left:407.925000px;}
.x37{left:414.000000px;}
.x96{left:415.125000px;}
.x9b{left:423.000000px;}
.x7f{left:425.250000px;}
.x18{left:433.650000px;}
.x1e{left:434.775000px;}
.x35{left:441.000000px;}
.x6d{left:447.195000px;}
.x4e{left:452.820000px;}
.xa8{left:455.625000px;}
.x39{left:456.750000px;}
.x8e{left:461.925000px;}
.x99{left:468.000000px;}
.xa6{left:474.000000px;}
.x47{left:477.600000px;}
.x41{left:489.375000px;}
.x97{left:491.625000px;}
.x9c{left:499.500000px;}
.x8f{left:502.350000px;}
.x32{left:503.475000px;}
.x91{left:510.255000px;}
.x75{left:512.505000px;}
.x88{left:518.145000px;}
.x3b{left:520.875000px;}
.x56{left:522.630000px;}
.x94{left:533.250000px;}
.x77{left:535.020000px;}
.x11{left:537.300000px;}
.x9a{left:541.125000px;}
.x8b{left:542.925000px;}
.x5{left:547.424973px;}
.x6{left:554.174987px;}
.x50{left:558.720000px;}
.x64{left:563.175000px;}
.x9d{left:571.500000px;}
.x1b{left:576.720000px;}
.x20{left:577.845000px;}
.xa3{left:597.570000px;}
.x81{left:616.125000px;}
.x58{left:617.250000px;}
.x2b{left:619.530000px;}
.x71{left:630.795000px;}
.x31{left:647.700000px;}
.xa4{left:660.900000px;}
.x84{left:664.575000px;}
.x9f{left:672.450000px;}
.x2d{left:674.700000px;}
.x80{left:698.369987px;}
@media print{
.v3{vertical-align:-20.000000pt;}
.v2{vertical-align:-16.106667pt;}
.v7{vertical-align:-12.000000pt;}
.va{vertical-align:-7.946669pt;}
.v4{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.000000pt;}
.vb{vertical-align:7.999998pt;}
.v1{vertical-align:16.106667pt;}
.v6{vertical-align:20.000000pt;}
.v8{vertical-align:44.000000pt;}
.v9{vertical-align:52.000000pt;}
.ls6{letter-spacing:-2.458667pt;}
.ls32{letter-spacing:-1.989333pt;}
.ls2a{letter-spacing:-1.866667pt;}
.ls11{letter-spacing:-1.792000pt;}
.ls1d{letter-spacing:-1.776000pt;}
.ls10{letter-spacing:-1.317333pt;}
.ls5{letter-spacing:-1.002667pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.810667pt;}
.ls35{letter-spacing:-0.312533pt;}
.ls27{letter-spacing:-0.227733pt;}
.ls24{letter-spacing:-0.100800pt;}
.ls33{letter-spacing:-0.066667pt;}
.ls20{letter-spacing:-0.016000pt;}
.ls26{letter-spacing:-0.012000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.066667pt;}
.ls21{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.336000pt;}
.ls36{letter-spacing:0.432000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls30{letter-spacing:0.655333pt;}
.ls2f{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.746667pt;}
.ls2c{letter-spacing:0.912000pt;}
.ls29{letter-spacing:1.029333pt;}
.lsc{letter-spacing:1.082667pt;}
.ls15{letter-spacing:1.116000pt;}
.ls2b{letter-spacing:1.276400pt;}
.ls2d{letter-spacing:1.317333pt;}
.ls34{letter-spacing:1.328000pt;}
.ls1b{letter-spacing:1.704000pt;}
.ls12{letter-spacing:1.792000pt;}
.ls0{letter-spacing:1.924000pt;}
.ls1a{letter-spacing:1.946667pt;}
.ls7{letter-spacing:1.989333pt;}
.ls1{letter-spacing:2.000000pt;}
.ls1c{letter-spacing:2.010667pt;}
.ls28{letter-spacing:2.682667pt;}
.ls2e{letter-spacing:3.000000pt;}
.ls25{letter-spacing:3.106667pt;}
.lsd{letter-spacing:3.156000pt;}
.ls17{letter-spacing:4.092000pt;}
.lsf{letter-spacing:4.912000pt;}
.ls19{letter-spacing:10.872000pt;}
.ls16{letter-spacing:13.316000pt;}
.ls18{letter-spacing:14.472000pt;}
.lsb{letter-spacing:17.544000pt;}
.lsa{letter-spacing:21.544000pt;}
.ls22{letter-spacing:21.650667pt;}
.ls2{letter-spacing:66.341333pt;}
.ls9{letter-spacing:69.677333pt;}
.wsf{word-spacing:-52.227733pt;}
.ws14{word-spacing:-52.000000pt;}
.ws16{word-spacing:-51.189333pt;}
.ws2d{word-spacing:-44.133333pt;}
.ws2c{word-spacing:-44.000000pt;}
.ws10{word-spacing:-36.746667pt;}
.wse{word-spacing:-34.844000pt;}
.ws15{word-spacing:-30.684000pt;}
.ws0{word-spacing:-19.033333pt;}
.ws26{word-spacing:-17.912000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws28{word-spacing:-15.682667pt;}
.ws3{word-spacing:-15.000000pt;}
.ws1b{word-spacing:-14.924000pt;}
.ws2f{word-spacing:-14.317333pt;}
.ws2e{word-spacing:-13.912000pt;}
.ws1a{word-spacing:-13.033333pt;}
.ws8{word-spacing:-13.000000pt;}
.ws27{word-spacing:-12.772267pt;}
.ws13{word-spacing:-12.100000pt;}
.ws17{word-spacing:-12.088000pt;}
.ws2b{word-spacing:-12.033333pt;}
.wsc{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.682667pt;}
.ws32{word-spacing:-11.033333pt;}
.ws11{word-spacing:-11.010667pt;}
.ws21{word-spacing:-11.000000pt;}
.ws5{word-spacing:-10.989333pt;}
.ws4{word-spacing:-10.541333pt;}
.wsb{word-spacing:-9.792000pt;}
.ws1c{word-spacing:-9.117333pt;}
.ws1e{word-spacing:-9.033333pt;}
.ws6{word-spacing:-9.012000pt;}
.ws12{word-spacing:-9.000000pt;}
.ws19{word-spacing:-8.984000pt;}
.ws1d{word-spacing:-8.448000pt;}
.wsd{word-spacing:-8.000000pt;}
.ws31{word-spacing:-7.010667pt;}
.wsa{word-spacing:-6.208000pt;}
.ws1{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.624000pt;}
.ws34{word-spacing:6.827067pt;}
.ws33{word-spacing:39.418667pt;}
.ws29{word-spacing:66.361333pt;}
.ws24{word-spacing:70.906133pt;}
.ws30{word-spacing:87.884400pt;}
.ws25{word-spacing:130.628000pt;}
.ws20{word-spacing:176.671867pt;}
.ws23{word-spacing:177.199467pt;}
.ws1f{word-spacing:177.294667pt;}
.ws22{word-spacing:178.776000pt;}
._a{margin-left:-5.657733pt;}
._4{margin-left:-3.987600pt;}
._2{margin-left:-2.512400pt;}
._1{margin-left:-1.370400pt;}
._0{width:1.598800pt;}
._3{width:2.664667pt;}
._6{width:3.861200pt;}
._5{width:5.079467pt;}
._10{width:6.083200pt;}
._8{width:7.084000pt;}
._7{width:7.989200pt;}
._d{width:9.229600pt;}
._15{width:10.183467pt;}
._9{width:11.074000pt;}
._12{width:12.029333pt;}
._f{width:13.064000pt;}
._c{width:14.448133pt;}
._b{width:15.345467pt;}
._16{width:16.271600pt;}
._e{width:18.516667pt;}
._19{width:49.280933pt;}
._17{width:65.200000pt;}
._18{width:66.385067pt;}
._14{width:93.933333pt;}
._11{width:179.813200pt;}
._13{width:185.290133pt;}
.fs7{font-size:8.000000pt;}
.fs13{font-size:28.000000pt;}
.fs12{font-size:28.133333pt;}
.fs5{font-size:32.000000pt;}
.fsc{font-size:32.133333pt;}
.fs3{font-size:36.000000pt;}
.fsa{font-size:36.133333pt;}
.fs4{font-size:44.000000pt;}
.fsd{font-size:44.133333pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:48.133333pt;}
.fs2{font-size:52.000000pt;}
.fs9{font-size:52.133333pt;}
.fs10{font-size:60.000000pt;}
.fs11{font-size:60.133333pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs1{font-size:76.133333pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:96.133333pt;}
.y97{bottom:-11.773333pt;}
.y1a0{bottom:-1.533333pt;}
.y1a2{bottom:-0.560000pt;}
.yc4{bottom:-0.533333pt;}
.y1da{bottom:-0.266667pt;}
.y1dc{bottom:-0.226667pt;}
.y1e3{bottom:-0.160000pt;}
.y1df{bottom:-0.133333pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:0.013333pt;}
.yc6{bottom:0.373333pt;}
.y1a6{bottom:0.400000pt;}
.y1a4{bottom:0.440000pt;}
.y1e1{bottom:0.840000pt;}
.y120{bottom:1.000000pt;}
.y1aa{bottom:1.173333pt;}
.ya1{bottom:1.266667pt;}
.y1a8{bottom:1.293333pt;}
.y19d{bottom:1.506667pt;}
.y11f{bottom:2.000000pt;}
.y9f{bottom:2.373333pt;}
.y41{bottom:2.986667pt;}
.y4b{bottom:3.000000pt;}
.ya6{bottom:3.013333pt;}
.y53{bottom:3.040000pt;}
.yc1{bottom:3.706667pt;}
.y44{bottom:4.000000pt;}
.y106{bottom:4.013333pt;}
.y162{bottom:4.200000pt;}
.y94{bottom:4.266667pt;}
.ye9{bottom:4.293333pt;}
.y99{bottom:4.306667pt;}
.y90{bottom:4.333333pt;}
.yf3{bottom:4.933333pt;}
.y102{bottom:5.000000pt;}
.y92{bottom:5.240000pt;}
.y107{bottom:6.040000pt;}
.y146{bottom:6.293333pt;}
.y148{bottom:6.373333pt;}
.y172{bottom:7.000000pt;}
.yab{bottom:7.026667pt;}
.y9d{bottom:8.266667pt;}
.y49{bottom:10.040000pt;}
.y72{bottom:12.000000pt;}
.y101{bottom:15.000000pt;}
.yc9{bottom:15.026667pt;}
.ya3{bottom:16.000000pt;}
.y16c{bottom:16.013333pt;}
.y4a{bottom:17.026667pt;}
.yfe{bottom:17.306667pt;}
.y142{bottom:17.733333pt;}
.y12f{bottom:18.000000pt;}
.y88{bottom:18.026667pt;}
.ya5{bottom:18.040000pt;}
.y1d5{bottom:18.173333pt;}
.y35{bottom:19.000000pt;}
.y197{bottom:19.013333pt;}
.y43{bottom:19.026667pt;}
.y47{bottom:19.040000pt;}
.ybf{bottom:21.066667pt;}
.ye7{bottom:21.666667pt;}
.yf1{bottom:22.293333pt;}
.y196{bottom:31.013333pt;}
.y194{bottom:31.040000pt;}
.yba{bottom:32.026667pt;}
.ye2{bottom:32.626667pt;}
.yfc{bottom:32.666667pt;}
.yec{bottom:33.266667pt;}
.y181{bottom:33.400000pt;}
.y1d2{bottom:34.000000pt;}
.y34{bottom:34.040000pt;}
.y13f{bottom:35.066667pt;}
.yf6{bottom:43.640000pt;}
.y17b{bottom:44.373333pt;}
.y138{bottom:46.066667pt;}
.y1c9{bottom:46.533333pt;}
.y33{bottom:49.040000pt;}
.ybb{bottom:52.373333pt;}
.ye3{bottom:52.960000pt;}
.yed{bottom:53.600000pt;}
.yf7{bottom:61.893333pt;}
.yc0{bottom:63.093333pt;}
.ye8{bottom:63.706667pt;}
.yf2{bottom:64.333333pt;}
.y139{bottom:67.400000pt;}
.ybc{bottom:72.733333pt;}
.yfd{bottom:73.026667pt;}
.ye4{bottom:73.333333pt;}
.y1ce{bottom:73.626667pt;}
.yee{bottom:73.893333pt;}
.y17c{bottom:79.533333pt;}
.yf8{bottom:80.133333pt;}
.y1d3{bottom:83.893333pt;}
.y1ca{bottom:87.173333pt;}
.y13a{bottom:88.773333pt;}
.y140{bottom:89.466667pt;}
.y9b{bottom:91.293333pt;}
.ybd{bottom:93.066667pt;}
.ye5{bottom:93.666667pt;}
.yef{bottom:94.226667pt;}
.y2{bottom:95.066667pt;}
.y1d4{bottom:95.960000pt;}
.yf9{bottom:98.400000pt;}
.y141{bottom:98.960000pt;}
.y1cf{bottom:100.706667pt;}
.yc2{bottom:106.066667pt;}
.yea{bottom:107.626667pt;}
.yf4{bottom:107.706667pt;}
.y1{bottom:109.100000pt;}
.y13b{bottom:110.106667pt;}
.ybe{bottom:113.400000pt;}
.ye6{bottom:114.000000pt;}
.yf0{bottom:114.533333pt;}
.y17d{bottom:114.706667pt;}
.yfa{bottom:116.626667pt;}
.y31{bottom:123.100000pt;}
.y8e{bottom:125.100000pt;}
.y1cb{bottom:127.773333pt;}
.y30{bottom:128.100000pt;}
.y136{bottom:131.100000pt;}
.y13c{bottom:131.440000pt;}
.yff{bottom:132.640000pt;}
.y19b{bottom:133.100000pt;}
.y182{bottom:133.373333pt;}
.yfb{bottom:134.906667pt;}
.y15f{bottom:135.106667pt;}
.y2f{bottom:137.106667pt;}
.y6a{bottom:138.106667pt;}
.y8d{bottom:140.106667pt;}
.yb8{bottom:145.133333pt;}
.y135{bottom:146.133333pt;}
.y15e{bottom:147.133333pt;}
.y17e{bottom:149.893333pt;}
.ye0{bottom:152.133333pt;}
.y13d{bottom:152.800000pt;}
.y1c7{bottom:153.133333pt;}
.y69{bottom:154.133333pt;}
.y1d0{bottom:154.866667pt;}
.y8c{bottom:156.133333pt;}
.y134{bottom:161.133333pt;}
.yb9{bottom:163.000000pt;}
.y144{bottom:164.440000pt;}
.ydf{bottom:167.133333pt;}
.y1cc{bottom:168.400000pt;}
.y68{bottom:169.133333pt;}
.y8b{bottom:171.133333pt;}
.y13e{bottom:174.133333pt;}
.y19a{bottom:175.133333pt;}
.y133{bottom:177.133333pt;}
.y143{bottom:177.760000pt;}
.y2e{bottom:178.133333pt;}
.y1d8{bottom:179.666667pt;}
.y67{bottom:181.133333pt;}
.y1d1{bottom:181.933333pt;}
.yde{bottom:183.173333pt;}
.y179{bottom:184.173333pt;}
.y17f{bottom:185.066667pt;}
.y8a{bottom:186.173333pt;}
.y185{bottom:186.226667pt;}
.y1d7{bottom:191.866667pt;}
.y132{bottom:192.173333pt;}
.y2d{bottom:194.173333pt;}
.y1c6{bottom:195.173333pt;}
.y66{bottom:196.173333pt;}
.ydd{bottom:198.173333pt;}
.y178{bottom:200.173333pt;}
.y184{bottom:200.293333pt;}
.y89{bottom:202.173333pt;}
.y1d6{bottom:204.066667pt;}
.y131{bottom:207.173333pt;}
.y1c5{bottom:208.173333pt;}
.y1cd{bottom:209.000000pt;}
.y2c{bottom:209.173333pt;}
.y1a9{bottom:211.000000pt;}
.ydc{bottom:213.173333pt;}
.y87{bottom:214.173333pt;}
.y183{bottom:214.400000pt;}
.y65{bottom:215.173333pt;}
.y180{bottom:220.226667pt;}
.y1c4{bottom:222.200000pt;}
.y130{bottom:223.200000pt;}
.y2b{bottom:224.200000pt;}
.y161{bottom:226.000000pt;}
.ydb{bottom:229.200000pt;}
.y177{bottom:230.200000pt;}
.y64{bottom:231.200000pt;}
.y12e{bottom:235.200000pt;}
.y1c3{bottom:236.200000pt;}
.y2a{bottom:240.200000pt;}
.y86{bottom:243.200000pt;}
.y9a{bottom:244.000000pt;}
.yda{bottom:244.200000pt;}
.y63{bottom:246.200000pt;}
.y1c2{bottom:250.200000pt;}
.y29{bottom:255.226667pt;}
.yd9{bottom:259.240000pt;}
.y62{bottom:261.226667pt;}
.y1c1{bottom:264.226667pt;}
.y12c{bottom:265.226667pt;}
.y137{bottom:269.000000pt;}
.y28{bottom:270.226667pt;}
.y91{bottom:272.000000pt;}
.yd8{bottom:275.226667pt;}
.y176{bottom:276.226667pt;}
.y61{bottom:277.240000pt;}
.y27{bottom:286.240000pt;}
.y175{bottom:288.226667pt;}
.yd7{bottom:290.226667pt;}
.y1c0{bottom:291.226667pt;}
.y60{bottom:292.266667pt;}
.y96{bottom:294.000000pt;}
.y174{bottom:294.266667pt;}
.y26{bottom:301.266667pt;}
.y93{bottom:302.000000pt;}
.yd6{bottom:305.266667pt;}
.y5f{bottom:307.266667pt;}
.y9c{bottom:310.000000pt;}
.y25{bottom:316.266667pt;}
.y173{bottom:319.266667pt;}
.yd5{bottom:321.266667pt;}
.yb7{bottom:322.266667pt;}
.y5e{bottom:323.266667pt;}
.y1a7{bottom:331.000000pt;}
.y24{bottom:332.293333pt;}
.y98{bottom:333.000000pt;}
.yd4{bottom:336.293333pt;}
.yb6{bottom:337.293333pt;}
.y5d{bottom:338.293333pt;}
.y145{bottom:342.000000pt;}
.y171{bottom:343.293333pt;}
.y1bf{bottom:346.306667pt;}
.y23{bottom:347.293333pt;}
.yd3{bottom:351.293333pt;}
.y5c{bottom:353.293333pt;}
.y199{bottom:361.293333pt;}
.y22{bottom:362.293333pt;}
.y170{bottom:363.293333pt;}
.yd2{bottom:367.333333pt;}
.yb5{bottom:368.333333pt;}
.y5b{bottom:369.333333pt;}
.y1be{bottom:373.333333pt;}
.y198{bottom:377.333333pt;}
.y21{bottom:378.333333pt;}
.y8f{bottom:382.000000pt;}
.yd1{bottom:382.333333pt;}
.y5a{bottom:384.333333pt;}
.y95{bottom:387.000000pt;}
.y20{bottom:393.333333pt;}
.y160{bottom:397.000000pt;}
.yd0{bottom:397.333333pt;}
.y59{bottom:399.333333pt;}
.y9e{bottom:401.000000pt;}
.y147{bottom:405.000000pt;}
.y195{bottom:407.360000pt;}
.yc5{bottom:408.000000pt;}
.y1f{bottom:408.373333pt;}
.y16f{bottom:409.360000pt;}
.ycf{bottom:413.360000pt;}
.y58{bottom:415.373333pt;}
.y1bd{bottom:419.360000pt;}
.y16e{bottom:424.360000pt;}
.y1e{bottom:424.373333pt;}
.ya0{bottom:425.000000pt;}
.yce{bottom:428.360000pt;}
.y57{bottom:430.373333pt;}
.y1bc{bottom:434.360000pt;}
.y1d{bottom:439.373333pt;}
.ycd{bottom:440.400000pt;}
.y56{bottom:445.400000pt;}
.y1a5{bottom:446.000000pt;}
.y85{bottom:447.400000pt;}
.y1bb{bottom:449.400000pt;}
.y1c{bottom:454.400000pt;}
.y16d{bottom:455.400000pt;}
.y118{bottom:458.400000pt;}
.y15d{bottom:460.400000pt;}
.y55{bottom:461.400000pt;}
.y84{bottom:462.400000pt;}
.y1ba{bottom:465.400000pt;}
.y12b{bottom:467.400000pt;}
.y1b{bottom:470.400000pt;}
.ycc{bottom:471.400000pt;}
.yf5{bottom:473.000000pt;}
.y54{bottom:473.400000pt;}
.y117{bottom:474.400000pt;}
.y15c{bottom:475.400000pt;}
.y52{bottom:476.400000pt;}
.y83{bottom:477.440000pt;}
.y1b9{bottom:480.440000pt;}
.y12a{bottom:482.440000pt;}
.y1a{bottom:485.440000pt;}
.y1a3{bottom:486.000000pt;}
.y1a1{bottom:487.000000pt;}
.y116{bottom:489.440000pt;}
.y16b{bottom:491.426667pt;}
.y15b{bottom:491.440000pt;}
.y82{bottom:493.426667pt;}
.y1b8{bottom:495.440000pt;}
.y51{bottom:496.426667pt;}
.y129{bottom:497.440000pt;}
.y19{bottom:500.440000pt;}
.y193{bottom:502.426667pt;}
.y115{bottom:504.440000pt;}
.y15a{bottom:506.440000pt;}
.y81{bottom:508.426667pt;}
.y1b7{bottom:511.426667pt;}
.y128{bottom:513.440000pt;}
.y18{bottom:516.466667pt;}
.y50{bottom:517.466667pt;}
.y114{bottom:520.466667pt;}
.y159{bottom:521.466667pt;}
.y80{bottom:523.466667pt;}
.y1b6{bottom:526.466667pt;}
.y127{bottom:528.466667pt;}
.y17{bottom:531.466667pt;}
.y113{bottom:535.466667pt;}
.y4f{bottom:537.466667pt;}
.yc3{bottom:538.000000pt;}
.y7f{bottom:539.466667pt;}
.y19e{bottom:541.000000pt;}
.y1b5{bottom:541.466667pt;}
.y19f{bottom:542.000000pt;}
.y126{bottom:543.466667pt;}
.y112{bottom:550.466667pt;}
.y158{bottom:552.506667pt;}
.y7e{bottom:554.506667pt;}
.y4e{bottom:557.506667pt;}
.y16{bottom:559.506667pt;}
.y111{bottom:566.506667pt;}
.y157{bottom:567.506667pt;}
.y7d{bottom:569.506667pt;}
.y1b4{bottom:572.506667pt;}
.y125{bottom:574.506667pt;}
.y4d{bottom:577.506667pt;}
.y110{bottom:581.506667pt;}
.y19c{bottom:582.000000pt;}
.y156{bottom:583.506667pt;}
.y7c{bottom:585.506667pt;}
.y1b3{bottom:587.506667pt;}
.y124{bottom:589.533333pt;}
.y10f{bottom:596.533333pt;}
.y4c{bottom:597.533333pt;}
.y155{bottom:598.533333pt;}
.y7b{bottom:600.533333pt;}
.y123{bottom:601.533333pt;}
.y192{bottom:602.533333pt;}
.y1b2{bottom:603.533333pt;}
.y15{bottom:604.533333pt;}
.y10e{bottom:612.533333pt;}
.y154{bottom:613.533333pt;}
.y7a{bottom:615.533333pt;}
.y48{bottom:617.533333pt;}
.y1b1{bottom:618.533333pt;}
.y10d{bottom:627.573333pt;}
.ycb{bottom:628.560000pt;}
.y153{bottom:629.560000pt;}
.y79{bottom:631.560000pt;}
.y122{bottom:632.560000pt;}
.y191{bottom:633.573333pt;}
.y14{bottom:634.560000pt;}
.y16a{bottom:636.573333pt;}
.yca{bottom:640.560000pt;}
.y152{bottom:644.560000pt;}
.y78{bottom:646.560000pt;}
.y46{bottom:648.560000pt;}
.y13{bottom:648.573333pt;}
.y1b0{bottom:649.560000pt;}
.y169{bottom:651.573333pt;}
.y10c{bottom:653.560000pt;}
.y151{bottom:659.560000pt;}
.yb4{bottom:661.560000pt;}
.y12{bottom:662.600000pt;}
.y190{bottom:663.600000pt;}
.y1af{bottom:664.600000pt;}
.y168{bottom:667.600000pt;}
.y77{bottom:672.600000pt;}
.y121{bottom:674.600000pt;}
.y11{bottom:675.600000pt;}
.yb3{bottom:677.600000pt;}
.y18f{bottom:679.600000pt;}
.y45{bottom:682.600000pt;}
.y10b{bottom:684.600000pt;}
.yc8{bottom:686.600000pt;}
.y10{bottom:689.600000pt;}
.y150{bottom:690.600000pt;}
.yb2{bottom:692.600000pt;}
.y1ae{bottom:693.600000pt;}
.y42{bottom:694.600000pt;}
.y167{bottom:697.600000pt;}
.yeb{bottom:703.000000pt;}
.yf{bottom:703.626667pt;}
.y14f{bottom:705.626667pt;}
.yb1{bottom:707.626667pt;}
.y18e{bottom:709.626667pt;}
.y166{bottom:713.626667pt;}
.ye{bottom:717.626667pt;}
.y76{bottom:719.626667pt;}
.y14e{bottom:721.626667pt;}
.yb0{bottom:723.626667pt;}
.y40{bottom:723.640000pt;}
.y18d{bottom:725.626667pt;}
.y165{bottom:728.626667pt;}
.y10a{bottom:729.626667pt;}
.yd{bottom:731.626667pt;}
.y75{bottom:734.626667pt;}
.yaf{bottom:735.626667pt;}
.y14d{bottom:736.666667pt;}
.y1ad{bottom:738.666667pt;}
.yae{bottom:739.666667pt;}
.y164{bottom:740.666667pt;}
.y109{bottom:741.666667pt;}
.yc{bottom:744.666667pt;}
.y108{bottom:747.666667pt;}
.y74{bottom:749.666667pt;}
.y1ac{bottom:750.666667pt;}
.y14c{bottom:751.666667pt;}
.y18c{bottom:755.666667pt;}
.yb{bottom:758.666667pt;}
.yad{bottom:761.666667pt;}
.y73{bottom:765.666667pt;}
.y14b{bottom:767.666667pt;}
.y163{bottom:771.666667pt;}
.y17a{bottom:772.000000pt;}
.ya{bottom:772.666667pt;}
.y71{bottom:777.706667pt;}
.y1ab{bottom:781.706667pt;}
.y1c8{bottom:782.000000pt;}
.y14a{bottom:782.706667pt;}
.yac{bottom:783.706667pt;}
.y9{bottom:786.706667pt;}
.y3f{bottom:787.706667pt;}
.y11e{bottom:790.706667pt;}
.y105{bottom:791.693333pt;}
.y149{bottom:797.706667pt;}
.y8{bottom:800.706667pt;}
.y18b{bottom:801.706667pt;}
.y3e{bottom:802.706667pt;}
.yaa{bottom:804.706667pt;}
.y70{bottom:813.733333pt;}
.y18a{bottom:817.733333pt;}
.y3d{bottom:818.733333pt;}
.ya9{bottom:823.733333pt;}
.y104{bottom:825.733333pt;}
.y6f{bottom:828.733333pt;}
.y189{bottom:832.733333pt;}
.y103{bottom:837.733333pt;}
.ya8{bottom:841.733333pt;}
.y1d9{bottom:842.000000pt;}
.y3c{bottom:843.733333pt;}
.yc7{bottom:847.773333pt;}
.ya7{bottom:857.773333pt;}
.y7{bottom:858.773333pt;}
.y6e{bottom:859.773333pt;}
.y1db{bottom:862.000000pt;}
.y188{bottom:863.773333pt;}
.ye1{bottom:865.000000pt;}
.y100{bottom:868.773333pt;}
.ya4{bottom:869.760000pt;}
.y6d{bottom:874.773333pt;}
.y3b{bottom:875.773333pt;}
.y1dd{bottom:878.000000pt;}
.y187{bottom:878.773333pt;}
.y5{bottom:882.773333pt;}
.y6{bottom:887.800000pt;}
.y6c{bottom:889.800000pt;}
.y186{bottom:893.800000pt;}
.ya2{bottom:899.800000pt;}
.y6b{bottom:905.800000pt;}
.y11d{bottom:909.800000pt;}
.y4{bottom:918.800000pt;}
.y3a{bottom:920.840000pt;}
.y11c{bottom:925.840000pt;}
.y39{bottom:935.840000pt;}
.y1e2{bottom:939.000000pt;}
.y11b{bottom:940.840000pt;}
.y1e0{bottom:942.000000pt;}
.y3{bottom:943.840000pt;}
.y38{bottom:951.840000pt;}
.y11a{bottom:955.840000pt;}
.y37{bottom:966.866667pt;}
.y119{bottom:971.866667pt;}
.y1de{bottom:973.000000pt;}
.y36{bottom:981.866667pt;}
.y32{bottom:997.893333pt;}
.h18{height:5.585938pt;}
.h33{height:10.000000pt;}
.h57{height:11.000000pt;}
.h58{height:12.000000pt;}
.h2b{height:12.986667pt;}
.h15{height:13.000000pt;}
.h3c{height:13.033333pt;}
.h13{height:14.000000pt;}
.h2a{height:14.020000pt;}
.h14{height:14.033333pt;}
.h27{height:15.000000pt;}
.h1b{height:15.033333pt;}
.h19{height:16.000000pt;}
.h54{height:16.033333pt;}
.h20{height:18.000000pt;}
.h22{height:19.000000pt;}
.h4b{height:21.000000pt;}
.h45{height:22.000000pt;}
.h7{height:22.343750pt;}
.h32{height:24.000000pt;}
.h30{height:25.136719pt;}
.h31{height:25.229818pt;}
.h12{height:27.033333pt;}
.h35{height:28.264453pt;}
.hf{height:29.033333pt;}
.h49{height:30.000000pt;}
.h29{height:30.033333pt;}
.h5{height:30.722656pt;}
.h5d{height:30.815755pt;}
.h39{height:31.000000pt;}
.h11{height:31.033333pt;}
.h1c{height:31.986667pt;}
.h2{height:33.515625pt;}
.h44{height:33.608724pt;}
.h8{height:33.867188pt;}
.h46{height:34.417969pt;}
.h47{height:34.522266pt;}
.h4f{height:36.033333pt;}
.h6{height:36.308594pt;}
.h24{height:36.401693pt;}
.h10{height:36.689453pt;}
.h34{height:37.546875pt;}
.hd{height:37.857422pt;}
.h9{height:39.562500pt;}
.hc{height:41.136719pt;}
.h4{height:41.243385pt;}
.h41{height:42.033333pt;}
.h16{height:42.343750pt;}
.h26{height:43.000000pt;}
.h5b{height:45.156250pt;}
.h37{height:46.033333pt;}
.ha{height:46.593750pt;}
.h56{height:46.933594pt;}
.h59{height:47.037891pt;}
.h3d{height:50.033333pt;}
.h21{height:50.062500pt;}
.h23{height:50.166797pt;}
.h3{height:53.717122pt;}
.hb{height:61.033333pt;}
.he{height:61.053333pt;}
.h1a{height:66.218750pt;}
.h50{height:75.066667pt;}
.h4a{height:75.093750pt;}
.h4c{height:75.198047pt;}
.h2c{height:88.100000pt;}
.h53{height:95.066667pt;}
.h52{height:97.100000pt;}
.h1e{height:106.218750pt;}
.h28{height:110.100000pt;}
.h1d{height:110.218750pt;}
.h3f{height:116.086667pt;}
.h40{height:116.100000pt;}
.h3b{height:125.100000pt;}
.h4e{height:142.133333pt;}
.h2f{height:145.000000pt;}
.h3a{height:153.000000pt;}
.h38{height:154.160000pt;}
.h36{height:161.173333pt;}
.h2e{height:162.133333pt;}
.h17{height:175.173333pt;}
.h55{height:186.173333pt;}
.h43{height:192.000000pt;}
.h2d{height:198.160000pt;}
.h42{height:198.173333pt;}
.h25{height:200.000000pt;}
.h1f{height:200.200000pt;}
.h3e{height:226.200000pt;}
.h5c{height:228.000000pt;}
.h5a{height:228.200000pt;}
.h51{height:238.000000pt;}
.h4d{height:238.226667pt;}
.h48{height:264.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w31{width:37.000000pt;}
.w30{width:38.000000pt;}
.w28{width:39.000000pt;}
.w27{width:44.000000pt;}
.w26{width:45.000000pt;}
.w2d{width:49.000000pt;}
.wc{width:49.033333pt;}
.wd{width:49.066667pt;}
.w2e{width:50.000000pt;}
.wf{width:52.000000pt;}
.w11{width:53.000000pt;}
.w15{width:56.000000pt;}
.w10{width:62.000000pt;}
.w16{width:64.000000pt;}
.w14{width:70.000000pt;}
.w13{width:84.000000pt;}
.w2f{width:93.000000pt;}
.w19{width:93.100000pt;}
.w1b{width:94.133333pt;}
.w1c{width:95.100000pt;}
.w1a{width:106.133333pt;}
.w9{width:125.166667pt;}
.wa{width:126.166667pt;}
.w8{width:127.166667pt;}
.w22{width:151.160000pt;}
.w24{width:151.173333pt;}
.w23{width:151.200000pt;}
.w2a{width:171.200000pt;}
.w2b{width:172.200000pt;}
.w29{width:172.226667pt;}
.w1e{width:180.000000pt;}
.w5{width:222.266667pt;}
.w7{width:230.266667pt;}
.w18{width:275.333333pt;}
.w20{width:302.360000pt;}
.w21{width:302.373333pt;}
.w17{width:329.400000pt;}
.w25{width:345.000000pt;}
.w4{width:382.466667pt;}
.w1f{width:395.000000pt;}
.wb{width:404.520000pt;}
.we{width:405.533333pt;}
.w1d{width:491.000000pt;}
.w2c{width:575.000000pt;}
.w32{width:590.000000pt;}
.w12{width:604.000000pt;}
.w6{width:604.733333pt;}
.w3{width:614.733333pt;}
.w2{width:793.999976pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:7.000000pt;}
.x1c{left:8.000000pt;}
.xf{left:9.000000pt;}
.x38{left:10.466667pt;}
.x3a{left:11.533333pt;}
.x3c{left:12.600000pt;}
.x93{left:13.533333pt;}
.x3f{left:14.426667pt;}
.x36{left:15.506667pt;}
.x7e{left:16.466667pt;}
.x63{left:18.360000pt;}
.x43{left:20.426667pt;}
.x3d{left:24.400000pt;}
.x2e{left:26.026667pt;}
.x2c{left:27.040000pt;}
.xe{left:28.033333pt;}
.x4f{left:29.026667pt;}
.x4d{left:32.026667pt;}
.x52{left:33.026667pt;}
.x55{left:34.026667pt;}
.x54{left:35.026667pt;}
.x19{left:36.066667pt;}
.x53{left:37.026667pt;}
.x51{left:39.066667pt;}
.x7a{left:43.133333pt;}
.x1a{left:44.066667pt;}
.x1f{left:46.066667pt;}
.x25{left:47.066667pt;}
.x21{left:49.053333pt;}
.x23{left:50.066667pt;}
.x27{left:53.053333pt;}
.x8d{left:56.066667pt;}
.x26{left:59.066667pt;}
.x69{left:62.000000pt;}
.x8c{left:65.093333pt;}
.x5e{left:69.573333pt;}
.x1d{left:74.106667pt;}
.x22{left:75.106667pt;}
.x28{left:76.093333pt;}
.x29{left:78.106667pt;}
.x60{left:79.106667pt;}
.x24{left:80.106667pt;}
.x5b{left:81.026667pt;}
.x12{left:82.093333pt;}
.x5c{left:84.173333pt;}
.xd{left:94.133333pt;}
.x9{left:95.133322pt;}
.x5d{left:101.066667pt;}
.x15{left:102.106667pt;}
.x17{left:104.133333pt;}
.x70{left:105.133333pt;}
.x76{left:106.133333pt;}
.xa1{left:107.133322pt;}
.x66{left:108.133322pt;}
.xa0{left:110.133333pt;}
.x85{left:111.133333pt;}
.xa2{left:113.133322pt;}
.xa{left:114.133322pt;}
.x82{left:115.133333pt;}
.x1{left:118.133322pt;}
.xc{left:122.166655pt;}
.x87{left:124.133333pt;}
.x4a{left:128.133333pt;}
.x78{left:130.133333pt;}
.x8{left:133.166655pt;}
.x89{left:139.173333pt;}
.x46{left:140.173333pt;}
.x6c{left:143.173333pt;}
.x2a{left:146.173333pt;}
.x5a{left:150.000000pt;}
.x2{left:152.199988pt;}
.x73{left:153.173333pt;}
.x16{left:155.200000pt;}
.x14{left:162.200000pt;}
.x92{left:166.200000pt;}
.x2f{left:170.200000pt;}
.x7c{left:171.560000pt;}
.x65{left:173.200000pt;}
.x72{left:174.200000pt;}
.x10{left:181.200000pt;}
.x6f{left:187.226667pt;}
.x68{left:198.000000pt;}
.x30{left:201.266667pt;}
.x4b{left:203.266667pt;}
.x57{left:206.240000pt;}
.x49{left:210.226667pt;}
.x34{left:211.226667pt;}
.x83{left:213.000000pt;}
.x79{left:223.000000pt;}
.xa9{left:228.000000pt;}
.x7{left:237.293322pt;}
.x74{left:246.306667pt;}
.x44{left:251.000000pt;}
.x59{left:263.293333pt;}
.x6e{left:264.333333pt;}
.x48{left:266.333333pt;}
.x9e{left:268.000000pt;}
.x62{left:275.000000pt;}
.x86{left:277.333333pt;}
.x6b{left:281.333333pt;}
.xa5{left:282.440000pt;}
.x90{left:285.333333pt;}
.x7b{left:287.626667pt;}
.x4c{left:296.373333pt;}
.x13{left:302.373333pt;}
.xb{left:306.359988pt;}
.x8a{left:311.400000pt;}
.xa7{left:316.000000pt;}
.x4{left:317.399988pt;}
.x6a{left:320.266667pt;}
.x45{left:321.400000pt;}
.x95{left:332.000000pt;}
.x42{left:338.000000pt;}
.x98{left:339.000000pt;}
.x3e{left:341.000000pt;}
.x5f{left:342.000000pt;}
.x7d{left:345.000000pt;}
.x3{left:349.426655pt;}
.x40{left:360.573333pt;}
.x67{left:361.666667pt;}
.x61{left:362.600000pt;}
.x37{left:368.000000pt;}
.x96{left:369.000000pt;}
.x9b{left:376.000000pt;}
.x7f{left:378.000000pt;}
.x18{left:385.466667pt;}
.x1e{left:386.466667pt;}
.x35{left:392.000000pt;}
.x6d{left:397.506667pt;}
.x4e{left:402.506667pt;}
.xa8{left:405.000000pt;}
.x39{left:406.000000pt;}
.x8e{left:410.600000pt;}
.x99{left:416.000000pt;}
.xa6{left:421.333333pt;}
.x47{left:424.533333pt;}
.x41{left:435.000000pt;}
.x97{left:437.000000pt;}
.x9c{left:444.000000pt;}
.x8f{left:446.533333pt;}
.x32{left:447.533333pt;}
.x91{left:453.560000pt;}
.x75{left:455.560000pt;}
.x88{left:460.573333pt;}
.x3b{left:463.000000pt;}
.x56{left:464.560000pt;}
.x94{left:474.000000pt;}
.x77{left:475.573333pt;}
.x11{left:477.600000pt;}
.x9a{left:481.000000pt;}
.x8b{left:482.600000pt;}
.x5{left:486.599976pt;}
.x6{left:492.599988pt;}
.x50{left:496.640000pt;}
.x64{left:500.600000pt;}
.x9d{left:508.000000pt;}
.x1b{left:512.640000pt;}
.x20{left:513.640000pt;}
.xa3{left:531.173333pt;}
.x81{left:547.666667pt;}
.x58{left:548.666667pt;}
.x2b{left:550.693333pt;}
.x71{left:560.706667pt;}
.x31{left:575.733333pt;}
.xa4{left:587.466667pt;}
.x84{left:590.733333pt;}
.x9f{left:597.733333pt;}
.x2d{left:599.733333pt;}
.x80{left:620.773322pt;}
}




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