
    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_21af434ca57a4d8f35bfb09f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_ca00cfa2847cada4ac20da3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_1af79551576d5f1d37713c17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5bff041aeeebf18f2eb9337.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_e4685e7ee52ee738dda02b37.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_f1156230be4b564f8ae3a6b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010254;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_deb5bf3f4a1ee6e0526cc66f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_95503c45db4519cc30ecbe74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_ed3b5e323a0f5f76f06d9860.woff2')format("woff");}.ff9{font-family:ff9;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls7{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.229200px;}
.lsd{letter-spacing:-0.208200px;}
.ls4{letter-spacing:-0.138000px;}
.lsc{letter-spacing:-0.110400px;}
.ls3{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072600px;}
.lse{letter-spacing:0.087000px;}
.ls11{letter-spacing:0.154800px;}
.ls15{letter-spacing:0.175200px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.301200px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.828000px;}
.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;}
}
.ws6{word-spacing:-66.240000px;}
.ws7{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.094800px;}
.wsf{word-spacing:-15.027000px;}
.ws9{word-spacing:-15.012600px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.829600px;}
.wse{word-spacing:-14.731800px;}
.ws13{word-spacing:-14.710800px;}
.ws12{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.400000px;}
.wsa{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.361200px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2d{margin-left:-3.705120px;}
._6{margin-left:-2.509920px;}
._2{margin-left:-1.155360px;}
._1{width:1.819200px;}
._3{width:3.665280px;}
._5{width:4.721040px;}
._4{width:6.035760px;}
._e{width:7.350480px;}
._d{width:8.366400px;}
._8{width:10.070400px;}
._7{width:11.234880px;}
._f{width:13.043040px;}
._4c{width:14.100240px;}
._b{width:16.440960px;}
._a{width:17.802000px;}
._9{width:18.943920px;}
._60{width:19.952160px;}
._10{width:20.953200px;}
._1c{width:22.230720px;}
._19{width:24.143040px;}
._18{width:25.398000px;}
._17{width:26.533440px;}
._2c{width:27.549360px;}
._24{width:28.782720px;}
._21{width:29.880000px;}
._c{width:31.194720px;}
._43{width:32.430240px;}
._1e{width:33.465600px;}
._23{width:34.524720px;}
._20{width:35.812800px;}
._1f{width:36.931680px;}
._30{width:38.007360px;}
._22{width:39.441600px;}
._14{width:40.517280px;}
._42{width:41.721360px;}
._26{width:42.847920px;}
._33{width:44.341920px;}
._27{width:45.690000px;}
._12{width:46.765680px;}
._13{width:48.372240px;}
._31{width:49.767600px;}
._2f{width:50.915520px;}
._15{width:51.931440px;}
._16{width:53.305920px;}
._2a{width:54.560880px;}
._2b{width:55.875600px;}
._1d{width:57.847680px;}
._46{width:58.956720px;}
._2e{width:60.477120px;}
._40{width:61.586160px;}
._1a{width:62.987040px;}
._1b{width:64.150320px;}
._4b{width:67.528800px;}
._4a{width:69.620400px;}
._25{width:70.755840px;}
._34{width:72.727920px;}
._55{width:73.803600px;}
._48{width:75.178080px;}
._58{width:76.851360px;}
._38{width:78.106320px;}
._47{width:79.899120px;}
._54{width:80.974800px;}
._45{width:82.289520px;}
._32{width:84.440880px;}
._3e{width:86.565840px;}
._3d{width:88.086240px;}
._52{width:89.255040px;}
._53{width:90.469680px;}
._39{width:91.525920px;}
._36{width:93.351600px;}
._35{width:94.361040px;}
._44{width:97.827120px;}
._3a{width:100.038240px;}
._49{width:101.565600px;}
._4e{width:102.880320px;}
._4d{width:104.580000px;}
._37{width:107.627760px;}
._28{width:113.039520px;}
._29{width:114.739200px;}
._51{width:115.812960px;}
._41{width:117.308880px;}
._56{width:147.129120px;}
._57{width:149.117520px;}
._4f{width:155.846160px;}
._50{width:157.168800px;}
._3c{width:172.201920px;}
._3b{width:173.244240px;}
._5d{width:176.803440px;}
._5c{width:178.025040px;}
._3f{width:180.893520px;}
._5b{width:183.881520px;}
._5a{width:214.990080px;}
._59{width:216.151920px;}
._5e{width:230.195520px;}
._62{width:254.690640px;}
._61{width:255.713040px;}
._0{width:763.500000px;}
._11{width:847.560000px;}
._5f{width:946.598400px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.240000px;}
.y238{bottom:3.405000px;}
.y1f3{bottom:3.420000px;}
.y180{bottom:3.585000px;}
.y16f{bottom:3.600000px;}
.y1f5{bottom:3.630000px;}
.y9{bottom:4.140000px;}
.y34{bottom:4.305000px;}
.y1c{bottom:4.320000px;}
.y8{bottom:4.680000px;}
.yb{bottom:4.860000px;}
.y5{bottom:7.020000px;}
.y1a{bottom:7.380000px;}
.y1b8{bottom:10.440000px;}
.y216{bottom:10.620000px;}
.y1c4{bottom:10.980000px;}
.y21c{bottom:11.145000px;}
.y222{bottom:11.160000px;}
.y1b9{bottom:17.820000px;}
.y1c2{bottom:18.360000px;}
.y21a{bottom:18.525000px;}
.y1c8{bottom:18.540000px;}
.y1bd{bottom:18.570000px;}
.y1b{bottom:22.320000px;}
.y33{bottom:23.025000px;}
.y19{bottom:23.580000px;}
.y4{bottom:25.200000px;}
.y1c0{bottom:25.920000px;}
.y1bb{bottom:25.950000px;}
.y218{bottom:26.085000px;}
.y221{bottom:26.100000px;}
.y6{bottom:27.000000px;}
.y1c1{bottom:33.300000px;}
.y219{bottom:33.465000px;}
.y1c7{bottom:33.480000px;}
.y1bc{bottom:33.510000px;}
.yc{bottom:33.840000px;}
.y21b{bottom:40.845000px;}
.y1c3{bottom:40.860000px;}
.y3{bottom:43.200000px;}
.y1c5{bottom:48.240000px;}
.y1c9{bottom:48.420000px;}
.y1be{bottom:48.450000px;}
.y220{bottom:55.800000px;}
.yf{bottom:57.456000px;}
.y38{bottom:58.176000px;}
.y21f{bottom:63.360000px;}
.ye{bottom:72.396000px;}
.y1f0{bottom:128.376000px;}
.y23a{bottom:128.736000px;}
.y10d{bottom:130.176000px;}
.y19c{bottom:131.256000px;}
.y6e{bottom:131.436000px;}
.y286{bottom:131.976000px;}
.y1af{bottom:132.876000px;}
.y1d7{bottom:136.296000px;}
.y35{bottom:136.836000px;}
.y26f{bottom:137.196000px;}
.yd6{bottom:137.916000px;}
.y27c{bottom:139.176000px;}
.y213{bottom:139.716000px;}
.y16b{bottom:140.436000px;}
.yf0{bottom:140.976000px;}
.y201{bottom:141.516000px;}
.ya3{bottom:141.696000px;}
.y249{bottom:144.396000px;}
.y138{bottom:145.116000px;}
.y1ed{bottom:146.556000px;}
.y1ef{bottom:147.096000px;}
.y239{bottom:147.276000px;}
.y10c{bottom:148.716000px;}
.y6d{bottom:149.976000px;}
.y285{bottom:150.690000px;}
.y1ae{bottom:151.590000px;}
.y1d6{bottom:155.010000px;}
.y26e{bottom:155.910000px;}
.yd5{bottom:156.450000px;}
.y212{bottom:158.430000px;}
.y16a{bottom:158.970000px;}
.yef{bottom:159.690000px;}
.ya2{bottom:160.230000px;}
.y248{bottom:163.110000px;}
.y137{bottom:163.650000px;}
.y1ec{bottom:165.090000px;}
.y27b{bottom:166.890000px;}
.y10b{bottom:167.430000px;}
.y6c{bottom:168.690000px;}
.y284{bottom:169.230000px;}
.y1ad{bottom:170.130000px;}
.y32{bottom:172.845000px;}
.y1d5{bottom:173.550000px;}
.y26d{bottom:174.630000px;}
.yd4{bottom:175.170000px;}
.y211{bottom:177.150000px;}
.y169{bottom:177.690000px;}
.yee{bottom:178.230000px;}
.ya1{bottom:178.950000px;}
.y247{bottom:181.650000px;}
.y136{bottom:182.370000px;}
.y1ee{bottom:183.630000px;}
.y1eb{bottom:183.810000px;}
.y10a{bottom:185.970000px;}
.y6b{bottom:187.230000px;}
.y283{bottom:187.950000px;}
.y1ac{bottom:188.850000px;}
.y1d4{bottom:192.270000px;}
.y26c{bottom:193.170000px;}
.yd3{bottom:193.710000px;}
.y210{bottom:195.690000px;}
.y168{bottom:196.230000px;}
.yed{bottom:196.950000px;}
.ya0{bottom:197.490000px;}
.y237{bottom:199.125000px;}
.y246{bottom:200.370000px;}
.y135{bottom:200.910000px;}
.y1ea{bottom:202.350000px;}
.y109{bottom:204.690000px;}
.y6a{bottom:205.950000px;}
.y282{bottom:206.490000px;}
.y1ab{bottom:207.390000px;}
.y1d3{bottom:210.810000px;}
.y26b{bottom:211.890000px;}
.yd2{bottom:212.430000px;}
.y27a{bottom:214.230000px;}
.y20f{bottom:214.410000px;}
.y236{bottom:214.785000px;}
.y167{bottom:214.950000px;}
.yec{bottom:215.490000px;}
.y9f{bottom:216.210000px;}
.y245{bottom:219.090000px;}
.y134{bottom:219.630000px;}
.y1e9{bottom:221.070000px;}
.y108{bottom:223.410000px;}
.y69{bottom:224.490000px;}
.y281{bottom:225.210000px;}
.y1aa{bottom:226.110000px;}
.y1d2{bottom:229.530000px;}
.y26a{bottom:230.430000px;}
.y235{bottom:230.445000px;}
.yd1{bottom:231.150000px;}
.y20e{bottom:232.950000px;}
.y166{bottom:233.670000px;}
.yeb{bottom:234.210000px;}
.y9e{bottom:234.750000px;}
.y244{bottom:237.630000px;}
.y133{bottom:238.170000px;}
.y1e8{bottom:239.610000px;}
.y31{bottom:242.130000px;}
.y68{bottom:243.210000px;}
.y280{bottom:243.750000px;}
.y1a9{bottom:244.830000px;}
.y234{bottom:246.105000px;}
.y1d1{bottom:248.250000px;}
.y269{bottom:249.150000px;}
.yd0{bottom:249.690000px;}
.y107{bottom:251.310000px;}
.y20d{bottom:251.670000px;}
.y165{bottom:252.210000px;}
.yea{bottom:252.750000px;}
.y9d{bottom:253.470000px;}
.y243{bottom:256.350000px;}
.y132{bottom:256.890000px;}
.y1e7{bottom:258.330000px;}
.y30{bottom:260.310000px;}
.y67{bottom:261.750000px;}
.y233{bottom:261.765000px;}
.y27f{bottom:262.470000px;}
.y1a8{bottom:263.370000px;}
.y1d0{bottom:266.790000px;}
.y268{bottom:267.690000px;}
.ycf{bottom:268.410000px;}
.y20c{bottom:270.210000px;}
.y164{bottom:270.930000px;}
.ye9{bottom:271.470000px;}
.y9c{bottom:272.010000px;}
.y242{bottom:274.935000px;}
.y131{bottom:275.475000px;}
.y1e6{bottom:277.095000px;}
.y232{bottom:277.455000px;}
.y2f{bottom:278.355000px;}
.y106{bottom:279.975000px;}
.y66{bottom:280.515000px;}
.y1cf{bottom:285.555000px;}
.yce{bottom:286.995000px;}
.y20b{bottom:288.975000px;}
.y163{bottom:289.515000px;}
.ye8{bottom:290.235000px;}
.y27e{bottom:290.415000px;}
.y9b{bottom:290.775000px;}
.y231{bottom:293.115000px;}
.y241{bottom:293.655000px;}
.y130{bottom:294.195000px;}
.y1e5{bottom:295.635000px;}
.y267{bottom:295.815000px;}
.y2e{bottom:296.535000px;}
.y105{bottom:298.515000px;}
.y272{bottom:298.875000px;}
.y19b{bottom:299.055000px;}
.y65{bottom:299.235000px;}
.y1a7{bottom:300.135000px;}
.y1ce{bottom:304.095000px;}
.ycd{bottom:305.715000px;}
.y20a{bottom:307.515000px;}
.y162{bottom:308.235000px;}
.ye7{bottom:308.775000px;}
.y200{bottom:309.315000px;}
.y9a{bottom:309.495000px;}
.y240{bottom:312.195000px;}
.y12f{bottom:312.915000px;}
.y1a6{bottom:313.995000px;}
.y1e4{bottom:314.355000px;}
.y2d{bottom:314.535000px;}
.y266{bottom:315.615000px;}
.y104{bottom:317.235000px;}
.y64{bottom:317.775000px;}
.y1cd{bottom:322.815000px;}
.ycc{bottom:324.255000px;}
.y279{bottom:326.235000px;}
.y161{bottom:326.775000px;}
.ye6{bottom:327.495000px;}
.y99{bottom:328.035000px;}
.y230{bottom:328.215000px;}
.y23f{bottom:330.915000px;}
.y12e{bottom:331.455000px;}
.y2c{bottom:332.715000px;}
.y1e3{bottom:332.895000px;}
.y103{bottom:335.775000px;}
.y63{bottom:336.495000px;}
.y1cc{bottom:341.355000px;}
.ycb{bottom:342.975000px;}
.y209{bottom:344.235000px;}
.y278{bottom:344.775000px;}
.y160{bottom:345.495000px;}
.ye5{bottom:346.035000px;}
.y98{bottom:346.755000px;}
.y23e{bottom:349.455000px;}
.y12d{bottom:350.175000px;}
.y2b{bottom:350.715000px;}
.y1e2{bottom:351.615000px;}
.y102{bottom:354.495000px;}
.y62{bottom:355.035000px;}
.y208{bottom:358.095000px;}
.y1cb{bottom:360.075000px;}
.y265{bottom:362.775000px;}
.y277{bottom:363.495000px;}
.y15f{bottom:364.035000px;}
.y22f{bottom:364.395000px;}
.ye4{bottom:364.755000px;}
.y97{bottom:365.295000px;}
.y23d{bottom:368.175000px;}
.y2a{bottom:368.715000px;}
.y1e1{bottom:370.155000px;}
.yca{bottom:370.875000px;}
.y101{bottom:373.035000px;}
.y61{bottom:373.755000px;}
.y1ca{bottom:378.615000px;}
.y264{bottom:381.495000px;}
.y276{bottom:382.035000px;}
.y15e{bottom:382.755000px;}
.y22e{bottom:382.935000px;}
.ye3{bottom:383.295000px;}
.y96{bottom:384.015000px;}
.y29{bottom:386.895000px;}
.y12c{bottom:387.435000px;}
.y1e0{bottom:388.875000px;}
.yc9{bottom:390.855000px;}
.y100{bottom:391.755000px;}
.y60{bottom:392.295000px;}
.y1ff{bottom:398.415000px;}
.y263{bottom:400.215000px;}
.y275{bottom:400.755000px;}
.y15d{bottom:401.475000px;}
.y22d{bottom:401.655000px;}
.ye2{bottom:402.015000px;}
.y95{bottom:402.555000px;}
.y28{bottom:404.895000px;}
.y12b{bottom:405.975000px;}
.y1df{bottom:407.415000px;}
.yff{bottom:410.475000px;}
.y5f{bottom:411.015000px;}
.y1fe{bottom:414.075000px;}
.y262{bottom:418.755000px;}
.yc8{bottom:419.475000px;}
.y15c{bottom:420.015000px;}
.y22c{bottom:420.195000px;}
.ye1{bottom:420.555000px;}
.y94{bottom:421.275000px;}
.y27{bottom:423.075000px;}
.y23c{bottom:423.435000px;}
.y12a{bottom:424.695000px;}
.y1de{bottom:426.135000px;}
.yfe{bottom:429.015000px;}
.y5e{bottom:429.555000px;}
.y1fd{bottom:429.735000px;}
.y1c6{bottom:430.455000px;}
.y23b{bottom:437.295000px;}
.y261{bottom:437.475000px;}
.yc7{bottom:438.015000px;}
.y15b{bottom:438.735000px;}
.y22b{bottom:438.915000px;}
.ye0{bottom:439.275000px;}
.y93{bottom:439.815000px;}
.y26{bottom:441.075000px;}
.y129{bottom:443.235000px;}
.y19a{bottom:444.135000px;}
.y1dd{bottom:444.855000px;}
.y1fc{bottom:445.395000px;}
.yfd{bottom:447.735000px;}
.y5d{bottom:448.275000px;}
.y260{bottom:456.015000px;}
.yc6{bottom:456.735000px;}
.y15a{bottom:457.275000px;}
.y22a{bottom:457.455000px;}
.ydf{bottom:457.995000px;}
.y92{bottom:458.535000px;}
.y25{bottom:459.255000px;}
.y199{bottom:459.795000px;}
.y1fb{bottom:461.055000px;}
.y128{bottom:461.955000px;}
.y1dc{bottom:463.395000px;}
.yfc{bottom:466.275000px;}
.y5c{bottom:466.995000px;}
.y25f{bottom:474.735000px;}
.yc5{bottom:475.275000px;}
.y198{bottom:475.455000px;}
.y159{bottom:475.995000px;}
.y229{bottom:476.175000px;}
.yde{bottom:476.535000px;}
.y1fa{bottom:476.715000px;}
.y24{bottom:477.255000px;}
.y127{bottom:480.675000px;}
.y1db{bottom:482.115000px;}
.yfb{bottom:484.995000px;}
.y5b{bottom:485.535000px;}
.y1bf{bottom:490.935000px;}
.y197{bottom:491.115000px;}
.y1f9{bottom:492.375000px;}
.y25e{bottom:493.275000px;}
.yc4{bottom:493.995000px;}
.y158{bottom:494.535000px;}
.y228{bottom:494.715000px;}
.ydd{bottom:495.255000px;}
.y23{bottom:495.435000px;}
.y91{bottom:495.795000px;}
.y126{bottom:499.215000px;}
.y1da{bottom:500.655000px;}
.yfa{bottom:503.535000px;}
.y5a{bottom:504.255000px;}
.y196{bottom:506.775000px;}
.y1f8{bottom:508.035000px;}
.y25d{bottom:511.995000px;}
.yc3{bottom:512.535000px;}
.y157{bottom:513.255000px;}
.y22{bottom:513.435000px;}
.ydc{bottom:513.795000px;}
.y90{bottom:514.515000px;}
.y125{bottom:517.935000px;}
.y1d9{bottom:519.375000px;}
.yf9{bottom:522.255000px;}
.y195{bottom:522.435000px;}
.y59{bottom:522.795000px;}
.y1f7{bottom:523.695000px;}
.y25c{bottom:530.535000px;}
.yc2{bottom:531.255000px;}
.y21{bottom:531.615000px;}
.y156{bottom:531.795000px;}
.y227{bottom:532.155000px;}
.ydb{bottom:532.515000px;}
.y8f{bottom:533.055000px;}
.y124{bottom:536.475000px;}
.y1f6{bottom:539.355000px;}
.yf8{bottom:540.795000px;}
.y58{bottom:541.515000px;}
.y194{bottom:541.875000px;}
.y25b{bottom:549.255000px;}
.y20{bottom:549.615000px;}
.yc1{bottom:549.795000px;}
.y155{bottom:550.515000px;}
.y226{bottom:550.695000px;}
.yda{bottom:551.055000px;}
.y1ba{bottom:551.235000px;}
.y8e{bottom:551.775000px;}
.y1f4{bottom:555.015000px;}
.y123{bottom:555.195000px;}
.y1d8{bottom:555.945000px;}
.yf7{bottom:559.545000px;}
.y57{bottom:560.085000px;}
.y1f{bottom:567.825000px;}
.y25a{bottom:568.005000px;}
.yc0{bottom:568.545000px;}
.y154{bottom:569.265000px;}
.y225{bottom:569.445000px;}
.yd9{bottom:569.805000px;}
.y8d{bottom:570.345000px;}
.y1f2{bottom:570.705000px;}
.y122{bottom:573.765000px;}
.y18a{bottom:578.085000px;}
.yf6{bottom:578.265000px;}
.y56{bottom:578.805000px;}
.y1e{bottom:585.825000px;}
.y259{bottom:586.545000px;}
.ybf{bottom:587.265000px;}
.y224{bottom:587.985000px;}
.yd8{bottom:588.345000px;}
.y8c{bottom:589.065000px;}
.y207{bottom:589.605000px;}
.y1f1{bottom:590.145000px;}
.y121{bottom:592.485000px;}
.y189{bottom:596.625000px;}
.yf5{bottom:596.805000px;}
.y153{bottom:597.165000px;}
.y55{bottom:597.345000px;}
.y258{bottom:605.265000px;}
.ybe{bottom:605.805000px;}
.y223{bottom:606.705000px;}
.y193{bottom:606.885000px;}
.y271{bottom:607.065000px;}
.y8b{bottom:607.605000px;}
.y206{bottom:608.325000px;}
.y120{bottom:611.025000px;}
.y1b7{bottom:611.745000px;}
.y1d{bottom:613.005000px;}
.y188{bottom:615.345000px;}
.yf4{bottom:615.525000px;}
.y54{bottom:616.065000px;}
.yd7{bottom:616.425000px;}
.y257{bottom:623.805000px;}
.ybd{bottom:624.525000px;}
.y192{bottom:625.605000px;}
.y152{bottom:625.785000px;}
.y8a{bottom:626.325000px;}
.y205{bottom:626.865000px;}
.y11f{bottom:629.745000px;}
.y187{bottom:633.885000px;}
.yf3{bottom:634.065000px;}
.y53{bottom:634.785000px;}
.y1a5{bottom:640.005000px;}
.y256{bottom:642.525000px;}
.ybc{bottom:643.065000px;}
.y191{bottom:644.145000px;}
.y151{bottom:644.325000px;}
.y89{bottom:645.045000px;}
.y1b6{bottom:645.585000px;}
.y186{bottom:652.605000px;}
.y52{bottom:653.325000px;}
.y11e{bottom:657.825000px;}
.y21e{bottom:658.365000px;}
.y1a4{bottom:658.725000px;}
.y255{bottom:661.065000px;}
.ybb{bottom:661.785000px;}
.yf2{bottom:662.145000px;}
.y190{bottom:662.865000px;}
.y150{bottom:663.045000px;}
.y88{bottom:663.585000px;}
.y204{bottom:664.125000px;}
.y185{bottom:671.145000px;}
.y51{bottom:672.045000px;}
.y1a3{bottom:677.265000px;}
.y254{bottom:679.785000px;}
.yba{bottom:680.325000px;}
.y18f{bottom:681.405000px;}
.y14f{bottom:681.585000px;}
.y1b5{bottom:681.765000px;}
.y87{bottom:682.305000px;}
.y203{bottom:682.845000px;}
.y11d{bottom:686.265000px;}
.y184{bottom:689.865000px;}
.y50{bottom:690.585000px;}
.yf1{bottom:690.765000px;}
.y18{bottom:695.265000px;}
.y1a2{bottom:695.985000px;}
.y253{bottom:698.325000px;}
.yb9{bottom:699.045000px;}
.y18e{bottom:700.125000px;}
.y14e{bottom:700.305000px;}
.y86{bottom:700.845000px;}
.y202{bottom:701.205000px;}
.y11c{bottom:704.985000px;}
.y183{bottom:708.405000px;}
.y4f{bottom:709.305000px;}
.y1a1{bottom:714.525000px;}
.y252{bottom:717.045000px;}
.yb8{bottom:717.585000px;}
.y18d{bottom:718.665000px;}
.y14d{bottom:718.845000px;}
.y1b4{bottom:719.025000px;}
.y85{bottom:719.565000px;}
.y11b{bottom:723.525000px;}
.y182{bottom:727.125000px;}
.y4e{bottom:727.845000px;}
.y1a0{bottom:733.245000px;}
.y21d{bottom:733.785000px;}
.y251{bottom:735.765000px;}
.yb7{bottom:736.305000px;}
.y18c{bottom:737.385000px;}
.y14c{bottom:737.565000px;}
.y84{bottom:738.105000px;}
.y11a{bottom:742.245000px;}
.y181{bottom:745.845000px;}
.y4d{bottom:746.565000px;}
.y19f{bottom:751.785000px;}
.y250{bottom:754.305000px;}
.yb6{bottom:755.025000px;}
.y14b{bottom:756.105000px;}
.y1b3{bottom:756.285000px;}
.y83{bottom:756.825000px;}
.y119{bottom:760.785000px;}
.y4c{bottom:765.105000px;}
.y19e{bottom:770.505000px;}
.y24f{bottom:773.025000px;}
.yb5{bottom:773.565000px;}
.y18b{bottom:774.645000px;}
.y14a{bottom:774.825000px;}
.y1b2{bottom:775.005000px;}
.y82{bottom:775.365000px;}
.y118{bottom:779.505000px;}
.y4b{bottom:783.825000px;}
.y270{bottom:784.185000px;}
.y24e{bottom:791.565000px;}
.yb4{bottom:792.285000px;}
.y149{bottom:793.545000px;}
.y81{bottom:794.085000px;}
.y217{bottom:794.100000px;}
.y117{bottom:798.045000px;}
.y274{bottom:801.645000px;}
.y4a{bottom:802.545000px;}
.y19d{bottom:807.045000px;}
.y24d{bottom:810.285000px;}
.yb3{bottom:810.825000px;}
.y1b1{bottom:811.545000px;}
.y148{bottom:812.085000px;}
.y80{bottom:812.805000px;}
.y116{bottom:816.765000px;}
.y49{bottom:821.085000px;}
.y17{bottom:821.265000px;}
.y273{bottom:821.445000px;}
.y17f{bottom:826.500000px;}
.yb2{bottom:829.545000px;}
.y147{bottom:830.805000px;}
.y7f{bottom:831.345000px;}
.y115{bottom:835.485000px;}
.y24c{bottom:838.185000px;}
.y48{bottom:839.850000px;}
.y17e{bottom:842.190000px;}
.y16{bottom:843.090000px;}
.y1b0{bottom:843.630000px;}
.yb1{bottom:848.130000px;}
.y146{bottom:849.390000px;}
.y7e{bottom:850.110000px;}
.y114{bottom:854.070000px;}
.y215{bottom:854.610000px;}
.y15{bottom:857.490000px;}
.y17d{bottom:857.850000px;}
.y24b{bottom:858.210000px;}
.y47{bottom:858.390000px;}
.yb0{bottom:866.850000px;}
.y145{bottom:868.110000px;}
.y7d{bottom:868.650000px;}
.y113{bottom:872.790000px;}
.y17c{bottom:873.510000px;}
.y46{bottom:877.110000px;}
.y14{bottom:879.270000px;}
.yaf{bottom:885.390000px;}
.y144{bottom:886.650000px;}
.y7c{bottom:887.370000px;}
.y214{bottom:888.450000px;}
.y17b{bottom:889.170000px;}
.y112{bottom:891.330000px;}
.y45{bottom:895.650000px;}
.yae{bottom:904.110000px;}
.y17a{bottom:904.830000px;}
.y143{bottom:905.370000px;}
.y7b{bottom:905.910000px;}
.y111{bottom:910.050000px;}
.y13{bottom:912.210000px;}
.y44{bottom:914.370000px;}
.y179{bottom:920.490000px;}
.yad{bottom:922.830000px;}
.y142{bottom:923.910000px;}
.y7a{bottom:924.630000px;}
.y110{bottom:928.590000px;}
.y43{bottom:932.910000px;}
.y178{bottom:936.150000px;}
.yac{bottom:941.370000px;}
.y141{bottom:942.630000px;}
.y79{bottom:943.170000px;}
.y10f{bottom:949.830000px;}
.y42{bottom:951.630000px;}
.y177{bottom:951.810000px;}
.yab{bottom:960.090000px;}
.y140{bottom:961.350000px;}
.y78{bottom:961.890000px;}
.y12{bottom:963.150000px;}
.y176{bottom:967.470000px;}
.y41{bottom:970.350000px;}
.y27d{bottom:970.530000px;}
.y10e{bottom:975.930000px;}
.yaa{bottom:978.630000px;}
.y13f{bottom:979.890000px;}
.y77{bottom:980.610000px;}
.y175{bottom:983.130000px;}
.y40{bottom:988.890000px;}
.y11{bottom:993.750000px;}
.ya9{bottom:997.350000px;}
.y13e{bottom:998.610000px;}
.y174{bottom:998.790000px;}
.y76{bottom:999.150000px;}
.y3f{bottom:1007.610000px;}
.y173{bottom:1014.450000px;}
.ya8{bottom:1015.890000px;}
.y13d{bottom:1017.150000px;}
.y75{bottom:1017.870000px;}
.y10{bottom:1024.530000px;}
.y3e{bottom:1026.150000px;}
.y172{bottom:1030.110000px;}
.ya7{bottom:1034.610000px;}
.y13c{bottom:1035.870000px;}
.y74{bottom:1036.410000px;}
.y3d{bottom:1044.870000px;}
.y171{bottom:1045.770000px;}
.ya6{bottom:1053.150000px;}
.y13b{bottom:1054.410000px;}
.y73{bottom:1055.130000px;}
.y170{bottom:1061.430000px;}
.y3c{bottom:1063.410000px;}
.ya5{bottom:1071.870000px;}
.y13a{bottom:1073.130000px;}
.y72{bottom:1073.670000px;}
.y16e{bottom:1077.090000px;}
.y3b{bottom:1082.130000px;}
.y24a{bottom:1082.310000px;}
.yd{bottom:1084.830000px;}
.ya{bottom:1086.090000px;}
.y71{bottom:1092.390000px;}
.y16d{bottom:1092.750000px;}
.ya4{bottom:1099.770000px;}
.y3a{bottom:1100.670000px;}
.y139{bottom:1101.030000px;}
.y70{bottom:1110.930000px;}
.y16c{bottom:1112.190000px;}
.y39{bottom:1128.600000px;}
.y6f{bottom:1129.680000px;}
.y7{bottom:1133.820000px;}
.y1{bottom:1151.820000px;}
.y37{bottom:1188.720000px;}
.y36{bottom:1190.880000px;}
.h8{height:4.179375px;}
.h18{height:14.385000px;}
.h20{height:14.580000px;}
.h1a{height:14.925000px;}
.h1b{height:14.961000px;}
.h21{height:14.970000px;}
.h4{height:18.000000px;}
.hd{height:28.503633px;}
.h22{height:28.965000px;}
.h1c{height:28.980000px;}
.h9{height:35.120039px;}
.h19{height:35.167148px;}
.h13{height:37.425000px;}
.h5{height:39.181641px;}
.h10{height:39.418945px;}
.h3{height:43.361016px;}
.h15{height:43.506914px;}
.h14{height:43.565273px;}
.he{height:43.623633px;}
.h6{height:47.730000px;}
.h12{height:48.289219px;}
.h16{height:48.353906px;}
.ha{height:49.583118px;}
.h17{height:49.780547px;}
.hc{height:53.167148px;}
.h2{height:57.060000px;}
.h1e{height:59.565000px;}
.h24{height:59.580000px;}
.h1f{height:59.745000px;}
.h23{height:59.781000px;}
.h1d{height:59.790000px;}
.h7{height:74.004654px;}
.hb{height:74.533359px;}
.h25{height:74.700000px;}
.hf{height:121.675500px;}
.h11{height:121.680000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:33.876000px;}
.w15{width:61.005000px;}
.wf{width:65.145000px;}
.w1c{width:66.225000px;}
.w1d{width:66.240000px;}
.w14{width:66.261000px;}
.w16{width:66.456000px;}
.w11{width:70.920000px;}
.w19{width:72.756000px;}
.w13{width:86.385000px;}
.w5{width:88.545000px;}
.w1e{width:93.456000px;}
.we{width:108.396000px;}
.w10{width:127.641000px;}
.w21{width:132.825000px;}
.w18{width:136.080000px;}
.w12{width:138.456000px;}
.w1b{width:146.916000px;}
.w1f{width:154.455000px;}
.w22{width:157.515000px;}
.w20{width:188.130000px;}
.w17{width:194.961000px;}
.w6{width:208.830000px;}
.w7{width:208.845000px;}
.w24{width:242.670000px;}
.w23{width:242.700000px;}
.w25{width:242.835000px;}
.w1a{width:256.335000px;}
.w2{width:270.075000px;}
.wc{width:340.275000px;}
.wd{width:388.680000px;}
.w3{width:390.840000px;}
.w4{width:390.855000px;}
.w8{width:522.270000px;}
.wb{width:697.230000px;}
.w9{width:731.115000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:1.800000px;}
.x6a{left:3.060000px;}
.x58{left:4.320000px;}
.x3b{left:5.745000px;}
.xe{left:8.100000px;}
.x36{left:9.885000px;}
.x1e{left:12.240000px;}
.x3d{left:13.320000px;}
.x6b{left:14.385000px;}
.x3{left:15.480000px;}
.x34{left:16.905000px;}
.x42{left:18.000000px;}
.x47{left:19.065000px;}
.x45{left:20.550000px;}
.x1d{left:21.600000px;}
.x43{left:22.860000px;}
.x62{left:24.105000px;}
.x41{left:25.590000px;}
.x53{left:27.540000px;}
.x23{left:29.700000px;}
.x6d{left:30.960000px;}
.x3f{left:32.400000px;}
.x5a{left:33.825000px;}
.x21{left:35.640000px;}
.x26{left:37.440000px;}
.x2e{left:39.420000px;}
.x28{left:41.760000px;}
.x31{left:42.840000px;}
.x68{left:46.965000px;}
.x46{left:50.250000px;}
.x3e{left:53.310000px;}
.x2f{left:54.540000px;}
.x25{left:56.160000px;}
.x44{left:58.530000px;}
.x6c{left:60.105000px;}
.x40{left:63.030000px;}
.x57{left:64.245000px;}
.x48{left:66.090000px;}
.x59{left:67.305000px;}
.x6f{left:69.150000px;}
.x2c{left:70.380000px;}
.x72{left:78.330000px;}
.x74{left:79.590000px;}
.x1{left:81.000000px;}
.x73{left:83.325000px;}
.x30{left:85.890000px;}
.x6{left:88.560000px;}
.x56{left:89.805000px;}
.x20{left:91.110000px;}
.x7{left:93.240000px;}
.x71{left:94.665000px;}
.x4e{left:96.300000px;}
.x27{left:98.310000px;}
.x29{left:99.750000px;}
.x15{left:101.376000px;}
.x5f{left:106.056000px;}
.x77{left:107.805000px;}
.x76{left:110.700000px;}
.x12{left:114.885000px;}
.x75{left:118.260000px;}
.x1f{left:121.710000px;}
.xb{left:123.876000px;}
.x24{left:125.670000px;}
.x22{left:127.470000px;}
.x1a{left:128.550000px;}
.x2a{left:133.050000px;}
.x79{left:135.036000px;}
.x2d{left:137.910000px;}
.x8{left:146.016000px;}
.x51{left:148.905000px;}
.x1c{left:153.930000px;}
.xc{left:170.130000px;}
.x65{left:175.905000px;}
.xd{left:179.670000px;}
.x33{left:190.845000px;}
.x4{left:211.530000px;}
.x5c{left:224.670000px;}
.x4f{left:229.350000px;}
.x32{left:244.470000px;}
.x14{left:255.450000px;}
.x35{left:256.905000px;}
.x50{left:261.210000px;}
.x4c{left:273.270000px;}
.x10{left:278.700000px;}
.x64{left:286.770000px;}
.xf{left:289.845000px;}
.x60{left:296.325000px;}
.x4a{left:303.915000px;}
.x18{left:311.250000px;}
.x6e{left:316.515000px;}
.x70{left:325.155000px;}
.x66{left:331.275000px;}
.xa{left:332.355000px;}
.x11{left:335.400000px;}
.x19{left:337.755000px;}
.x52{left:344.775000px;}
.x2{left:351.075000px;}
.x61{left:363.315000px;}
.x9{left:382.755000px;}
.x37{left:385.275000px;}
.x1b{left:422.715000px;}
.x4d{left:430.275000px;}
.x38{left:456.915000px;}
.x16{left:462.675000px;}
.x5e{left:476.715000px;}
.x54{left:481.575000px;}
.x17{left:483.015000px;}
.x67{left:520.320000px;}
.x55{left:555.060000px;}
.x13{left:567.960000px;}
.x39{left:596.100000px;}
.x69{left:653.880000px;}
.x3a{left:683.220000px;}
.x5b{left:694.185000px;}
.x78{left:696.390000px;}
.x4b{left:720.510000px;}
.x5{left:741.930000px;}
.x3c{left:750.390000px;}
.x49{left:786.930000px;}
.x63{left:811.950000px;}
.x5d{left:829.410000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.203733pt;}
.lsd{letter-spacing:-0.185067pt;}
.ls4{letter-spacing:-0.122667pt;}
.lsc{letter-spacing:-0.098133pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064533pt;}
.lse{letter-spacing:0.077333pt;}
.ls11{letter-spacing:0.137600pt;}
.ls15{letter-spacing:0.155733pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.267733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.736000pt;}
.ws6{word-spacing:-58.880000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.417600pt;}
.wsf{word-spacing:-13.357333pt;}
.ws9{word-spacing:-13.344533pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.181867pt;}
.wse{word-spacing:-13.094933pt;}
.ws13{word-spacing:-13.076267pt;}
.ws12{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.800000pt;}
.wsa{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.987733pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2d{margin-left:-3.293440pt;}
._6{margin-left:-2.231040pt;}
._2{margin-left:-1.026987pt;}
._1{width:1.617067pt;}
._3{width:3.258027pt;}
._5{width:4.196480pt;}
._4{width:5.365120pt;}
._e{width:6.533760pt;}
._d{width:7.436800pt;}
._8{width:8.951467pt;}
._7{width:9.986560pt;}
._f{width:11.593813pt;}
._4c{width:12.533547pt;}
._b{width:14.614187pt;}
._a{width:15.824000pt;}
._9{width:16.839040pt;}
._60{width:17.735253pt;}
._10{width:18.625067pt;}
._1c{width:19.760640pt;}
._19{width:21.460480pt;}
._18{width:22.576000pt;}
._17{width:23.585280pt;}
._2c{width:24.488320pt;}
._24{width:25.584640pt;}
._21{width:26.560000pt;}
._c{width:27.728640pt;}
._43{width:28.826880pt;}
._1e{width:29.747200pt;}
._23{width:30.688640pt;}
._20{width:31.833600pt;}
._1f{width:32.828160pt;}
._30{width:33.784320pt;}
._22{width:35.059200pt;}
._14{width:36.015360pt;}
._42{width:37.085653pt;}
._26{width:38.087040pt;}
._33{width:39.415040pt;}
._27{width:40.613333pt;}
._12{width:41.569493pt;}
._13{width:42.997547pt;}
._31{width:44.237867pt;}
._2f{width:45.258240pt;}
._15{width:46.161280pt;}
._16{width:47.383040pt;}
._2a{width:48.498560pt;}
._2b{width:49.667200pt;}
._1d{width:51.420160pt;}
._46{width:52.405973pt;}
._2e{width:53.757440pt;}
._40{width:54.743253pt;}
._1a{width:55.988480pt;}
._1b{width:57.022507pt;}
._4b{width:60.025600pt;}
._4a{width:61.884800pt;}
._25{width:62.894080pt;}
._34{width:64.647040pt;}
._55{width:65.603200pt;}
._48{width:66.824960pt;}
._58{width:68.312320pt;}
._38{width:69.427840pt;}
._47{width:71.021440pt;}
._54{width:71.977600pt;}
._45{width:73.146240pt;}
._32{width:75.058560pt;}
._3e{width:76.947413pt;}
._3d{width:78.298880pt;}
._52{width:79.337813pt;}
._53{width:80.417493pt;}
._39{width:81.356373pt;}
._36{width:82.979200pt;}
._35{width:83.876480pt;}
._44{width:86.957440pt;}
._3a{width:88.922880pt;}
._49{width:90.280533pt;}
._4e{width:91.449173pt;}
._4d{width:92.960000pt;}
._37{width:95.669120pt;}
._28{width:100.479573pt;}
._29{width:101.990400pt;}
._51{width:102.944853pt;}
._41{width:104.274560pt;}
._56{width:130.781440pt;}
._57{width:132.548907pt;}
._4f{width:138.529920pt;}
._50{width:139.705600pt;}
._3c{width:153.068373pt;}
._3b{width:153.994880pt;}
._5d{width:157.158613pt;}
._5c{width:158.244480pt;}
._3f{width:160.794240pt;}
._5b{width:163.450240pt;}
._5a{width:191.102293pt;}
._59{width:192.135040pt;}
._5e{width:204.618240pt;}
._62{width:226.391680pt;}
._61{width:227.300480pt;}
._0{width:678.666667pt;}
._11{width:753.386667pt;}
._5f{width:841.420800pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.880000pt;}
.y238{bottom:3.026667pt;}
.y1f3{bottom:3.040000pt;}
.y180{bottom:3.186667pt;}
.y16f{bottom:3.200000pt;}
.y1f5{bottom:3.226667pt;}
.y9{bottom:3.680000pt;}
.y34{bottom:3.826667pt;}
.y1c{bottom:3.840000pt;}
.y8{bottom:4.160000pt;}
.yb{bottom:4.320000pt;}
.y5{bottom:6.240000pt;}
.y1a{bottom:6.560000pt;}
.y1b8{bottom:9.280000pt;}
.y216{bottom:9.440000pt;}
.y1c4{bottom:9.760000pt;}
.y21c{bottom:9.906667pt;}
.y222{bottom:9.920000pt;}
.y1b9{bottom:15.840000pt;}
.y1c2{bottom:16.320000pt;}
.y21a{bottom:16.466667pt;}
.y1c8{bottom:16.480000pt;}
.y1bd{bottom:16.506667pt;}
.y1b{bottom:19.840000pt;}
.y33{bottom:20.466667pt;}
.y19{bottom:20.960000pt;}
.y4{bottom:22.400000pt;}
.y1c0{bottom:23.040000pt;}
.y1bb{bottom:23.066667pt;}
.y218{bottom:23.186667pt;}
.y221{bottom:23.200000pt;}
.y6{bottom:24.000000pt;}
.y1c1{bottom:29.600000pt;}
.y219{bottom:29.746667pt;}
.y1c7{bottom:29.760000pt;}
.y1bc{bottom:29.786667pt;}
.yc{bottom:30.080000pt;}
.y21b{bottom:36.306667pt;}
.y1c3{bottom:36.320000pt;}
.y3{bottom:38.400000pt;}
.y1c5{bottom:42.880000pt;}
.y1c9{bottom:43.040000pt;}
.y1be{bottom:43.066667pt;}
.y220{bottom:49.600000pt;}
.yf{bottom:51.072000pt;}
.y38{bottom:51.712000pt;}
.y21f{bottom:56.320000pt;}
.ye{bottom:64.352000pt;}
.y1f0{bottom:114.112000pt;}
.y23a{bottom:114.432000pt;}
.y10d{bottom:115.712000pt;}
.y19c{bottom:116.672000pt;}
.y6e{bottom:116.832000pt;}
.y286{bottom:117.312000pt;}
.y1af{bottom:118.112000pt;}
.y1d7{bottom:121.152000pt;}
.y35{bottom:121.632000pt;}
.y26f{bottom:121.952000pt;}
.yd6{bottom:122.592000pt;}
.y27c{bottom:123.712000pt;}
.y213{bottom:124.192000pt;}
.y16b{bottom:124.832000pt;}
.yf0{bottom:125.312000pt;}
.y201{bottom:125.792000pt;}
.ya3{bottom:125.952000pt;}
.y249{bottom:128.352000pt;}
.y138{bottom:128.992000pt;}
.y1ed{bottom:130.272000pt;}
.y1ef{bottom:130.752000pt;}
.y239{bottom:130.912000pt;}
.y10c{bottom:132.192000pt;}
.y6d{bottom:133.312000pt;}
.y285{bottom:133.946667pt;}
.y1ae{bottom:134.746667pt;}
.y1d6{bottom:137.786667pt;}
.y26e{bottom:138.586667pt;}
.yd5{bottom:139.066667pt;}
.y212{bottom:140.826667pt;}
.y16a{bottom:141.306667pt;}
.yef{bottom:141.946667pt;}
.ya2{bottom:142.426667pt;}
.y248{bottom:144.986667pt;}
.y137{bottom:145.466667pt;}
.y1ec{bottom:146.746667pt;}
.y27b{bottom:148.346667pt;}
.y10b{bottom:148.826667pt;}
.y6c{bottom:149.946667pt;}
.y284{bottom:150.426667pt;}
.y1ad{bottom:151.226667pt;}
.y32{bottom:153.640000pt;}
.y1d5{bottom:154.266667pt;}
.y26d{bottom:155.226667pt;}
.yd4{bottom:155.706667pt;}
.y211{bottom:157.466667pt;}
.y169{bottom:157.946667pt;}
.yee{bottom:158.426667pt;}
.ya1{bottom:159.066667pt;}
.y247{bottom:161.466667pt;}
.y136{bottom:162.106667pt;}
.y1ee{bottom:163.226667pt;}
.y1eb{bottom:163.386667pt;}
.y10a{bottom:165.306667pt;}
.y6b{bottom:166.426667pt;}
.y283{bottom:167.066667pt;}
.y1ac{bottom:167.866667pt;}
.y1d4{bottom:170.906667pt;}
.y26c{bottom:171.706667pt;}
.yd3{bottom:172.186667pt;}
.y210{bottom:173.946667pt;}
.y168{bottom:174.426667pt;}
.yed{bottom:175.066667pt;}
.ya0{bottom:175.546667pt;}
.y237{bottom:177.000000pt;}
.y246{bottom:178.106667pt;}
.y135{bottom:178.586667pt;}
.y1ea{bottom:179.866667pt;}
.y109{bottom:181.946667pt;}
.y6a{bottom:183.066667pt;}
.y282{bottom:183.546667pt;}
.y1ab{bottom:184.346667pt;}
.y1d3{bottom:187.386667pt;}
.y26b{bottom:188.346667pt;}
.yd2{bottom:188.826667pt;}
.y27a{bottom:190.426667pt;}
.y20f{bottom:190.586667pt;}
.y236{bottom:190.920000pt;}
.y167{bottom:191.066667pt;}
.yec{bottom:191.546667pt;}
.y9f{bottom:192.186667pt;}
.y245{bottom:194.746667pt;}
.y134{bottom:195.226667pt;}
.y1e9{bottom:196.506667pt;}
.y108{bottom:198.586667pt;}
.y69{bottom:199.546667pt;}
.y281{bottom:200.186667pt;}
.y1aa{bottom:200.986667pt;}
.y1d2{bottom:204.026667pt;}
.y26a{bottom:204.826667pt;}
.y235{bottom:204.840000pt;}
.yd1{bottom:205.466667pt;}
.y20e{bottom:207.066667pt;}
.y166{bottom:207.706667pt;}
.yeb{bottom:208.186667pt;}
.y9e{bottom:208.666667pt;}
.y244{bottom:211.226667pt;}
.y133{bottom:211.706667pt;}
.y1e8{bottom:212.986667pt;}
.y31{bottom:215.226667pt;}
.y68{bottom:216.186667pt;}
.y280{bottom:216.666667pt;}
.y1a9{bottom:217.626667pt;}
.y234{bottom:218.760000pt;}
.y1d1{bottom:220.666667pt;}
.y269{bottom:221.466667pt;}
.yd0{bottom:221.946667pt;}
.y107{bottom:223.386667pt;}
.y20d{bottom:223.706667pt;}
.y165{bottom:224.186667pt;}
.yea{bottom:224.666667pt;}
.y9d{bottom:225.306667pt;}
.y243{bottom:227.866667pt;}
.y132{bottom:228.346667pt;}
.y1e7{bottom:229.626667pt;}
.y30{bottom:231.386667pt;}
.y67{bottom:232.666667pt;}
.y233{bottom:232.680000pt;}
.y27f{bottom:233.306667pt;}
.y1a8{bottom:234.106667pt;}
.y1d0{bottom:237.146667pt;}
.y268{bottom:237.946667pt;}
.ycf{bottom:238.586667pt;}
.y20c{bottom:240.186667pt;}
.y164{bottom:240.826667pt;}
.ye9{bottom:241.306667pt;}
.y9c{bottom:241.786667pt;}
.y242{bottom:244.386667pt;}
.y131{bottom:244.866667pt;}
.y1e6{bottom:246.306667pt;}
.y232{bottom:246.626667pt;}
.y2f{bottom:247.426667pt;}
.y106{bottom:248.866667pt;}
.y66{bottom:249.346667pt;}
.y1cf{bottom:253.826667pt;}
.yce{bottom:255.106667pt;}
.y20b{bottom:256.866667pt;}
.y163{bottom:257.346667pt;}
.ye8{bottom:257.986667pt;}
.y27e{bottom:258.146667pt;}
.y9b{bottom:258.466667pt;}
.y231{bottom:260.546667pt;}
.y241{bottom:261.026667pt;}
.y130{bottom:261.506667pt;}
.y1e5{bottom:262.786667pt;}
.y267{bottom:262.946667pt;}
.y2e{bottom:263.586667pt;}
.y105{bottom:265.346667pt;}
.y272{bottom:265.666667pt;}
.y19b{bottom:265.826667pt;}
.y65{bottom:265.986667pt;}
.y1a7{bottom:266.786667pt;}
.y1ce{bottom:270.306667pt;}
.ycd{bottom:271.746667pt;}
.y20a{bottom:273.346667pt;}
.y162{bottom:273.986667pt;}
.ye7{bottom:274.466667pt;}
.y200{bottom:274.946667pt;}
.y9a{bottom:275.106667pt;}
.y240{bottom:277.506667pt;}
.y12f{bottom:278.146667pt;}
.y1a6{bottom:279.106667pt;}
.y1e4{bottom:279.426667pt;}
.y2d{bottom:279.586667pt;}
.y266{bottom:280.546667pt;}
.y104{bottom:281.986667pt;}
.y64{bottom:282.466667pt;}
.y1cd{bottom:286.946667pt;}
.ycc{bottom:288.226667pt;}
.y279{bottom:289.986667pt;}
.y161{bottom:290.466667pt;}
.ye6{bottom:291.106667pt;}
.y99{bottom:291.586667pt;}
.y230{bottom:291.746667pt;}
.y23f{bottom:294.146667pt;}
.y12e{bottom:294.626667pt;}
.y2c{bottom:295.746667pt;}
.y1e3{bottom:295.906667pt;}
.y103{bottom:298.466667pt;}
.y63{bottom:299.106667pt;}
.y1cc{bottom:303.426667pt;}
.ycb{bottom:304.866667pt;}
.y209{bottom:305.986667pt;}
.y278{bottom:306.466667pt;}
.y160{bottom:307.106667pt;}
.ye5{bottom:307.586667pt;}
.y98{bottom:308.226667pt;}
.y23e{bottom:310.626667pt;}
.y12d{bottom:311.266667pt;}
.y2b{bottom:311.746667pt;}
.y1e2{bottom:312.546667pt;}
.y102{bottom:315.106667pt;}
.y62{bottom:315.586667pt;}
.y208{bottom:318.306667pt;}
.y1cb{bottom:320.066667pt;}
.y265{bottom:322.466667pt;}
.y277{bottom:323.106667pt;}
.y15f{bottom:323.586667pt;}
.y22f{bottom:323.906667pt;}
.ye4{bottom:324.226667pt;}
.y97{bottom:324.706667pt;}
.y23d{bottom:327.266667pt;}
.y2a{bottom:327.746667pt;}
.y1e1{bottom:329.026667pt;}
.yca{bottom:329.666667pt;}
.y101{bottom:331.586667pt;}
.y61{bottom:332.226667pt;}
.y1ca{bottom:336.546667pt;}
.y264{bottom:339.106667pt;}
.y276{bottom:339.586667pt;}
.y15e{bottom:340.226667pt;}
.y22e{bottom:340.386667pt;}
.ye3{bottom:340.706667pt;}
.y96{bottom:341.346667pt;}
.y29{bottom:343.906667pt;}
.y12c{bottom:344.386667pt;}
.y1e0{bottom:345.666667pt;}
.yc9{bottom:347.426667pt;}
.y100{bottom:348.226667pt;}
.y60{bottom:348.706667pt;}
.y1ff{bottom:354.146667pt;}
.y263{bottom:355.746667pt;}
.y275{bottom:356.226667pt;}
.y15d{bottom:356.866667pt;}
.y22d{bottom:357.026667pt;}
.ye2{bottom:357.346667pt;}
.y95{bottom:357.826667pt;}
.y28{bottom:359.906667pt;}
.y12b{bottom:360.866667pt;}
.y1df{bottom:362.146667pt;}
.yff{bottom:364.866667pt;}
.y5f{bottom:365.346667pt;}
.y1fe{bottom:368.066667pt;}
.y262{bottom:372.226667pt;}
.yc8{bottom:372.866667pt;}
.y15c{bottom:373.346667pt;}
.y22c{bottom:373.506667pt;}
.ye1{bottom:373.826667pt;}
.y94{bottom:374.466667pt;}
.y27{bottom:376.066667pt;}
.y23c{bottom:376.386667pt;}
.y12a{bottom:377.506667pt;}
.y1de{bottom:378.786667pt;}
.yfe{bottom:381.346667pt;}
.y5e{bottom:381.826667pt;}
.y1fd{bottom:381.986667pt;}
.y1c6{bottom:382.626667pt;}
.y23b{bottom:388.706667pt;}
.y261{bottom:388.866667pt;}
.yc7{bottom:389.346667pt;}
.y15b{bottom:389.986667pt;}
.y22b{bottom:390.146667pt;}
.ye0{bottom:390.466667pt;}
.y93{bottom:390.946667pt;}
.y26{bottom:392.066667pt;}
.y129{bottom:393.986667pt;}
.y19a{bottom:394.786667pt;}
.y1dd{bottom:395.426667pt;}
.y1fc{bottom:395.906667pt;}
.yfd{bottom:397.986667pt;}
.y5d{bottom:398.466667pt;}
.y260{bottom:405.346667pt;}
.yc6{bottom:405.986667pt;}
.y15a{bottom:406.466667pt;}
.y22a{bottom:406.626667pt;}
.ydf{bottom:407.106667pt;}
.y92{bottom:407.586667pt;}
.y25{bottom:408.226667pt;}
.y199{bottom:408.706667pt;}
.y1fb{bottom:409.826667pt;}
.y128{bottom:410.626667pt;}
.y1dc{bottom:411.906667pt;}
.yfc{bottom:414.466667pt;}
.y5c{bottom:415.106667pt;}
.y25f{bottom:421.986667pt;}
.yc5{bottom:422.466667pt;}
.y198{bottom:422.626667pt;}
.y159{bottom:423.106667pt;}
.y229{bottom:423.266667pt;}
.yde{bottom:423.586667pt;}
.y1fa{bottom:423.746667pt;}
.y24{bottom:424.226667pt;}
.y127{bottom:427.266667pt;}
.y1db{bottom:428.546667pt;}
.yfb{bottom:431.106667pt;}
.y5b{bottom:431.586667pt;}
.y1bf{bottom:436.386667pt;}
.y197{bottom:436.546667pt;}
.y1f9{bottom:437.666667pt;}
.y25e{bottom:438.466667pt;}
.yc4{bottom:439.106667pt;}
.y158{bottom:439.586667pt;}
.y228{bottom:439.746667pt;}
.ydd{bottom:440.226667pt;}
.y23{bottom:440.386667pt;}
.y91{bottom:440.706667pt;}
.y126{bottom:443.746667pt;}
.y1da{bottom:445.026667pt;}
.yfa{bottom:447.586667pt;}
.y5a{bottom:448.226667pt;}
.y196{bottom:450.466667pt;}
.y1f8{bottom:451.586667pt;}
.y25d{bottom:455.106667pt;}
.yc3{bottom:455.586667pt;}
.y157{bottom:456.226667pt;}
.y22{bottom:456.386667pt;}
.ydc{bottom:456.706667pt;}
.y90{bottom:457.346667pt;}
.y125{bottom:460.386667pt;}
.y1d9{bottom:461.666667pt;}
.yf9{bottom:464.226667pt;}
.y195{bottom:464.386667pt;}
.y59{bottom:464.706667pt;}
.y1f7{bottom:465.506667pt;}
.y25c{bottom:471.586667pt;}
.yc2{bottom:472.226667pt;}
.y21{bottom:472.546667pt;}
.y156{bottom:472.706667pt;}
.y227{bottom:473.026667pt;}
.ydb{bottom:473.346667pt;}
.y8f{bottom:473.826667pt;}
.y124{bottom:476.866667pt;}
.y1f6{bottom:479.426667pt;}
.yf8{bottom:480.706667pt;}
.y58{bottom:481.346667pt;}
.y194{bottom:481.666667pt;}
.y25b{bottom:488.226667pt;}
.y20{bottom:488.546667pt;}
.yc1{bottom:488.706667pt;}
.y155{bottom:489.346667pt;}
.y226{bottom:489.506667pt;}
.yda{bottom:489.826667pt;}
.y1ba{bottom:489.986667pt;}
.y8e{bottom:490.466667pt;}
.y1f4{bottom:493.346667pt;}
.y123{bottom:493.506667pt;}
.y1d8{bottom:494.173333pt;}
.yf7{bottom:497.373333pt;}
.y57{bottom:497.853333pt;}
.y1f{bottom:504.733333pt;}
.y25a{bottom:504.893333pt;}
.yc0{bottom:505.373333pt;}
.y154{bottom:506.013333pt;}
.y225{bottom:506.173333pt;}
.yd9{bottom:506.493333pt;}
.y8d{bottom:506.973333pt;}
.y1f2{bottom:507.293333pt;}
.y122{bottom:510.013333pt;}
.y18a{bottom:513.853333pt;}
.yf6{bottom:514.013333pt;}
.y56{bottom:514.493333pt;}
.y1e{bottom:520.733333pt;}
.y259{bottom:521.373333pt;}
.ybf{bottom:522.013333pt;}
.y224{bottom:522.653333pt;}
.yd8{bottom:522.973333pt;}
.y8c{bottom:523.613333pt;}
.y207{bottom:524.093333pt;}
.y1f1{bottom:524.573333pt;}
.y121{bottom:526.653333pt;}
.y189{bottom:530.333333pt;}
.yf5{bottom:530.493333pt;}
.y153{bottom:530.813333pt;}
.y55{bottom:530.973333pt;}
.y258{bottom:538.013333pt;}
.ybe{bottom:538.493333pt;}
.y223{bottom:539.293333pt;}
.y193{bottom:539.453333pt;}
.y271{bottom:539.613333pt;}
.y8b{bottom:540.093333pt;}
.y206{bottom:540.733333pt;}
.y120{bottom:543.133333pt;}
.y1b7{bottom:543.773333pt;}
.y1d{bottom:544.893333pt;}
.y188{bottom:546.973333pt;}
.yf4{bottom:547.133333pt;}
.y54{bottom:547.613333pt;}
.yd7{bottom:547.933333pt;}
.y257{bottom:554.493333pt;}
.ybd{bottom:555.133333pt;}
.y192{bottom:556.093333pt;}
.y152{bottom:556.253333pt;}
.y8a{bottom:556.733333pt;}
.y205{bottom:557.213333pt;}
.y11f{bottom:559.773333pt;}
.y187{bottom:563.453333pt;}
.yf3{bottom:563.613333pt;}
.y53{bottom:564.253333pt;}
.y1a5{bottom:568.893333pt;}
.y256{bottom:571.133333pt;}
.ybc{bottom:571.613333pt;}
.y191{bottom:572.573333pt;}
.y151{bottom:572.733333pt;}
.y89{bottom:573.373333pt;}
.y1b6{bottom:573.853333pt;}
.y186{bottom:580.093333pt;}
.y52{bottom:580.733333pt;}
.y11e{bottom:584.733333pt;}
.y21e{bottom:585.213333pt;}
.y1a4{bottom:585.533333pt;}
.y255{bottom:587.613333pt;}
.ybb{bottom:588.253333pt;}
.yf2{bottom:588.573333pt;}
.y190{bottom:589.213333pt;}
.y150{bottom:589.373333pt;}
.y88{bottom:589.853333pt;}
.y204{bottom:590.333333pt;}
.y185{bottom:596.573333pt;}
.y51{bottom:597.373333pt;}
.y1a3{bottom:602.013333pt;}
.y254{bottom:604.253333pt;}
.yba{bottom:604.733333pt;}
.y18f{bottom:605.693333pt;}
.y14f{bottom:605.853333pt;}
.y1b5{bottom:606.013333pt;}
.y87{bottom:606.493333pt;}
.y203{bottom:606.973333pt;}
.y11d{bottom:610.013333pt;}
.y184{bottom:613.213333pt;}
.y50{bottom:613.853333pt;}
.yf1{bottom:614.013333pt;}
.y18{bottom:618.013333pt;}
.y1a2{bottom:618.653333pt;}
.y253{bottom:620.733333pt;}
.yb9{bottom:621.373333pt;}
.y18e{bottom:622.333333pt;}
.y14e{bottom:622.493333pt;}
.y86{bottom:622.973333pt;}
.y202{bottom:623.293333pt;}
.y11c{bottom:626.653333pt;}
.y183{bottom:629.693333pt;}
.y4f{bottom:630.493333pt;}
.y1a1{bottom:635.133333pt;}
.y252{bottom:637.373333pt;}
.yb8{bottom:637.853333pt;}
.y18d{bottom:638.813333pt;}
.y14d{bottom:638.973333pt;}
.y1b4{bottom:639.133333pt;}
.y85{bottom:639.613333pt;}
.y11b{bottom:643.133333pt;}
.y182{bottom:646.333333pt;}
.y4e{bottom:646.973333pt;}
.y1a0{bottom:651.773333pt;}
.y21d{bottom:652.253333pt;}
.y251{bottom:654.013333pt;}
.yb7{bottom:654.493333pt;}
.y18c{bottom:655.453333pt;}
.y14c{bottom:655.613333pt;}
.y84{bottom:656.093333pt;}
.y11a{bottom:659.773333pt;}
.y181{bottom:662.973333pt;}
.y4d{bottom:663.613333pt;}
.y19f{bottom:668.253333pt;}
.y250{bottom:670.493333pt;}
.yb6{bottom:671.133333pt;}
.y14b{bottom:672.093333pt;}
.y1b3{bottom:672.253333pt;}
.y83{bottom:672.733333pt;}
.y119{bottom:676.253333pt;}
.y4c{bottom:680.093333pt;}
.y19e{bottom:684.893333pt;}
.y24f{bottom:687.133333pt;}
.yb5{bottom:687.613333pt;}
.y18b{bottom:688.573333pt;}
.y14a{bottom:688.733333pt;}
.y1b2{bottom:688.893333pt;}
.y82{bottom:689.213333pt;}
.y118{bottom:692.893333pt;}
.y4b{bottom:696.733333pt;}
.y270{bottom:697.053333pt;}
.y24e{bottom:703.613333pt;}
.yb4{bottom:704.253333pt;}
.y149{bottom:705.373333pt;}
.y81{bottom:705.853333pt;}
.y217{bottom:705.866667pt;}
.y117{bottom:709.373333pt;}
.y274{bottom:712.573333pt;}
.y4a{bottom:713.373333pt;}
.y19d{bottom:717.373333pt;}
.y24d{bottom:720.253333pt;}
.yb3{bottom:720.733333pt;}
.y1b1{bottom:721.373333pt;}
.y148{bottom:721.853333pt;}
.y80{bottom:722.493333pt;}
.y116{bottom:726.013333pt;}
.y49{bottom:729.853333pt;}
.y17{bottom:730.013333pt;}
.y273{bottom:730.173333pt;}
.y17f{bottom:734.666667pt;}
.yb2{bottom:737.373333pt;}
.y147{bottom:738.493333pt;}
.y7f{bottom:738.973333pt;}
.y115{bottom:742.653333pt;}
.y24c{bottom:745.053333pt;}
.y48{bottom:746.533333pt;}
.y17e{bottom:748.613333pt;}
.y16{bottom:749.413333pt;}
.y1b0{bottom:749.893333pt;}
.yb1{bottom:753.893333pt;}
.y146{bottom:755.013333pt;}
.y7e{bottom:755.653333pt;}
.y114{bottom:759.173333pt;}
.y215{bottom:759.653333pt;}
.y15{bottom:762.213333pt;}
.y17d{bottom:762.533333pt;}
.y24b{bottom:762.853333pt;}
.y47{bottom:763.013333pt;}
.yb0{bottom:770.533333pt;}
.y145{bottom:771.653333pt;}
.y7d{bottom:772.133333pt;}
.y113{bottom:775.813333pt;}
.y17c{bottom:776.453333pt;}
.y46{bottom:779.653333pt;}
.y14{bottom:781.573333pt;}
.yaf{bottom:787.013333pt;}
.y144{bottom:788.133333pt;}
.y7c{bottom:788.773333pt;}
.y214{bottom:789.733333pt;}
.y17b{bottom:790.373333pt;}
.y112{bottom:792.293333pt;}
.y45{bottom:796.133333pt;}
.yae{bottom:803.653333pt;}
.y17a{bottom:804.293333pt;}
.y143{bottom:804.773333pt;}
.y7b{bottom:805.253333pt;}
.y111{bottom:808.933333pt;}
.y13{bottom:810.853333pt;}
.y44{bottom:812.773333pt;}
.y179{bottom:818.213333pt;}
.yad{bottom:820.293333pt;}
.y142{bottom:821.253333pt;}
.y7a{bottom:821.893333pt;}
.y110{bottom:825.413333pt;}
.y43{bottom:829.253333pt;}
.y178{bottom:832.133333pt;}
.yac{bottom:836.773333pt;}
.y141{bottom:837.893333pt;}
.y79{bottom:838.373333pt;}
.y10f{bottom:844.293333pt;}
.y42{bottom:845.893333pt;}
.y177{bottom:846.053333pt;}
.yab{bottom:853.413333pt;}
.y140{bottom:854.533333pt;}
.y78{bottom:855.013333pt;}
.y12{bottom:856.133333pt;}
.y176{bottom:859.973333pt;}
.y41{bottom:862.533333pt;}
.y27d{bottom:862.693333pt;}
.y10e{bottom:867.493333pt;}
.yaa{bottom:869.893333pt;}
.y13f{bottom:871.013333pt;}
.y77{bottom:871.653333pt;}
.y175{bottom:873.893333pt;}
.y40{bottom:879.013333pt;}
.y11{bottom:883.333333pt;}
.ya9{bottom:886.533333pt;}
.y13e{bottom:887.653333pt;}
.y174{bottom:887.813333pt;}
.y76{bottom:888.133333pt;}
.y3f{bottom:895.653333pt;}
.y173{bottom:901.733333pt;}
.ya8{bottom:903.013333pt;}
.y13d{bottom:904.133333pt;}
.y75{bottom:904.773333pt;}
.y10{bottom:910.693333pt;}
.y3e{bottom:912.133333pt;}
.y172{bottom:915.653333pt;}
.ya7{bottom:919.653333pt;}
.y13c{bottom:920.773333pt;}
.y74{bottom:921.253333pt;}
.y3d{bottom:928.773333pt;}
.y171{bottom:929.573333pt;}
.ya6{bottom:936.133333pt;}
.y13b{bottom:937.253333pt;}
.y73{bottom:937.893333pt;}
.y170{bottom:943.493333pt;}
.y3c{bottom:945.253333pt;}
.ya5{bottom:952.773333pt;}
.y13a{bottom:953.893333pt;}
.y72{bottom:954.373333pt;}
.y16e{bottom:957.413333pt;}
.y3b{bottom:961.893333pt;}
.y24a{bottom:962.053333pt;}
.yd{bottom:964.293333pt;}
.ya{bottom:965.413333pt;}
.y71{bottom:971.013333pt;}
.y16d{bottom:971.333333pt;}
.ya4{bottom:977.573333pt;}
.y3a{bottom:978.373333pt;}
.y139{bottom:978.693333pt;}
.y70{bottom:987.493333pt;}
.y16c{bottom:988.613333pt;}
.y39{bottom:1003.200000pt;}
.y6f{bottom:1004.160000pt;}
.y7{bottom:1007.840000pt;}
.y1{bottom:1023.840000pt;}
.y37{bottom:1056.640000pt;}
.y36{bottom:1058.560000pt;}
.h8{height:3.715000pt;}
.h18{height:12.786667pt;}
.h20{height:12.960000pt;}
.h1a{height:13.266667pt;}
.h1b{height:13.298667pt;}
.h21{height:13.306667pt;}
.h4{height:16.000000pt;}
.hd{height:25.336562pt;}
.h22{height:25.746667pt;}
.h1c{height:25.760000pt;}
.h9{height:31.217812pt;}
.h19{height:31.259687pt;}
.h13{height:33.266667pt;}
.h5{height:34.828125pt;}
.h10{height:35.039062pt;}
.h3{height:38.543125pt;}
.h15{height:38.672812pt;}
.h14{height:38.724688pt;}
.he{height:38.776563pt;}
.h6{height:42.426667pt;}
.h12{height:42.923750pt;}
.h16{height:42.981250pt;}
.ha{height:44.073883pt;}
.h17{height:44.249375pt;}
.hc{height:47.259687pt;}
.h2{height:50.720000pt;}
.h1e{height:52.946667pt;}
.h24{height:52.960000pt;}
.h1f{height:53.106667pt;}
.h23{height:53.138667pt;}
.h1d{height:53.146667pt;}
.h7{height:65.781915pt;}
.hb{height:66.251875pt;}
.h25{height:66.400000pt;}
.hf{height:108.156000pt;}
.h11{height:108.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:30.112000pt;}
.w15{width:54.226667pt;}
.wf{width:57.906667pt;}
.w1c{width:58.866667pt;}
.w1d{width:58.880000pt;}
.w14{width:58.898667pt;}
.w16{width:59.072000pt;}
.w11{width:63.040000pt;}
.w19{width:64.672000pt;}
.w13{width:76.786667pt;}
.w5{width:78.706667pt;}
.w1e{width:83.072000pt;}
.we{width:96.352000pt;}
.w10{width:113.458667pt;}
.w21{width:118.066667pt;}
.w18{width:120.960000pt;}
.w12{width:123.072000pt;}
.w1b{width:130.592000pt;}
.w1f{width:137.293333pt;}
.w22{width:140.013333pt;}
.w20{width:167.226667pt;}
.w17{width:173.298667pt;}
.w6{width:185.626667pt;}
.w7{width:185.640000pt;}
.w24{width:215.706667pt;}
.w23{width:215.733333pt;}
.w25{width:215.853333pt;}
.w1a{width:227.853333pt;}
.w2{width:240.066667pt;}
.wc{width:302.466667pt;}
.wd{width:345.493333pt;}
.w3{width:347.413333pt;}
.w4{width:347.426667pt;}
.w8{width:464.240000pt;}
.wb{width:619.760000pt;}
.w9{width:649.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.600000pt;}
.x6a{left:2.720000pt;}
.x58{left:3.840000pt;}
.x3b{left:5.106667pt;}
.xe{left:7.200000pt;}
.x36{left:8.786667pt;}
.x1e{left:10.880000pt;}
.x3d{left:11.840000pt;}
.x6b{left:12.786667pt;}
.x3{left:13.760000pt;}
.x34{left:15.026667pt;}
.x42{left:16.000000pt;}
.x47{left:16.946667pt;}
.x45{left:18.266667pt;}
.x1d{left:19.200000pt;}
.x43{left:20.320000pt;}
.x62{left:21.426667pt;}
.x41{left:22.746667pt;}
.x53{left:24.480000pt;}
.x23{left:26.400000pt;}
.x6d{left:27.520000pt;}
.x3f{left:28.800000pt;}
.x5a{left:30.066667pt;}
.x21{left:31.680000pt;}
.x26{left:33.280000pt;}
.x2e{left:35.040000pt;}
.x28{left:37.120000pt;}
.x31{left:38.080000pt;}
.x68{left:41.746667pt;}
.x46{left:44.666667pt;}
.x3e{left:47.386667pt;}
.x2f{left:48.480000pt;}
.x25{left:49.920000pt;}
.x44{left:52.026667pt;}
.x6c{left:53.426667pt;}
.x40{left:56.026667pt;}
.x57{left:57.106667pt;}
.x48{left:58.746667pt;}
.x59{left:59.826667pt;}
.x6f{left:61.466667pt;}
.x2c{left:62.560000pt;}
.x72{left:69.626667pt;}
.x74{left:70.746667pt;}
.x1{left:72.000000pt;}
.x73{left:74.066667pt;}
.x30{left:76.346667pt;}
.x6{left:78.720000pt;}
.x56{left:79.826667pt;}
.x20{left:80.986667pt;}
.x7{left:82.880000pt;}
.x71{left:84.146667pt;}
.x4e{left:85.600000pt;}
.x27{left:87.386667pt;}
.x29{left:88.666667pt;}
.x15{left:90.112000pt;}
.x5f{left:94.272000pt;}
.x77{left:95.826667pt;}
.x76{left:98.400000pt;}
.x12{left:102.120000pt;}
.x75{left:105.120000pt;}
.x1f{left:108.186667pt;}
.xb{left:110.112000pt;}
.x24{left:111.706667pt;}
.x22{left:113.306667pt;}
.x1a{left:114.266667pt;}
.x2a{left:118.266667pt;}
.x79{left:120.032000pt;}
.x2d{left:122.586667pt;}
.x8{left:129.792000pt;}
.x51{left:132.360000pt;}
.x1c{left:136.826667pt;}
.xc{left:151.226667pt;}
.x65{left:156.360000pt;}
.xd{left:159.706667pt;}
.x33{left:169.640000pt;}
.x4{left:188.026667pt;}
.x5c{left:199.706667pt;}
.x4f{left:203.866667pt;}
.x32{left:217.306667pt;}
.x14{left:227.066667pt;}
.x35{left:228.360000pt;}
.x50{left:232.186667pt;}
.x4c{left:242.906667pt;}
.x10{left:247.733333pt;}
.x64{left:254.906667pt;}
.xf{left:257.640000pt;}
.x60{left:263.400000pt;}
.x4a{left:270.146667pt;}
.x18{left:276.666667pt;}
.x6e{left:281.346667pt;}
.x70{left:289.026667pt;}
.x66{left:294.466667pt;}
.xa{left:295.426667pt;}
.x11{left:298.133333pt;}
.x19{left:300.226667pt;}
.x52{left:306.466667pt;}
.x2{left:312.066667pt;}
.x61{left:322.946667pt;}
.x9{left:340.226667pt;}
.x37{left:342.466667pt;}
.x1b{left:375.746667pt;}
.x4d{left:382.466667pt;}
.x38{left:406.146667pt;}
.x16{left:411.266667pt;}
.x5e{left:423.746667pt;}
.x54{left:428.066667pt;}
.x17{left:429.346667pt;}
.x67{left:462.506667pt;}
.x55{left:493.386667pt;}
.x13{left:504.853333pt;}
.x39{left:529.866667pt;}
.x69{left:581.226667pt;}
.x3a{left:607.306667pt;}
.x5b{left:617.053333pt;}
.x78{left:619.013333pt;}
.x4b{left:640.453333pt;}
.x5{left:659.493333pt;}
.x3c{left:667.013333pt;}
.x49{left:699.493333pt;}
.x63{left:721.733333pt;}
.x5d{left:737.253333pt;}
}




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