
    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_3594a237b08d82549915d967.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_afb6a72038d65fe9d30b0850.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8ad2e88160a2d3111aa47858.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a2a8475fe62ae1aba4e70d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_81e7c7009a0c1db78c440ef6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6cd8807582f27478fccd85c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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:-68.400000px;}
.v1{vertical-align:-66.216000px;}
.v4{vertical-align:-61.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.ls29{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.538800px;}
.lsb{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.lsa{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.206640px;}
.ls18{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:1.080000px;}
.ls1c{letter-spacing:2.520000px;}
.ls27{letter-spacing:4.080000px;}
.ls25{letter-spacing:4.500000px;}
.ls21{letter-spacing:6.120000px;}
.ls11{letter-spacing:6.660000px;}
.ls23{letter-spacing:8.280000px;}
.ls13{letter-spacing:10.260000px;}
.ls1f{letter-spacing:54.180000px;}
.ls1d{letter-spacing:54.900000px;}
.ls26{letter-spacing:57.780000px;}
.ls20{letter-spacing:59.940000px;}
.ls22{letter-spacing:62.100000px;}
.ls3{letter-spacing:66.162720px;}
.ls9{letter-spacing:112.476000px;}
.ls1a{letter-spacing:423.516000px;}
.lsc{letter-spacing:628.176000px;}
.ls8{letter-spacing:753.456000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.672000px;}
.ws17{word-spacing:-12.564000px;}
.ws12{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.790600px;}
.ws13{word-spacing:-11.700000px;}
.ws14{word-spacing:-11.521200px;}
.ws9{word-spacing:-7.560000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-3.639120px;}
._18{margin-left:-2.491920px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._7{width:4.371600px;}
._8{width:5.670000px;}
._4{width:6.840000px;}
._e{width:7.913520px;}
._c{width:9.666000px;}
._9{width:10.962000px;}
._a{width:12.144000px;}
._12{width:13.147200px;}
._26{width:14.713200px;}
._16{width:16.007040px;}
._6{width:17.100000px;}
._b{width:18.900000px;}
._d{width:20.520000px;}
._13{width:21.752640px;}
._17{width:23.425920px;}
._f{width:24.680880px;}
._1c{width:26.873280px;}
._27{width:28.260000px;}
._19{width:30.136080px;}
._1d{width:33.506640px;}
._2f{width:34.654560px;}
._25{width:35.708160px;}
._1e{width:36.793440px;}
._28{width:38.302560px;}
._29{width:39.320400px;}
._22{width:48.240000px;}
._1b{width:50.119920px;}
._2e{width:51.562800px;}
._23{width:52.678080px;}
._24{width:53.823600px;}
._2a{width:56.340720px;}
._2c{width:58.353120px;}
._1f{width:59.828160px;}
._2b{width:62.369280px;}
._30{width:78.490080px;}
._31{width:79.523280px;}
._20{width:107.141040px;}
._21{width:108.215040px;}
._5{width:155.700000px;}
._10{width:509.086560px;}
._14{width:735.660000px;}
._11{width:865.686720px;}
._15{width:1073.100000px;}
._3{width:1101.912000px;}
._2d{width:1407.433440px;}
.fc3{color:rgb(4,12,40);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:2.520000px;}
.yc8{bottom:2.565000px;}
.y21e{bottom:2.880000px;}
.y30{bottom:3.060000px;}
.y17{bottom:3.240000px;}
.y11{bottom:3.285000px;}
.y126{bottom:3.780000px;}
.y3a{bottom:9.000000px;}
.y40{bottom:12.060000px;}
.yc1{bottom:16.200000px;}
.yfd{bottom:16.374000px;}
.ybb{bottom:16.380000px;}
.yc7{bottom:16.425000px;}
.y21d{bottom:18.360000px;}
.y22f{bottom:18.405000px;}
.y2f{bottom:18.540000px;}
.y249{bottom:18.570000px;}
.y205{bottom:18.720000px;}
.y244{bottom:18.930000px;}
.y16{bottom:20.340000px;}
.y121{bottom:20.520000px;}
.y124{bottom:20.880000px;}
.y122{bottom:21.060000px;}
.y3f{bottom:29.340000px;}
.yba{bottom:30.060000px;}
.yec{bottom:30.105000px;}
.yfc{bottom:30.234000px;}
.ye5{bottom:30.240000px;}
.y241{bottom:30.780000px;}
.y202{bottom:30.825000px;}
.y238{bottom:33.876000px;}
.y22e{bottom:33.885000px;}
.y2e{bottom:34.020000px;}
.y248{bottom:34.050000px;}
.y215{bottom:34.200000px;}
.y15{bottom:37.620000px;}
.y193{bottom:43.920000px;}
.y212{bottom:46.260000px;}
.y201{bottom:46.305000px;}
.y3e{bottom:46.620000px;}
.y2d{bottom:49.500000px;}
.y237{bottom:49.530000px;}
.y22d{bottom:49.545000px;}
.y227{bottom:49.725000px;}
.y14{bottom:54.900000px;}
.y1af{bottom:57.600000px;}
.yea{bottom:57.780000px;}
.y1aa{bottom:57.810000px;}
.y211{bottom:61.740000px;}
.y240{bottom:61.920000px;}
.y200{bottom:61.965000px;}
.y3d{bottom:63.945000px;}
.y21c{bottom:64.980000px;}
.y224{bottom:65.010000px;}
.y22c{bottom:65.025000px;}
.y2c{bottom:65.160000px;}
.y247{bottom:65.190000px;}
.y39{bottom:65.880000px;}
.y19d{bottom:71.460000px;}
.y1ef{bottom:71.490000px;}
.ye9{bottom:71.505000px;}
.yf4{bottom:71.640000px;}
.y130{bottom:72.180000px;}
.y210{bottom:77.220000px;}
.y1ff{bottom:77.445000px;}
.y21b{bottom:80.460000px;}
.y223{bottom:80.490000px;}
.y22b{bottom:80.505000px;}
.y2b{bottom:80.640000px;}
.y246{bottom:80.670000px;}
.y13{bottom:81.180000px;}
.yde{bottom:85.320000px;}
.y1ee{bottom:85.350000px;}
.y5{bottom:88.200000px;}
.y3c{bottom:90.225000px;}
.y20f{bottom:92.880000px;}
.y1fe{bottom:92.925000px;}
.y236{bottom:95.970000px;}
.y22a{bottom:95.985000px;}
.y2a{bottom:96.120000px;}
.y222{bottom:96.150000px;}
.y231{bottom:96.330000px;}
.y1b4{bottom:99.000000px;}
.yd5{bottom:99.030000px;}
.ydd{bottom:99.180000px;}
.y1ed{bottom:99.210000px;}
.y20e{bottom:108.360000px;}
.y1fd{bottom:108.405000px;}
.y230{bottom:108.540000px;}
.y209{bottom:111.600000px;}
.y29{bottom:111.630000px;}
.y21a{bottom:111.645000px;}
.y1b3{bottom:112.860000px;}
.y7b{bottom:114.120000px;}
.y142{bottom:119.700000px;}
.y20d{bottom:123.840000px;}
.y1fc{bottom:123.885000px;}
.y23f{bottom:124.065000px;}
.yb8{bottom:124.740000px;}
.y1cf{bottom:126.720000px;}
.y23b{bottom:127.080000px;}
.y28{bottom:127.110000px;}
.y219{bottom:127.125000px;}
.y208{bottom:127.260000px;}
.y245{bottom:127.290000px;}
.y4c{bottom:131.040000px;}
.yff{bottom:131.220000px;}
.y7a{bottom:131.400000px;}
.y187{bottom:134.280000px;}
.y141{bottom:137.016000px;}
.y11e{bottom:139.176000px;}
.y20c{bottom:139.320000px;}
.y1fb{bottom:139.365000px;}
.y23e{bottom:139.545000px;}
.yb7{bottom:142.056000px;}
.y23a{bottom:142.560000px;}
.y221{bottom:142.590000px;}
.y218{bottom:142.605000px;}
.y207{bottom:142.740000px;}
.y27{bottom:142.770000px;}
.y1ce{bottom:143.856000px;}
.yfb{bottom:146.016000px;}
.y186{bottom:148.176000px;}
.y4b{bottom:148.356000px;}
.y1d4{bottom:154.260000px;}
.y140{bottom:154.290000px;}
.y235{bottom:158.070000px;}
.y229{bottom:158.085000px;}
.y206{bottom:158.220000px;}
.y26{bottom:158.250000px;}
.y217{bottom:158.265000px;}
.yb6{bottom:159.150000px;}
.yfe{bottom:159.870000px;}
.y20a{bottom:160.230000px;}
.y1cd{bottom:161.130000px;}
.y185{bottom:162.030000px;}
.y79{bottom:165.270000px;}
.y4a{bottom:165.630000px;}
.y1e6{bottom:168.120000px;}
.y1a7{bottom:168.150000px;}
.y13f{bottom:171.570000px;}
.y25{bottom:173.730000px;}
.y216{bottom:173.745000px;}
.y204{bottom:173.910000px;}
.y184{bottom:175.710000px;}
.yb5{bottom:176.430000px;}
.y78{bottom:176.610000px;}
.y1cc{bottom:178.410000px;}
.y38{bottom:181.080000px;}
.y49{bottom:182.910000px;}
.yf3{bottom:187.410000px;}
.y13e{bottom:188.130000px;}
.y24{bottom:189.210000px;}
.y228{bottom:189.225000px;}
.y183{bottom:189.570000px;}
.y1bc{bottom:193.170000px;}
.yb4{bottom:193.710000px;}
.y1c0{bottom:195.705000px;}
.y37{bottom:198.390000px;}
.y48{bottom:200.010000px;}
.yfa{bottom:201.270000px;}
.y13d{bottom:201.810000px;}
.y182{bottom:203.430000px;}
.y234{bottom:204.690000px;}
.y23{bottom:204.870000px;}
.y1cb{bottom:207.030000px;}
.y1bd{bottom:209.565000px;}
.yb3{bottom:210.990000px;}
.yf9{bottom:215.130000px;}
.y36{bottom:215.490000px;}
.y13c{bottom:216.390000px;}
.y181{bottom:217.110000px;}
.y47{bottom:217.290000px;}
.y233{bottom:220.170000px;}
.y22{bottom:220.350000px;}
.y1ca{bottom:220.710000px;}
.yb2{bottom:228.270000px;}
.yf7{bottom:228.810000px;}
.y180{bottom:230.970000px;}
.y35{bottom:232.770000px;}
.y13b{bottom:233.670000px;}
.y46{bottom:234.570000px;}
.y232{bottom:235.650000px;}
.y21{bottom:235.830000px;}
.yf8{bottom:242.670000px;}
.y17f{bottom:244.830000px;}
.yb1{bottom:245.550000px;}
.y1c7{bottom:248.430000px;}
.y34{bottom:250.050000px;}
.y13a{bottom:250.950000px;}
.y20{bottom:251.310000px;}
.y45{bottom:251.850000px;}
.yf5{bottom:256.530000px;}
.y17e{bottom:258.510000px;}
.y1c9{bottom:262.110000px;}
.yb0{bottom:262.650000px;}
.yd3{bottom:264.810000px;}
.y1f{bottom:266.970000px;}
.y33{bottom:267.330000px;}
.y44{bottom:269.130000px;}
.yf6{bottom:270.210000px;}
.y17d{bottom:272.370000px;}
.y1c8{bottom:275.970000px;}
.yd2{bottom:278.490000px;}
.y18b{bottom:278.505000px;}
.yaf{bottom:279.930000px;}
.y139{bottom:281.190000px;}
.y1e{bottom:282.450000px;}
.yf1{bottom:284.070000px;}
.y32{bottom:284.610000px;}
.y17c{bottom:286.230000px;}
.y43{bottom:286.410000px;}
.y1c2{bottom:289.830000px;}
.y18a{bottom:292.365000px;}
.y138{bottom:295.770000px;}
.yae{bottom:297.210000px;}
.y1d{bottom:297.930000px;}
.y17b{bottom:299.910000px;}
.y42{bottom:303.510000px;}
.y31{bottom:310.710000px;}
.yf2{bottom:311.610000px;}
.y137{bottom:313.050000px;}
.y1c{bottom:313.410000px;}
.y17a{bottom:313.770000px;}
.yad{bottom:314.490000px;}
.y1c6{bottom:317.370000px;}
.y41{bottom:320.790000px;}
.ye8{bottom:325.470000px;}
.y179{bottom:327.630000px;}
.y1b{bottom:329.070000px;}
.y136{bottom:329.430000px;}
.y1c5{bottom:331.230000px;}
.yac{bottom:331.770000px;}
.y3b{bottom:337.170000px;}
.yf0{bottom:339.330000px;}
.y178{bottom:341.310000px;}
.y135{bottom:343.290000px;}
.y1c4{bottom:344.910000px;}
.y203{bottom:345.630000px;}
.yab{bottom:349.050000px;}
.yef{bottom:353.010000px;}
.y177{bottom:355.170000px;}
.y134{bottom:357.870000px;}
.y1c3{bottom:358.770000px;}
.y1fa{bottom:359.490000px;}
.yaa{bottom:366.150000px;}
.y77{bottom:366.330000px;}
.yeb{bottom:366.870000px;}
.y176{bottom:369.030000px;}
.y226{bottom:371.730000px;}
.y1be{bottom:372.630000px;}
.y133{bottom:375.150000px;}
.y76{bottom:380.010000px;}
.yee{bottom:380.730000px;}
.y175{bottom:382.710000px;}
.ya9{bottom:383.430000px;}
.y1c1{bottom:386.310000px;}
.y132{bottom:391.575000px;}
.yed{bottom:394.455000px;}
.y75{bottom:394.635000px;}
.y174{bottom:396.615000px;}
.y1bf{bottom:400.215000px;}
.ya8{bottom:400.755000px;}
.y131{bottom:405.435000px;}
.yd1{bottom:408.315000px;}
.y173{bottom:410.475000px;}
.y74{bottom:411.915000px;}
.y1b2{bottom:414.075000px;}
.y19{bottom:415.830000px;}
.y12f{bottom:416.775000px;}
.ya7{bottom:418.035000px;}
.ye7{bottom:422.175000px;}
.y172{bottom:424.155000px;}
.y73{bottom:429.195000px;}
.ya6{bottom:435.315000px;}
.ye4{bottom:435.855000px;}
.y11d{bottom:436.035000px;}
.y171{bottom:438.015000px;}
.y1bb{bottom:441.615000px;}
.y72{bottom:446.295000px;}
.ye6{bottom:449.715000px;}
.y18{bottom:451.155000px;}
.y170{bottom:451.875000px;}
.ya5{bottom:452.595000px;}
.y1ba{bottom:455.475000px;}
.y11c{bottom:456.015000px;}
.y71{bottom:463.575000px;}
.y16f{bottom:465.555000px;}
.y1b7{bottom:469.155000px;}
.ya4{bottom:469.695000px;}
.y11b{bottom:473.115000px;}
.ydc{bottom:477.255000px;}
.y16e{bottom:479.415000px;}
.y70{bottom:480.855000px;}
.y1b9{bottom:483.015000px;}
.ya3{bottom:486.975000px;}
.y11a{bottom:490.395000px;}
.ye3{bottom:491.115000px;}
.y16d{bottom:493.095000px;}
.y1b8{bottom:496.875000px;}
.y6f{bottom:498.135000px;}
.ya2{bottom:504.255000px;}
.ye2{bottom:504.975000px;}
.y12e{bottom:506.235000px;}
.y16c{bottom:506.955000px;}
.y119{bottom:507.675000px;}
.y1b5{bottom:510.555000px;}
.y1d6{bottom:513.255000px;}
.y1f9{bottom:515.055000px;}
.y6e{bottom:515.415000px;}
.y16b{bottom:520.815000px;}
.y12d{bottom:520.995000px;}
.ya1{bottom:521.535000px;}
.y1b6{bottom:524.415000px;}
.y118{bottom:524.955000px;}
.y1d2{bottom:526.935000px;}
.y1f8{bottom:529.635000px;}
.y6d{bottom:532.515000px;}
.y16a{bottom:534.495000px;}
.y1a6{bottom:538.275000px;}
.ya0{bottom:538.815000px;}
.y1a{bottom:539.355000px;}
.y117{bottom:542.235000px;}
.y1f7{bottom:546.195000px;}
.ye1{bottom:546.375000px;}
.y169{bottom:548.355000px;}
.y6c{bottom:549.795000px;}
.y12c{bottom:555.375000px;}
.y9f{bottom:555.915000px;}
.y116{bottom:559.515000px;}
.y1f6{bottom:559.875000px;}
.ye0{bottom:560.055000px;}
.y168{bottom:562.215000px;}
.y6b{bottom:567.075000px;}
.y1d1{bottom:571.935000px;}
.y12b{bottom:572.655000px;}
.y9e{bottom:573.195000px;}
.ydf{bottom:573.915000px;}
.y225{bottom:574.455000px;}
.y167{bottom:575.895000px;}
.y115{bottom:576.615000px;}
.y1b1{bottom:579.675000px;}
.y6a{bottom:584.355000px;}
.y1f5{bottom:585.795000px;}
.yd4{bottom:587.775000px;}
.y220{bottom:588.315000px;}
.y166{bottom:589.755000px;}
.y9d{bottom:590.475000px;}
.y1b0{bottom:593.355000px;}
.y114{bottom:593.895000px;}
.ydb{bottom:601.455000px;}
.y69{bottom:601.635000px;}
.y165{bottom:603.615000px;}
.y12a{bottom:607.215000px;}
.y9c{bottom:607.755000px;}
.y113{bottom:611.175000px;}
.y1f4{bottom:613.335000px;}
.yda{bottom:615.315000px;}
.y164{bottom:617.295000px;}
.y68{bottom:618.915000px;}
.y24a{bottom:620.175000px;}
.y1ae{bottom:621.075000px;}
.y9b{bottom:625.035000px;}
.y1f3{bottom:627.195000px;}
.y112{bottom:628.455000px;}
.yd9{bottom:629.175000px;}
.y163{bottom:631.155000px;}
.y243{bottom:634.035000px;}
.y1ad{bottom:634.755000px;}
.y67{bottom:636.015000px;}
.y1f2{bottom:640.905000px;}
.y129{bottom:641.805000px;}
.y9a{bottom:642.345000px;}
.yd8{bottom:642.885000px;}
.y162{bottom:645.045000px;}
.y111{bottom:645.765000px;}
.y1ac{bottom:648.645000px;}
.y66{bottom:653.325000px;}
.y1f1{bottom:654.765000px;}
.yd7{bottom:656.745000px;}
.y161{bottom:658.725000px;}
.y99{bottom:659.445000px;}
.y1ab{bottom:662.505000px;}
.y110{bottom:663.045000px;}
.y1f0{bottom:668.625000px;}
.y65{bottom:670.605000px;}
.y160{bottom:672.585000px;}
.y98{bottom:676.005000px;}
.y128{bottom:676.185000px;}
.y10f{bottom:680.145000px;}
.y1e5{bottom:682.305000px;}
.yd6{bottom:684.285000px;}
.y15f{bottom:686.445000px;}
.y64{bottom:687.165000px;}
.y97{bottom:689.865000px;}
.y1a9{bottom:690.045000px;}
.y127{bottom:693.465000px;}
.y1ec{bottom:696.165000px;}
.y10e{bottom:697.425000px;}
.yd0{bottom:698.865000px;}
.y15e{bottom:700.125000px;}
.y63{bottom:701.025000px;}
.y1a8{bottom:703.905000px;}
.y96{bottom:704.445000px;}
.y125{bottom:710.745000px;}
.y15d{bottom:713.985000px;}
.y10d{bottom:714.705000px;}
.y62{bottom:715.425000px;}
.y1a3{bottom:717.585000px;}
.y95{bottom:721.545000px;}
.y1eb{bottom:723.705000px;}
.y15c{bottom:727.845000px;}
.y123{bottom:728.025000px;}
.y10c{bottom:731.985000px;}
.y61{bottom:732.705000px;}
.y94{bottom:738.825000px;}
.y15b{bottom:741.525000px;}
.y1a5{bottom:745.305000px;}
.ycf{bottom:747.645000px;}
.y10b{bottom:749.265000px;}
.y60{bottom:749.985000px;}
.y1ea{bottom:751.425000px;}
.y15a{bottom:755.385000px;}
.y93{bottom:756.105000px;}
.y1a4{bottom:758.985000px;}
.y120{bottom:762.405000px;}
.yce{bottom:764.925000px;}
.y10a{bottom:766.545000px;}
.y5f{bottom:767.265000px;}
.y159{bottom:769.245000px;}
.y189{bottom:772.845000px;}
.y92{bottom:773.385000px;}
.y21f{bottom:775.545000px;}
.y1e9{bottom:778.965000px;}
.ycd{bottom:779.685000px;}
.y158{bottom:782.925000px;}
.y109{bottom:783.645000px;}
.y5e{bottom:784.545000px;}
.y12{bottom:785.805000px;}
.y1a2{bottom:786.705000px;}
.y214{bottom:789.405000px;}
.y91{bottom:790.665000px;}
.ycc{bottom:793.545000px;}
.y157{bottom:796.785000px;}
.y11f{bottom:797.685000px;}
.y1a1{bottom:800.385000px;}
.y108{bottom:800.925000px;}
.y5d{bottom:801.645000px;}
.y242{bottom:805.965000px;}
.y1e8{bottom:806.505000px;}
.y90{bottom:807.945000px;}
.y156{bottom:810.645000px;}
.y1a0{bottom:814.245000px;}
.y107{bottom:818.205000px;}
.y5c{bottom:818.925000px;}
.y23d{bottom:819.645000px;}
.ycb{bottom:821.085000px;}
.y8f{bottom:824.325000px;}
.y19f{bottom:827.925000px;}
.y1e7{bottom:834.225000px;}
.yca{bottom:834.945000px;}
.y106{bottom:835.485000px;}
.y5b{bottom:836.205000px;}
.y155{bottom:838.185000px;}
.y8e{bottom:838.905000px;}
.y19e{bottom:841.785000px;}
.y154{bottom:852.045000px;}
.y105{bottom:852.765000px;}
.y5a{bottom:853.485000px;}
.y197{bottom:855.645000px;}
.y8d{bottom:856.185000px;}
.y1df{bottom:861.765000px;}
.y153{bottom:865.725000px;}
.y19c{bottom:869.325000px;}
.y104{bottom:869.865000px;}
.y59{bottom:870.765000px;}
.y8c{bottom:873.465000px;}
.y1e4{bottom:875.625000px;}
.yc9{bottom:876.345000px;}
.y152{bottom:879.585000px;}
.y19b{bottom:883.185000px;}
.y103{bottom:887.145000px;}
.y58{bottom:887.865000px;}
.y1e3{bottom:889.305000px;}
.yc6{bottom:890.025000px;}
.y8b{bottom:890.565000px;}
.y10{bottom:890.745000px;}
.y151{bottom:893.490000px;}
.y19a{bottom:897.090000px;}
.y1e2{bottom:903.210000px;}
.y102{bottom:904.470000px;}
.y57{bottom:905.190000px;}
.y150{bottom:907.170000px;}
.y8a{bottom:907.890000px;}
.y199{bottom:910.770000px;}
.y1e1{bottom:917.070000px;}
.yc5{bottom:917.790000px;}
.y14f{bottom:921.030000px;}
.y101{bottom:921.750000px;}
.yf{bottom:922.470000px;}
.y198{bottom:924.630000px;}
.y89{bottom:925.170000px;}
.y1e0{bottom:930.750000px;}
.y14e{bottom:934.890000px;}
.y192{bottom:938.490000px;}
.y100{bottom:939.030000px;}
.ye{bottom:939.750000px;}
.y88{bottom:942.450000px;}
.y1d3{bottom:944.610000px;}
.yc4{bottom:945.330000px;}
.y14d{bottom:948.570000px;}
.y196{bottom:952.170000px;}
.yd{bottom:956.310000px;}
.y56{bottom:957.030000px;}
.y1de{bottom:958.470000px;}
.y87{bottom:959.010000px;}
.yc3{bottom:959.190000px;}
.y14c{bottom:962.430000px;}
.y195{bottom:966.030000px;}
.yc{bottom:970.710000px;}
.y1dd{bottom:972.150000px;}
.y23c{bottom:972.690000px;}
.y86{bottom:973.410000px;}
.y55{bottom:974.310000px;}
.y14b{bottom:976.290000px;}
.y213{bottom:976.650000px;}
.y194{bottom:979.890000px;}
.y1dc{bottom:986.010000px;}
.y239{bottom:986.550000px;}
.yc2{bottom:986.730000px;}
.yb{bottom:987.990000px;}
.y14a{bottom:989.970000px;}
.y20b{bottom:990.510000px;}
.y85{bottom:990.690000px;}
.y54{bottom:991.410000px;}
.y18c{bottom:993.570000px;}
.y1db{bottom:999.870000px;}
.yc0{bottom:1000.590000px;}
.y149{bottom:1003.830000px;}
.ya{bottom:1005.270000px;}
.y191{bottom:1007.430000px;}
.y84{bottom:1007.970000px;}
.y53{bottom:1008.690000px;}
.y148{bottom:1017.690000px;}
.y190{bottom:1021.290000px;}
.y9{bottom:1022.550000px;}
.y83{bottom:1025.250000px;}
.y52{bottom:1025.970000px;}
.y1da{bottom:1027.410000px;}
.ybf{bottom:1028.130000px;}
.y147{bottom:1031.370000px;}
.y18f{bottom:1034.970000px;}
.y8{bottom:1039.830000px;}
.ybe{bottom:1041.990000px;}
.y82{bottom:1042.530000px;}
.y51{bottom:1043.250000px;}
.y146{bottom:1045.230000px;}
.y18e{bottom:1048.830000px;}
.y1d9{bottom:1054.950000px;}
.ybd{bottom:1055.670000px;}
.y7{bottom:1059.090000px;}
.y81{bottom:1059.810000px;}
.y50{bottom:1060.530000px;}
.y18d{bottom:1062.690000px;}
.y1d8{bottom:1068.810000px;}
.y145{bottom:1072.770000px;}
.y80{bottom:1076.910000px;}
.y188{bottom:1077.270000px;}
.y4f{bottom:1077.810000px;}
.y1d7{bottom:1082.670000px;}
.yb9{bottom:1084.110000px;}
.y6{bottom:1086.630000px;}
.y7f{bottom:1094.190000px;}
.y4e{bottom:1094.910000px;}
.y1d5{bottom:1096.350000px;}
.y144{bottom:1100.490000px;}
.y1d0{bottom:1110.930000px;}
.y7e{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y143{bottom:1114.170000px;}
.y7d{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y2{bottom:1146.780000px;}
.y4d{bottom:1160.640000px;}
.y7c{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h16{height:13.680000px;}
.h1d{height:13.716000px;}
.h17{height:13.860000px;}
.h1f{height:13.860150px;}
.h2b{height:13.896000px;}
.h13{height:17.100000px;}
.h12{height:17.280000px;}
.h7{height:26.316000px;}
.h18{height:27.540000px;}
.h15{height:27.720000px;}
.h19{height:27.756000px;}
.h24{height:34.380000px;}
.h23{height:34.560000px;}
.h25{height:34.596000px;}
.h14{height:41.400000px;}
.h21{height:41.436000px;}
.h35{height:43.246406px;}
.h27{height:47.321367px;}
.h6{height:47.344922px;}
.h1a{height:47.678906px;}
.h3b{height:48.410156px;}
.h38{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h37{height:54.421875px;}
.h2a{height:55.080000px;}
.h2c{height:55.260000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h2f{height:68.940000px;}
.h2e{height:68.976000px;}
.h8{height:70.664062px;}
.h29{height:82.800000px;}
.h20{height:82.836000px;}
.h26{height:86.220000px;}
.he{height:87.480000px;}
.h5{height:96.508125px;}
.h22{height:96.660000px;}
.h9{height:104.220000px;}
.h1c{height:110.376000px;}
.h1e{height:110.520000px;}
.h10{height:113.256000px;}
.h30{height:124.200000px;}
.h3a{height:153.000000px;}
.h36{height:153.030000px;}
.h3f{height:156.240000px;}
.h33{height:165.600000px;}
.h39{height:171.720000px;}
.h40{height:171.930000px;}
.h2d{height:179.310000px;}
.h34{height:179.460000px;}
.h3c{height:187.230000px;}
.h3d{height:202.710000px;}
.h31{height:220.890000px;}
.h3e{height:249.330000px;}
.h1b{height:289.830000px;}
.h28{height:303.510000px;}
.hd{height:333.750000px;}
.hb{height:350.670000px;}
.ha{height:438.870000px;}
.h32{height:538.275000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w20{width:35.100000px;}
.w1b{width:35.280000px;}
.w1f{width:35.316000px;}
.w1c{width:35.640000px;}
.w21{width:36.036000px;}
.w1d{width:36.180000px;}
.w22{width:36.360000px;}
.w23{width:36.540000px;}
.w1e{width:36.720000px;}
.w10{width:43.740000px;}
.w14{width:45.000000px;}
.w2a{width:49.500000px;}
.w15{width:50.256000px;}
.w32{width:51.300000px;}
.w35{width:53.100000px;}
.w17{width:55.980000px;}
.w33{width:56.016000px;}
.w2b{width:56.160000px;}
.w16{width:58.680000px;}
.w34{width:60.840000px;}
.wa{width:66.996000px;}
.wd{width:72.216000px;}
.wb{width:72.900000px;}
.wf{width:73.836000px;}
.w2c{width:78.156000px;}
.we{width:79.200000px;}
.wc{width:81.360000px;}
.w18{width:87.480000px;}
.w29{width:88.776000px;}
.w31{width:94.680000px;}
.w13{width:95.760000px;}
.w2d{width:97.020000px;}
.w9{width:103.680000px;}
.w2e{width:106.416000px;}
.w36{width:112.536000px;}
.w28{width:124.560000px;}
.w37{width:126.720000px;}
.w12{width:138.276000px;}
.w30{width:139.176000px;}
.w19{width:143.856000px;}
.w1a{width:158.070000px;}
.w26{width:198.570000px;}
.w2f{width:200.010000px;}
.w27{width:203.430000px;}
.w3{width:209.010000px;}
.w24{width:214.770000px;}
.w11{width:231.330000px;}
.w25{width:244.290000px;}
.w5{width:433.155000px;}
.w38{width:548.565000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x4d{left:9.585000px;}
.xc{left:10.620000px;}
.x1c{left:11.700000px;}
.x28{left:12.780000px;}
.x19{left:13.860000px;}
.x1e{left:15.480000px;}
.x22{left:16.560000px;}
.x25{left:18.000000px;}
.x29{left:19.260000px;}
.x1a{left:20.340000px;}
.x20{left:22.350000px;}
.x34{left:23.760000px;}
.x4e{left:25.410000px;}
.x33{left:26.820000px;}
.x23{left:28.980000px;}
.x1d{left:30.060000px;}
.x58{left:31.320000px;}
.x59{left:34.380000px;}
.x48{left:36.540000px;}
.x17{left:38.514000px;}
.x2c{left:43.380000px;}
.x50{left:60.114000px;}
.x46{left:61.734000px;}
.x5b{left:63.354000px;}
.x2a{left:83.514000px;}
.xe{left:106.560000px;}
.x16{left:119.556000px;}
.x9{left:125.496000px;}
.x1{left:127.655987px;}
.x5{left:129.635987px;}
.x6{left:131.435987px;}
.x11{left:154.649987px;}
.x45{left:159.689987px;}
.x12{left:175.169987px;}
.x10{left:181.649987px;}
.x2{left:191.189987px;}
.x4f{left:200.909987px;}
.x32{left:207.030000px;}
.x57{left:217.110000px;}
.x18{left:223.230000px;}
.x4c{left:225.930000px;}
.x5a{left:246.270000px;}
.x35{left:286.095000px;}
.x7{left:290.054987px;}
.x15{left:313.454987px;}
.x36{left:321.375000px;}
.x51{left:329.655000px;}
.x47{left:332.355000px;}
.xb{left:334.515000px;}
.x8{left:340.634987px;}
.x43{left:343.155000px;}
.x2b{left:350.895000px;}
.xd{left:355.755000px;}
.x37{left:357.015000px;}
.x3{left:358.274987px;}
.x1b{left:363.135000px;}
.x38{left:393.195000px;}
.xf{left:425.055000px;}
.x39{left:429.915000px;}
.x1f{left:444.495000px;}
.x4{left:457.274987px;}
.x3a{left:466.095000px;}
.x52{left:468.825000px;}
.x2d{left:489.165000px;}
.x3b{left:501.405000px;}
.x21{left:516.705000px;}
.x3c{left:536.685000px;}
.x49{left:545.685000px;}
.x53{left:563.505000px;}
.x3d{left:571.965000px;}
.x2e{left:584.925000px;}
.x44{left:587.445000px;}
.x24{left:595.905000px;}
.x3e{left:607.065000px;}
.x54{left:614.805000px;}
.x2f{left:629.925000px;}
.x14{left:631.544987px;}
.x3f{left:642.345000px;}
.x4a{left:651.345000px;}
.x26{left:669.750000px;}
.x55{left:670.830000px;}
.x40{left:678.390000px;}
.x30{left:680.190000px;}
.x27{left:713.490000px;}
.x41{left:714.750000px;}
.x4b{left:729.510000px;}
.x56{left:731.670000px;}
.x31{left:738.870000px;}
.x42{left:749.850000px;}
.x13{left:756.870000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v1{vertical-align:-58.858667pt;}
.v4{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.478933pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.lsa{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.183680pt;}
.ls18{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:2.240000pt;}
.ls27{letter-spacing:3.626667pt;}
.ls25{letter-spacing:4.000000pt;}
.ls21{letter-spacing:5.440000pt;}
.ls11{letter-spacing:5.920000pt;}
.ls23{letter-spacing:7.360000pt;}
.ls13{letter-spacing:9.120000pt;}
.ls1f{letter-spacing:48.160000pt;}
.ls1d{letter-spacing:48.800000pt;}
.ls26{letter-spacing:51.360000pt;}
.ls20{letter-spacing:53.280000pt;}
.ls22{letter-spacing:55.200000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls9{letter-spacing:99.978667pt;}
.ls1a{letter-spacing:376.458667pt;}
.lsc{letter-spacing:558.378667pt;}
.ls8{letter-spacing:669.738667pt;}
.ws10{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.264000pt;}
.ws17{word-spacing:-11.168000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.480533pt;}
.ws13{word-spacing:-10.400000pt;}
.ws14{word-spacing:-10.241067pt;}
.ws9{word-spacing:-6.720000pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-3.234773pt;}
._18{margin-left:-2.215040pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._7{width:3.885867pt;}
._8{width:5.040000pt;}
._4{width:6.080000pt;}
._e{width:7.034240pt;}
._c{width:8.592000pt;}
._9{width:9.744000pt;}
._a{width:10.794667pt;}
._12{width:11.686400pt;}
._26{width:13.078400pt;}
._16{width:14.228480pt;}
._6{width:15.200000pt;}
._b{width:16.800000pt;}
._d{width:18.240000pt;}
._13{width:19.335680pt;}
._17{width:20.823040pt;}
._f{width:21.938560pt;}
._1c{width:23.887360pt;}
._27{width:25.120000pt;}
._19{width:26.787627pt;}
._1d{width:29.783680pt;}
._2f{width:30.804053pt;}
._25{width:31.740587pt;}
._1e{width:32.705280pt;}
._28{width:34.046720pt;}
._29{width:34.951467pt;}
._22{width:42.880000pt;}
._1b{width:44.551040pt;}
._2e{width:45.833600pt;}
._23{width:46.824960pt;}
._24{width:47.843200pt;}
._2a{width:50.080640pt;}
._2c{width:51.869440pt;}
._1f{width:53.180587pt;}
._2b{width:55.439360pt;}
._30{width:69.768960pt;}
._31{width:70.687360pt;}
._20{width:95.236480pt;}
._21{width:96.191147pt;}
._5{width:138.400000pt;}
._10{width:452.521387pt;}
._14{width:653.920000pt;}
._11{width:769.499307pt;}
._15{width:953.866667pt;}
._3{width:979.477333pt;}
._2d{width:1251.051947pt;}
.fs5{font-size:26.880000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:2.240000pt;}
.yc8{bottom:2.280000pt;}
.y21e{bottom:2.560000pt;}
.y30{bottom:2.720000pt;}
.y17{bottom:2.880000pt;}
.y11{bottom:2.920000pt;}
.y126{bottom:3.360000pt;}
.y3a{bottom:8.000000pt;}
.y40{bottom:10.720000pt;}
.yc1{bottom:14.400000pt;}
.yfd{bottom:14.554667pt;}
.ybb{bottom:14.560000pt;}
.yc7{bottom:14.600000pt;}
.y21d{bottom:16.320000pt;}
.y22f{bottom:16.360000pt;}
.y2f{bottom:16.480000pt;}
.y249{bottom:16.506667pt;}
.y205{bottom:16.640000pt;}
.y244{bottom:16.826667pt;}
.y16{bottom:18.080000pt;}
.y121{bottom:18.240000pt;}
.y124{bottom:18.560000pt;}
.y122{bottom:18.720000pt;}
.y3f{bottom:26.080000pt;}
.yba{bottom:26.720000pt;}
.yec{bottom:26.760000pt;}
.yfc{bottom:26.874667pt;}
.ye5{bottom:26.880000pt;}
.y241{bottom:27.360000pt;}
.y202{bottom:27.400000pt;}
.y238{bottom:30.112000pt;}
.y22e{bottom:30.120000pt;}
.y2e{bottom:30.240000pt;}
.y248{bottom:30.266667pt;}
.y215{bottom:30.400000pt;}
.y15{bottom:33.440000pt;}
.y193{bottom:39.040000pt;}
.y212{bottom:41.120000pt;}
.y201{bottom:41.160000pt;}
.y3e{bottom:41.440000pt;}
.y2d{bottom:44.000000pt;}
.y237{bottom:44.026667pt;}
.y22d{bottom:44.040000pt;}
.y227{bottom:44.200000pt;}
.y14{bottom:48.800000pt;}
.y1af{bottom:51.200000pt;}
.yea{bottom:51.360000pt;}
.y1aa{bottom:51.386667pt;}
.y211{bottom:54.880000pt;}
.y240{bottom:55.040000pt;}
.y200{bottom:55.080000pt;}
.y3d{bottom:56.840000pt;}
.y21c{bottom:57.760000pt;}
.y224{bottom:57.786667pt;}
.y22c{bottom:57.800000pt;}
.y2c{bottom:57.920000pt;}
.y247{bottom:57.946667pt;}
.y39{bottom:58.560000pt;}
.y19d{bottom:63.520000pt;}
.y1ef{bottom:63.546667pt;}
.ye9{bottom:63.560000pt;}
.yf4{bottom:63.680000pt;}
.y130{bottom:64.160000pt;}
.y210{bottom:68.640000pt;}
.y1ff{bottom:68.840000pt;}
.y21b{bottom:71.520000pt;}
.y223{bottom:71.546667pt;}
.y22b{bottom:71.560000pt;}
.y2b{bottom:71.680000pt;}
.y246{bottom:71.706667pt;}
.y13{bottom:72.160000pt;}
.yde{bottom:75.840000pt;}
.y1ee{bottom:75.866667pt;}
.y5{bottom:78.400000pt;}
.y3c{bottom:80.200000pt;}
.y20f{bottom:82.560000pt;}
.y1fe{bottom:82.600000pt;}
.y236{bottom:85.306667pt;}
.y22a{bottom:85.320000pt;}
.y2a{bottom:85.440000pt;}
.y222{bottom:85.466667pt;}
.y231{bottom:85.626667pt;}
.y1b4{bottom:88.000000pt;}
.yd5{bottom:88.026667pt;}
.ydd{bottom:88.160000pt;}
.y1ed{bottom:88.186667pt;}
.y20e{bottom:96.320000pt;}
.y1fd{bottom:96.360000pt;}
.y230{bottom:96.480000pt;}
.y209{bottom:99.200000pt;}
.y29{bottom:99.226667pt;}
.y21a{bottom:99.240000pt;}
.y1b3{bottom:100.320000pt;}
.y7b{bottom:101.440000pt;}
.y142{bottom:106.400000pt;}
.y20d{bottom:110.080000pt;}
.y1fc{bottom:110.120000pt;}
.y23f{bottom:110.280000pt;}
.yb8{bottom:110.880000pt;}
.y1cf{bottom:112.640000pt;}
.y23b{bottom:112.960000pt;}
.y28{bottom:112.986667pt;}
.y219{bottom:113.000000pt;}
.y208{bottom:113.120000pt;}
.y245{bottom:113.146667pt;}
.y4c{bottom:116.480000pt;}
.yff{bottom:116.640000pt;}
.y7a{bottom:116.800000pt;}
.y187{bottom:119.360000pt;}
.y141{bottom:121.792000pt;}
.y11e{bottom:123.712000pt;}
.y20c{bottom:123.840000pt;}
.y1fb{bottom:123.880000pt;}
.y23e{bottom:124.040000pt;}
.yb7{bottom:126.272000pt;}
.y23a{bottom:126.720000pt;}
.y221{bottom:126.746667pt;}
.y218{bottom:126.760000pt;}
.y207{bottom:126.880000pt;}
.y27{bottom:126.906667pt;}
.y1ce{bottom:127.872000pt;}
.yfb{bottom:129.792000pt;}
.y186{bottom:131.712000pt;}
.y4b{bottom:131.872000pt;}
.y1d4{bottom:137.120000pt;}
.y140{bottom:137.146667pt;}
.y235{bottom:140.506667pt;}
.y229{bottom:140.520000pt;}
.y206{bottom:140.640000pt;}
.y26{bottom:140.666667pt;}
.y217{bottom:140.680000pt;}
.yb6{bottom:141.466667pt;}
.yfe{bottom:142.106667pt;}
.y20a{bottom:142.426667pt;}
.y1cd{bottom:143.226667pt;}
.y185{bottom:144.026667pt;}
.y79{bottom:146.906667pt;}
.y4a{bottom:147.226667pt;}
.y1e6{bottom:149.440000pt;}
.y1a7{bottom:149.466667pt;}
.y13f{bottom:152.506667pt;}
.y25{bottom:154.426667pt;}
.y216{bottom:154.440000pt;}
.y204{bottom:154.586667pt;}
.y184{bottom:156.186667pt;}
.yb5{bottom:156.826667pt;}
.y78{bottom:156.986667pt;}
.y1cc{bottom:158.586667pt;}
.y38{bottom:160.960000pt;}
.y49{bottom:162.586667pt;}
.yf3{bottom:166.586667pt;}
.y13e{bottom:167.226667pt;}
.y24{bottom:168.186667pt;}
.y228{bottom:168.200000pt;}
.y183{bottom:168.506667pt;}
.y1bc{bottom:171.706667pt;}
.yb4{bottom:172.186667pt;}
.y1c0{bottom:173.960000pt;}
.y37{bottom:176.346667pt;}
.y48{bottom:177.786667pt;}
.yfa{bottom:178.906667pt;}
.y13d{bottom:179.386667pt;}
.y182{bottom:180.826667pt;}
.y234{bottom:181.946667pt;}
.y23{bottom:182.106667pt;}
.y1cb{bottom:184.026667pt;}
.y1bd{bottom:186.280000pt;}
.yb3{bottom:187.546667pt;}
.yf9{bottom:191.226667pt;}
.y36{bottom:191.546667pt;}
.y13c{bottom:192.346667pt;}
.y181{bottom:192.986667pt;}
.y47{bottom:193.146667pt;}
.y233{bottom:195.706667pt;}
.y22{bottom:195.866667pt;}
.y1ca{bottom:196.186667pt;}
.yb2{bottom:202.906667pt;}
.yf7{bottom:203.386667pt;}
.y180{bottom:205.306667pt;}
.y35{bottom:206.906667pt;}
.y13b{bottom:207.706667pt;}
.y46{bottom:208.506667pt;}
.y232{bottom:209.466667pt;}
.y21{bottom:209.626667pt;}
.yf8{bottom:215.706667pt;}
.y17f{bottom:217.626667pt;}
.yb1{bottom:218.266667pt;}
.y1c7{bottom:220.826667pt;}
.y34{bottom:222.266667pt;}
.y13a{bottom:223.066667pt;}
.y20{bottom:223.386667pt;}
.y45{bottom:223.866667pt;}
.yf5{bottom:228.026667pt;}
.y17e{bottom:229.786667pt;}
.y1c9{bottom:232.986667pt;}
.yb0{bottom:233.466667pt;}
.yd3{bottom:235.386667pt;}
.y1f{bottom:237.306667pt;}
.y33{bottom:237.626667pt;}
.y44{bottom:239.226667pt;}
.yf6{bottom:240.186667pt;}
.y17d{bottom:242.106667pt;}
.y1c8{bottom:245.306667pt;}
.yd2{bottom:247.546667pt;}
.y18b{bottom:247.560000pt;}
.yaf{bottom:248.826667pt;}
.y139{bottom:249.946667pt;}
.y1e{bottom:251.066667pt;}
.yf1{bottom:252.506667pt;}
.y32{bottom:252.986667pt;}
.y17c{bottom:254.426667pt;}
.y43{bottom:254.586667pt;}
.y1c2{bottom:257.626667pt;}
.y18a{bottom:259.880000pt;}
.y138{bottom:262.906667pt;}
.yae{bottom:264.186667pt;}
.y1d{bottom:264.826667pt;}
.y17b{bottom:266.586667pt;}
.y42{bottom:269.786667pt;}
.y31{bottom:276.186667pt;}
.yf2{bottom:276.986667pt;}
.y137{bottom:278.266667pt;}
.y1c{bottom:278.586667pt;}
.y17a{bottom:278.906667pt;}
.yad{bottom:279.546667pt;}
.y1c6{bottom:282.106667pt;}
.y41{bottom:285.146667pt;}
.ye8{bottom:289.306667pt;}
.y179{bottom:291.226667pt;}
.y1b{bottom:292.506667pt;}
.y136{bottom:292.826667pt;}
.y1c5{bottom:294.426667pt;}
.yac{bottom:294.906667pt;}
.y3b{bottom:299.706667pt;}
.yf0{bottom:301.626667pt;}
.y178{bottom:303.386667pt;}
.y135{bottom:305.146667pt;}
.y1c4{bottom:306.586667pt;}
.y203{bottom:307.226667pt;}
.yab{bottom:310.266667pt;}
.yef{bottom:313.786667pt;}
.y177{bottom:315.706667pt;}
.y134{bottom:318.106667pt;}
.y1c3{bottom:318.906667pt;}
.y1fa{bottom:319.546667pt;}
.yaa{bottom:325.466667pt;}
.y77{bottom:325.626667pt;}
.yeb{bottom:326.106667pt;}
.y176{bottom:328.026667pt;}
.y226{bottom:330.426667pt;}
.y1be{bottom:331.226667pt;}
.y133{bottom:333.466667pt;}
.y76{bottom:337.786667pt;}
.yee{bottom:338.426667pt;}
.y175{bottom:340.186667pt;}
.ya9{bottom:340.826667pt;}
.y1c1{bottom:343.386667pt;}
.y132{bottom:348.066667pt;}
.yed{bottom:350.626667pt;}
.y75{bottom:350.786667pt;}
.y174{bottom:352.546667pt;}
.y1bf{bottom:355.746667pt;}
.ya8{bottom:356.226667pt;}
.y131{bottom:360.386667pt;}
.yd1{bottom:362.946667pt;}
.y173{bottom:364.866667pt;}
.y74{bottom:366.146667pt;}
.y1b2{bottom:368.066667pt;}
.y19{bottom:369.626667pt;}
.y12f{bottom:370.466667pt;}
.ya7{bottom:371.586667pt;}
.ye7{bottom:375.266667pt;}
.y172{bottom:377.026667pt;}
.y73{bottom:381.506667pt;}
.ya6{bottom:386.946667pt;}
.ye4{bottom:387.426667pt;}
.y11d{bottom:387.586667pt;}
.y171{bottom:389.346667pt;}
.y1bb{bottom:392.546667pt;}
.y72{bottom:396.706667pt;}
.ye6{bottom:399.746667pt;}
.y18{bottom:401.026667pt;}
.y170{bottom:401.666667pt;}
.ya5{bottom:402.306667pt;}
.y1ba{bottom:404.866667pt;}
.y11c{bottom:405.346667pt;}
.y71{bottom:412.066667pt;}
.y16f{bottom:413.826667pt;}
.y1b7{bottom:417.026667pt;}
.ya4{bottom:417.506667pt;}
.y11b{bottom:420.546667pt;}
.ydc{bottom:424.226667pt;}
.y16e{bottom:426.146667pt;}
.y70{bottom:427.426667pt;}
.y1b9{bottom:429.346667pt;}
.ya3{bottom:432.866667pt;}
.y11a{bottom:435.906667pt;}
.ye3{bottom:436.546667pt;}
.y16d{bottom:438.306667pt;}
.y1b8{bottom:441.666667pt;}
.y6f{bottom:442.786667pt;}
.ya2{bottom:448.226667pt;}
.ye2{bottom:448.866667pt;}
.y12e{bottom:449.986667pt;}
.y16c{bottom:450.626667pt;}
.y119{bottom:451.266667pt;}
.y1b5{bottom:453.826667pt;}
.y1d6{bottom:456.226667pt;}
.y1f9{bottom:457.826667pt;}
.y6e{bottom:458.146667pt;}
.y16b{bottom:462.946667pt;}
.y12d{bottom:463.106667pt;}
.ya1{bottom:463.586667pt;}
.y1b6{bottom:466.146667pt;}
.y118{bottom:466.626667pt;}
.y1d2{bottom:468.386667pt;}
.y1f8{bottom:470.786667pt;}
.y6d{bottom:473.346667pt;}
.y16a{bottom:475.106667pt;}
.y1a6{bottom:478.466667pt;}
.ya0{bottom:478.946667pt;}
.y1a{bottom:479.426667pt;}
.y117{bottom:481.986667pt;}
.y1f7{bottom:485.506667pt;}
.ye1{bottom:485.666667pt;}
.y169{bottom:487.426667pt;}
.y6c{bottom:488.706667pt;}
.y12c{bottom:493.666667pt;}
.y9f{bottom:494.146667pt;}
.y116{bottom:497.346667pt;}
.y1f6{bottom:497.666667pt;}
.ye0{bottom:497.826667pt;}
.y168{bottom:499.746667pt;}
.y6b{bottom:504.066667pt;}
.y1d1{bottom:508.386667pt;}
.y12b{bottom:509.026667pt;}
.y9e{bottom:509.506667pt;}
.ydf{bottom:510.146667pt;}
.y225{bottom:510.626667pt;}
.y167{bottom:511.906667pt;}
.y115{bottom:512.546667pt;}
.y1b1{bottom:515.266667pt;}
.y6a{bottom:519.426667pt;}
.y1f5{bottom:520.706667pt;}
.yd4{bottom:522.466667pt;}
.y220{bottom:522.946667pt;}
.y166{bottom:524.226667pt;}
.y9d{bottom:524.866667pt;}
.y1b0{bottom:527.426667pt;}
.y114{bottom:527.906667pt;}
.ydb{bottom:534.626667pt;}
.y69{bottom:534.786667pt;}
.y165{bottom:536.546667pt;}
.y12a{bottom:539.746667pt;}
.y9c{bottom:540.226667pt;}
.y113{bottom:543.266667pt;}
.y1f4{bottom:545.186667pt;}
.yda{bottom:546.946667pt;}
.y164{bottom:548.706667pt;}
.y68{bottom:550.146667pt;}
.y24a{bottom:551.266667pt;}
.y1ae{bottom:552.066667pt;}
.y9b{bottom:555.586667pt;}
.y1f3{bottom:557.506667pt;}
.y112{bottom:558.626667pt;}
.yd9{bottom:559.266667pt;}
.y163{bottom:561.026667pt;}
.y243{bottom:563.586667pt;}
.y1ad{bottom:564.226667pt;}
.y67{bottom:565.346667pt;}
.y1f2{bottom:569.693333pt;}
.y129{bottom:570.493333pt;}
.y9a{bottom:570.973333pt;}
.yd8{bottom:571.453333pt;}
.y162{bottom:573.373333pt;}
.y111{bottom:574.013333pt;}
.y1ac{bottom:576.573333pt;}
.y66{bottom:580.733333pt;}
.y1f1{bottom:582.013333pt;}
.yd7{bottom:583.773333pt;}
.y161{bottom:585.533333pt;}
.y99{bottom:586.173333pt;}
.y1ab{bottom:588.893333pt;}
.y110{bottom:589.373333pt;}
.y1f0{bottom:594.333333pt;}
.y65{bottom:596.093333pt;}
.y160{bottom:597.853333pt;}
.y98{bottom:600.893333pt;}
.y128{bottom:601.053333pt;}
.y10f{bottom:604.573333pt;}
.y1e5{bottom:606.493333pt;}
.yd6{bottom:608.253333pt;}
.y15f{bottom:610.173333pt;}
.y64{bottom:610.813333pt;}
.y97{bottom:613.213333pt;}
.y1a9{bottom:613.373333pt;}
.y127{bottom:616.413333pt;}
.y1ec{bottom:618.813333pt;}
.y10e{bottom:619.933333pt;}
.yd0{bottom:621.213333pt;}
.y15e{bottom:622.333333pt;}
.y63{bottom:623.133333pt;}
.y1a8{bottom:625.693333pt;}
.y96{bottom:626.173333pt;}
.y125{bottom:631.773333pt;}
.y15d{bottom:634.653333pt;}
.y10d{bottom:635.293333pt;}
.y62{bottom:635.933333pt;}
.y1a3{bottom:637.853333pt;}
.y95{bottom:641.373333pt;}
.y1eb{bottom:643.293333pt;}
.y15c{bottom:646.973333pt;}
.y123{bottom:647.133333pt;}
.y10c{bottom:650.653333pt;}
.y61{bottom:651.293333pt;}
.y94{bottom:656.733333pt;}
.y15b{bottom:659.133333pt;}
.y1a5{bottom:662.493333pt;}
.ycf{bottom:664.573333pt;}
.y10b{bottom:666.013333pt;}
.y60{bottom:666.653333pt;}
.y1ea{bottom:667.933333pt;}
.y15a{bottom:671.453333pt;}
.y93{bottom:672.093333pt;}
.y1a4{bottom:674.653333pt;}
.y120{bottom:677.693333pt;}
.yce{bottom:679.933333pt;}
.y10a{bottom:681.373333pt;}
.y5f{bottom:682.013333pt;}
.y159{bottom:683.773333pt;}
.y189{bottom:686.973333pt;}
.y92{bottom:687.453333pt;}
.y21f{bottom:689.373333pt;}
.y1e9{bottom:692.413333pt;}
.ycd{bottom:693.053333pt;}
.y158{bottom:695.933333pt;}
.y109{bottom:696.573333pt;}
.y5e{bottom:697.373333pt;}
.y12{bottom:698.493333pt;}
.y1a2{bottom:699.293333pt;}
.y214{bottom:701.693333pt;}
.y91{bottom:702.813333pt;}
.ycc{bottom:705.373333pt;}
.y157{bottom:708.253333pt;}
.y11f{bottom:709.053333pt;}
.y1a1{bottom:711.453333pt;}
.y108{bottom:711.933333pt;}
.y5d{bottom:712.573333pt;}
.y242{bottom:716.413333pt;}
.y1e8{bottom:716.893333pt;}
.y90{bottom:718.173333pt;}
.y156{bottom:720.573333pt;}
.y1a0{bottom:723.773333pt;}
.y107{bottom:727.293333pt;}
.y5c{bottom:727.933333pt;}
.y23d{bottom:728.573333pt;}
.ycb{bottom:729.853333pt;}
.y8f{bottom:732.733333pt;}
.y19f{bottom:735.933333pt;}
.y1e7{bottom:741.533333pt;}
.yca{bottom:742.173333pt;}
.y106{bottom:742.653333pt;}
.y5b{bottom:743.293333pt;}
.y155{bottom:745.053333pt;}
.y8e{bottom:745.693333pt;}
.y19e{bottom:748.253333pt;}
.y154{bottom:757.373333pt;}
.y105{bottom:758.013333pt;}
.y5a{bottom:758.653333pt;}
.y197{bottom:760.573333pt;}
.y8d{bottom:761.053333pt;}
.y1df{bottom:766.013333pt;}
.y153{bottom:769.533333pt;}
.y19c{bottom:772.733333pt;}
.y104{bottom:773.213333pt;}
.y59{bottom:774.013333pt;}
.y8c{bottom:776.413333pt;}
.y1e4{bottom:778.333333pt;}
.yc9{bottom:778.973333pt;}
.y152{bottom:781.853333pt;}
.y19b{bottom:785.053333pt;}
.y103{bottom:788.573333pt;}
.y58{bottom:789.213333pt;}
.y1e3{bottom:790.493333pt;}
.yc6{bottom:791.133333pt;}
.y8b{bottom:791.613333pt;}
.y10{bottom:791.773333pt;}
.y151{bottom:794.213333pt;}
.y19a{bottom:797.413333pt;}
.y1e2{bottom:802.853333pt;}
.y102{bottom:803.973333pt;}
.y57{bottom:804.613333pt;}
.y150{bottom:806.373333pt;}
.y8a{bottom:807.013333pt;}
.y199{bottom:809.573333pt;}
.y1e1{bottom:815.173333pt;}
.yc5{bottom:815.813333pt;}
.y14f{bottom:818.693333pt;}
.y101{bottom:819.333333pt;}
.yf{bottom:819.973333pt;}
.y198{bottom:821.893333pt;}
.y89{bottom:822.373333pt;}
.y1e0{bottom:827.333333pt;}
.y14e{bottom:831.013333pt;}
.y192{bottom:834.213333pt;}
.y100{bottom:834.693333pt;}
.ye{bottom:835.333333pt;}
.y88{bottom:837.733333pt;}
.y1d3{bottom:839.653333pt;}
.yc4{bottom:840.293333pt;}
.y14d{bottom:843.173333pt;}
.y196{bottom:846.373333pt;}
.yd{bottom:850.053333pt;}
.y56{bottom:850.693333pt;}
.y1de{bottom:851.973333pt;}
.y87{bottom:852.453333pt;}
.yc3{bottom:852.613333pt;}
.y14c{bottom:855.493333pt;}
.y195{bottom:858.693333pt;}
.yc{bottom:862.853333pt;}
.y1dd{bottom:864.133333pt;}
.y23c{bottom:864.613333pt;}
.y86{bottom:865.253333pt;}
.y55{bottom:866.053333pt;}
.y14b{bottom:867.813333pt;}
.y213{bottom:868.133333pt;}
.y194{bottom:871.013333pt;}
.y1dc{bottom:876.453333pt;}
.y239{bottom:876.933333pt;}
.yc2{bottom:877.093333pt;}
.yb{bottom:878.213333pt;}
.y14a{bottom:879.973333pt;}
.y20b{bottom:880.453333pt;}
.y85{bottom:880.613333pt;}
.y54{bottom:881.253333pt;}
.y18c{bottom:883.173333pt;}
.y1db{bottom:888.773333pt;}
.yc0{bottom:889.413333pt;}
.y149{bottom:892.293333pt;}
.ya{bottom:893.573333pt;}
.y191{bottom:895.493333pt;}
.y84{bottom:895.973333pt;}
.y53{bottom:896.613333pt;}
.y148{bottom:904.613333pt;}
.y190{bottom:907.813333pt;}
.y9{bottom:908.933333pt;}
.y83{bottom:911.333333pt;}
.y52{bottom:911.973333pt;}
.y1da{bottom:913.253333pt;}
.ybf{bottom:913.893333pt;}
.y147{bottom:916.773333pt;}
.y18f{bottom:919.973333pt;}
.y8{bottom:924.293333pt;}
.ybe{bottom:926.213333pt;}
.y82{bottom:926.693333pt;}
.y51{bottom:927.333333pt;}
.y146{bottom:929.093333pt;}
.y18e{bottom:932.293333pt;}
.y1d9{bottom:937.733333pt;}
.ybd{bottom:938.373333pt;}
.y7{bottom:941.413333pt;}
.y81{bottom:942.053333pt;}
.y50{bottom:942.693333pt;}
.y18d{bottom:944.613333pt;}
.y1d8{bottom:950.053333pt;}
.y145{bottom:953.573333pt;}
.y80{bottom:957.253333pt;}
.y188{bottom:957.573333pt;}
.y4f{bottom:958.053333pt;}
.y1d7{bottom:962.373333pt;}
.yb9{bottom:963.653333pt;}
.y6{bottom:965.893333pt;}
.y7f{bottom:972.613333pt;}
.y4e{bottom:973.253333pt;}
.y1d5{bottom:974.533333pt;}
.y144{bottom:978.213333pt;}
.y1d0{bottom:987.493333pt;}
.y7e{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y143{bottom:990.373333pt;}
.y7d{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y2{bottom:1019.360000pt;}
.y4d{bottom:1031.680000pt;}
.y7c{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h16{height:12.160000pt;}
.h1d{height:12.192000pt;}
.h17{height:12.320000pt;}
.h1f{height:12.320133pt;}
.h2b{height:12.352000pt;}
.h13{height:15.200000pt;}
.h12{height:15.360000pt;}
.h7{height:23.392000pt;}
.h18{height:24.480000pt;}
.h15{height:24.640000pt;}
.h19{height:24.672000pt;}
.h24{height:30.560000pt;}
.h23{height:30.720000pt;}
.h25{height:30.752000pt;}
.h14{height:36.800000pt;}
.h21{height:36.832000pt;}
.h35{height:38.441250pt;}
.h27{height:42.063437pt;}
.h6{height:42.084375pt;}
.h1a{height:42.381250pt;}
.h3b{height:43.031250pt;}
.h38{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h37{height:48.375000pt;}
.h2a{height:48.960000pt;}
.h2c{height:49.120000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h2f{height:61.280000pt;}
.h2e{height:61.312000pt;}
.h8{height:62.812500pt;}
.h29{height:73.600000pt;}
.h20{height:73.632000pt;}
.h26{height:76.640000pt;}
.he{height:77.760000pt;}
.h5{height:85.785000pt;}
.h22{height:85.920000pt;}
.h9{height:92.640000pt;}
.h1c{height:98.112000pt;}
.h1e{height:98.240000pt;}
.h10{height:100.672000pt;}
.h30{height:110.400000pt;}
.h3a{height:136.000000pt;}
.h36{height:136.026667pt;}
.h3f{height:138.880000pt;}
.h33{height:147.200000pt;}
.h39{height:152.640000pt;}
.h40{height:152.826667pt;}
.h2d{height:159.386667pt;}
.h34{height:159.520000pt;}
.h3c{height:166.426667pt;}
.h3d{height:180.186667pt;}
.h31{height:196.346667pt;}
.h3e{height:221.626667pt;}
.h1b{height:257.626667pt;}
.h28{height:269.786667pt;}
.hd{height:296.666667pt;}
.hb{height:311.706667pt;}
.ha{height:390.106667pt;}
.h32{height:478.466667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w20{width:31.200000pt;}
.w1b{width:31.360000pt;}
.w1f{width:31.392000pt;}
.w1c{width:31.680000pt;}
.w21{width:32.032000pt;}
.w1d{width:32.160000pt;}
.w22{width:32.320000pt;}
.w23{width:32.480000pt;}
.w1e{width:32.640000pt;}
.w10{width:38.880000pt;}
.w14{width:40.000000pt;}
.w2a{width:44.000000pt;}
.w15{width:44.672000pt;}
.w32{width:45.600000pt;}
.w35{width:47.200000pt;}
.w17{width:49.760000pt;}
.w33{width:49.792000pt;}
.w2b{width:49.920000pt;}
.w16{width:52.160000pt;}
.w34{width:54.080000pt;}
.wa{width:59.552000pt;}
.wd{width:64.192000pt;}
.wb{width:64.800000pt;}
.wf{width:65.632000pt;}
.w2c{width:69.472000pt;}
.we{width:70.400000pt;}
.wc{width:72.320000pt;}
.w18{width:77.760000pt;}
.w29{width:78.912000pt;}
.w31{width:84.160000pt;}
.w13{width:85.120000pt;}
.w2d{width:86.240000pt;}
.w9{width:92.160000pt;}
.w2e{width:94.592000pt;}
.w36{width:100.032000pt;}
.w28{width:110.720000pt;}
.w37{width:112.640000pt;}
.w12{width:122.912000pt;}
.w30{width:123.712000pt;}
.w19{width:127.872000pt;}
.w1a{width:140.506667pt;}
.w26{width:176.506667pt;}
.w2f{width:177.786667pt;}
.w27{width:180.826667pt;}
.w3{width:185.786667pt;}
.w24{width:190.906667pt;}
.w11{width:205.626667pt;}
.w25{width:217.146667pt;}
.w5{width:385.026667pt;}
.w38{width:487.613333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x4d{left:8.520000pt;}
.xc{left:9.440000pt;}
.x1c{left:10.400000pt;}
.x28{left:11.360000pt;}
.x19{left:12.320000pt;}
.x1e{left:13.760000pt;}
.x22{left:14.720000pt;}
.x25{left:16.000000pt;}
.x29{left:17.120000pt;}
.x1a{left:18.080000pt;}
.x20{left:19.866667pt;}
.x34{left:21.120000pt;}
.x4e{left:22.586667pt;}
.x33{left:23.840000pt;}
.x23{left:25.760000pt;}
.x1d{left:26.720000pt;}
.x58{left:27.840000pt;}
.x59{left:30.560000pt;}
.x48{left:32.480000pt;}
.x17{left:34.234667pt;}
.x2c{left:38.560000pt;}
.x50{left:53.434667pt;}
.x46{left:54.874667pt;}
.x5b{left:56.314667pt;}
.x2a{left:74.234667pt;}
.xe{left:94.720000pt;}
.x16{left:106.272000pt;}
.x9{left:111.552000pt;}
.x1{left:113.471988pt;}
.x5{left:115.231988pt;}
.x6{left:116.831988pt;}
.x11{left:137.466655pt;}
.x45{left:141.946655pt;}
.x12{left:155.706655pt;}
.x10{left:161.466655pt;}
.x2{left:169.946655pt;}
.x4f{left:178.586655pt;}
.x32{left:184.026667pt;}
.x57{left:192.986667pt;}
.x18{left:198.426667pt;}
.x4c{left:200.826667pt;}
.x5a{left:218.906667pt;}
.x35{left:254.306667pt;}
.x7{left:257.826655pt;}
.x15{left:278.626655pt;}
.x36{left:285.666667pt;}
.x51{left:293.026667pt;}
.x47{left:295.426667pt;}
.xb{left:297.346667pt;}
.x8{left:302.786655pt;}
.x43{left:305.026667pt;}
.x2b{left:311.906667pt;}
.xd{left:316.226667pt;}
.x37{left:317.346667pt;}
.x3{left:318.466655pt;}
.x1b{left:322.786667pt;}
.x38{left:349.506667pt;}
.xf{left:377.826667pt;}
.x39{left:382.146667pt;}
.x1f{left:395.106667pt;}
.x4{left:406.466655pt;}
.x3a{left:414.306667pt;}
.x52{left:416.733333pt;}
.x2d{left:434.813333pt;}
.x3b{left:445.693333pt;}
.x21{left:459.293333pt;}
.x3c{left:477.053333pt;}
.x49{left:485.053333pt;}
.x53{left:500.893333pt;}
.x3d{left:508.413333pt;}
.x2e{left:519.933333pt;}
.x44{left:522.173333pt;}
.x24{left:529.693333pt;}
.x3e{left:539.613333pt;}
.x54{left:546.493333pt;}
.x2f{left:559.933333pt;}
.x14{left:561.373322pt;}
.x3f{left:570.973333pt;}
.x4a{left:578.973333pt;}
.x26{left:595.333333pt;}
.x55{left:596.293333pt;}
.x40{left:603.013333pt;}
.x30{left:604.613333pt;}
.x27{left:634.213333pt;}
.x41{left:635.333333pt;}
.x4b{left:648.453333pt;}
.x56{left:650.373333pt;}
.x31{left:656.773333pt;}
.x42{left:666.533333pt;}
.x13{left:672.773333pt;}
}




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