
    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_bf0f486df7184e024869c43e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_62b52db6d963936345716959.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_62be6af8a1dc97133cca71bc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d8bb7442a2926b3d7ce728e9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1d639e3090455772bd03fc73.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_b6fa13113c5602f6ef346336.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_c624cd338fae97f3eccad136.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:46.080000px;}
.ls2f{letter-spacing:-0.774000px;}
.ls25{letter-spacing:-0.460200px;}
.ls22{letter-spacing:-0.363000px;}
.ls9{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.229800px;}
.ls2c{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.052560px;}
.ls1f{letter-spacing:-0.046800px;}
.ls21{letter-spacing:-0.040320px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.018000px;}
.lse{letter-spacing:0.033840px;}
.ls5{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.070560px;}
.ls23{letter-spacing:0.093000px;}
.ls2a{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.237600px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.364800px;}
.ls1d{letter-spacing:0.532800px;}
.lsd{letter-spacing:3.060000px;}
.ls2e{letter-spacing:16.506720px;}
.ls17{letter-spacing:16.559280px;}
.ls19{letter-spacing:19.020960px;}
.ls16{letter-spacing:19.740960px;}
.ls10{letter-spacing:43.842720px;}
.ls11{letter-spacing:43.866720px;}
.ls2d{letter-spacing:46.026720px;}
.ls13{letter-spacing:64.002720px;}
.ls15{letter-spacing:64.026720px;}
.ls26{letter-spacing:79.122720px;}
.lsf{letter-spacing:81.306720px;}
.ls2b{letter-spacing:82.722720px;}
.ls4{letter-spacing:82.746720px;}
.ls12{letter-spacing:120.557280px;}
.lsb{letter-spacing:148.242720px;}
.ls27{letter-spacing:168.426720px;}
.ls1a{letter-spacing:249.299280px;}
.ls18{letter-spacing:312.659280px;}
.ls1c{letter-spacing:583.379280px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws10{word-spacing:-13.512000px;}
.ws0{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.240200px;}
.wsb{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.100400px;}
.wsd{word-spacing:-13.094640px;}
.wse{word-spacing:-12.784200px;}
.ws11{word-spacing:-9.737280px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.145560px;}
._37{margin-left:-15.263040px;}
._38{margin-left:-11.635440px;}
._20{margin-left:-8.251200px;}
._22{margin-left:-6.811200px;}
._3b{margin-left:-5.580000px;}
._3a{margin-left:-4.039920px;}
._39{margin-left:-2.150400px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._8{width:2.743440px;}
._c{width:3.770400px;}
._7{width:4.883280px;}
._6{width:5.904480px;}
._5{width:7.008960px;}
._10{width:8.101920px;}
._9{width:9.215040px;}
._e{width:10.631760px;}
._f{width:11.645280px;}
._d{width:13.087440px;}
._23{width:15.079680px;}
._12{width:16.129680px;}
._a{width:17.623440px;}
._b{width:18.711120px;}
._11{width:19.959840px;}
._14{width:21.078720px;}
._1e{width:23.300880px;}
._1d{width:24.708480px;}
._15{width:25.990080px;}
._17{width:38.531760px;}
._16{width:39.561120px;}
._25{width:42.728400px;}
._1c{width:43.836240px;}
._27{width:48.584880px;}
._28{width:51.393600px;}
._34{width:56.646960px;}
._2b{width:64.002960px;}
._2c{width:67.947120px;}
._29{width:81.333360px;}
._2d{width:97.946640px;}
._13{width:119.726880px;}
._31{width:125.735040px;}
._26{width:133.802640px;}
._2f{width:136.551600px;}
._19{width:142.984320px;}
._18{width:144.021600px;}
._21{width:159.620880px;}
._30{width:181.311840px;}
._2e{width:186.565200px;}
._35{width:189.020880px;}
._2a{width:190.574640px;}
._32{width:206.291520px;}
._36{width:229.119840px;}
._33{width:247.107600px;}
._4{width:393.300000px;}
._1b{width:480.052080px;}
._1a{width:481.187520px;}
._3{width:833.400000px;}
._1f{width:1144.386000px;}
._2{width:1590.936000px;}
._24{width:2422.115520px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc9{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y2d{bottom:3.240000px;}
.y19d{bottom:3.780000px;}
.y1be{bottom:4.500000px;}
.y184{bottom:4.680000px;}
.y186{bottom:4.860000px;}
.y142{bottom:5.040000px;}
.y13a{bottom:5.220000px;}
.y1e0{bottom:5.760000px;}
.y13f{bottom:6.120000px;}
.y1c4{bottom:6.480000px;}
.y15e{bottom:6.840000px;}
.y152{bottom:7.020000px;}
.y14f{bottom:7.200000px;}
.y1e2{bottom:7.560000px;}
.y1d4{bottom:7.920000px;}
.y1d1{bottom:8.460000px;}
.y19c{bottom:10.080000px;}
.y1ac{bottom:10.260000px;}
.ye9{bottom:10.620000px;}
.y1b2{bottom:10.800000px;}
.y19a{bottom:11.160000px;}
.yf4{bottom:11.700000px;}
.yed{bottom:11.880000px;}
.y166{bottom:11.925000px;}
.y1a0{bottom:12.240000px;}
.y1af{bottom:12.420000px;}
.yef{bottom:13.140000px;}
.y1d8{bottom:13.320000px;}
.y1c5{bottom:15.120000px;}
.y15c{bottom:15.480000px;}
.y104{bottom:15.660000px;}
.y173{bottom:15.840000px;}
.y130{bottom:16.560000px;}
.yf6{bottom:17.640000px;}
.y1aa{bottom:19.260000px;}
.y105{bottom:19.440000px;}
.y1b8{bottom:20.334000px;}
.y2c{bottom:20.340000px;}
.y167{bottom:20.385000px;}
.y160{bottom:20.520000px;}
.y179{bottom:20.565000px;}
.y126{bottom:20.880000px;}
.y1b0{bottom:21.060000px;}
.yeb{bottom:21.780000px;}
.y12c{bottom:22.500000px;}
.y124{bottom:22.680000px;}
.y1df{bottom:23.040000px;}
.y1b5{bottom:23.220000px;}
.y1c1{bottom:23.400000px;}
.y1c3{bottom:23.580000px;}
.y1bc{bottom:23.760000px;}
.y15d{bottom:24.120000px;}
.y172{bottom:24.480000px;}
.y1d3{bottom:25.200000px;}
.y1d0{bottom:25.740000px;}
.y12e{bottom:26.280000px;}
.y1c8{bottom:28.080000px;}
.y199{bottom:28.440000px;}
.y1a4{bottom:28.620000px;}
.y19f{bottom:29.520000px;}
.y1ae{bottom:29.700000px;}
.yee{bottom:30.240000px;}
.y1d7{bottom:30.600000px;}
.y1b6{bottom:31.860000px;}
.yf1{bottom:34.920000px;}
.y1a9{bottom:36.540000px;}
.y102{bottom:37.260000px;}
.y2b{bottom:37.620000px;}
.y1da{bottom:37.800000px;}
.yf3{bottom:38.700000px;}
.yec{bottom:38.880000px;}
.y12b{bottom:39.780000px;}
.y123{bottom:39.960000px;}
.y1b4{bottom:40.500000px;}
.y1c0{bottom:40.680000px;}
.y1bb{bottom:41.040000px;}
.y1cf{bottom:42.840000px;}
.y12f{bottom:43.380000px;}
.y195{bottom:43.740000px;}
.y1c7{bottom:45.180000px;}
.y1cc{bottom:45.360000px;}
.y1a3{bottom:45.900000px;}
.y1d6{bottom:47.880000px;}
.y128{bottom:48.420000px;}
.y120{bottom:48.600000px;}
.yf5{bottom:52.200000px;}
.y101{bottom:54.540000px;}
.y2a{bottom:54.900000px;}
.y12a{bottom:57.060000px;}
.y122{bottom:57.240000px;}
.y11e{bottom:62.685000px;}
.yf2{bottom:65.700000px;}
.y112{bottom:65.745000px;}
.y194{bottom:68.616000px;}
.y100{bottom:71.820000px;}
.y29{bottom:72.225000px;}
.ye{bottom:73.620000px;}
.y121{bottom:74.340000px;}
.y11d{bottom:79.785000px;}
.yf8{bottom:88.920000px;}
.y28{bottom:89.505000px;}
.y129{bottom:92.520000px;}
.yfc{bottom:92.700000px;}
.y111{bottom:92.745000px;}
.y193{bottom:94.896000px;}
.y11c{bottom:97.065000px;}
.yc{bottom:98.460000px;}
.yff{bottom:106.200000px;}
.y27{bottom:109.305000px;}
.y1f7{bottom:110.016000px;}
.y11b{bottom:114.345000px;}
.yfb{bottom:119.700000px;}
.y110{bottom:119.745000px;}
.y1b9{bottom:119.916000px;}
.yfe{bottom:123.480000px;}
.ya{bottom:124.740000px;}
.y26{bottom:129.105000px;}
.y1f6{bottom:129.816000px;}
.y11a{bottom:131.625000px;}
.y1b7{bottom:134.676000px;}
.y1dd{bottom:137.916000px;}
.y34{bottom:140.436000px;}
.yfd{bottom:140.805000px;}
.y82{bottom:141.516000px;}
.y10f{bottom:146.565000px;}
.yfa{bottom:146.745000px;}
.y25{bottom:148.905000px;}
.y1f5{bottom:149.616000px;}
.y14d{bottom:151.230000px;}
.y182{bottom:151.950000px;}
.y1dc{bottom:155.010000px;}
.yb2{bottom:156.450000px;}
.y90{bottom:158.430000px;}
.y5e{bottom:159.510000px;}
.y119{bottom:166.005000px;}
.y33{bottom:166.350000px;}
.y81{bottom:167.250000px;}
.y14c{bottom:168.330000px;}
.y24{bottom:168.705000px;}
.y181{bottom:169.230000px;}
.y1f4{bottom:169.590000px;}
.y1db{bottom:172.290000px;}
.yf9{bottom:173.565000px;}
.y125{bottom:176.070000px;}
.yb1{bottom:182.370000px;}
.ye6{bottom:182.550000px;}
.y107{bottom:183.285000px;}
.y8f{bottom:184.350000px;}
.y5d{bottom:185.250000px;}
.y14b{bottom:185.610000px;}
.y180{bottom:186.510000px;}
.y1d9{bottom:187.050000px;}
.y23{bottom:188.685000px;}
.y1f3{bottom:189.390000px;}
.y1b3{bottom:190.470000px;}
.y32{bottom:192.270000px;}
.y80{bottom:193.170000px;}
.ye5{bottom:199.650000px;}
.y10e{bottom:200.565000px;}
.y14a{bottom:202.890000px;}
.y17f{bottom:203.790000px;}
.yb0{bottom:208.290000px;}
.y22{bottom:208.485000px;}
.y1f2{bottom:209.190000px;}
.y8e{bottom:210.090000px;}
.y5c{bottom:211.170000px;}
.ye4{bottom:216.930000px;}
.y149{bottom:217.650000px;}
.y118{bottom:217.845000px;}
.y31{bottom:218.010000px;}
.y17e{bottom:218.550000px;}
.y7f{bottom:219.090000px;}
.y10d{bottom:227.565000px;}
.y21{bottom:228.285000px;}
.y1f1{bottom:228.990000px;}
.y11f{bottom:229.530000px;}
.yaf{bottom:234.030000px;}
.ye3{bottom:234.210000px;}
.y117{bottom:235.125000px;}
.y8d{bottom:236.010000px;}
.y5b{bottom:237.090000px;}
.y148{bottom:239.610000px;}
.y30{bottom:243.930000px;}
.y7e{bottom:244.830000px;}
.yba{bottom:245.010000px;}
.y20{bottom:248.085000px;}
.y1f0{bottom:248.835000px;}
.ye2{bottom:251.490000px;}
.y116{bottom:252.405000px;}
.y1d5{bottom:252.615000px;}
.y17d{bottom:253.830000px;}
.y10c{bottom:254.385000px;}
.ydf{bottom:258.870000px;}
.yae{bottom:259.950000px;}
.y147{bottom:261.390000px;}
.y8c{bottom:261.930000px;}
.y5a{bottom:262.830000px;}
.ye1{bottom:265.530000px;}
.y1b1{bottom:265.575000px;}
.y1f{bottom:267.885000px;}
.y1ef{bottom:268.815000px;}
.y115{bottom:269.505000px;}
.y7d{bottom:270.750000px;}
.y2f{bottom:278.850000px;}
.y10b{bottom:281.385000px;}
.y146{bottom:283.350000px;}
.yde{bottom:285.150000px;}
.yad{bottom:285.870000px;}
.y114{bottom:286.785000px;}
.y8b{bottom:287.850000px;}
.y1e{bottom:287.865000px;}
.y1ee{bottom:288.615000px;}
.y59{bottom:288.750000px;}
.y17c{bottom:289.110000px;}
.y7c{bottom:296.670000px;}
.y1ad{bottom:298.695000px;}
.ydd{bottom:302.250000px;}
.y113{bottom:304.095000px;}
.y145{bottom:305.310000px;}
.y2e{bottom:307.110000px;}
.y1d{bottom:307.665000px;}
.y10a{bottom:308.415000px;}
.y17b{bottom:311.070000px;}
.yac{bottom:311.610000px;}
.y8a{bottom:313.590000px;}
.y58{bottom:314.670000px;}
.y7b{bottom:322.590000px;}
.y1d2{bottom:325.335000px;}
.y144{bottom:327.090000px;}
.y1c{bottom:327.495000px;}
.y1ed{bottom:328.215000px;}
.y1b{bottom:331.770000px;}
.y109{bottom:335.415000px;}
.ydc{bottom:337.170000px;}
.yab{bottom:337.530000px;}
.y106{bottom:338.070000px;}
.y89{bottom:339.510000px;}
.y57{bottom:340.590000px;}
.y17a{bottom:346.170000px;}
.y1ec{bottom:348.015000px;}
.y7a{bottom:348.330000px;}
.yb9{bottom:348.510000px;}
.y143{bottom:349.050000px;}
.y1a8{bottom:352.335000px;}
.y108{bottom:362.235000px;}
.yaa{bottom:363.450000px;}
.y88{bottom:365.430000px;}
.ydb{bottom:365.970000px;}
.y56{bottom:366.330000px;}
.y1eb{bottom:367.815000px;}
.y1ce{bottom:369.975000px;}
.y141{bottom:371.010000px;}
.y1ab{bottom:371.415000px;}
.y79{bottom:374.250000px;}
.y178{bottom:381.450000px;}
.y1ea{bottom:387.795000px;}
.ya9{bottom:389.415000px;}
.y87{bottom:391.395000px;}
.yda{bottom:391.935000px;}
.y55{bottom:392.295000px;}
.y140{bottom:392.835000px;}
.y78{bottom:400.215000px;}
.y1a7{bottom:406.875000px;}
.y13e{bottom:414.795000px;}
.ya8{bottom:415.155000px;}
.y177{bottom:416.775000px;}
.y86{bottom:417.135000px;}
.yd9{bottom:417.855000px;}
.y54{bottom:418.215000px;}
.y208{bottom:421.815000px;}
.y1e9{bottom:422.535000px;}
.y1a6{bottom:424.155000px;}
.y77{bottom:426.135000px;}
.y1cb{bottom:432.825000px;}
.y207{bottom:436.425000px;}
.y13d{bottom:438.555000px;}
.y1a5{bottom:438.945000px;}
.ya7{bottom:441.075000px;}
.y85{bottom:443.055000px;}
.yd8{bottom:443.595000px;}
.y53{bottom:444.135000px;}
.y1e8{bottom:448.845000px;}
.y76{bottom:451.875000px;}
.yb8{bottom:452.055000px;}
.y206{bottom:453.705000px;}
.y1cd{bottom:455.145000px;}
.y13c{bottom:460.515000px;}
.y1e7{bottom:466.125000px;}
.ya6{bottom:466.995000px;}
.y84{bottom:469.335000px;}
.yd7{bottom:469.515000px;}
.y52{bottom:469.875000px;}
.y205{bottom:470.985000px;}
.y1a2{bottom:476.025000px;}
.y75{bottom:477.795000px;}
.y1e6{bottom:480.885000px;}
.y13b{bottom:482.475000px;}
.y176{bottom:487.335000px;}
.ya5{bottom:492.915000px;}
.yd6{bottom:495.435000px;}
.y83{bottom:495.615000px;}
.y51{bottom:495.795000px;}
.y1ca{bottom:496.185000px;}
.y74{bottom:503.715000px;}
.y139{bottom:504.255000px;}
.y204{bottom:505.725000px;}
.y1c9{bottom:510.945000px;}
.ya4{bottom:518.655000px;}
.yd5{bottom:521.355000px;}
.y50{bottom:521.715000px;}
.y175{bottom:522.435000px;}
.y203{bottom:525.525000px;}
.y138{bottom:529.455000px;}
.y73{bottom:529.635000px;}
.ya3{bottom:544.575000px;}
.y202{bottom:545.325000px;}
.y1e5{bottom:546.405000px;}
.y137{bottom:546.735000px;}
.yd4{bottom:547.095000px;}
.y4f{bottom:547.635000px;}
.y72{bottom:555.375000px;}
.y174{bottom:557.715000px;}
.y1a1{bottom:562.065000px;}
.y1c6{bottom:563.325000px;}
.y136{bottom:564.015000px;}
.y201{bottom:565.305000px;}
.ya2{bottom:570.495000px;}
.yd3{bottom:573.015000px;}
.y4e{bottom:573.375000px;}
.y71{bottom:581.295000px;}
.y200{bottom:585.105000px;}
.y171{bottom:592.995000px;}
.ya1{bottom:596.415000px;}
.y135{bottom:598.395000px;}
.yd2{bottom:598.935000px;}
.y4d{bottom:599.295000px;}
.y1ff{bottom:604.905000px;}
.y70{bottom:607.215000px;}
.y134{bottom:615.675000px;}
.yd1{bottom:616.215000px;}
.y1e4{bottom:619.170000px;}
.ya0{bottom:622.155000px;}
.y1fe{bottom:624.750000px;}
.y4c{bottom:625.215000px;}
.y1c2{bottom:630.870000px;}
.y133{bottom:632.955000px;}
.y6f{bottom:633.135000px;}
.yd0{bottom:633.495000px;}
.y170{bottom:636.195000px;}
.y1fd{bottom:644.550000px;}
.y15a{bottom:647.745000px;}
.y9f{bottom:648.105000px;}
.y19e{bottom:648.150000px;}
.ycf{bottom:650.625000px;}
.y4b{bottom:651.165000px;}
.y6e{bottom:658.905000px;}
.y16f{bottom:660.705000px;}
.y1e3{bottom:663.810000px;}
.y1fc{bottom:664.530000px;}
.yce{bottom:667.905000px;}
.y1bf{bottom:672.450000px;}
.y159{bottom:673.485000px;}
.y9e{bottom:674.025000px;}
.y4a{bottom:676.905000px;}
.y16e{bottom:677.985000px;}
.y1a{bottom:678.705000px;}
.y1fb{bottom:684.330000px;}
.y6d{bottom:684.825000px;}
.ycd{bottom:685.185000px;}
.y16d{bottom:695.265000px;}
.y19{bottom:695.985000px;}
.y158{bottom:699.405000px;}
.y9d{bottom:699.945000px;}
.y198{bottom:701.250000px;}
.y49{bottom:702.825000px;}
.y1fa{bottom:704.130000px;}
.y6c{bottom:710.745000px;}
.ycc{bottom:711.105000px;}
.y18{bottom:712.545000px;}
.y103{bottom:716.145000px;}
.y19b{bottom:720.330000px;}
.y1f9{bottom:723.930000px;}
.y157{bottom:725.145000px;}
.y9c{bottom:725.685000px;}
.y1e1{bottom:726.630000px;}
.y48{bottom:728.745000px;}
.y16c{bottom:729.645000px;}
.y1ba{bottom:730.950000px;}
.y17{bottom:736.125000px;}
.y6b{bottom:736.665000px;}
.ycb{bottom:736.845000px;}
.y1f8{bottom:743.730000px;}
.y16b{bottom:744.405000px;}
.y1de{bottom:748.950000px;}
.y156{bottom:750.885000px;}
.y9b{bottom:751.605000px;}
.y1bd{bottom:751.650000px;}
.y16{bottom:753.405000px;}
.y47{bottom:754.665000px;}
.y197{bottom:755.430000px;}
.yf7{bottom:758.985000px;}
.y6a{bottom:762.405000px;}
.yca{bottom:762.765000px;}
.y15{bottom:770.505000px;}
.y196{bottom:772.710000px;}
.y155{bottom:776.805000px;}
.y9a{bottom:777.525000px;}
.y16a{bottom:779.685000px;}
.y46{bottom:780.405000px;}
.y69{bottom:788.325000px;}
.yc9{bottom:788.685000px;}
.y14{bottom:789.945000px;}
.y192{bottom:796.470000px;}
.y154{bottom:802.545000px;}
.y99{bottom:803.445000px;}
.y45{bottom:806.325000px;}
.y191{bottom:810.540000px;}
.y68{bottom:814.245000px;}
.yc8{bottom:814.605000px;}
.y169{bottom:814.965000px;}
.y13{bottom:817.485000px;}
.y153{bottom:828.285000px;}
.y98{bottom:829.185000px;}
.y190{bottom:831.240000px;}
.y44{bottom:832.245000px;}
.ye0{bottom:838.185000px;}
.y67{bottom:839.985000px;}
.yb7{bottom:840.165000px;}
.yc7{bottom:840.525000px;}
.y12{bottom:845.025000px;}
.y168{bottom:850.245000px;}
.yc6{bottom:850.605000px;}
.y151{bottom:854.205000px;}
.y18f{bottom:857.520000px;}
.y43{bottom:857.985000px;}
.y66{bottom:865.905000px;}
.y97{bottom:870.045000px;}
.y11{bottom:872.745000px;}
.y150{bottom:879.945000px;}
.y42{bottom:883.905000px;}
.y165{bottom:885.525000px;}
.yc5{bottom:886.785000px;}
.y65{bottom:891.825000px;}
.y96{bottom:896.010000px;}
.yc4{bottom:896.910000px;}
.y10{bottom:900.330000px;}
.y14e{bottom:905.730000px;}
.y41{bottom:909.870000px;}
.y64{bottom:917.790000px;}
.y164{bottom:920.670000px;}
.y95{bottom:921.930000px;}
.y18e{bottom:922.110000px;}
.yf{bottom:927.870000px;}
.yc3{bottom:932.910000px;}
.y132{bottom:934.890000px;}
.y40{bottom:935.790000px;}
.y18d{bottom:939.210000px;}
.y63{bottom:943.530000px;}
.yb6{bottom:943.710000px;}
.y94{bottom:947.850000px;}
.yf0{bottom:948.570000px;}
.y131{bottom:952.170000px;}
.y9{bottom:953.430000px;}
.y163{bottom:955.950000px;}
.y18c{bottom:956.490000px;}
.yc2{bottom:958.830000px;}
.y3f{bottom:961.530000px;}
.y62{bottom:969.450000px;}
.yb5{bottom:969.630000px;}
.y8{bottom:970.710000px;}
.y18b{bottom:971.970000px;}
.y93{bottom:973.590000px;}
.y12d{bottom:984.210000px;}
.yc1{bottom:984.570000px;}
.y7{bottom:984.750000px;}
.y3e{bottom:987.450000px;}
.y162{bottom:991.230000px;}
.y18a{bottom:993.750000px;}
.y61{bottom:995.370000px;}
.yb4{bottom:1001.490000px;}
.y92{bottom:1008.510000px;}
.yc0{bottom:1010.670000px;}
.y3d{bottom:1013.370000px;}
.y189{bottom:1015.350000px;}
.ybf{bottom:1020.750000px;}
.y60{bottom:1021.290000px;}
.y161{bottom:1026.510000px;}
.yea{bottom:1030.110000px;}
.y91{bottom:1030.290000px;}
.y6{bottom:1030.470000px;}
.yb3{bottom:1033.350000px;}
.y188{bottom:1037.130000px;}
.y3c{bottom:1039.290000px;}
.y5{bottom:1046.310000px;}
.y127{bottom:1048.290000px;}
.ybe{bottom:1053.690000px;}
.y5f{bottom:1056.030000px;}
.y187{bottom:1058.730000px;}
.y15f{bottom:1061.790000px;}
.ybd{bottom:1063.770000px;}
.y4{bottom:1064.130000px;}
.y3b{bottom:1065.030000px;}
.y185{bottom:1080.330000px;}
.y3{bottom:1084.830000px;}
.ye8{bottom:1085.010000px;}
.y3a{bottom:1090.950000px;}
.y15b{bottom:1097.070000px;}
.y183{bottom:1102.110000px;}
.y2{bottom:1105.530000px;}
.ybc{bottom:1114.710000px;}
.y39{bottom:1116.870000px;}
.ye7{bottom:1121.010000px;}
.y1{bottom:1122.270000px;}
.ybb{bottom:1141.710000px;}
.y38{bottom:1142.790000px;}
.y37{bottom:1183.680000px;}
.y36{bottom:1197.720000px;}
.y35{bottom:1218.600000px;}
.h6{height:8.640000px;}
.h8{height:15.480000px;}
.h30{height:18.360000px;}
.h3d{height:19.980000px;}
.h2a{height:20.160000px;}
.h2b{height:20.340000px;}
.h1d{height:21.060000px;}
.h1f{height:21.096000px;}
.h1c{height:21.240000px;}
.h27{height:21.276000px;}
.h44{height:21.600000px;}
.h1e{height:23.040000px;}
.h22{height:25.020000px;}
.h21{height:25.056000px;}
.h20{height:25.200000px;}
.h2f{height:31.140000px;}
.h36{height:31.500000px;}
.h12{height:32.040000px;}
.h38{height:32.400000px;}
.h3c{height:34.200000px;}
.h24{height:34.380000px;}
.h26{height:34.416000px;}
.h25{height:34.560000px;}
.h29{height:34.596000px;}
.h34{height:36.360000px;}
.h43{height:36.900000px;}
.h5{height:39.471680px;}
.h3f{height:40.860000px;}
.h23{height:41.760000px;}
.h16{height:42.120000px;}
.hb{height:42.327773px;}
.h28{height:42.480000px;}
.h46{height:43.920000px;}
.h2{height:44.294766px;}
.h7{height:47.381836px;}
.ha{height:49.698281px;}
.h2e{height:50.220000px;}
.h35{height:50.580000px;}
.h41{height:51.660000px;}
.h31{height:52.380000px;}
.h4{height:52.435898px;}
.h19{height:52.740000px;}
.h37{height:52.920000px;}
.h3{height:53.367188px;}
.h13{height:54.180000px;}
.h3b{height:54.900000px;}
.h11{height:54.994922px;}
.h3a{height:55.080000px;}
.h3e{height:57.600000px;}
.h42{height:59.220000px;}
.h49{height:62.100000px;}
.h45{height:62.136000px;}
.h1b{height:63.180000px;}
.h4b{height:64.800000px;}
.h48{height:64.836000px;}
.h40{height:66.816000px;}
.hd{height:67.786875px;}
.h9{height:70.978359px;}
.h47{height:72.000000px;}
.h4a{height:72.036000px;}
.h39{height:74.376000px;}
.h14{height:80.820000px;}
.h33{height:85.320000px;}
.h32{height:85.356000px;}
.hf{height:92.755898px;}
.h10{height:92.935898px;}
.he{height:98.078203px;}
.h1a{height:107.676000px;}
.h18{height:107.820000px;}
.h15{height:188.670000px;}
.hc{height:341.535000px;}
.h17{height:377.355000px;}
.h2c{height:892.980000px;}
.h2d{height:893.250000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w17{width:71.100000px;}
.w16{width:72.936000px;}
.w1f{width:75.816000px;}
.w1e{width:89.820000px;}
.w15{width:93.420000px;}
.w38{width:102.096000px;}
.w32{width:102.456000px;}
.w3e{width:105.516000px;}
.w36{width:105.696000px;}
.w30{width:106.056000px;}
.w1d{width:110.736000px;}
.wc{width:110.916000px;}
.w10{width:115.956000px;}
.w3f{width:116.100000px;}
.w37{width:116.136000px;}
.w3b{width:116.280000px;}
.w34{width:116.316000px;}
.w31{width:116.496000px;}
.w2e{width:116.676000px;}
.w11{width:118.296000px;}
.w49{width:122.220000px;}
.w4a{width:122.256000px;}
.w42{width:122.580000px;}
.w43{width:122.616000px;}
.w44{width:122.760000px;}
.w45{width:122.796000px;}
.w46{width:123.156000px;}
.w35{width:126.720000px;}
.w33{width:126.900000px;}
.w2f{width:127.080000px;}
.w2d{width:127.260000px;}
.w47{width:128.016000px;}
.w1b{width:128.520000px;}
.w19{width:129.240000px;}
.w18{width:131.616000px;}
.w14{width:132.156000px;}
.w40{width:132.516000px;}
.w20{width:132.696000px;}
.we{width:132.876000px;}
.w12{width:136.296000px;}
.w3d{width:137.520000px;}
.w3c{width:137.556000px;}
.wd{width:142.596000px;}
.w1c{width:151.050000px;}
.w8{width:176.610000px;}
.w39{width:185.070000px;}
.w13{width:185.430000px;}
.w2b{width:190.290000px;}
.wa{width:252.615000px;}
.w9{width:265.530000px;}
.w23{width:280.515000px;}
.wb{width:301.890000px;}
.wf{width:317.775000px;}
.w7{width:348.195000px;}
.w4{width:348.555000px;}
.w3{width:349.455000px;}
.w6{width:349.815000px;}
.w22{width:408.675000px;}
.w28{width:521.715000px;}
.w2a{width:522.435000px;}
.w29{width:523.875000px;}
.w27{width:524.595000px;}
.w1a{width:562.110000px;}
.w4b{width:614.235000px;}
.w5{width:679.830000px;}
.w21{width:691.350000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.w3a{width:952.710000px;}
.w2c{width:953.430000px;}
.w48{width:983.310000px;}
.w41{width:987.270000px;}
.w26{width:1262.879981px;}
.w24{width:1262.880000px;}
.w25{width:1263.000000px;}
.x0{left:0.000000px;}
.x21{left:4.860000px;}
.xa{left:8.460000px;}
.x39{left:53.460000px;}
.x42{left:64.080000px;}
.x25{left:68.760000px;}
.x9{left:97.776000px;}
.x20{left:101.376000px;}
.x7{left:106.235987px;}
.x10{left:112.715987px;}
.x35{left:118.980000px;}
.xc{left:120.815987px;}
.x49{left:123.120000px;}
.x37{left:127.655981px;}
.xd{left:132.515987px;}
.xe{left:147.815987px;}
.x14{left:149.615987px;}
.x56{left:154.649981px;}
.x15{left:180.929987px;}
.x1b{left:205.949987px;}
.x1a{left:210.989987px;}
.x18{left:226.109987px;}
.x2e{left:230.250000px;}
.x12{left:234.209987px;}
.x3a{left:244.110000px;}
.x1c{left:249.194987px;}
.x16{left:250.634987px;}
.x4f{left:252.030000px;}
.x2{left:254.414987px;}
.x4a{left:256.350000px;}
.x19{left:260.174987px;}
.x6{left:274.214987px;}
.x1e{left:276.015000px;}
.x29{left:287.715000px;}
.xf{left:298.514987px;}
.xb{left:312.915000px;}
.x17{left:323.714987px;}
.x13{left:339.909000px;}
.x5{left:362.594987px;}
.x43{left:366.870000px;}
.x3b{left:371.730000px;}
.x11{left:373.034987px;}
.x50{left:374.970000px;}
.x34{left:376.409981px;}
.x4{left:380.054987px;}
.x2f{left:381.675000px;}
.x26{left:387.435000px;}
.x3{left:398.594987px;}
.x22{left:404.175000px;}
.x2a{left:420.585000px;}
.x8{left:446.684987px;}
.x38{left:486.975000px;}
.x3c{left:488.775000px;}
.x30{left:492.945000px;}
.x51{left:497.955000px;}
.x27{left:504.105000px;}
.x44{left:505.155000px;}
.x32{left:511.125000px;}
.x2b{left:514.725000px;}
.x23{left:515.805000px;}
.x1f{left:542.265000px;}
.x31{left:583.125000px;}
.x2c{left:588.390000px;}
.x3d{left:616.215000px;}
.x52{left:621.075000px;}
.x28{left:623.130000px;}
.x4b{left:626.655000px;}
.x33{left:642.134981px;}
.x36{left:643.575000px;}
.x24{left:659.130000px;}
.x2d{left:660.390000px;}
.x3e{left:722.625000px;}
.x53{left:744.045000px;}
.x45{left:749.625000px;}
.x1{left:786.959987px;}
.x1d{left:788.759987px;}
.x3f{left:850.245000px;}
.x46{left:866.625000px;}
.x4c{left:873.645000px;}
.x40{left:967.110000px;}
.x47{left:983.670000px;}
.x54{left:990.150000px;}
.x4d{left:996.990000px;}
.x41{left:1094.730000px;}
.x48{left:1100.490000px;}
.x55{left:1113.090000px;}
.x4e{left:1120.470000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.960000pt;}
.ls2f{letter-spacing:-0.688000pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls22{letter-spacing:-0.322667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.204267pt;}
.ls2c{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.046720pt;}
.ls1f{letter-spacing:-0.041600pt;}
.ls21{letter-spacing:-0.035840pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.030080pt;}
.ls5{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.062720pt;}
.ls23{letter-spacing:0.082667pt;}
.ls2a{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.211200pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.324267pt;}
.ls1d{letter-spacing:0.473600pt;}
.lsd{letter-spacing:2.720000pt;}
.ls2e{letter-spacing:14.672640pt;}
.ls17{letter-spacing:14.719360pt;}
.ls19{letter-spacing:16.907520pt;}
.ls16{letter-spacing:17.547520pt;}
.ls10{letter-spacing:38.971307pt;}
.ls11{letter-spacing:38.992640pt;}
.ls2d{letter-spacing:40.912640pt;}
.ls13{letter-spacing:56.891307pt;}
.ls15{letter-spacing:56.912640pt;}
.ls26{letter-spacing:70.331307pt;}
.lsf{letter-spacing:72.272640pt;}
.ls2b{letter-spacing:73.531307pt;}
.ls4{letter-spacing:73.552640pt;}
.ls12{letter-spacing:107.162027pt;}
.lsb{letter-spacing:131.771307pt;}
.ls27{letter-spacing:149.712640pt;}
.ls1a{letter-spacing:221.599360pt;}
.ls18{letter-spacing:277.919360pt;}
.ls1c{letter-spacing:518.559360pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.010667pt;}
.ws0{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.769067pt;}
.wsb{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.644800pt;}
.wsd{word-spacing:-11.639680pt;}
.wse{word-spacing:-11.363733pt;}
.ws11{word-spacing:-8.655360pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.129387pt;}
._37{margin-left:-13.567147pt;}
._38{margin-left:-10.342613pt;}
._20{margin-left:-7.334400pt;}
._22{margin-left:-6.054400pt;}
._3b{margin-left:-4.960000pt;}
._3a{margin-left:-3.591040pt;}
._39{margin-left:-1.911467pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._8{width:2.438613pt;}
._c{width:3.351467pt;}
._7{width:4.340693pt;}
._6{width:5.248427pt;}
._5{width:6.230187pt;}
._10{width:7.201707pt;}
._9{width:8.191147pt;}
._e{width:9.450453pt;}
._f{width:10.351360pt;}
._d{width:11.633280pt;}
._23{width:13.404160pt;}
._12{width:14.337493pt;}
._a{width:15.665280pt;}
._b{width:16.632107pt;}
._11{width:17.742080pt;}
._14{width:18.736640pt;}
._1e{width:20.711893pt;}
._1d{width:21.963093pt;}
._15{width:23.102293pt;}
._17{width:34.250453pt;}
._16{width:35.165440pt;}
._25{width:37.980800pt;}
._1c{width:38.965547pt;}
._27{width:43.186560pt;}
._28{width:45.683200pt;}
._34{width:50.352853pt;}
._2b{width:56.891520pt;}
._2c{width:60.397440pt;}
._29{width:72.296320pt;}
._2d{width:87.063680pt;}
._13{width:106.423893pt;}
._31{width:111.764480pt;}
._26{width:118.935680pt;}
._2f{width:121.379200pt;}
._19{width:127.097173pt;}
._18{width:128.019200pt;}
._21{width:141.885227pt;}
._30{width:161.166080pt;}
._2e{width:165.835733pt;}
._35{width:168.018560pt;}
._2a{width:169.399680pt;}
._32{width:183.370240pt;}
._36{width:203.662080pt;}
._33{width:219.651200pt;}
._4{width:349.600000pt;}
._1b{width:426.712960pt;}
._1a{width:427.722240pt;}
._3{width:740.800000pt;}
._1f{width:1017.232000pt;}
._2{width:1414.165333pt;}
._24{width:2152.991573pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y2d{bottom:2.880000pt;}
.y19d{bottom:3.360000pt;}
.y1be{bottom:4.000000pt;}
.y184{bottom:4.160000pt;}
.y186{bottom:4.320000pt;}
.y142{bottom:4.480000pt;}
.y13a{bottom:4.640000pt;}
.y1e0{bottom:5.120000pt;}
.y13f{bottom:5.440000pt;}
.y1c4{bottom:5.760000pt;}
.y15e{bottom:6.080000pt;}
.y152{bottom:6.240000pt;}
.y14f{bottom:6.400000pt;}
.y1e2{bottom:6.720000pt;}
.y1d4{bottom:7.040000pt;}
.y1d1{bottom:7.520000pt;}
.y19c{bottom:8.960000pt;}
.y1ac{bottom:9.120000pt;}
.ye9{bottom:9.440000pt;}
.y1b2{bottom:9.600000pt;}
.y19a{bottom:9.920000pt;}
.yf4{bottom:10.400000pt;}
.yed{bottom:10.560000pt;}
.y166{bottom:10.600000pt;}
.y1a0{bottom:10.880000pt;}
.y1af{bottom:11.040000pt;}
.yef{bottom:11.680000pt;}
.y1d8{bottom:11.840000pt;}
.y1c5{bottom:13.440000pt;}
.y15c{bottom:13.760000pt;}
.y104{bottom:13.920000pt;}
.y173{bottom:14.080000pt;}
.y130{bottom:14.720000pt;}
.yf6{bottom:15.680000pt;}
.y1aa{bottom:17.120000pt;}
.y105{bottom:17.280000pt;}
.y1b8{bottom:18.074667pt;}
.y2c{bottom:18.080000pt;}
.y167{bottom:18.120000pt;}
.y160{bottom:18.240000pt;}
.y179{bottom:18.280000pt;}
.y126{bottom:18.560000pt;}
.y1b0{bottom:18.720000pt;}
.yeb{bottom:19.360000pt;}
.y12c{bottom:20.000000pt;}
.y124{bottom:20.160000pt;}
.y1df{bottom:20.480000pt;}
.y1b5{bottom:20.640000pt;}
.y1c1{bottom:20.800000pt;}
.y1c3{bottom:20.960000pt;}
.y1bc{bottom:21.120000pt;}
.y15d{bottom:21.440000pt;}
.y172{bottom:21.760000pt;}
.y1d3{bottom:22.400000pt;}
.y1d0{bottom:22.880000pt;}
.y12e{bottom:23.360000pt;}
.y1c8{bottom:24.960000pt;}
.y199{bottom:25.280000pt;}
.y1a4{bottom:25.440000pt;}
.y19f{bottom:26.240000pt;}
.y1ae{bottom:26.400000pt;}
.yee{bottom:26.880000pt;}
.y1d7{bottom:27.200000pt;}
.y1b6{bottom:28.320000pt;}
.yf1{bottom:31.040000pt;}
.y1a9{bottom:32.480000pt;}
.y102{bottom:33.120000pt;}
.y2b{bottom:33.440000pt;}
.y1da{bottom:33.600000pt;}
.yf3{bottom:34.400000pt;}
.yec{bottom:34.560000pt;}
.y12b{bottom:35.360000pt;}
.y123{bottom:35.520000pt;}
.y1b4{bottom:36.000000pt;}
.y1c0{bottom:36.160000pt;}
.y1bb{bottom:36.480000pt;}
.y1cf{bottom:38.080000pt;}
.y12f{bottom:38.560000pt;}
.y195{bottom:38.880000pt;}
.y1c7{bottom:40.160000pt;}
.y1cc{bottom:40.320000pt;}
.y1a3{bottom:40.800000pt;}
.y1d6{bottom:42.560000pt;}
.y128{bottom:43.040000pt;}
.y120{bottom:43.200000pt;}
.yf5{bottom:46.400000pt;}
.y101{bottom:48.480000pt;}
.y2a{bottom:48.800000pt;}
.y12a{bottom:50.720000pt;}
.y122{bottom:50.880000pt;}
.y11e{bottom:55.720000pt;}
.yf2{bottom:58.400000pt;}
.y112{bottom:58.440000pt;}
.y194{bottom:60.992000pt;}
.y100{bottom:63.840000pt;}
.y29{bottom:64.200000pt;}
.ye{bottom:65.440000pt;}
.y121{bottom:66.080000pt;}
.y11d{bottom:70.920000pt;}
.yf8{bottom:79.040000pt;}
.y28{bottom:79.560000pt;}
.y129{bottom:82.240000pt;}
.yfc{bottom:82.400000pt;}
.y111{bottom:82.440000pt;}
.y193{bottom:84.352000pt;}
.y11c{bottom:86.280000pt;}
.yc{bottom:87.520000pt;}
.yff{bottom:94.400000pt;}
.y27{bottom:97.160000pt;}
.y1f7{bottom:97.792000pt;}
.y11b{bottom:101.640000pt;}
.yfb{bottom:106.400000pt;}
.y110{bottom:106.440000pt;}
.y1b9{bottom:106.592000pt;}
.yfe{bottom:109.760000pt;}
.ya{bottom:110.880000pt;}
.y26{bottom:114.760000pt;}
.y1f6{bottom:115.392000pt;}
.y11a{bottom:117.000000pt;}
.y1b7{bottom:119.712000pt;}
.y1dd{bottom:122.592000pt;}
.y34{bottom:124.832000pt;}
.yfd{bottom:125.160000pt;}
.y82{bottom:125.792000pt;}
.y10f{bottom:130.280000pt;}
.yfa{bottom:130.440000pt;}
.y25{bottom:132.360000pt;}
.y1f5{bottom:132.992000pt;}
.y14d{bottom:134.426667pt;}
.y182{bottom:135.066667pt;}
.y1dc{bottom:137.786667pt;}
.yb2{bottom:139.066667pt;}
.y90{bottom:140.826667pt;}
.y5e{bottom:141.786667pt;}
.y119{bottom:147.560000pt;}
.y33{bottom:147.866667pt;}
.y81{bottom:148.666667pt;}
.y14c{bottom:149.626667pt;}
.y24{bottom:149.960000pt;}
.y181{bottom:150.426667pt;}
.y1f4{bottom:150.746667pt;}
.y1db{bottom:153.146667pt;}
.yf9{bottom:154.280000pt;}
.y125{bottom:156.506667pt;}
.yb1{bottom:162.106667pt;}
.ye6{bottom:162.266667pt;}
.y107{bottom:162.920000pt;}
.y8f{bottom:163.866667pt;}
.y5d{bottom:164.666667pt;}
.y14b{bottom:164.986667pt;}
.y180{bottom:165.786667pt;}
.y1d9{bottom:166.266667pt;}
.y23{bottom:167.720000pt;}
.y1f3{bottom:168.346667pt;}
.y1b3{bottom:169.306667pt;}
.y32{bottom:170.906667pt;}
.y80{bottom:171.706667pt;}
.ye5{bottom:177.466667pt;}
.y10e{bottom:178.280000pt;}
.y14a{bottom:180.346667pt;}
.y17f{bottom:181.146667pt;}
.yb0{bottom:185.146667pt;}
.y22{bottom:185.320000pt;}
.y1f2{bottom:185.946667pt;}
.y8e{bottom:186.746667pt;}
.y5c{bottom:187.706667pt;}
.ye4{bottom:192.826667pt;}
.y149{bottom:193.466667pt;}
.y118{bottom:193.640000pt;}
.y31{bottom:193.786667pt;}
.y17e{bottom:194.266667pt;}
.y7f{bottom:194.746667pt;}
.y10d{bottom:202.280000pt;}
.y21{bottom:202.920000pt;}
.y1f1{bottom:203.546667pt;}
.y11f{bottom:204.026667pt;}
.yaf{bottom:208.026667pt;}
.ye3{bottom:208.186667pt;}
.y117{bottom:209.000000pt;}
.y8d{bottom:209.786667pt;}
.y5b{bottom:210.746667pt;}
.y148{bottom:212.986667pt;}
.y30{bottom:216.826667pt;}
.y7e{bottom:217.626667pt;}
.yba{bottom:217.786667pt;}
.y20{bottom:220.520000pt;}
.y1f0{bottom:221.186667pt;}
.ye2{bottom:223.546667pt;}
.y116{bottom:224.360000pt;}
.y1d5{bottom:224.546667pt;}
.y17d{bottom:225.626667pt;}
.y10c{bottom:226.120000pt;}
.ydf{bottom:230.106667pt;}
.yae{bottom:231.066667pt;}
.y147{bottom:232.346667pt;}
.y8c{bottom:232.826667pt;}
.y5a{bottom:233.626667pt;}
.ye1{bottom:236.026667pt;}
.y1b1{bottom:236.066667pt;}
.y1f{bottom:238.120000pt;}
.y1ef{bottom:238.946667pt;}
.y115{bottom:239.560000pt;}
.y7d{bottom:240.666667pt;}
.y2f{bottom:247.866667pt;}
.y10b{bottom:250.120000pt;}
.y146{bottom:251.866667pt;}
.yde{bottom:253.466667pt;}
.yad{bottom:254.106667pt;}
.y114{bottom:254.920000pt;}
.y8b{bottom:255.866667pt;}
.y1e{bottom:255.880000pt;}
.y1ee{bottom:256.546667pt;}
.y59{bottom:256.666667pt;}
.y17c{bottom:256.986667pt;}
.y7c{bottom:263.706667pt;}
.y1ad{bottom:265.506667pt;}
.ydd{bottom:268.666667pt;}
.y113{bottom:270.306667pt;}
.y145{bottom:271.386667pt;}
.y2e{bottom:272.986667pt;}
.y1d{bottom:273.480000pt;}
.y10a{bottom:274.146667pt;}
.y17b{bottom:276.506667pt;}
.yac{bottom:276.986667pt;}
.y8a{bottom:278.746667pt;}
.y58{bottom:279.706667pt;}
.y7b{bottom:286.746667pt;}
.y1d2{bottom:289.186667pt;}
.y144{bottom:290.746667pt;}
.y1c{bottom:291.106667pt;}
.y1ed{bottom:291.746667pt;}
.y1b{bottom:294.906667pt;}
.y109{bottom:298.146667pt;}
.ydc{bottom:299.706667pt;}
.yab{bottom:300.026667pt;}
.y106{bottom:300.506667pt;}
.y89{bottom:301.786667pt;}
.y57{bottom:302.746667pt;}
.y17a{bottom:307.706667pt;}
.y1ec{bottom:309.346667pt;}
.y7a{bottom:309.626667pt;}
.yb9{bottom:309.786667pt;}
.y143{bottom:310.266667pt;}
.y1a8{bottom:313.186667pt;}
.y108{bottom:321.986667pt;}
.yaa{bottom:323.066667pt;}
.y88{bottom:324.826667pt;}
.ydb{bottom:325.306667pt;}
.y56{bottom:325.626667pt;}
.y1eb{bottom:326.946667pt;}
.y1ce{bottom:328.866667pt;}
.y141{bottom:329.786667pt;}
.y1ab{bottom:330.146667pt;}
.y79{bottom:332.666667pt;}
.y178{bottom:339.066667pt;}
.y1ea{bottom:344.706667pt;}
.ya9{bottom:346.146667pt;}
.y87{bottom:347.906667pt;}
.yda{bottom:348.386667pt;}
.y55{bottom:348.706667pt;}
.y140{bottom:349.186667pt;}
.y78{bottom:355.746667pt;}
.y1a7{bottom:361.666667pt;}
.y13e{bottom:368.706667pt;}
.ya8{bottom:369.026667pt;}
.y177{bottom:370.466667pt;}
.y86{bottom:370.786667pt;}
.yd9{bottom:371.426667pt;}
.y54{bottom:371.746667pt;}
.y208{bottom:374.946667pt;}
.y1e9{bottom:375.586667pt;}
.y1a6{bottom:377.026667pt;}
.y77{bottom:378.786667pt;}
.y1cb{bottom:384.733333pt;}
.y207{bottom:387.933333pt;}
.y13d{bottom:389.826667pt;}
.y1a5{bottom:390.173333pt;}
.ya7{bottom:392.066667pt;}
.y85{bottom:393.826667pt;}
.yd8{bottom:394.306667pt;}
.y53{bottom:394.786667pt;}
.y1e8{bottom:398.973333pt;}
.y76{bottom:401.666667pt;}
.yb8{bottom:401.826667pt;}
.y206{bottom:403.293333pt;}
.y1cd{bottom:404.573333pt;}
.y13c{bottom:409.346667pt;}
.y1e7{bottom:414.333333pt;}
.ya6{bottom:415.106667pt;}
.y84{bottom:417.186667pt;}
.yd7{bottom:417.346667pt;}
.y52{bottom:417.666667pt;}
.y205{bottom:418.653333pt;}
.y1a2{bottom:423.133333pt;}
.y75{bottom:424.706667pt;}
.y1e6{bottom:427.453333pt;}
.y13b{bottom:428.866667pt;}
.y176{bottom:433.186667pt;}
.ya5{bottom:438.146667pt;}
.yd6{bottom:440.386667pt;}
.y83{bottom:440.546667pt;}
.y51{bottom:440.706667pt;}
.y1ca{bottom:441.053333pt;}
.y74{bottom:447.746667pt;}
.y139{bottom:448.226667pt;}
.y204{bottom:449.533333pt;}
.y1c9{bottom:454.173333pt;}
.ya4{bottom:461.026667pt;}
.yd5{bottom:463.426667pt;}
.y50{bottom:463.746667pt;}
.y175{bottom:464.386667pt;}
.y203{bottom:467.133333pt;}
.y138{bottom:470.626667pt;}
.y73{bottom:470.786667pt;}
.ya3{bottom:484.066667pt;}
.y202{bottom:484.733333pt;}
.y1e5{bottom:485.693333pt;}
.y137{bottom:485.986667pt;}
.yd4{bottom:486.306667pt;}
.y4f{bottom:486.786667pt;}
.y72{bottom:493.666667pt;}
.y174{bottom:495.746667pt;}
.y1a1{bottom:499.613333pt;}
.y1c6{bottom:500.733333pt;}
.y136{bottom:501.346667pt;}
.y201{bottom:502.493333pt;}
.ya2{bottom:507.106667pt;}
.yd3{bottom:509.346667pt;}
.y4e{bottom:509.666667pt;}
.y71{bottom:516.706667pt;}
.y200{bottom:520.093333pt;}
.y171{bottom:527.106667pt;}
.ya1{bottom:530.146667pt;}
.y135{bottom:531.906667pt;}
.yd2{bottom:532.386667pt;}
.y4d{bottom:532.706667pt;}
.y1ff{bottom:537.693333pt;}
.y70{bottom:539.746667pt;}
.y134{bottom:547.266667pt;}
.yd1{bottom:547.746667pt;}
.y1e4{bottom:550.373333pt;}
.ya0{bottom:553.026667pt;}
.y1fe{bottom:555.333333pt;}
.y4c{bottom:555.746667pt;}
.y1c2{bottom:560.773333pt;}
.y133{bottom:562.626667pt;}
.y6f{bottom:562.786667pt;}
.yd0{bottom:563.106667pt;}
.y170{bottom:565.506667pt;}
.y1fd{bottom:572.933333pt;}
.y15a{bottom:575.773333pt;}
.y9f{bottom:576.093333pt;}
.y19e{bottom:576.133333pt;}
.ycf{bottom:578.333333pt;}
.y4b{bottom:578.813333pt;}
.y6e{bottom:585.693333pt;}
.y16f{bottom:587.293333pt;}
.y1e3{bottom:590.053333pt;}
.y1fc{bottom:590.693333pt;}
.yce{bottom:593.693333pt;}
.y1bf{bottom:597.733333pt;}
.y159{bottom:598.653333pt;}
.y9e{bottom:599.133333pt;}
.y4a{bottom:601.693333pt;}
.y16e{bottom:602.653333pt;}
.y1a{bottom:603.293333pt;}
.y1fb{bottom:608.293333pt;}
.y6d{bottom:608.733333pt;}
.ycd{bottom:609.053333pt;}
.y16d{bottom:618.013333pt;}
.y19{bottom:618.653333pt;}
.y158{bottom:621.693333pt;}
.y9d{bottom:622.173333pt;}
.y198{bottom:623.333333pt;}
.y49{bottom:624.733333pt;}
.y1fa{bottom:625.893333pt;}
.y6c{bottom:631.773333pt;}
.ycc{bottom:632.093333pt;}
.y18{bottom:633.373333pt;}
.y103{bottom:636.573333pt;}
.y19b{bottom:640.293333pt;}
.y1f9{bottom:643.493333pt;}
.y157{bottom:644.573333pt;}
.y9c{bottom:645.053333pt;}
.y1e1{bottom:645.893333pt;}
.y48{bottom:647.773333pt;}
.y16c{bottom:648.573333pt;}
.y1ba{bottom:649.733333pt;}
.y17{bottom:654.333333pt;}
.y6b{bottom:654.813333pt;}
.ycb{bottom:654.973333pt;}
.y1f8{bottom:661.093333pt;}
.y16b{bottom:661.693333pt;}
.y1de{bottom:665.733333pt;}
.y156{bottom:667.453333pt;}
.y9b{bottom:668.093333pt;}
.y1bd{bottom:668.133333pt;}
.y16{bottom:669.693333pt;}
.y47{bottom:670.813333pt;}
.y197{bottom:671.493333pt;}
.yf7{bottom:674.653333pt;}
.y6a{bottom:677.693333pt;}
.yca{bottom:678.013333pt;}
.y15{bottom:684.893333pt;}
.y196{bottom:686.853333pt;}
.y155{bottom:690.493333pt;}
.y9a{bottom:691.133333pt;}
.y16a{bottom:693.053333pt;}
.y46{bottom:693.693333pt;}
.y69{bottom:700.733333pt;}
.yc9{bottom:701.053333pt;}
.y14{bottom:702.173333pt;}
.y192{bottom:707.973333pt;}
.y154{bottom:713.373333pt;}
.y99{bottom:714.173333pt;}
.y45{bottom:716.733333pt;}
.y191{bottom:720.480000pt;}
.y68{bottom:723.773333pt;}
.yc8{bottom:724.093333pt;}
.y169{bottom:724.413333pt;}
.y13{bottom:726.653333pt;}
.y153{bottom:736.253333pt;}
.y98{bottom:737.053333pt;}
.y190{bottom:738.880000pt;}
.y44{bottom:739.773333pt;}
.ye0{bottom:745.053333pt;}
.y67{bottom:746.653333pt;}
.yb7{bottom:746.813333pt;}
.yc7{bottom:747.133333pt;}
.y12{bottom:751.133333pt;}
.y168{bottom:755.773333pt;}
.yc6{bottom:756.093333pt;}
.y151{bottom:759.293333pt;}
.y18f{bottom:762.240000pt;}
.y43{bottom:762.653333pt;}
.y66{bottom:769.693333pt;}
.y97{bottom:773.373333pt;}
.y11{bottom:775.773333pt;}
.y150{bottom:782.173333pt;}
.y42{bottom:785.693333pt;}
.y165{bottom:787.133333pt;}
.yc5{bottom:788.253333pt;}
.y65{bottom:792.733333pt;}
.y96{bottom:796.453333pt;}
.yc4{bottom:797.253333pt;}
.y10{bottom:800.293333pt;}
.y14e{bottom:805.093333pt;}
.y41{bottom:808.773333pt;}
.y64{bottom:815.813333pt;}
.y164{bottom:818.373333pt;}
.y95{bottom:819.493333pt;}
.y18e{bottom:819.653333pt;}
.yf{bottom:824.773333pt;}
.yc3{bottom:829.253333pt;}
.y132{bottom:831.013333pt;}
.y40{bottom:831.813333pt;}
.y18d{bottom:834.853333pt;}
.y63{bottom:838.693333pt;}
.yb6{bottom:838.853333pt;}
.y94{bottom:842.533333pt;}
.yf0{bottom:843.173333pt;}
.y131{bottom:846.373333pt;}
.y9{bottom:847.493333pt;}
.y163{bottom:849.733333pt;}
.y18c{bottom:850.213333pt;}
.yc2{bottom:852.293333pt;}
.y3f{bottom:854.693333pt;}
.y62{bottom:861.733333pt;}
.yb5{bottom:861.893333pt;}
.y8{bottom:862.853333pt;}
.y18b{bottom:863.973333pt;}
.y93{bottom:865.413333pt;}
.y12d{bottom:874.853333pt;}
.yc1{bottom:875.173333pt;}
.y7{bottom:875.333333pt;}
.y3e{bottom:877.733333pt;}
.y162{bottom:881.093333pt;}
.y18a{bottom:883.333333pt;}
.y61{bottom:884.773333pt;}
.yb4{bottom:890.213333pt;}
.y92{bottom:896.453333pt;}
.yc0{bottom:898.373333pt;}
.y3d{bottom:900.773333pt;}
.y189{bottom:902.533333pt;}
.ybf{bottom:907.333333pt;}
.y60{bottom:907.813333pt;}
.y161{bottom:912.453333pt;}
.yea{bottom:915.653333pt;}
.y91{bottom:915.813333pt;}
.y6{bottom:915.973333pt;}
.yb3{bottom:918.533333pt;}
.y188{bottom:921.893333pt;}
.y3c{bottom:923.813333pt;}
.y5{bottom:930.053333pt;}
.y127{bottom:931.813333pt;}
.ybe{bottom:936.613333pt;}
.y5f{bottom:938.693333pt;}
.y187{bottom:941.093333pt;}
.y15f{bottom:943.813333pt;}
.ybd{bottom:945.573333pt;}
.y4{bottom:945.893333pt;}
.y3b{bottom:946.693333pt;}
.y185{bottom:960.293333pt;}
.y3{bottom:964.293333pt;}
.ye8{bottom:964.453333pt;}
.y3a{bottom:969.733333pt;}
.y15b{bottom:975.173333pt;}
.y183{bottom:979.653333pt;}
.y2{bottom:982.693333pt;}
.ybc{bottom:990.853333pt;}
.y39{bottom:992.773333pt;}
.ye7{bottom:996.453333pt;}
.y1{bottom:997.573333pt;}
.ybb{bottom:1014.853333pt;}
.y38{bottom:1015.813333pt;}
.y37{bottom:1052.160000pt;}
.y36{bottom:1064.640000pt;}
.y35{bottom:1083.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.760000pt;}
.h30{height:16.320000pt;}
.h3d{height:17.760000pt;}
.h2a{height:17.920000pt;}
.h2b{height:18.080000pt;}
.h1d{height:18.720000pt;}
.h1f{height:18.752000pt;}
.h1c{height:18.880000pt;}
.h27{height:18.912000pt;}
.h44{height:19.200000pt;}
.h1e{height:20.480000pt;}
.h22{height:22.240000pt;}
.h21{height:22.272000pt;}
.h20{height:22.400000pt;}
.h2f{height:27.680000pt;}
.h36{height:28.000000pt;}
.h12{height:28.480000pt;}
.h38{height:28.800000pt;}
.h3c{height:30.400000pt;}
.h24{height:30.560000pt;}
.h26{height:30.592000pt;}
.h25{height:30.720000pt;}
.h29{height:30.752000pt;}
.h34{height:32.320000pt;}
.h43{height:32.800000pt;}
.h5{height:35.085938pt;}
.h3f{height:36.320000pt;}
.h23{height:37.120000pt;}
.h16{height:37.440000pt;}
.hb{height:37.624687pt;}
.h28{height:37.760000pt;}
.h46{height:39.040000pt;}
.h2{height:39.373125pt;}
.h7{height:42.117188pt;}
.ha{height:44.176250pt;}
.h2e{height:44.640000pt;}
.h35{height:44.960000pt;}
.h41{height:45.920000pt;}
.h31{height:46.560000pt;}
.h4{height:46.609688pt;}
.h19{height:46.880000pt;}
.h37{height:47.040000pt;}
.h3{height:47.437500pt;}
.h13{height:48.160000pt;}
.h3b{height:48.800000pt;}
.h11{height:48.884375pt;}
.h3a{height:48.960000pt;}
.h3e{height:51.200000pt;}
.h42{height:52.640000pt;}
.h49{height:55.200000pt;}
.h45{height:55.232000pt;}
.h1b{height:56.160000pt;}
.h4b{height:57.600000pt;}
.h48{height:57.632000pt;}
.h40{height:59.392000pt;}
.hd{height:60.255000pt;}
.h9{height:63.091875pt;}
.h47{height:64.000000pt;}
.h4a{height:64.032000pt;}
.h39{height:66.112000pt;}
.h14{height:71.840000pt;}
.h33{height:75.840000pt;}
.h32{height:75.872000pt;}
.hf{height:82.449688pt;}
.h10{height:82.609687pt;}
.he{height:87.180625pt;}
.h1a{height:95.712000pt;}
.h18{height:95.840000pt;}
.h15{height:167.706667pt;}
.hc{height:303.586667pt;}
.h17{height:335.426667pt;}
.h2c{height:793.760000pt;}
.h2d{height:794.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w17{width:63.200000pt;}
.w16{width:64.832000pt;}
.w1f{width:67.392000pt;}
.w1e{width:79.840000pt;}
.w15{width:83.040000pt;}
.w38{width:90.752000pt;}
.w32{width:91.072000pt;}
.w3e{width:93.792000pt;}
.w36{width:93.952000pt;}
.w30{width:94.272000pt;}
.w1d{width:98.432000pt;}
.wc{width:98.592000pt;}
.w10{width:103.072000pt;}
.w3f{width:103.200000pt;}
.w37{width:103.232000pt;}
.w3b{width:103.360000pt;}
.w34{width:103.392000pt;}
.w31{width:103.552000pt;}
.w2e{width:103.712000pt;}
.w11{width:105.152000pt;}
.w49{width:108.640000pt;}
.w4a{width:108.672000pt;}
.w42{width:108.960000pt;}
.w43{width:108.992000pt;}
.w44{width:109.120000pt;}
.w45{width:109.152000pt;}
.w46{width:109.472000pt;}
.w35{width:112.640000pt;}
.w33{width:112.800000pt;}
.w2f{width:112.960000pt;}
.w2d{width:113.120000pt;}
.w47{width:113.792000pt;}
.w1b{width:114.240000pt;}
.w19{width:114.880000pt;}
.w18{width:116.992000pt;}
.w14{width:117.472000pt;}
.w40{width:117.792000pt;}
.w20{width:117.952000pt;}
.we{width:118.112000pt;}
.w12{width:121.152000pt;}
.w3d{width:122.240000pt;}
.w3c{width:122.272000pt;}
.wd{width:126.752000pt;}
.w1c{width:134.266667pt;}
.w8{width:156.986667pt;}
.w39{width:164.506667pt;}
.w13{width:164.826667pt;}
.w2b{width:169.146667pt;}
.wa{width:224.546667pt;}
.w9{width:236.026667pt;}
.w23{width:249.346667pt;}
.wb{width:268.346667pt;}
.wf{width:282.466667pt;}
.w7{width:309.506667pt;}
.w4{width:309.826667pt;}
.w3{width:310.626667pt;}
.w6{width:310.946667pt;}
.w22{width:363.266667pt;}
.w28{width:463.746667pt;}
.w2a{width:464.386667pt;}
.w29{width:465.666667pt;}
.w27{width:466.306667pt;}
.w1a{width:499.653333pt;}
.w4b{width:545.986667pt;}
.w5{width:604.293333pt;}
.w21{width:614.533333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.w3a{width:846.853333pt;}
.w2c{width:847.493333pt;}
.w48{width:874.053333pt;}
.w41{width:877.573333pt;}
.w26{width:1122.559983pt;}
.w24{width:1122.560000pt;}
.w25{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x21{left:4.320000pt;}
.xa{left:7.520000pt;}
.x39{left:47.520000pt;}
.x42{left:56.960000pt;}
.x25{left:61.120000pt;}
.x9{left:86.912000pt;}
.x20{left:90.112000pt;}
.x7{left:94.431988pt;}
.x10{left:100.191988pt;}
.x35{left:105.760000pt;}
.xc{left:107.391988pt;}
.x49{left:109.440000pt;}
.x37{left:113.471983pt;}
.xd{left:117.791988pt;}
.xe{left:131.391988pt;}
.x14{left:132.991988pt;}
.x56{left:137.466650pt;}
.x15{left:160.826655pt;}
.x1b{left:183.066655pt;}
.x1a{left:187.546655pt;}
.x18{left:200.986655pt;}
.x2e{left:204.666667pt;}
.x12{left:208.186655pt;}
.x3a{left:216.986667pt;}
.x1c{left:221.506655pt;}
.x16{left:222.786655pt;}
.x4f{left:224.026667pt;}
.x2{left:226.146655pt;}
.x4a{left:227.866667pt;}
.x19{left:231.266655pt;}
.x6{left:243.746655pt;}
.x1e{left:245.346667pt;}
.x29{left:255.746667pt;}
.xf{left:265.346655pt;}
.xb{left:278.146667pt;}
.x17{left:287.746655pt;}
.x13{left:302.141333pt;}
.x5{left:322.306655pt;}
.x43{left:326.106667pt;}
.x3b{left:330.426667pt;}
.x11{left:331.586655pt;}
.x50{left:333.306667pt;}
.x34{left:334.586650pt;}
.x4{left:337.826655pt;}
.x2f{left:339.266667pt;}
.x26{left:344.386667pt;}
.x3{left:354.306655pt;}
.x22{left:359.266667pt;}
.x2a{left:373.853333pt;}
.x8{left:397.053321pt;}
.x38{left:432.866667pt;}
.x3c{left:434.466667pt;}
.x30{left:438.173333pt;}
.x51{left:442.626667pt;}
.x27{left:448.093333pt;}
.x44{left:449.026667pt;}
.x32{left:454.333333pt;}
.x2b{left:457.533333pt;}
.x23{left:458.493333pt;}
.x1f{left:482.013333pt;}
.x31{left:518.333333pt;}
.x2c{left:523.013333pt;}
.x3d{left:547.746667pt;}
.x52{left:552.066667pt;}
.x28{left:553.893333pt;}
.x4b{left:557.026667pt;}
.x33{left:570.786650pt;}
.x36{left:572.066667pt;}
.x24{left:585.893333pt;}
.x2d{left:587.013333pt;}
.x3e{left:642.333333pt;}
.x53{left:661.373333pt;}
.x45{left:666.333333pt;}
.x1{left:699.519988pt;}
.x1d{left:701.119988pt;}
.x3f{left:755.773333pt;}
.x46{left:770.333333pt;}
.x4c{left:776.573333pt;}
.x40{left:859.653333pt;}
.x47{left:874.373333pt;}
.x54{left:880.133333pt;}
.x4d{left:886.213333pt;}
.x41{left:973.093333pt;}
.x48{left:978.213333pt;}
.x55{left:989.413333pt;}
.x4e{left:995.973333pt;}
}




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