
    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_9873ff70728d995c39cb8fe6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_14f131ca4883336eed35cf9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d898cf7ce255e5d25a938ffa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a65698cccdf2fac8aff0915.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5279a05c64e7278a5f6114ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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_4431faac393e5db90858021f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_2639ae532c15ace4614a5d3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_77b68ad5de6323588d33d3c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_3a311109a570d9ef9fa4663e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d4d93a1d2367575bc961063d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2e0b8bea1721aa42109fc793.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls17{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.181200px;}
.ls4{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.269280px;}
.ls9{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.389280px;}
.ls15{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.468000px;}
.ls16{letter-spacing:2.304000px;}
.ls1c{letter-spacing:3.024000px;}
.ls18{letter-spacing:7.344000px;}
.ls1d{letter-spacing:9.504000px;}
.ls1b{letter-spacing:12.384000px;}
.ls6{letter-spacing:21.744000px;}
.ls1e{letter-spacing:23.904000px;}
.lsb{letter-spacing:34.704000px;}
.ls7{letter-spacing:831.756000px;}
.ls5{letter-spacing:843.309120px;}
.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;}
}
.wse{word-spacing:-31.680000px;}
.ws2{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws1{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.872000px;}
.wsf{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.440000px;}
.wsd{word-spacing:-19.152000px;}
.wsc{word-spacing:-15.226440px;}
.ws6{word-spacing:-13.680120px;}
.ws7{word-spacing:-13.410720px;}
.ws9{word-spacing:-13.186920px;}
.wsa{word-spacing:-13.141320px;}
.ws8{word-spacing:-13.050720px;}
.ws0{word-spacing:0.000000px;}
._21{margin-left:-19.008000px;}
._8{margin-left:-17.952000px;}
._5{margin-left:-16.656000px;}
._a{margin-left:-15.504000px;}
._29{margin-left:-14.352000px;}
._b{margin-left:-12.624000px;}
._39{margin-left:-11.436000px;}
._9{margin-left:-9.528000px;}
._6{margin-left:-7.440000px;}
._37{margin-left:-6.288000px;}
._7{margin-left:-4.992000px;}
._4{margin-left:-3.912000px;}
._38{margin-left:-2.832000px;}
._2{margin-left:-1.152000px;}
._1{width:1.044000px;}
._e{width:2.844000px;}
._f{width:4.620000px;}
._10{width:6.048000px;}
._11{width:7.392000px;}
._16{width:9.288000px;}
._d{width:10.368000px;}
._c{width:11.496000px;}
._15{width:13.092000px;}
._13{width:14.304000px;}
._14{width:16.200000px;}
._17{width:17.616000px;}
._1f{width:18.912000px;}
._18{width:21.672000px;}
._26{width:22.800000px;}
._19{width:24.036000px;}
._28{width:25.248000px;}
._2c{width:27.216000px;}
._27{width:28.236000px;}
._1c{width:30.096000px;}
._31{width:32.100480px;}
._22{width:33.192000px;}
._25{width:34.272000px;}
._23{width:35.508000px;}
._20{width:36.540000px;}
._35{width:37.558080px;}
._2e{width:39.528000px;}
._2d{width:40.752000px;}
._36{width:41.760000px;}
._3c{width:43.704000px;}
._45{width:44.712000px;}
._3f{width:45.828000px;}
._3e{width:46.872000px;}
._3d{width:48.312000px;}
._1b{width:49.764000px;}
._2a{width:50.940000px;}
._1e{width:55.740000px;}
._33{width:61.669440px;}
._2b{width:66.456000px;}
._42{width:67.992000px;}
._24{width:69.888000px;}
._41{width:77.256000px;}
._3b{width:78.792000px;}
._1d{width:79.824000px;}
._32{width:113.336640px;}
._34{width:124.243200px;}
._1a{width:175.800000px;}
._40{width:190.224000px;}
._3a{width:192.528000px;}
._44{width:257.220000px;}
._43{width:258.816000px;}
._2f{width:844.284000px;}
._3{width:1286.604240px;}
._30{width:1347.420000px;}
._0{width:1587.329760px;}
._12{width:1924.260000px;}
._46{width:2187.648000px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs6{font-size:92.880000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.fs4{font-size:144.000000px;}
.y10d{bottom:-18.795000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:1.875000px;}
.yf6{bottom:3.450000px;}
.y113{bottom:9.690000px;}
.y112{bottom:30.420000px;}
.y10b{bottom:42.765000px;}
.y100{bottom:45.645000px;}
.y4{bottom:57.636000px;}
.y10a{bottom:65.985000px;}
.yff{bottom:68.865000px;}
.y3{bottom:77.796000px;}
.y109{bottom:89.025000px;}
.yfe{bottom:92.085000px;}
.y108{bottom:112.245000px;}
.y197{bottom:112.896000px;}
.y16b{bottom:116.136000px;}
.y4f{bottom:118.476000px;}
.y274{bottom:119.376000px;}
.y1b5{bottom:121.896000px;}
.y1dd{bottom:122.616000px;}
.y20a{bottom:123.696000px;}
.y20c{bottom:128.016000px;}
.y1c1{bottom:128.196000px;}
.y85{bottom:128.376000px;}
.y2ac{bottom:131.256000px;}
.y142{bottom:131.796000px;}
.y15a{bottom:133.236000px;}
.ydb{bottom:139.536000px;}
.y243{bottom:139.716000px;}
.y196{bottom:144.036000px;}
.y12d{bottom:146.196000px;}
.y16a{bottom:147.096000px;}
.y4e{bottom:149.616000px;}
.y273{bottom:150.510000px;}
.y17b{bottom:150.690000px;}
.y1f9{bottom:152.130000px;}
.yfc{bottom:153.330000px;}
.y209{bottom:154.650000px;}
.y1bc{bottom:158.970000px;}
.y1c0{bottom:159.150000px;}
.y84{bottom:159.510000px;}
.y2ab{bottom:162.210000px;}
.y141{bottom:162.930000px;}
.y159{bottom:164.190000px;}
.y1b4{bottom:167.790000px;}
.y1dc{bottom:168.510000px;}
.ye7{bottom:169.995000px;}
.y242{bottom:170.670000px;}
.y106{bottom:173.670000px;}
.ydd{bottom:173.985000px;}
.yef{bottom:174.675000px;}
.y195{bottom:174.990000px;}
.yfb{bottom:176.550000px;}
.y12c{bottom:177.150000px;}
.y252{bottom:177.330000px;}
.y169{bottom:178.230000px;}
.y4d{bottom:180.570000px;}
.y1a{bottom:181.290000px;}
.y272{bottom:181.470000px;}
.y223{bottom:181.650000px;}
.y1f8{bottom:183.090000px;}
.ya1{bottom:183.630000px;}
.yda{bottom:185.610000px;}
.y208{bottom:185.790000px;}
.y1bb{bottom:190.110000px;}
.y1bf{bottom:190.290000px;}
.y83{bottom:190.470000px;}
.y2aa{bottom:193.350000px;}
.y140{bottom:193.890000px;}
.y158{bottom:195.330000px;}
.y17a{bottom:196.590000px;}
.y105{bottom:196.710000px;}
.y10f{bottom:196.890000px;}
.y1b3{bottom:198.930000px;}
.y1db{bottom:199.650000px;}
.yfa{bottom:199.770000px;}
.y194{bottom:206.130000px;}
.y12b{bottom:208.290000px;}
.y168{bottom:209.190000px;}
.yee{bottom:210.420000px;}
.y4c{bottom:211.710000px;}
.y271{bottom:212.610000px;}
.y222{bottom:212.790000px;}
.y1f7{bottom:214.230000px;}
.ya0{bottom:214.590000px;}
.ye6{bottom:216.720000px;}
.y207{bottom:216.750000px;}
.y104{bottom:219.930000px;}
.y19{bottom:219.990000px;}
.y1ba{bottom:221.070000px;}
.y82{bottom:221.430000px;}
.y241{bottom:222.690000px;}
.yf9{bottom:222.810000px;}
.y2a9{bottom:224.310000px;}
.y13f{bottom:225.030000px;}
.yf5{bottom:229.710000px;}
.y1b2{bottom:229.890000px;}
.y1da{bottom:230.610000px;}
.yed{bottom:231.150000px;}
.yd9{bottom:231.510000px;}
.y28f{bottom:234.750000px;}
.y193{bottom:237.090000px;}
.y12a{bottom:239.250000px;}
.y22c{bottom:240.330000px;}
.y157{bottom:241.590000px;}
.y4b{bottom:242.670000px;}
.y103{bottom:243.150000px;}
.y270{bottom:243.570000px;}
.y221{bottom:243.750000px;}
.y1f6{bottom:245.190000px;}
.y9f{bottom:245.730000px;}
.yf8{bottom:246.030000px;}
.y206{bottom:247.710000px;}
.yc5{bottom:252.210000px;}
.y2b0{bottom:252.390000px;}
.y240{bottom:253.830000px;}
.y167{bottom:255.450000px;}
.y2a8{bottom:255.630000px;}
.y13e{bottom:255.990000px;}
.y18{bottom:258.870000px;}
.y251{bottom:260.310000px;}
.yf4{bottom:260.670000px;}
.y1b1{bottom:261.030000px;}
.y1d9{bottom:261.750000px;}
.yec{bottom:262.110000px;}
.y28e{bottom:265.710000px;}
.y81{bottom:267.510000px;}
.y192{bottom:268.230000px;}
.y22b{bottom:271.290000px;}
.y4a{bottom:273.855000px;}
.y26f{bottom:274.755000px;}
.yf3{bottom:276.510000px;}
.y9e{bottom:276.735000px;}
.yd8{bottom:277.635000px;}
.yeb{bottom:277.950000px;}
.y205{bottom:278.895000px;}
.y1b9{bottom:283.215000px;}
.y1c9{bottom:283.395000px;}
.y23f{bottom:284.835000px;}
.y129{bottom:285.375000px;}
.y2a7{bottom:286.635000px;}
.y156{bottom:287.355000px;}
.y31{bottom:291.135000px;}
.y1f5{bottom:291.315000px;}
.y250{bottom:291.495000px;}
.y1b0{bottom:292.035000px;}
.y220{bottom:295.815000px;}
.y28d{bottom:296.895000px;}
.y17{bottom:297.615000px;}
.yc4{bottom:298.155000px;}
.y80{bottom:298.695000px;}
.y13d{bottom:299.235000px;}
.y166{bottom:301.395000px;}
.y22a{bottom:302.475000px;}
.y49{bottom:304.815000px;}
.y26e{bottom:305.715000px;}
.yf2{bottom:307.335000px;}
.y9d{bottom:307.875000px;}
.yea{bottom:308.955000px;}
.y204{bottom:310.035000px;}
.y1b8{bottom:314.355000px;}
.y1c8{bottom:314.535000px;}
.y23e{bottom:315.975000px;}
.y128{bottom:316.335000px;}
.y2a6{bottom:317.595000px;}
.y155{bottom:318.495000px;}
.y1f4{bottom:322.455000px;}
.yd7{bottom:323.715000px;}
.y21f{bottom:326.955000px;}
.y28c{bottom:327.855000px;}
.yc3{bottom:329.295000px;}
.y30{bottom:329.655000px;}
.y191{bottom:330.375000px;}
.y165{bottom:332.355000px;}
.y229{bottom:333.435000px;}
.y1af{bottom:333.795000px;}
.y48{bottom:335.775000px;}
.y179{bottom:335.955000px;}
.y16{bottom:336.495000px;}
.y26d{bottom:336.855000px;}
.yf1{bottom:338.295000px;}
.y9c{bottom:338.835000px;}
.ye9{bottom:339.735000px;}
.y203{bottom:340.995000px;}
.y1b7{bottom:345.315000px;}
.y2b8{bottom:345.495000px;}
.y23d{bottom:346.935000px;}
.y127{bottom:347.475000px;}
.y2a5{bottom:348.735000px;}
.y154{bottom:349.455000px;}
.y13c{bottom:349.995000px;}
.y1f3{bottom:353.415000px;}
.y24f{bottom:353.595000px;}
.yf0{bottom:354.135000px;}
.ye8{bottom:355.575000px;}
.y69{bottom:356.295000px;}
.y21e{bottom:357.915000px;}
.y28b{bottom:358.815000px;}
.yc2{bottom:360.255000px;}
.y7f{bottom:360.795000px;}
.y190{bottom:361.335000px;}
.y164{bottom:363.495000px;}
.y228{bottom:364.575000px;}
.y47{bottom:366.915000px;}
.y26c{bottom:367.815000px;}
.y2f{bottom:368.175000px;}
.yd6{bottom:369.795000px;}
.y9b{bottom:369.975000px;}
.y15{bottom:375.195000px;}
.y1b6{bottom:376.455000px;}
.y1be{bottom:376.635000px;}
.y23c{bottom:378.075000px;}
.y126{bottom:378.435000px;}
.y2a4{bottom:379.695000px;}
.y153{bottom:380.595000px;}
.y1ae{bottom:385.455000px;}
.y202{bottom:387.075000px;}
.y13b{bottom:388.155000px;}
.y21d{bottom:389.055000px;}
.y28a{bottom:389.955000px;}
.yc1{bottom:391.395000px;}
.y18f{bottom:392.475000px;}
.y163{bottom:394.455000px;}
.y46{bottom:397.875000px;}
.y178{bottom:398.055000px;}
.y26b{bottom:398.955000px;}
.y1f2{bottom:399.495000px;}
.y9a{bottom:401.115000px;}
.y24e{bottom:405.615000px;}
.y2e{bottom:406.695000px;}
.y7e{bottom:406.875000px;}
.y68{bottom:407.415000px;}
.y1bd{bottom:407.595000px;}
.y23b{bottom:409.035000px;}
.y125{bottom:409.575000px;}
.y2a3{bottom:410.655000px;}
.y14{bottom:414.075000px;}
.yd5{bottom:415.875000px;}
.y1d8{bottom:416.055000px;}
.y1ad{bottom:416.595000px;}
.y201{bottom:418.035000px;}
.y21c{bottom:420.015000px;}
.y289{bottom:420.915000px;}
.yc0{bottom:422.355000px;}
.y18e{bottom:423.435000px;}
.y162{bottom:425.595000px;}
.y152{bottom:426.855000px;}
.yab{bottom:427.755000px;}
.y45{bottom:429.015000px;}
.y26a{bottom:429.915000px;}
.y1f1{bottom:430.455000px;}
.y99{bottom:432.075000px;}
.y13a{bottom:433.155000px;}
.y24d{bottom:436.755000px;}
.y67{bottom:438.555000px;}
.y124{bottom:440.535000px;}
.y2a2{bottom:441.615000px;}
.y2d{bottom:445.215000px;}
.y1d7{bottom:447.015000px;}
.y1ac{bottom:447.555000px;}
.y21b{bottom:451.155000px;}
.y288{bottom:452.055000px;}
.y7d{bottom:452.775000px;}
.y13{bottom:452.955000px;}
.y18d{bottom:454.575000px;}
.y161{bottom:456.555000px;}
.ydc{bottom:458.100000px;}
.y44{bottom:459.975000px;}
.y177{bottom:460.155000px;}
.y23a{bottom:461.055000px;}
.y1f0{bottom:461.595000px;}
.yd4{bottom:461.955000px;}
.y98{bottom:463.035000px;}
.y139{bottom:464.115000px;}
.ybf{bottom:468.435000px;}
.y66{bottom:469.515000px;}
.y123{bottom:471.675000px;}
.y151{bottom:472.755000px;}
.ye4{bottom:475.815000px;}
.y1ab{bottom:478.695000px;}
.y21a{bottom:482.115000px;}
.y287{bottom:483.015000px;}
.y2c{bottom:483.915000px;}
.y18c{bottom:485.535000px;}
.y160{bottom:487.695000px;}
.y24c{bottom:488.775000px;}
.y43{bottom:491.115000px;}
.yaa{bottom:491.295000px;}
.y12{bottom:491.655000px;}
.y269{bottom:492.015000px;}
.y239{bottom:492.195000px;}
.y1d6{bottom:493.095000px;}
.y97{bottom:494.175000px;}
.y200{bottom:495.255000px;}
.ybe{bottom:499.575000px;}
.y65{bottom:500.655000px;}
.y2b7{bottom:500.835000px;}
.y122{bottom:502.635000px;}
.y150{bottom:503.715000px;}
.ye3{bottom:506.595000px;}
.y1ef{bottom:507.675000px;}
.yd3{bottom:507.855000px;}
.y1aa{bottom:509.655000px;}
.y138{bottom:510.195000px;}
.y286{bottom:514.155000px;}
.y7c{bottom:514.875000px;}
.y18b{bottom:516.675000px;}
.y2ba{bottom:516.855000px;}
.y15f{bottom:518.655000px;}
.y24b{bottom:519.735000px;}
.y42{bottom:522.075000px;}
.ya9{bottom:522.255000px;}
.y2b{bottom:522.435000px;}
.ye2{bottom:522.615000px;}
.y238{bottom:523.155000px;}
.y1d5{bottom:524.055000px;}
.y96{bottom:525.135000px;}
.y1ff{bottom:526.215000px;}
.y11{bottom:530.535000px;}
.y64{bottom:531.615000px;}
.y219{bottom:534.135000px;}
.y14f{bottom:534.855000px;}
.ye1{bottom:538.455000px;}
.y1ee{bottom:538.635000px;}
.y1a9{bottom:540.795000px;}
.y137{bottom:541.155000px;}
.y285{bottom:545.115000px;}
.y7b{bottom:546.015000px;}
.ya8{bottom:546.195000px;}
.y18a{bottom:547.635000px;}
.y121{bottom:548.715000px;}
.y24a{bottom:550.875000px;}
.y41{bottom:553.215000px;}
.y176{bottom:553.395000px;}
.yd2{bottom:553.935000px;}
.y268{bottom:554.115000px;}
.ye0{bottom:554.295000px;}
.y1d4{bottom:555.195000px;}
.y95{bottom:556.305000px;}
.y2a{bottom:560.985000px;}
.ybd{bottom:561.705000px;}
.y63{bottom:562.785000px;}
.y1c7{bottom:562.965000px;}
.y15e{bottom:564.765000px;}
.y218{bottom:565.305000px;}
.y2a1{bottom:565.845000px;}
.y10{bottom:569.265000px;}
.y1ed{bottom:569.805000px;}
.y227{bottom:571.785000px;}
.y136{bottom:572.325000px;}
.y1cb{bottom:576.285000px;}
.y7a{bottom:577.005000px;}
.ya7{bottom:577.185000px;}
.y189{bottom:578.805000px;}
.y120{bottom:579.885000px;}
.y14e{bottom:580.965000px;}
.y249{bottom:581.865000px;}
.y40{bottom:584.205000px;}
.ydf{bottom:585.105000px;}
.y237{bottom:585.285000px;}
.y1d3{bottom:586.185000px;}
.y94{bottom:587.265000px;}
.y1a8{bottom:592.845000px;}
.y62{bottom:593.745000px;}
.y15d{bottom:595.905000px;}
.y217{bottom:596.265000px;}
.y175{bottom:596.445000px;}
.y2a0{bottom:596.985000px;}
.y259{bottom:599.325000px;}
.y29{bottom:599.505000px;}
.yd1{bottom:600.045000px;}
.y1ec{bottom:600.765000px;}
.yde{bottom:601.125000px;}
.y226{bottom:602.925000px;}
.y1fe{bottom:603.285000px;}
.y284{bottom:607.245000px;}
.ybc{bottom:607.605000px;}
.yf{bottom:608.145000px;}
.ya6{bottom:608.325000px;}
.y188{bottom:609.945000px;}
.y11f{bottom:610.845000px;}
.y3f{bottom:615.345000px;}
.y267{bottom:616.245000px;}
.y236{bottom:616.425000px;}
.y93{bottom:618.405000px;}
.y1a7{bottom:623.985000px;}
.y61{bottom:624.885000px;}
.y1ca{bottom:625.065000px;}
.y14d{bottom:626.865000px;}
.y216{bottom:627.405000px;}
.y29f{bottom:627.945000px;}
.y1d2{bottom:629.385000px;}
.ya5{bottom:632.085000px;}
.y248{bottom:633.885000px;}
.y1fd{bottom:634.425000px;}
.y28{bottom:638.025000px;}
.y283{bottom:638.385000px;}
.ybb{bottom:638.745000px;}
.y79{bottom:639.105000px;}
.y187{bottom:641.085000px;}
.y11e{bottom:641.985000px;}
.yd0{bottom:646.125000px;}
.y3e{bottom:646.305000px;}
.ye{bottom:646.845000px;}
.y266{bottom:647.205000px;}
.y92{bottom:649.365000px;}
.y174{bottom:653.865000px;}
.y1a6{bottom:654.945000px;}
.y60{bottom:655.845000px;}
.y20b{bottom:656.025000px;}
.y14c{bottom:658.005000px;}
.y29e{bottom:659.085000px;}
.ya4{bottom:663.045000px;}
.y247{bottom:665.025000px;}
.y1fc{bottom:665.385000px;}
.y235{bottom:668.445000px;}
.y282{bottom:669.345000px;}
.yba{bottom:669.705000px;}
.y78{bottom:670.245000px;}
.y186{bottom:671.865000px;}
.y11d{bottom:672.945000px;}
.y27{bottom:676.545000px;}
.y3d{bottom:677.445000px;}
.y1eb{bottom:677.805000px;}
.y265{bottom:678.525000px;}
.y215{bottom:679.425000px;}
.y91{bottom:680.505000px;}
.y173{bottom:685.005000px;}
.yd{bottom:685.725000px;}
.y1a5{bottom:685.905000px;}
.y1d1{bottom:686.805000px;}
.y5f{bottom:686.985000px;}
.y2b6{bottom:687.165000px;}
.y14b{bottom:688.965000px;}
.y29d{bottom:690.045000px;}
.ycf{bottom:692.205000px;}
.ya3{bottom:694.185000px;}
.y246{bottom:695.985000px;}
.y234{bottom:699.405000px;}
.y281{bottom:700.485000px;}
.yb9{bottom:700.845000px;}
.y77{bottom:701.205000px;}
.y185{bottom:703.005000px;}
.y11c{bottom:703.905000px;}
.y258{bottom:706.965000px;}
.y3c{bottom:708.405000px;}
.y1fb{bottom:708.585000px;}
.y264{bottom:709.305000px;}
.y214{bottom:710.385000px;}
.y90{bottom:711.465000px;}
.y26{bottom:715.065000px;}
.y172{bottom:715.965000px;}
.y1a4{bottom:717.045000px;}
.y5e{bottom:717.945000px;}
.y2af{bottom:718.125000px;}
.y14a{bottom:720.105000px;}
.y10e{bottom:720.540000px;}
.y102{bottom:721.080000px;}
.y29c{bottom:721.185000px;}
.y1ea{bottom:723.885000px;}
.yc{bottom:724.605000px;}
.yf7{bottom:725.040000px;}
.ya2{bottom:725.145000px;}
.y245{bottom:727.125000px;}
.y233{bottom:730.545000px;}
.y280{bottom:731.445000px;}
.yb8{bottom:731.805000px;}
.y76{bottom:732.345000px;}
.y1d0{bottom:732.885000px;}
.y184{bottom:733.965000px;}
.y11b{bottom:735.045000px;}
.y15c{bottom:735.225000px;}
.yce{bottom:738.105000px;}
.y3b{bottom:739.545000px;}
.y10c{bottom:740.445000px;}
.y213{bottom:741.525000px;}
.y8f{bottom:742.605000px;}
.y171{bottom:747.105000px;}
.y101{bottom:747.285000px;}
.y253{bottom:748.005000px;}
.y5d{bottom:748.905000px;}
.y275{bottom:749.085000px;}
.y149{bottom:751.065000px;}
.y29b{bottom:752.145000px;}
.y25{bottom:753.765000px;}
.y1e9{bottom:755.025000px;}
.y135{bottom:757.545000px;}
.y232{bottom:761.505000px;}
.y27f{bottom:762.585000px;}
.yb7{bottom:762.945000px;}
.yb{bottom:763.305000px;}
.y1cf{bottom:764.025000px;}
.y183{bottom:765.105000px;}
.y2b9{bottom:765.285000px;}
.y1fa{bottom:766.005000px;}
.y1a3{bottom:769.065000px;}
.y3a{bottom:770.505000px;}
.y263{bottom:771.405000px;}
.y212{bottom:772.485000px;}
.y8e{bottom:773.565000px;}
.y170{bottom:778.065000px;}
.y244{bottom:779.145000px;}
.y5c{bottom:780.045000px;}
.y2b5{bottom:780.225000px;}
.y11a{bottom:781.125000px;}
.y148{bottom:782.205000px;}
.y29a{bottom:783.285000px;}
.ycd{bottom:784.185000px;}
.y1e8{bottom:785.985000px;}
.y134{bottom:788.505000px;}
.y24{bottom:792.285000px;}
.y231{bottom:792.645000px;}
.y27e{bottom:793.545000px;}
.yb6{bottom:793.905000px;}
.y75{bottom:794.445000px;}
.y182{bottom:796.065000px;}
.y1a2{bottom:800.205000px;}
.ya{bottom:801.105000px;}
.y39{bottom:801.645000px;}
.y262{bottom:802.545000px;}
.y211{bottom:803.625000px;}
.y8d{bottom:804.705000px;}
.y16f{bottom:809.205000px;}
.y1ce{bottom:810.105000px;}
.y5b{bottom:811.005000px;}
.y2b4{bottom:811.185000px;}
.y119{bottom:812.085000px;}
.y299{bottom:814.245000px;}
.y1e7{bottom:817.125000px;}
.y133{bottom:819.645000px;}
.y257{bottom:821.085000px;}
.y27d{bottom:824.685000px;}
.yb5{bottom:825.045000px;}
.y74{bottom:825.405000px;}
.y181{bottom:827.205000px;}
.y147{bottom:828.285000px;}
.ycc{bottom:830.265000px;}
.y23{bottom:830.805000px;}
.y1a1{bottom:831.165000px;}
.y9{bottom:832.065000px;}
.y38{bottom:832.605000px;}
.y261{bottom:833.505000px;}
.y210{bottom:834.585000px;}
.y8c{bottom:835.665000px;}
.y16e{bottom:840.210000px;}
.y1cd{bottom:841.110000px;}
.y5a{bottom:842.190000px;}
.y1c6{bottom:842.370000px;}
.y118{bottom:843.270000px;}
.y230{bottom:844.710000px;}
.y298{bottom:845.610000px;}
.y1e6{bottom:848.130000px;}
.y132{bottom:850.650000px;}
.y256{bottom:852.450000px;}
.yfd{bottom:855.150000px;}
.y27c{bottom:855.690000px;}
.yb4{bottom:856.050000px;}
.y73{bottom:856.590000px;}
.y180{bottom:858.210000px;}
.y1a0{bottom:862.350000px;}
.y37{bottom:863.790000px;}
.y260{bottom:864.690000px;}
.y20f{bottom:865.770000px;}
.y22{bottom:869.370000px;}
.y110{bottom:870.630000px;}
.y107{bottom:871.350000px;}
.y1cc{bottom:872.250000px;}
.y59{bottom:873.150000px;}
.y1c5{bottom:873.330000px;}
.y117{bottom:874.230000px;}
.y22f{bottom:875.850000px;}
.ycb{bottom:876.390000px;}
.y297{bottom:876.570000px;}
.y1e5{bottom:879.270000px;}
.y8b{bottom:881.790000px;}
.y8{bottom:882.870000px;}
.y255{bottom:883.410000px;}
.y27b{bottom:886.830000px;}
.yb3{bottom:887.190000px;}
.y72{bottom:887.550000px;}
.y17f{bottom:889.350000px;}
.y19f{bottom:893.310000px;}
.y36{bottom:894.750000px;}
.y25f{bottom:895.650000px;}
.y20e{bottom:896.730000px;}
.y16d{bottom:902.310000px;}
.y58{bottom:904.290000px;}
.y1c4{bottom:904.470000px;}
.y116{bottom:905.370000px;}
.y22e{bottom:906.810000px;}
.y296{bottom:907.710000px;}
.y21{bottom:907.890000px;}
.y8a{bottom:912.750000px;}
.y254{bottom:914.370000px;}
.y27a{bottom:917.790000px;}
.yb2{bottom:918.150000px;}
.y71{bottom:918.690000px;}
.y17e{bottom:920.310000px;}
.y1e4{bottom:922.290000px;}
.yca{bottom:922.470000px;}
.y19e{bottom:924.450000px;}
.y7{bottom:930.030000px;}
.y57{bottom:935.250000px;}
.y2b3{bottom:935.430000px;}
.y115{bottom:936.330000px;}
.y35{bottom:937.950000px;}
.y295{bottom:938.490000px;}
.y20d{bottom:939.930000px;}
.y25e{bottom:941.730000px;}
.y225{bottom:945.330000px;}
.y20{bottom:946.410000px;}
.y16c{bottom:948.570000px;}
.y279{bottom:948.930000px;}
.yb1{bottom:949.290000px;}
.y70{bottom:949.650000px;}
.y17d{bottom:951.450000px;}
.y15b{bottom:951.630000px;}
.y19d{bottom:955.410000px;}
.y89{bottom:955.950000px;}
.y131{bottom:958.830000px;}
.y56{bottom:966.390000px;}
.y2ae{bottom:966.570000px;}
.y146{bottom:967.470000px;}
.yc9{bottom:968.550000px;}
.y6{bottom:968.730000px;}
.y294{bottom:969.630000px;}
.y25d{bottom:972.870000px;}
.y224{bottom:976.470000px;}
.y1e3{bottom:979.890000px;}
.yb0{bottom:980.250000px;}
.y6f{bottom:980.790000px;}
.y114{bottom:982.410000px;}
.y1f{bottom:984.930000px;}
.y34{bottom:988.710000px;}
.y130{bottom:989.970000px;}
.y55{bottom:997.350000px;}
.y2ad{bottom:997.530000px;}
.y145{bottom:998.430000px;}
.y293{bottom:1000.770000px;}
.y25c{bottom:1003.830000px;}
.y19c{bottom:1007.430000px;}
.y5{bottom:1007.970000px;}
.y1e2{bottom:1010.850000px;}
.y278{bottom:1011.030000px;}
.yaf{bottom:1011.390000px;}
.y6e{bottom:1011.750000px;}
.y88{bottom:1013.550000px;}
.yc8{bottom:1014.450000px;}
.y33{bottom:1018.590000px;}
.y12f{bottom:1020.930000px;}
.y1e{bottom:1023.630000px;}
.y54{bottom:1028.490000px;}
.y2b2{bottom:1028.670000px;}
.y144{bottom:1029.570000px;}
.y292{bottom:1031.910000px;}
.y25b{bottom:1034.970000px;}
.y19b{bottom:1038.570000px;}
.y1e1{bottom:1041.990000px;}
.y6d{bottom:1042.890000px;}
.y87{bottom:1044.510000px;}
.y17c{bottom:1044.690000px;}
.yae{bottom:1054.410000px;}
.y53{bottom:1059.450000px;}
.y2b1{bottom:1059.630000px;}
.yc7{bottom:1060.530000px;}
.y1d{bottom:1062.150000px;}
.y291{bottom:1062.690000px;}
.y12e{bottom:1063.950000px;}
.y22d{bottom:1064.130000px;}
.y25a{bottom:1065.930000px;}
.y19a{bottom:1069.530000px;}
.y1e0{bottom:1072.950000px;}
.y277{bottom:1073.130000px;}
.y6c{bottom:1073.850000px;}
.y86{bottom:1075.470000px;}
.y143{bottom:1075.650000px;}
.y52{bottom:1090.590000px;}
.y1c3{bottom:1090.770000px;}
.y32{bottom:1097.610000px;}
.y199{bottom:1100.490000px;}
.y1df{bottom:1104.090000px;}
.y290{bottom:1104.270000px;}
.y6b{bottom:1104.990000px;}
.yad{bottom:1105.170000px;}
.yc6{bottom:1106.610000px;}
.y1c{bottom:1108.230000px;}
.y111{bottom:1115.100000px;}
.y51{bottom:1121.580000px;}
.y1c2{bottom:1121.760000px;}
.yac{bottom:1135.080000px;}
.y276{bottom:1135.260000px;}
.y1b{bottom:1138.140000px;}
.y1de{bottom:1147.140000px;}
.y6a{bottom:1147.860000px;}
.y50{bottom:1152.720000px;}
.y198{bottom:1152.900000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h13{height:46.980000px;}
.h2{height:47.545312px;}
.hd{height:50.312812px;}
.h15{height:64.546875px;}
.h3{height:75.093750px;}
.h14{height:75.243937px;}
.ha{height:83.432813px;}
.h6{height:90.070312px;}
.h5{height:92.129062px;}
.h9{height:93.605625px;}
.h8{height:96.508125px;}
.h16{height:99.874688px;}
.h7{height:100.687500px;}
.hb{height:103.359375px;}
.h4{height:108.843750px;}
.he{height:181.080000px;}
.hc{height:185.040000px;}
.hf{height:185.760000px;}
.h10{height:326.520000px;}
.h11{height:331.020000px;}
.h12{height:331.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:181.080000px;}
.w2{width:187.020000px;}
.w3{width:193.500000px;}
.w5{width:361.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:10.836000px;}
.x15{left:19.335000px;}
.x2b{left:23.325000px;}
.x1e{left:26.490000px;}
.x24{left:31.965000px;}
.x1c{left:78.015000px;}
.x2{left:84.960000px;}
.xd{left:99.756000px;}
.xc{left:101.556000px;}
.x2c{left:112.500000px;}
.xf{left:115.416000px;}
.x12{left:117.036000px;}
.x2e{left:123.336000px;}
.x5{left:136.296000px;}
.x13{left:138.096000px;}
.x10{left:142.416000px;}
.x8{left:167.790000px;}
.x1d{left:174.780000px;}
.x11{left:191.370000px;}
.x22{left:205.050000px;}
.x21{left:213.150000px;}
.x9{left:214.230000px;}
.x6{left:216.210000px;}
.x35{left:217.830000px;}
.x1f{left:229.710000px;}
.x20{left:245.370000px;}
.x33{left:270.540000px;}
.xb{left:302.295000px;}
.x4{left:304.635000px;}
.x7{left:327.855000px;}
.xe{left:335.415000px;}
.x2f{left:346.500000px;}
.x14{left:348.480000px;}
.x30{left:357.375000px;}
.x19{left:362.955000px;}
.x16{left:365.655000px;}
.x18{left:368.715000px;}
.x1b{left:375.015000px;}
.xa{left:381.495000px;}
.x1a{left:420.735000px;}
.x17{left:434.055000px;}
.x34{left:438.015000px;}
.x3{left:442.335000px;}
.x1{left:446.475000px;}
.x23{left:527.760000px;}
.x27{left:541.725000px;}
.x25{left:546.945000px;}
.x2a{left:549.285000px;}
.x28{left:552.345000px;}
.x26{left:578.085000px;}
.x31{left:582.660000px;}
.x32{left:593.565000px;}
.x29{left:595.365000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.239360pt;}
.ls9{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.346027pt;}
.ls15{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.416000pt;}
.ls16{letter-spacing:2.048000pt;}
.ls1c{letter-spacing:2.688000pt;}
.ls18{letter-spacing:6.528000pt;}
.ls1d{letter-spacing:8.448000pt;}
.ls1b{letter-spacing:11.008000pt;}
.ls6{letter-spacing:19.328000pt;}
.ls1e{letter-spacing:21.248000pt;}
.lsb{letter-spacing:30.848000pt;}
.ls7{letter-spacing:739.338667pt;}
.ls5{letter-spacing:749.608107pt;}
.wse{word-spacing:-28.160000pt;}
.ws2{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws1{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.664000pt;}
.wsf{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.280000pt;}
.wsd{word-spacing:-17.024000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws6{word-spacing:-12.160107pt;}
.ws7{word-spacing:-11.920640pt;}
.ws9{word-spacing:-11.721707pt;}
.wsa{word-spacing:-11.681173pt;}
.ws8{word-spacing:-11.600640pt;}
.ws0{word-spacing:0.000000pt;}
._21{margin-left:-16.896000pt;}
._8{margin-left:-15.957333pt;}
._5{margin-left:-14.805333pt;}
._a{margin-left:-13.781333pt;}
._29{margin-left:-12.757333pt;}
._b{margin-left:-11.221333pt;}
._39{margin-left:-10.165333pt;}
._9{margin-left:-8.469333pt;}
._6{margin-left:-6.613333pt;}
._37{margin-left:-5.589333pt;}
._7{margin-left:-4.437333pt;}
._4{margin-left:-3.477333pt;}
._38{margin-left:-2.517333pt;}
._2{margin-left:-1.024000pt;}
._1{width:0.928000pt;}
._e{width:2.528000pt;}
._f{width:4.106667pt;}
._10{width:5.376000pt;}
._11{width:6.570667pt;}
._16{width:8.256000pt;}
._d{width:9.216000pt;}
._c{width:10.218667pt;}
._15{width:11.637333pt;}
._13{width:12.714667pt;}
._14{width:14.400000pt;}
._17{width:15.658667pt;}
._1f{width:16.810667pt;}
._18{width:19.264000pt;}
._26{width:20.266667pt;}
._19{width:21.365333pt;}
._28{width:22.442667pt;}
._2c{width:24.192000pt;}
._27{width:25.098667pt;}
._1c{width:26.752000pt;}
._31{width:28.533760pt;}
._22{width:29.504000pt;}
._25{width:30.464000pt;}
._23{width:31.562667pt;}
._20{width:32.480000pt;}
._35{width:33.384960pt;}
._2e{width:35.136000pt;}
._2d{width:36.224000pt;}
._36{width:37.120000pt;}
._3c{width:38.848000pt;}
._45{width:39.744000pt;}
._3f{width:40.736000pt;}
._3e{width:41.664000pt;}
._3d{width:42.944000pt;}
._1b{width:44.234667pt;}
._2a{width:45.280000pt;}
._1e{width:49.546667pt;}
._33{width:54.817280pt;}
._2b{width:59.072000pt;}
._42{width:60.437333pt;}
._24{width:62.122667pt;}
._41{width:68.672000pt;}
._3b{width:70.037333pt;}
._1d{width:70.954667pt;}
._32{width:100.743680pt;}
._34{width:110.438400pt;}
._1a{width:156.266667pt;}
._40{width:169.088000pt;}
._3a{width:171.136000pt;}
._44{width:228.640000pt;}
._43{width:230.058667pt;}
._2f{width:750.474667pt;}
._3{width:1143.648213pt;}
._30{width:1197.706667pt;}
._0{width:1410.959787pt;}
._12{width:1710.453333pt;}
._46{width:1944.576000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs6{font-size:82.560000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.fs4{font-size:128.000000pt;}
.y10d{bottom:-16.706667pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:1.666667pt;}
.yf6{bottom:3.066667pt;}
.y113{bottom:8.613333pt;}
.y112{bottom:27.040000pt;}
.y10b{bottom:38.013333pt;}
.y100{bottom:40.573333pt;}
.y4{bottom:51.232000pt;}
.y10a{bottom:58.653333pt;}
.yff{bottom:61.213333pt;}
.y3{bottom:69.152000pt;}
.y109{bottom:79.133333pt;}
.yfe{bottom:81.853333pt;}
.y108{bottom:99.773333pt;}
.y197{bottom:100.352000pt;}
.y16b{bottom:103.232000pt;}
.y4f{bottom:105.312000pt;}
.y274{bottom:106.112000pt;}
.y1b5{bottom:108.352000pt;}
.y1dd{bottom:108.992000pt;}
.y20a{bottom:109.952000pt;}
.y20c{bottom:113.792000pt;}
.y1c1{bottom:113.952000pt;}
.y85{bottom:114.112000pt;}
.y2ac{bottom:116.672000pt;}
.y142{bottom:117.152000pt;}
.y15a{bottom:118.432000pt;}
.ydb{bottom:124.032000pt;}
.y243{bottom:124.192000pt;}
.y196{bottom:128.032000pt;}
.y12d{bottom:129.952000pt;}
.y16a{bottom:130.752000pt;}
.y4e{bottom:132.992000pt;}
.y273{bottom:133.786667pt;}
.y17b{bottom:133.946667pt;}
.y1f9{bottom:135.226667pt;}
.yfc{bottom:136.293333pt;}
.y209{bottom:137.466667pt;}
.y1bc{bottom:141.306667pt;}
.y1c0{bottom:141.466667pt;}
.y84{bottom:141.786667pt;}
.y2ab{bottom:144.186667pt;}
.y141{bottom:144.826667pt;}
.y159{bottom:145.946667pt;}
.y1b4{bottom:149.146667pt;}
.y1dc{bottom:149.786667pt;}
.ye7{bottom:151.106667pt;}
.y242{bottom:151.706667pt;}
.y106{bottom:154.373333pt;}
.ydd{bottom:154.653333pt;}
.yef{bottom:155.266667pt;}
.y195{bottom:155.546667pt;}
.yfb{bottom:156.933333pt;}
.y12c{bottom:157.466667pt;}
.y252{bottom:157.626667pt;}
.y169{bottom:158.426667pt;}
.y4d{bottom:160.506667pt;}
.y1a{bottom:161.146667pt;}
.y272{bottom:161.306667pt;}
.y223{bottom:161.466667pt;}
.y1f8{bottom:162.746667pt;}
.ya1{bottom:163.226667pt;}
.yda{bottom:164.986667pt;}
.y208{bottom:165.146667pt;}
.y1bb{bottom:168.986667pt;}
.y1bf{bottom:169.146667pt;}
.y83{bottom:169.306667pt;}
.y2aa{bottom:171.866667pt;}
.y140{bottom:172.346667pt;}
.y158{bottom:173.626667pt;}
.y17a{bottom:174.746667pt;}
.y105{bottom:174.853333pt;}
.y10f{bottom:175.013333pt;}
.y1b3{bottom:176.826667pt;}
.y1db{bottom:177.466667pt;}
.yfa{bottom:177.573333pt;}
.y194{bottom:183.226667pt;}
.y12b{bottom:185.146667pt;}
.y168{bottom:185.946667pt;}
.yee{bottom:187.040000pt;}
.y4c{bottom:188.186667pt;}
.y271{bottom:188.986667pt;}
.y222{bottom:189.146667pt;}
.y1f7{bottom:190.426667pt;}
.ya0{bottom:190.746667pt;}
.ye6{bottom:192.640000pt;}
.y207{bottom:192.666667pt;}
.y104{bottom:195.493333pt;}
.y19{bottom:195.546667pt;}
.y1ba{bottom:196.506667pt;}
.y82{bottom:196.826667pt;}
.y241{bottom:197.946667pt;}
.yf9{bottom:198.053333pt;}
.y2a9{bottom:199.386667pt;}
.y13f{bottom:200.026667pt;}
.yf5{bottom:204.186667pt;}
.y1b2{bottom:204.346667pt;}
.y1da{bottom:204.986667pt;}
.yed{bottom:205.466667pt;}
.yd9{bottom:205.786667pt;}
.y28f{bottom:208.666667pt;}
.y193{bottom:210.746667pt;}
.y12a{bottom:212.666667pt;}
.y22c{bottom:213.626667pt;}
.y157{bottom:214.746667pt;}
.y4b{bottom:215.706667pt;}
.y103{bottom:216.133333pt;}
.y270{bottom:216.506667pt;}
.y221{bottom:216.666667pt;}
.y1f6{bottom:217.946667pt;}
.y9f{bottom:218.426667pt;}
.yf8{bottom:218.693333pt;}
.y206{bottom:220.186667pt;}
.yc5{bottom:224.186667pt;}
.y2b0{bottom:224.346667pt;}
.y240{bottom:225.626667pt;}
.y167{bottom:227.066667pt;}
.y2a8{bottom:227.226667pt;}
.y13e{bottom:227.546667pt;}
.y18{bottom:230.106667pt;}
.y251{bottom:231.386667pt;}
.yf4{bottom:231.706667pt;}
.y1b1{bottom:232.026667pt;}
.y1d9{bottom:232.666667pt;}
.yec{bottom:232.986667pt;}
.y28e{bottom:236.186667pt;}
.y81{bottom:237.786667pt;}
.y192{bottom:238.426667pt;}
.y22b{bottom:241.146667pt;}
.y4a{bottom:243.426667pt;}
.y26f{bottom:244.226667pt;}
.yf3{bottom:245.786667pt;}
.y9e{bottom:245.986667pt;}
.yd8{bottom:246.786667pt;}
.yeb{bottom:247.066667pt;}
.y205{bottom:247.906667pt;}
.y1b9{bottom:251.746667pt;}
.y1c9{bottom:251.906667pt;}
.y23f{bottom:253.186667pt;}
.y129{bottom:253.666667pt;}
.y2a7{bottom:254.786667pt;}
.y156{bottom:255.426667pt;}
.y31{bottom:258.786667pt;}
.y1f5{bottom:258.946667pt;}
.y250{bottom:259.106667pt;}
.y1b0{bottom:259.586667pt;}
.y220{bottom:262.946667pt;}
.y28d{bottom:263.906667pt;}
.y17{bottom:264.546667pt;}
.yc4{bottom:265.026667pt;}
.y80{bottom:265.506667pt;}
.y13d{bottom:265.986667pt;}
.y166{bottom:267.906667pt;}
.y22a{bottom:268.866667pt;}
.y49{bottom:270.946667pt;}
.y26e{bottom:271.746667pt;}
.yf2{bottom:273.186667pt;}
.y9d{bottom:273.666667pt;}
.yea{bottom:274.626667pt;}
.y204{bottom:275.586667pt;}
.y1b8{bottom:279.426667pt;}
.y1c8{bottom:279.586667pt;}
.y23e{bottom:280.866667pt;}
.y128{bottom:281.186667pt;}
.y2a6{bottom:282.306667pt;}
.y155{bottom:283.106667pt;}
.y1f4{bottom:286.626667pt;}
.yd7{bottom:287.746667pt;}
.y21f{bottom:290.626667pt;}
.y28c{bottom:291.426667pt;}
.yc3{bottom:292.706667pt;}
.y30{bottom:293.026667pt;}
.y191{bottom:293.666667pt;}
.y165{bottom:295.426667pt;}
.y229{bottom:296.386667pt;}
.y1af{bottom:296.706667pt;}
.y48{bottom:298.466667pt;}
.y179{bottom:298.626667pt;}
.y16{bottom:299.106667pt;}
.y26d{bottom:299.426667pt;}
.yf1{bottom:300.706667pt;}
.y9c{bottom:301.186667pt;}
.ye9{bottom:301.986667pt;}
.y203{bottom:303.106667pt;}
.y1b7{bottom:306.946667pt;}
.y2b8{bottom:307.106667pt;}
.y23d{bottom:308.386667pt;}
.y127{bottom:308.866667pt;}
.y2a5{bottom:309.986667pt;}
.y154{bottom:310.626667pt;}
.y13c{bottom:311.106667pt;}
.y1f3{bottom:314.146667pt;}
.y24f{bottom:314.306667pt;}
.yf0{bottom:314.786667pt;}
.ye8{bottom:316.066667pt;}
.y69{bottom:316.706667pt;}
.y21e{bottom:318.146667pt;}
.y28b{bottom:318.946667pt;}
.yc2{bottom:320.226667pt;}
.y7f{bottom:320.706667pt;}
.y190{bottom:321.186667pt;}
.y164{bottom:323.106667pt;}
.y228{bottom:324.066667pt;}
.y47{bottom:326.146667pt;}
.y26c{bottom:326.946667pt;}
.y2f{bottom:327.266667pt;}
.yd6{bottom:328.706667pt;}
.y9b{bottom:328.866667pt;}
.y15{bottom:333.506667pt;}
.y1b6{bottom:334.626667pt;}
.y1be{bottom:334.786667pt;}
.y23c{bottom:336.066667pt;}
.y126{bottom:336.386667pt;}
.y2a4{bottom:337.506667pt;}
.y153{bottom:338.306667pt;}
.y1ae{bottom:342.626667pt;}
.y202{bottom:344.066667pt;}
.y13b{bottom:345.026667pt;}
.y21d{bottom:345.826667pt;}
.y28a{bottom:346.626667pt;}
.yc1{bottom:347.906667pt;}
.y18f{bottom:348.866667pt;}
.y163{bottom:350.626667pt;}
.y46{bottom:353.666667pt;}
.y178{bottom:353.826667pt;}
.y26b{bottom:354.626667pt;}
.y1f2{bottom:355.106667pt;}
.y9a{bottom:356.546667pt;}
.y24e{bottom:360.546667pt;}
.y2e{bottom:361.506667pt;}
.y7e{bottom:361.666667pt;}
.y68{bottom:362.146667pt;}
.y1bd{bottom:362.306667pt;}
.y23b{bottom:363.586667pt;}
.y125{bottom:364.066667pt;}
.y2a3{bottom:365.026667pt;}
.y14{bottom:368.066667pt;}
.yd5{bottom:369.666667pt;}
.y1d8{bottom:369.826667pt;}
.y1ad{bottom:370.306667pt;}
.y201{bottom:371.586667pt;}
.y21c{bottom:373.346667pt;}
.y289{bottom:374.146667pt;}
.yc0{bottom:375.426667pt;}
.y18e{bottom:376.386667pt;}
.y162{bottom:378.306667pt;}
.y152{bottom:379.426667pt;}
.yab{bottom:380.226667pt;}
.y45{bottom:381.346667pt;}
.y26a{bottom:382.146667pt;}
.y1f1{bottom:382.626667pt;}
.y99{bottom:384.066667pt;}
.y13a{bottom:385.026667pt;}
.y24d{bottom:388.226667pt;}
.y67{bottom:389.826667pt;}
.y124{bottom:391.586667pt;}
.y2a2{bottom:392.546667pt;}
.y2d{bottom:395.746667pt;}
.y1d7{bottom:397.346667pt;}
.y1ac{bottom:397.826667pt;}
.y21b{bottom:401.026667pt;}
.y288{bottom:401.826667pt;}
.y7d{bottom:402.466667pt;}
.y13{bottom:402.626667pt;}
.y18d{bottom:404.066667pt;}
.y161{bottom:405.826667pt;}
.ydc{bottom:407.200000pt;}
.y44{bottom:408.866667pt;}
.y177{bottom:409.026667pt;}
.y23a{bottom:409.826667pt;}
.y1f0{bottom:410.306667pt;}
.yd4{bottom:410.626667pt;}
.y98{bottom:411.586667pt;}
.y139{bottom:412.546667pt;}
.ybf{bottom:416.386667pt;}
.y66{bottom:417.346667pt;}
.y123{bottom:419.266667pt;}
.y151{bottom:420.226667pt;}
.ye4{bottom:422.946667pt;}
.y1ab{bottom:425.506667pt;}
.y21a{bottom:428.546667pt;}
.y287{bottom:429.346667pt;}
.y2c{bottom:430.146667pt;}
.y18c{bottom:431.586667pt;}
.y160{bottom:433.506667pt;}
.y24c{bottom:434.466667pt;}
.y43{bottom:436.546667pt;}
.yaa{bottom:436.706667pt;}
.y12{bottom:437.026667pt;}
.y269{bottom:437.346667pt;}
.y239{bottom:437.506667pt;}
.y1d6{bottom:438.306667pt;}
.y97{bottom:439.266667pt;}
.y200{bottom:440.226667pt;}
.ybe{bottom:444.066667pt;}
.y65{bottom:445.026667pt;}
.y2b7{bottom:445.186667pt;}
.y122{bottom:446.786667pt;}
.y150{bottom:447.746667pt;}
.ye3{bottom:450.306667pt;}
.y1ef{bottom:451.266667pt;}
.yd3{bottom:451.426667pt;}
.y1aa{bottom:453.026667pt;}
.y138{bottom:453.506667pt;}
.y286{bottom:457.026667pt;}
.y7c{bottom:457.666667pt;}
.y18b{bottom:459.266667pt;}
.y2ba{bottom:459.426667pt;}
.y15f{bottom:461.026667pt;}
.y24b{bottom:461.986667pt;}
.y42{bottom:464.066667pt;}
.ya9{bottom:464.226667pt;}
.y2b{bottom:464.386667pt;}
.ye2{bottom:464.546667pt;}
.y238{bottom:465.026667pt;}
.y1d5{bottom:465.826667pt;}
.y96{bottom:466.786667pt;}
.y1ff{bottom:467.746667pt;}
.y11{bottom:471.586667pt;}
.y64{bottom:472.546667pt;}
.y219{bottom:474.786667pt;}
.y14f{bottom:475.426667pt;}
.ye1{bottom:478.626667pt;}
.y1ee{bottom:478.786667pt;}
.y1a9{bottom:480.706667pt;}
.y137{bottom:481.026667pt;}
.y285{bottom:484.546667pt;}
.y7b{bottom:485.346667pt;}
.ya8{bottom:485.506667pt;}
.y18a{bottom:486.786667pt;}
.y121{bottom:487.746667pt;}
.y24a{bottom:489.666667pt;}
.y41{bottom:491.746667pt;}
.y176{bottom:491.906667pt;}
.yd2{bottom:492.386667pt;}
.y268{bottom:492.546667pt;}
.ye0{bottom:492.706667pt;}
.y1d4{bottom:493.506667pt;}
.y95{bottom:494.493333pt;}
.y2a{bottom:498.653333pt;}
.ybd{bottom:499.293333pt;}
.y63{bottom:500.253333pt;}
.y1c7{bottom:500.413333pt;}
.y15e{bottom:502.013333pt;}
.y218{bottom:502.493333pt;}
.y2a1{bottom:502.973333pt;}
.y10{bottom:506.013333pt;}
.y1ed{bottom:506.493333pt;}
.y227{bottom:508.253333pt;}
.y136{bottom:508.733333pt;}
.y1cb{bottom:512.253333pt;}
.y7a{bottom:512.893333pt;}
.ya7{bottom:513.053333pt;}
.y189{bottom:514.493333pt;}
.y120{bottom:515.453333pt;}
.y14e{bottom:516.413333pt;}
.y249{bottom:517.213333pt;}
.y40{bottom:519.293333pt;}
.ydf{bottom:520.093333pt;}
.y237{bottom:520.253333pt;}
.y1d3{bottom:521.053333pt;}
.y94{bottom:522.013333pt;}
.y1a8{bottom:526.973333pt;}
.y62{bottom:527.773333pt;}
.y15d{bottom:529.693333pt;}
.y217{bottom:530.013333pt;}
.y175{bottom:530.173333pt;}
.y2a0{bottom:530.653333pt;}
.y259{bottom:532.733333pt;}
.y29{bottom:532.893333pt;}
.yd1{bottom:533.373333pt;}
.y1ec{bottom:534.013333pt;}
.yde{bottom:534.333333pt;}
.y226{bottom:535.933333pt;}
.y1fe{bottom:536.253333pt;}
.y284{bottom:539.773333pt;}
.ybc{bottom:540.093333pt;}
.yf{bottom:540.573333pt;}
.ya6{bottom:540.733333pt;}
.y188{bottom:542.173333pt;}
.y11f{bottom:542.973333pt;}
.y3f{bottom:546.973333pt;}
.y267{bottom:547.773333pt;}
.y236{bottom:547.933333pt;}
.y93{bottom:549.693333pt;}
.y1a7{bottom:554.653333pt;}
.y61{bottom:555.453333pt;}
.y1ca{bottom:555.613333pt;}
.y14d{bottom:557.213333pt;}
.y216{bottom:557.693333pt;}
.y29f{bottom:558.173333pt;}
.y1d2{bottom:559.453333pt;}
.ya5{bottom:561.853333pt;}
.y248{bottom:563.453333pt;}
.y1fd{bottom:563.933333pt;}
.y28{bottom:567.133333pt;}
.y283{bottom:567.453333pt;}
.ybb{bottom:567.773333pt;}
.y79{bottom:568.093333pt;}
.y187{bottom:569.853333pt;}
.y11e{bottom:570.653333pt;}
.yd0{bottom:574.333333pt;}
.y3e{bottom:574.493333pt;}
.ye{bottom:574.973333pt;}
.y266{bottom:575.293333pt;}
.y92{bottom:577.213333pt;}
.y174{bottom:581.213333pt;}
.y1a6{bottom:582.173333pt;}
.y60{bottom:582.973333pt;}
.y20b{bottom:583.133333pt;}
.y14c{bottom:584.893333pt;}
.y29e{bottom:585.853333pt;}
.ya4{bottom:589.373333pt;}
.y247{bottom:591.133333pt;}
.y1fc{bottom:591.453333pt;}
.y235{bottom:594.173333pt;}
.y282{bottom:594.973333pt;}
.yba{bottom:595.293333pt;}
.y78{bottom:595.773333pt;}
.y186{bottom:597.213333pt;}
.y11d{bottom:598.173333pt;}
.y27{bottom:601.373333pt;}
.y3d{bottom:602.173333pt;}
.y1eb{bottom:602.493333pt;}
.y265{bottom:603.133333pt;}
.y215{bottom:603.933333pt;}
.y91{bottom:604.893333pt;}
.y173{bottom:608.893333pt;}
.yd{bottom:609.533333pt;}
.y1a5{bottom:609.693333pt;}
.y1d1{bottom:610.493333pt;}
.y5f{bottom:610.653333pt;}
.y2b6{bottom:610.813333pt;}
.y14b{bottom:612.413333pt;}
.y29d{bottom:613.373333pt;}
.ycf{bottom:615.293333pt;}
.ya3{bottom:617.053333pt;}
.y246{bottom:618.653333pt;}
.y234{bottom:621.693333pt;}
.y281{bottom:622.653333pt;}
.yb9{bottom:622.973333pt;}
.y77{bottom:623.293333pt;}
.y185{bottom:624.893333pt;}
.y11c{bottom:625.693333pt;}
.y258{bottom:628.413333pt;}
.y3c{bottom:629.693333pt;}
.y1fb{bottom:629.853333pt;}
.y264{bottom:630.493333pt;}
.y214{bottom:631.453333pt;}
.y90{bottom:632.413333pt;}
.y26{bottom:635.613333pt;}
.y172{bottom:636.413333pt;}
.y1a4{bottom:637.373333pt;}
.y5e{bottom:638.173333pt;}
.y2af{bottom:638.333333pt;}
.y14a{bottom:640.093333pt;}
.y10e{bottom:640.480000pt;}
.y102{bottom:640.960000pt;}
.y29c{bottom:641.053333pt;}
.y1ea{bottom:643.453333pt;}
.yc{bottom:644.093333pt;}
.yf7{bottom:644.480000pt;}
.ya2{bottom:644.573333pt;}
.y245{bottom:646.333333pt;}
.y233{bottom:649.373333pt;}
.y280{bottom:650.173333pt;}
.yb8{bottom:650.493333pt;}
.y76{bottom:650.973333pt;}
.y1d0{bottom:651.453333pt;}
.y184{bottom:652.413333pt;}
.y11b{bottom:653.373333pt;}
.y15c{bottom:653.533333pt;}
.yce{bottom:656.093333pt;}
.y3b{bottom:657.373333pt;}
.y10c{bottom:658.173333pt;}
.y213{bottom:659.133333pt;}
.y8f{bottom:660.093333pt;}
.y171{bottom:664.093333pt;}
.y101{bottom:664.253333pt;}
.y253{bottom:664.893333pt;}
.y5d{bottom:665.693333pt;}
.y275{bottom:665.853333pt;}
.y149{bottom:667.613333pt;}
.y29b{bottom:668.573333pt;}
.y25{bottom:670.013333pt;}
.y1e9{bottom:671.133333pt;}
.y135{bottom:673.373333pt;}
.y232{bottom:676.893333pt;}
.y27f{bottom:677.853333pt;}
.yb7{bottom:678.173333pt;}
.yb{bottom:678.493333pt;}
.y1cf{bottom:679.133333pt;}
.y183{bottom:680.093333pt;}
.y2b9{bottom:680.253333pt;}
.y1fa{bottom:680.893333pt;}
.y1a3{bottom:683.613333pt;}
.y3a{bottom:684.893333pt;}
.y263{bottom:685.693333pt;}
.y212{bottom:686.653333pt;}
.y8e{bottom:687.613333pt;}
.y170{bottom:691.613333pt;}
.y244{bottom:692.573333pt;}
.y5c{bottom:693.373333pt;}
.y2b5{bottom:693.533333pt;}
.y11a{bottom:694.333333pt;}
.y148{bottom:695.293333pt;}
.y29a{bottom:696.253333pt;}
.ycd{bottom:697.053333pt;}
.y1e8{bottom:698.653333pt;}
.y134{bottom:700.893333pt;}
.y24{bottom:704.253333pt;}
.y231{bottom:704.573333pt;}
.y27e{bottom:705.373333pt;}
.yb6{bottom:705.693333pt;}
.y75{bottom:706.173333pt;}
.y182{bottom:707.613333pt;}
.y1a2{bottom:711.293333pt;}
.ya{bottom:712.093333pt;}
.y39{bottom:712.573333pt;}
.y262{bottom:713.373333pt;}
.y211{bottom:714.333333pt;}
.y8d{bottom:715.293333pt;}
.y16f{bottom:719.293333pt;}
.y1ce{bottom:720.093333pt;}
.y5b{bottom:720.893333pt;}
.y2b4{bottom:721.053333pt;}
.y119{bottom:721.853333pt;}
.y299{bottom:723.773333pt;}
.y1e7{bottom:726.333333pt;}
.y133{bottom:728.573333pt;}
.y257{bottom:729.853333pt;}
.y27d{bottom:733.053333pt;}
.yb5{bottom:733.373333pt;}
.y74{bottom:733.693333pt;}
.y181{bottom:735.293333pt;}
.y147{bottom:736.253333pt;}
.ycc{bottom:738.013333pt;}
.y23{bottom:738.493333pt;}
.y1a1{bottom:738.813333pt;}
.y9{bottom:739.613333pt;}
.y38{bottom:740.093333pt;}
.y261{bottom:740.893333pt;}
.y210{bottom:741.853333pt;}
.y8c{bottom:742.813333pt;}
.y16e{bottom:746.853333pt;}
.y1cd{bottom:747.653333pt;}
.y5a{bottom:748.613333pt;}
.y1c6{bottom:748.773333pt;}
.y118{bottom:749.573333pt;}
.y230{bottom:750.853333pt;}
.y298{bottom:751.653333pt;}
.y1e6{bottom:753.893333pt;}
.y132{bottom:756.133333pt;}
.y256{bottom:757.733333pt;}
.yfd{bottom:760.133333pt;}
.y27c{bottom:760.613333pt;}
.yb4{bottom:760.933333pt;}
.y73{bottom:761.413333pt;}
.y180{bottom:762.853333pt;}
.y1a0{bottom:766.533333pt;}
.y37{bottom:767.813333pt;}
.y260{bottom:768.613333pt;}
.y20f{bottom:769.573333pt;}
.y22{bottom:772.773333pt;}
.y110{bottom:773.893333pt;}
.y107{bottom:774.533333pt;}
.y1cc{bottom:775.333333pt;}
.y59{bottom:776.133333pt;}
.y1c5{bottom:776.293333pt;}
.y117{bottom:777.093333pt;}
.y22f{bottom:778.533333pt;}
.ycb{bottom:779.013333pt;}
.y297{bottom:779.173333pt;}
.y1e5{bottom:781.573333pt;}
.y8b{bottom:783.813333pt;}
.y8{bottom:784.773333pt;}
.y255{bottom:785.253333pt;}
.y27b{bottom:788.293333pt;}
.yb3{bottom:788.613333pt;}
.y72{bottom:788.933333pt;}
.y17f{bottom:790.533333pt;}
.y19f{bottom:794.053333pt;}
.y36{bottom:795.333333pt;}
.y25f{bottom:796.133333pt;}
.y20e{bottom:797.093333pt;}
.y16d{bottom:802.053333pt;}
.y58{bottom:803.813333pt;}
.y1c4{bottom:803.973333pt;}
.y116{bottom:804.773333pt;}
.y22e{bottom:806.053333pt;}
.y296{bottom:806.853333pt;}
.y21{bottom:807.013333pt;}
.y8a{bottom:811.333333pt;}
.y254{bottom:812.773333pt;}
.y27a{bottom:815.813333pt;}
.yb2{bottom:816.133333pt;}
.y71{bottom:816.613333pt;}
.y17e{bottom:818.053333pt;}
.y1e4{bottom:819.813333pt;}
.yca{bottom:819.973333pt;}
.y19e{bottom:821.733333pt;}
.y7{bottom:826.693333pt;}
.y57{bottom:831.333333pt;}
.y2b3{bottom:831.493333pt;}
.y115{bottom:832.293333pt;}
.y35{bottom:833.733333pt;}
.y295{bottom:834.213333pt;}
.y20d{bottom:835.493333pt;}
.y25e{bottom:837.093333pt;}
.y225{bottom:840.293333pt;}
.y20{bottom:841.253333pt;}
.y16c{bottom:843.173333pt;}
.y279{bottom:843.493333pt;}
.yb1{bottom:843.813333pt;}
.y70{bottom:844.133333pt;}
.y17d{bottom:845.733333pt;}
.y15b{bottom:845.893333pt;}
.y19d{bottom:849.253333pt;}
.y89{bottom:849.733333pt;}
.y131{bottom:852.293333pt;}
.y56{bottom:859.013333pt;}
.y2ae{bottom:859.173333pt;}
.y146{bottom:859.973333pt;}
.yc9{bottom:860.933333pt;}
.y6{bottom:861.093333pt;}
.y294{bottom:861.893333pt;}
.y25d{bottom:864.773333pt;}
.y224{bottom:867.973333pt;}
.y1e3{bottom:871.013333pt;}
.yb0{bottom:871.333333pt;}
.y6f{bottom:871.813333pt;}
.y114{bottom:873.253333pt;}
.y1f{bottom:875.493333pt;}
.y34{bottom:878.853333pt;}
.y130{bottom:879.973333pt;}
.y55{bottom:886.533333pt;}
.y2ad{bottom:886.693333pt;}
.y145{bottom:887.493333pt;}
.y293{bottom:889.573333pt;}
.y25c{bottom:892.293333pt;}
.y19c{bottom:895.493333pt;}
.y5{bottom:895.973333pt;}
.y1e2{bottom:898.533333pt;}
.y278{bottom:898.693333pt;}
.yaf{bottom:899.013333pt;}
.y6e{bottom:899.333333pt;}
.y88{bottom:900.933333pt;}
.yc8{bottom:901.733333pt;}
.y33{bottom:905.413333pt;}
.y12f{bottom:907.493333pt;}
.y1e{bottom:909.893333pt;}
.y54{bottom:914.213333pt;}
.y2b2{bottom:914.373333pt;}
.y144{bottom:915.173333pt;}
.y292{bottom:917.253333pt;}
.y25b{bottom:919.973333pt;}
.y19b{bottom:923.173333pt;}
.y1e1{bottom:926.213333pt;}
.y6d{bottom:927.013333pt;}
.y87{bottom:928.453333pt;}
.y17c{bottom:928.613333pt;}
.yae{bottom:937.253333pt;}
.y53{bottom:941.733333pt;}
.y2b1{bottom:941.893333pt;}
.yc7{bottom:942.693333pt;}
.y1d{bottom:944.133333pt;}
.y291{bottom:944.613333pt;}
.y12e{bottom:945.733333pt;}
.y22d{bottom:945.893333pt;}
.y25a{bottom:947.493333pt;}
.y19a{bottom:950.693333pt;}
.y1e0{bottom:953.733333pt;}
.y277{bottom:953.893333pt;}
.y6c{bottom:954.533333pt;}
.y86{bottom:955.973333pt;}
.y143{bottom:956.133333pt;}
.y52{bottom:969.413333pt;}
.y1c3{bottom:969.573333pt;}
.y32{bottom:975.653333pt;}
.y199{bottom:978.213333pt;}
.y1df{bottom:981.413333pt;}
.y290{bottom:981.573333pt;}
.y6b{bottom:982.213333pt;}
.yad{bottom:982.373333pt;}
.yc6{bottom:983.653333pt;}
.y1c{bottom:985.093333pt;}
.y111{bottom:991.200000pt;}
.y51{bottom:996.960000pt;}
.y1c2{bottom:997.120000pt;}
.yac{bottom:1008.960000pt;}
.y276{bottom:1009.120000pt;}
.y1b{bottom:1011.680000pt;}
.y1de{bottom:1019.680000pt;}
.y6a{bottom:1020.320000pt;}
.y50{bottom:1024.640000pt;}
.y198{bottom:1024.800000pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h13{height:41.760000pt;}
.h2{height:42.262500pt;}
.hd{height:44.722500pt;}
.h15{height:57.375000pt;}
.h3{height:66.750000pt;}
.h14{height:66.883500pt;}
.ha{height:74.162500pt;}
.h6{height:80.062500pt;}
.h5{height:81.892500pt;}
.h9{height:83.205000pt;}
.h8{height:85.785000pt;}
.h16{height:88.777500pt;}
.h7{height:89.500000pt;}
.hb{height:91.875000pt;}
.h4{height:96.750000pt;}
.he{height:160.960000pt;}
.hc{height:164.480000pt;}
.hf{height:165.120000pt;}
.h10{height:290.240000pt;}
.h11{height:294.240000pt;}
.h12{height:294.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:160.960000pt;}
.w2{width:166.240000pt;}
.w3{width:172.000000pt;}
.w5{width:321.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:9.632000pt;}
.x15{left:17.186667pt;}
.x2b{left:20.733333pt;}
.x1e{left:23.546667pt;}
.x24{left:28.413333pt;}
.x1c{left:69.346667pt;}
.x2{left:75.520000pt;}
.xd{left:88.672000pt;}
.xc{left:90.272000pt;}
.x2c{left:100.000000pt;}
.xf{left:102.592000pt;}
.x12{left:104.032000pt;}
.x2e{left:109.632000pt;}
.x5{left:121.152000pt;}
.x13{left:122.752000pt;}
.x10{left:126.592000pt;}
.x8{left:149.146667pt;}
.x1d{left:155.360000pt;}
.x11{left:170.106667pt;}
.x22{left:182.266667pt;}
.x21{left:189.466667pt;}
.x9{left:190.426667pt;}
.x6{left:192.186667pt;}
.x35{left:193.626667pt;}
.x1f{left:204.186667pt;}
.x20{left:218.106667pt;}
.x33{left:240.480000pt;}
.xb{left:268.706667pt;}
.x4{left:270.786667pt;}
.x7{left:291.426667pt;}
.xe{left:298.146667pt;}
.x2f{left:308.000000pt;}
.x14{left:309.760000pt;}
.x30{left:317.666667pt;}
.x19{left:322.626667pt;}
.x16{left:325.026667pt;}
.x18{left:327.746667pt;}
.x1b{left:333.346667pt;}
.xa{left:339.106667pt;}
.x1a{left:373.986667pt;}
.x17{left:385.826667pt;}
.x34{left:389.346667pt;}
.x3{left:393.186667pt;}
.x1{left:396.866667pt;}
.x23{left:469.120000pt;}
.x27{left:481.533333pt;}
.x25{left:486.173333pt;}
.x2a{left:488.253333pt;}
.x28{left:490.973333pt;}
.x26{left:513.853333pt;}
.x31{left:517.920000pt;}
.x32{left:527.613333pt;}
.x29{left:529.213333pt;}
}




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