
    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_59addebe6bb14c7f0c9c747d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fdb4546f5ff893b5549478bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_dcfd724d0912ef2ae70b3ab0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_d28633f713c2c5ead4652147.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a13d406f39dfac32fe21e56b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_211c4b25d261ee7f3f4dc5ae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_41c49ab6c1b4bd82bf986351.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_967dd1e71e91f1368f9d0431.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:15.120000px;}
.ls21{letter-spacing:-0.423600px;}
.ls23{letter-spacing:-0.339600px;}
.ls19{letter-spacing:-0.308400px;}
.ls18{letter-spacing:-0.244200px;}
.lsc{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls1f{letter-spacing:-0.117600px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.064800px;}
.ls17{letter-spacing:-0.063600px;}
.lse{letter-spacing:-0.038880px;}
.lsf{letter-spacing:-0.037800px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.014760px;}
.ls24{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.065520px;}
.ls16{letter-spacing:0.068400px;}
.ls0{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.098400px;}
.ls10{letter-spacing:0.113400px;}
.ls1c{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.180600px;}
.ls26{letter-spacing:0.181200px;}
.ls22{letter-spacing:0.199200px;}
.ls1a{letter-spacing:0.275400px;}
.ls3{letter-spacing:0.425520px;}
.ls13{letter-spacing:0.453600px;}
.ls25{letter-spacing:14.246640px;}
.ls1e{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.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:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.425600px;}
.ws19{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.294800px;}
.wsd{word-spacing:-13.278240px;}
.ws9{word-spacing:-13.275360px;}
.ws18{word-spacing:-13.246560px;}
.ws4{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.188600px;}
.wsa{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.161600px;}
.ws14{word-spacing:-13.108800px;}
.ws8{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982200px;}
.ws12{word-spacing:-12.918000px;}
.ws17{word-spacing:-12.886800px;}
.ws15{word-spacing:-12.802800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._4{margin-left:-3.650788px;}
._1{margin-left:-2.239722px;}
._2{margin-left:-1.140666px;}
._0{width:1.180548px;}
._3{width:2.604960px;}
._9{width:3.707640px;}
._b{width:4.990200px;}
._e{width:6.072120px;}
._a{width:7.214400px;}
._12{width:8.296560px;}
._13{width:9.394002px;}
._10{width:10.400760px;}
._11{width:11.469055px;}
._d{width:14.420227px;}
._7{width:15.691200px;}
._2f{width:17.494920px;}
._6{width:19.118400px;}
._5{width:20.861400px;}
._8{width:22.425602px;}
._f{width:23.444275px;}
._40{width:24.529872px;}
._c{width:25.611120px;}
._1e{width:27.414720px;}
._1a{width:29.338560px;}
._1c{width:30.601080px;}
._37{width:32.104080px;}
._28{width:33.727320px;}
._21{width:35.711280px;}
._15{width:39.198240px;}
._4a{width:40.460760px;}
._66{width:41.841906px;}
._58{width:43.166160px;}
._3b{width:45.751320px;}
._44{width:46.773360px;}
._53{width:48.937680px;}
._2d{width:52.665120px;}
._4f{width:53.687160px;}
._38{width:55.911600px;}
._35{width:57.775320px;}
._48{width:59.879520px;}
._54{width:61.111986px;}
._26{width:62.464680px;}
._23{width:65.711160px;}
._57{width:66.853440px;}
._34{width:68.536800px;}
._39{width:71.061840px;}
._3d{width:72.384480px;}
._46{width:73.406520px;}
._5e{width:74.428560px;}
._5d{width:75.570840px;}
._5b{width:77.314320px;}
._31{width:78.396480px;}
._1d{width:82.123920px;}
._65{width:83.992800px;}
._17{width:88.917480px;}
._18{width:90.841320px;}
._5c{width:92.224080px;}
._30{width:96.011640px;}
._4d{width:101.602800px;}
._3a{width:107.975520px;}
._60{width:110.861280px;}
._1b{width:111.881706px;}
._2e{width:115.250040px;}
._25{width:116.392320px;}
._4c{width:119.819160px;}
._43{width:124.749000px;}
._1f{width:127.033560px;}
._29{width:128.416320px;}
._3c{width:134.488440px;}
._55{width:135.690840px;}
._62{width:137.855160px;}
._49{width:139.177800px;}
._33{width:141.462360px;}
._2c{width:142.484400px;}
._19{width:143.566560px;}
._3e{width:149.398200px;}
._59{width:152.409600px;}
._27{width:153.907200px;}
._52{width:158.716800px;}
._16{width:160.821000px;}
._2b{width:163.406160px;}
._45{width:168.035400px;}
._42{width:176.392080px;}
._63{width:177.895080px;}
._5a{width:178.917120px;}
._22{width:181.923120px;}
._32{width:185.169600px;}
._2a{width:190.039320px;}
._36{width:191.422080px;}
._20{width:199.959120px;}
._3f{width:201.582360px;}
._14{width:213.786720px;}
._41{width:225.089280px;}
._50{width:227.734560px;}
._64{width:235.369800px;}
._4b{width:239.758560px;}
._4e{width:241.381800px;}
._61{width:254.608200px;}
._24{width:260.439840px;}
._47{width:281.722320px;}
._56{width:289.898640px;}
._51{width:321.882480px;}
._5f{width:367.934400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y55{bottom:7.830000px;}
.y61{bottom:7.920000px;}
.y54{bottom:25.380000px;}
.y5c{bottom:25.470000px;}
.y60{bottom:25.500000px;}
.y58{bottom:43.020000px;}
.y5f{bottom:43.050000px;}
.y64{bottom:43.110000px;}
.y1cd{bottom:43.140000px;}
.y57{bottom:60.570000px;}
.yd1{bottom:60.600000px;}
.y5b{bottom:60.660000px;}
.y5e{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.ya9{bottom:78.210000px;}
.ya2{bottom:78.240000px;}
.yce{bottom:95.760000px;}
.y1{bottom:96.060000px;}
.y94{bottom:112.530000px;}
.y27c{bottom:112.800000px;}
.yf2{bottom:115.770000px;}
.y2ac{bottom:116.130000px;}
.y189{bottom:116.580000px;}
.y229{bottom:120.270000px;}
.y9f{bottom:122.340000px;}
.y163{bottom:124.320000px;}
.y1a0{bottom:125.580000px;}
.y6e{bottom:125.940000px;}
.y13b{bottom:126.300000px;}
.y93{bottom:130.170000px;}
.y27b{bottom:130.350000px;}
.yf1{bottom:133.410000px;}
.y2ab{bottom:133.680000px;}
.y188{bottom:134.130000px;}
.y20d{bottom:134.580000px;}
.y29{bottom:136.380000px;}
.y228{bottom:137.910000px;}
.y1ee{bottom:140.430000px;}
.y162{bottom:141.870000px;}
.y2a3{bottom:142.680000px;}
.y19f{bottom:143.130000px;}
.y6d{bottom:143.490000px;}
.y13a{bottom:143.850000px;}
.y59{bottom:146.550000px;}
.y92{bottom:147.720000px;}
.yf0{bottom:150.960000px;}
.y28c{bottom:151.320000px;}
.y187{bottom:151.680000px;}
.y20c{bottom:152.130000px;}
.y28{bottom:153.930000px;}
.y113{bottom:154.380000px;}
.y10e{bottom:154.740000px;}
.y23f{bottom:155.460000px;}
.y27a{bottom:156.990000px;}
.y9e{bottom:157.980000px;}
.y1ed{bottom:158.070000px;}
.y161{bottom:159.510000px;}
.y1c9{bottom:159.600000px;}
.y2a2{bottom:160.320000px;}
.y19e{bottom:160.680000px;}
.y6c{bottom:161.130000px;}
.y139{bottom:161.490000px;}
.yb9{bottom:162.930000px;}
.ycd{bottom:164.460000px;}
.y253{bottom:165.270000px;}
.yef{bottom:168.600000px;}
.y28b{bottom:168.870000px;}
.y186{bottom:169.320000px;}
.y20b{bottom:169.680000px;}
.y27{bottom:171.570000px;}
.y10d{bottom:172.380000px;}
.y23e{bottom:173.100000px;}
.y227{bottom:173.460000px;}
.y91{bottom:174.270000px;}
.y279{bottom:174.540000px;}
.y9d{bottom:175.530000px;}
.y1ec{bottom:175.620000px;}
.y160{bottom:177.060000px;}
.y2aa{bottom:177.870000px;}
.y19d{bottom:178.320000px;}
.yb8{bottom:180.570000px;}
.y252{bottom:182.910000px;}
.yee{bottom:186.150000px;}
.y2a1{bottom:186.870000px;}
.y20a{bottom:187.320000px;}
.y6b{bottom:187.680000px;}
.y26{bottom:189.120000px;}
.y10c{bottom:189.930000px;}
.y23d{bottom:190.650000px;}
.y226{bottom:191.100000px;}
.y1eb{bottom:193.260000px;}
.y28a{bottom:195.510000px;}
.y19c{bottom:195.870000px;}
.y138{bottom:197.040000px;}
.yb7{bottom:198.120000px;}
.y251{bottom:200.460000px;}
.y278{bottom:201.090000px;}
.yed{bottom:203.700000px;}
.y2a0{bottom:204.510000px;}
.y185{bottom:204.870000px;}
.y25{bottom:206.760000px;}
.y10b{bottom:207.480000px;}
.y9c{bottom:207.750000px;}
.y23c{bottom:208.200000px;}
.y225{bottom:208.650000px;}
.y90{bottom:209.910000px;}
.y1ea{bottom:210.810000px;}
.y15f{bottom:212.610000px;}
.y289{bottom:213.060000px;}
.y19b{bottom:213.510000px;}
.y137{bottom:214.680000px;}
.yb6{bottom:215.760000px;}
.y250{bottom:218.100000px;}
.y277{bottom:218.730000px;}
.y29f{bottom:222.060000px;}
.y1c8{bottom:222.150000px;}
.y184{bottom:222.510000px;}
.y6a{bottom:223.230000px;}
.y24{bottom:224.310000px;}
.y10a{bottom:225.120000px;}
.y23b{bottom:225.840000px;}
.y224{bottom:226.200000px;}
.y56{bottom:226.650000px;}
.y8f{bottom:227.460000px;}
.y15e{bottom:230.250000px;}
.yec{bottom:230.340000px;}
.y136{bottom:232.230000px;}
.yb5{bottom:233.310000px;}
.y112{bottom:234.480000px;}
.y288{bottom:239.610000px;}
.y183{bottom:240.060000px;}
.y69{bottom:240.870000px;}
.y23a{bottom:243.390000px;}
.y223{bottom:243.840000px;}
.y24f{bottom:244.920000px;}
.y8e{bottom:245.100000px;}
.y276{bottom:245.280000px;}
.y1e9{bottom:246.360000px;}
.y15d{bottom:247.800000px;}
.y29e{bottom:248.610000px;}
.y19a{bottom:249.060000px;}
.y135{bottom:249.780000px;}
.yb4{bottom:250.860000px;}
.y23{bottom:251.220000px;}
.y287{bottom:257.250000px;}
.y182{bottom:257.610000px;}
.y109{bottom:260.670000px;}
.y222{bottom:261.390000px;}
.y8d{bottom:262.650000px;}
.y1e8{bottom:264.000000px;}
.y15c{bottom:265.440000px;}
.yeb{bottom:265.890000px;}
.y29d{bottom:266.250000px;}
.y199{bottom:266.610000px;}
.y134{bottom:267.420000px;}
.yb3{bottom:268.500000px;}
.y239{bottom:270.300000px;}
.y275{bottom:271.830000px;}
.y68{bottom:273.090000px;}
.y299{bottom:274.800000px;}
.y181{bottom:275.250000px;}
.y108{bottom:278.310000px;}
.y221{bottom:278.940000px;}
.ycc{bottom:279.750000px;}
.y8c{bottom:280.200000px;}
.y1e7{bottom:281.550000px;}
.y15b{bottom:282.990000px;}
.yea{bottom:283.530000px;}
.y286{bottom:283.800000px;}
.y198{bottom:284.250000px;}
.y133{bottom:284.970000px;}
.yb2{bottom:286.050000px;}
.y1c7{bottom:288.390000px;}
.y274{bottom:289.470000px;}
.y180{bottom:292.800000px;}
.y24e{bottom:293.250000px;}
.y107{bottom:295.860000px;}
.y8b{bottom:297.840000px;}
.y1e6{bottom:299.190000px;}
.y22{bottom:299.460000px;}
.y15a{bottom:300.540000px;}
.ye9{bottom:301.080000px;}
.y285{bottom:301.440000px;}
.y197{bottom:301.800000px;}
.y209{bottom:302.250000px;}
.yb1{bottom:303.690000px;}
.y220{bottom:305.580000px;}
.y53{bottom:306.750000px;}
.y273{bottom:307.020000px;}
.y17f{bottom:310.440000px;}
.y24d{bottom:310.800000px;}
.y106{bottom:313.410000px;}
.y8a{bottom:315.390000px;}
.y1e5{bottom:316.740000px;}
.y21{bottom:317.370000px;}
.y238{bottom:318.540000px;}
.ye8{bottom:318.630000px;}
.y298{bottom:318.990000px;}
.y196{bottom:319.440000px;}
.y208{bottom:319.800000px;}
.y132{bottom:320.610000px;}
.y1c6{bottom:323.940000px;}
.y159{bottom:327.180000px;}
.y284{bottom:327.990000px;}
.y24c{bottom:328.440000px;}
.yb0{bottom:330.240000px;}
.y105{bottom:331.050000px;}
.y111{bottom:332.130000px;}
.y89{bottom:332.940000px;}
.y272{bottom:333.660000px;}
.y1e4{bottom:334.290000px;}
.y237{bottom:336.180000px;}
.ye7{bottom:336.270000px;}
.y297{bottom:336.540000px;}
.y17e{bottom:336.990000px;}
.y207{bottom:337.440000px;}
.y131{bottom:338.160000px;}
.y21f{bottom:341.130000px;}
.y1c5{bottom:341.580000px;}
.y283{bottom:345.540000px;}
.ycb{bottom:345.990000px;}
.y271{bottom:351.210000px;}
.y1e3{bottom:351.930000px;}
.y236{bottom:353.730000px;}
.ye6{bottom:353.820000px;}
.y296{bottom:354.180000px;}
.y20{bottom:354.450000px;}
.y29c{bottom:354.540000px;}
.y130{bottom:355.710000px;}
.y104{bottom:357.600000px;}
.y21e{bottom:358.770000px;}
.y1c4{bottom:359.130000px;}
.y88{bottom:359.850000px;}
.y158{bottom:362.730000px;}
.y24b{bottom:363.540000px;}
.y206{bottom:363.990000px;}
.yaf{bottom:365.790000px;}
.y1e2{bottom:369.480000px;}
.y1f{bottom:372.000000px;}
.y282{bottom:372.180000px;}
.y17d{bottom:372.540000px;}
.y52{bottom:372.990000px;}
.y12f{bottom:373.350000px;}
.y21d{bottom:376.320000px;}
.y1c3{bottom:376.770000px;}
.y270{bottom:377.760000px;}
.ye5{bottom:380.370000px;}
.y295{bottom:380.730000px;}
.y24a{bottom:381.180000px;}
.yca{bottom:381.540000px;}
.yae{bottom:383.430000px;}
.y235{bottom:389.370000px;}
.y1e{bottom:389.550000px;}
.y281{bottom:389.730000px;}
.y17c{bottom:390.180000px;}
.y12e{bottom:390.900000px;}
.y103{bottom:393.240000px;}
.y21c{bottom:393.870000px;}
.y1c2{bottom:394.320000px;}
.y26f{bottom:395.400000px;}
.y1e1{bottom:396.120000px;}
.y157{bottom:397.920000px;}
.y294{bottom:398.370000px;}
.y249{bottom:398.730000px;}
.yc9{bottom:399.180000px;}
.y205{bottom:399.540000px;}
.yad{bottom:400.980000px;}
.y234{bottom:406.920000px;}
.y1d{bottom:407.190000px;}
.y2a9{bottom:407.370000px;}
.y17b{bottom:407.730000px;}
.y87{bottom:408.180000px;}
.y51{bottom:408.540000px;}
.y102{bottom:410.790000px;}
.y1c1{bottom:411.870000px;}
.y110{bottom:412.230000px;}
.y156{bottom:415.470000px;}
.ye4{bottom:416.010000px;}
.y248{bottom:416.370000px;}
.yc8{bottom:416.730000px;}
.y204{bottom:417.180000px;}
.yac{bottom:418.620000px;}
.y26e{bottom:421.950000px;}
.y233{bottom:424.470000px;}
.y1c{bottom:424.740000px;}
.y293{bottom:424.920000px;}
.y17a{bottom:425.370000px;}
.y86{bottom:425.730000px;}
.y12d{bottom:426.090000px;}
.y50{bottom:426.180000px;}
.y101{bottom:428.340000px;}
.y1c0{bottom:429.510000px;}
.y1e0{bottom:431.670000px;}
.ye3{bottom:433.560000px;}
.y247{bottom:433.920000px;}
.yc7{bottom:434.370000px;}
.y203{bottom:434.730000px;}
.yab{bottom:436.170000px;}
.y155{bottom:442.110000px;}
.y1b{bottom:442.380000px;}
.y292{bottom:442.470000px;}
.y179{bottom:442.920000px;}
.y85{bottom:443.370000px;}
.y4f{bottom:443.730000px;}
.y100{bottom:445.980000px;}
.y21b{bottom:447.060000px;}
.y26d{bottom:448.590000px;}
.y1df{bottom:449.220000px;}
.ye2{bottom:451.200000px;}
.y2a8{bottom:451.470000px;}
.yc6{bottom:451.920000px;}
.y12c{bottom:452.640000px;}
.y1bf{bottom:456.060000px;}
.y1a{bottom:459.930000px;}
.y232{bottom:460.110000px;}
.y178{bottom:460.470000px;}
.y84{bottom:460.920000px;}
.y4e{bottom:461.370000px;}
.yaa{bottom:462.720000px;}
.yff{bottom:463.530000px;}
.y21a{bottom:464.700000px;}
.y26c{bottom:466.140000px;}
.y1de{bottom:466.860000px;}
.ye1{bottom:468.750000px;}
.yc5{bottom:469.470000px;}
.y202{bottom:470.400000px;}
.y19{bottom:477.510000px;}
.y154{bottom:477.690000px;}
.y177{bottom:478.140000px;}
.y83{bottom:478.500000px;}
.y4d{bottom:478.950000px;}
.y219{bottom:482.280000px;}
.y1dd{bottom:484.440000px;}
.y291{bottom:486.690000px;}
.yc4{bottom:487.140000px;}
.y201{bottom:487.950000px;}
.y12b{bottom:488.310000px;}
.yfe{bottom:490.200000px;}
.y1be{bottom:491.730000px;}
.y26b{bottom:492.720000px;}
.y18{bottom:495.150000px;}
.y153{bottom:495.330000px;}
.y2a7{bottom:495.690000px;}
.ya8{bottom:495.780000px;}
.y82{bottom:496.140000px;}
.y4c{bottom:496.500000px;}
.y218{bottom:499.830000px;}
.y1dc{bottom:502.080000px;}
.ye0{bottom:504.330000px;}
.y246{bottom:504.690000px;}
.y200{bottom:505.500000px;}
.y12a{bottom:505.860000px;}
.y1bd{bottom:509.280000px;}
.y26a{bottom:510.360000px;}
.y17{bottom:512.700000px;}
.y152{bottom:512.880000px;}
.y2a6{bottom:513.330000px;}
.y81{bottom:513.690000px;}
.y4b{bottom:514.140000px;}
.ydf{bottom:521.970000px;}
.y245{bottom:522.330000px;}
.y195{bottom:522.690000px;}
.y1ff{bottom:523.140000px;}
.y129{bottom:523.500000px;}
.yfd{bottom:525.750000px;}
.y217{bottom:526.740000px;}
.y1bc{bottom:526.830000px;}
.y16{bottom:530.340000px;}
.y151{bottom:530.430000px;}
.y231{bottom:530.880000px;}
.y176{bottom:531.330000px;}
.y4a{bottom:531.690000px;}
.y269{bottom:536.910000px;}
.y1db{bottom:537.630000px;}
.yde{bottom:539.520000px;}
.y244{bottom:539.880000px;}
.y194{bottom:540.330000px;}
.y1fe{bottom:540.690000px;}
.y128{bottom:541.050000px;}
.yfc{bottom:543.300000px;}
.y1bb{bottom:544.470000px;}
.y15{bottom:547.890000px;}
.y150{bottom:548.070000px;}
.y230{bottom:548.430000px;}
.y175{bottom:548.880000px;}
.y49{bottom:549.330000px;}
.y268{bottom:554.550000px;}
.y1da{bottom:555.180000px;}
.ydd{bottom:557.160000px;}
.y2a5{bottom:557.430000px;}
.y193{bottom:557.880000px;}
.y127{bottom:558.600000px;}
.yfb{bottom:560.940000px;}
.y1ba{bottom:562.020000px;}
.y14{bottom:565.440000px;}
.y14f{bottom:565.620000px;}
.y22f{bottom:566.070000px;}
.y174{bottom:566.430000px;}
.y80{bottom:566.880000px;}
.y1d9{bottom:572.820000px;}
.ydc{bottom:574.710000px;}
.y216{bottom:575.070000px;}
.y192{bottom:575.430000px;}
.y1fd{bottom:576.330000px;}
.yfa{bottom:578.490000px;}
.y1b9{bottom:579.660000px;}
.y267{bottom:581.460000px;}
.y13{bottom:583.080000px;}
.y173{bottom:584.070000px;}
.y7f{bottom:584.430000px;}
.y48{bottom:584.880000px;}
.y1d8{bottom:590.370000px;}
.y215{bottom:592.620000px;}
.y191{bottom:593.070000px;}
.ya7{bottom:593.430000px;}
.y1fc{bottom:593.880000px;}
.y126{bottom:594.240000px;}
.yf9{bottom:596.040000px;}
.y1b8{bottom:597.210000px;}
.ydb{bottom:601.260000px;}
.y172{bottom:601.620000px;}
.y7e{bottom:602.070000px;}
.y47{bottom:602.430000px;}
.y1d7{bottom:608.010000px;}
.y12{bottom:609.990000px;}
.y214{bottom:610.260000px;}
.y190{bottom:610.620000px;}
.y1fb{bottom:611.430000px;}
.y125{bottom:611.790000px;}
.yf8{bottom:613.680000px;}
.y1b7{bottom:614.760000px;}
.y14e{bottom:618.810000px;}
.y171{bottom:619.260000px;}
.y46{bottom:620.070000px;}
.y1d6{bottom:625.560000px;}
.y22e{bottom:628.260000px;}
.y1fa{bottom:629.070000px;}
.y124{bottom:629.340000px;}
.y266{bottom:629.700000px;}
.yf7{bottom:631.230000px;}
.y1b6{bottom:632.400000px;}
.y14d{bottom:636.360000px;}
.y290{bottom:636.810000px;}
.yda{bottom:636.900000px;}
.y29b{bottom:637.260000px;}
.y45{bottom:637.620000px;}
.y170{bottom:645.810000px;}
.y18f{bottom:646.260000px;}
.y1f9{bottom:646.620000px;}
.y123{bottom:646.980000px;}
.y265{bottom:647.250000px;}
.y1d5{bottom:652.110000px;}
.y14c{bottom:654.000000px;}
.yd9{bottom:654.450000px;}
.y280{bottom:654.810000px;}
.y7d{bottom:655.260000px;}
.ya6{bottom:655.980000px;}
.yf6{bottom:658.140000px;}
.y11{bottom:658.230000px;}
.y67{bottom:658.950000px;}
.y213{bottom:663.360000px;}
.y18e{bottom:663.810000px;}
.y1f8{bottom:664.260000px;}
.y122{bottom:664.530000px;}
.yd8{bottom:672.090000px;}
.y27f{bottom:672.360000px;}
.y7c{bottom:672.810000px;}
.y44{bottom:673.260000px;}
.y66{bottom:673.980000px;}
.y264{bottom:674.160000px;}
.y212{bottom:681.000000px;}
.y16f{bottom:681.360000px;}
.y1f7{bottom:681.810000px;}
.y121{bottom:682.170000px;}
.y1d4{bottom:687.750000px;}
.y14b{bottom:689.550000px;}
.yd7{bottom:689.640000px;}
.y243{bottom:690.000000px;}
.y7b{bottom:690.360000px;}
.y43{bottom:690.810000px;}
.y10{bottom:693.780000px;}
.y1b5{bottom:694.590000px;}
.y211{bottom:698.550000px;}
.y16e{bottom:699.000000px;}
.y9b{bottom:699.360000px;}
.y120{bottom:699.720000px;}
.y1d3{bottom:705.300000px;}
.yf5{bottom:706.470000px;}
.yd6{bottom:707.190000px;}
.y28f{bottom:707.550000px;}
.y7a{bottom:708.000000px;}
.y42{bottom:708.360000px;}
.y263{bottom:711.240000px;}
.y1b4{bottom:712.140000px;}
.y16d{bottom:716.550000px;}
.y9a{bottom:717.000000px;}
.y11f{bottom:717.270000px;}
.y1d2{bottom:722.940000px;}
.yf4{bottom:724.020000px;}
.y14a{bottom:724.740000px;}
.yd5{bottom:724.830000px;}
.y28e{bottom:725.190000px;}
.y79{bottom:725.550000px;}
.y41{bottom:726.000000px;}
.y262{bottom:728.790000px;}
.yf{bottom:729.600000px;}
.y16c{bottom:734.190000px;}
.y99{bottom:734.550000px;}
.y11e{bottom:734.910000px;}
.ya5{bottom:735.990000px;}
.y149{bottom:742.290000px;}
.y78{bottom:743.190000px;}
.y40{bottom:743.550000px;}
.y261{bottom:746.340000px;}
.y1b3{bottom:747.690000px;}
.y1d1{bottom:749.490000px;}
.yd4{bottom:751.380000px;}
.y16b{bottom:751.740000px;}
.y10f{bottom:752.190000px;}
.y11d{bottom:752.460000px;}
.y65{bottom:753.990000px;}
.yf3{bottom:756.240000px;}
.y148{bottom:759.930000px;}
.y242{bottom:760.740000px;}
.y3f{bottom:761.190000px;}
.y260{bottom:763.980000px;}
.y1b2{bottom:765.330000px;}
.y18d{bottom:769.290000px;}
.ye{bottom:769.380000px;}
.y77{bottom:769.740000px;}
.y11c{bottom:770.100000px;}
.y98{bottom:770.190000px;}
.y16a{bottom:778.290000px;}
.y3e{bottom:778.740000px;}
.y1d0{bottom:779.460000px;}
.yd3{bottom:781.350000px;}
.y1b1{bottom:782.880000px;}
.y147{bottom:786.480000px;}
.y210{bottom:786.930000px;}
.y29a{bottom:787.290000px;}
.yd{bottom:787.380000px;}
.y11b{bottom:787.650000px;}
.y97{bottom:787.740000px;}
.y25f{bottom:790.890000px;}
.y18c{bottom:795.930000px;}
.y3d{bottom:796.290000px;}
.y1b0{bottom:800.520000px;}
.yc{bottom:801.600000px;}
.y20f{bottom:804.480000px;}
.y2a4{bottom:804.930000px;}
.y11a{bottom:805.200000px;}
.y76{bottom:805.290000px;}
.y241{bottom:813.480000px;}
.y3c{bottom:813.930000px;}
.y1f6{bottom:814.290000px;}
.ya4{bottom:816.090000px;}
.y1af{bottom:818.070000px;}
.y146{bottom:822.030000px;}
.y27e{bottom:822.480000px;}
.y75{bottom:822.930000px;}
.yb{bottom:823.380000px;}
.y25e{bottom:828.240000px;}
.y20e{bottom:831.030000px;}
.y3b{bottom:831.480000px;}
.y119{bottom:831.840000px;}
.y1f5{bottom:831.930000px;}
.y63{bottom:834.090000px;}
.y145{bottom:839.670000px;}
.y27d{bottom:840.030000px;}
.y74{bottom:840.480000px;}
.ya{bottom:841.380000px;}
.y1cf{bottom:841.920000px;}
.y1ae{bottom:844.620000px;}
.y22d{bottom:848.670000px;}
.y3a{bottom:849.030000px;}
.y1f4{bottom:849.480000px;}
.y144{bottom:857.220000px;}
.y28d{bottom:857.670000px;}
.y73{bottom:858.030000px;}
.y9{bottom:859.380000px;}
.y169{bottom:866.670000px;}
.y1f3{bottom:867.030000px;}
.y118{bottom:867.390000px;}
.y39{bottom:875.670000px;}
.y25d{bottom:876.480000px;}
.y8{bottom:877.380000px;}
.yd2{bottom:879.000000px;}
.y1ad{bottom:880.260000px;}
.y168{bottom:884.220000px;}
.y1f2{bottom:884.670000px;}
.y117{bottom:885.030000px;}
.y143{bottom:892.860000px;}
.y72{bottom:893.220000px;}
.y25c{bottom:894.030000px;}
.y7{bottom:895.380000px;}
.ya3{bottom:896.190000px;}
.y1ac{bottom:897.810000px;}
.y167{bottom:901.860000px;}
.y116{bottom:902.580000px;}
.y1ce{bottom:904.470000px;}
.y142{bottom:910.410000px;}
.y96{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y25b{bottom:911.670000px;}
.y62{bottom:914.190000px;}
.y1ab{bottom:915.450000px;}
.y18b{bottom:919.410000px;}
.y115{bottom:920.130000px;}
.y1f1{bottom:920.220000px;}
.y6{bottom:927.690000px;}
.y141{bottom:927.960000px;}
.y95{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y25a{bottom:929.220000px;}
.y22c{bottom:936.960000px;}
.yc3{bottom:937.410000px;}
.y1f0{bottom:937.860000px;}
.y1aa{bottom:942.000000px;}
.y140{bottom:945.600000px;}
.y18a{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y114{bottom:946.680000px;}
.y259{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y240{bottom:954.600000px;}
.y166{bottom:954.960000px;}
.y1ef{bottom:955.410000px;}
.y35{bottom:963.960000px;}
.y258{bottom:964.410000px;}
.y1cc{bottom:966.930000px;}
.y13f{bottom:972.150000px;}
.y165{bottom:972.600000px;}
.yc2{bottom:972.960000px;}
.ya1{bottom:976.290000px;}
.yd0{bottom:976.740000px;}
.y1a9{bottom:977.550000px;}
.y34{bottom:981.600000px;}
.y257{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y164{bottom:990.150000px;}
.yc1{bottom:990.600000px;}
.y5d{bottom:994.290000px;}
.y1a8{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y256{bottom:999.600000px;}
.y13e{bottom:1007.790000px;}
.yc0{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y1a7{bottom:1012.770000px;}
.y32{bottom:1016.820000px;}
.y255{bottom:1017.180000px;}
.y13d{bottom:1025.370000px;}
.ybf{bottom:1025.820000px;}
.y1cb{bottom:1029.510000px;}
.y1a6{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.y254{bottom:1034.820000px;}
.y13c{bottom:1042.920000px;}
.ybe{bottom:1043.370000px;}
.y1a5{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.y71{bottom:1052.370000px;}
.ycf{bottom:1056.870000px;}
.y22b{bottom:1060.560000px;}
.ybd{bottom:1060.920000px;}
.y1a4{bottom:1065.510000px;}
.y2f{bottom:1069.560000px;}
.y70{bottom:1069.920000px;}
.ya0{bottom:1073.970000px;}
.y5a{bottom:1074.420000px;}
.ybc{bottom:1078.560000px;}
.y1a3{bottom:1083.150000px;}
.y22a{bottom:1087.110000px;}
.y6f{bottom:1087.560000px;}
.y1ca{bottom:1091.970000px;}
.ybb{bottom:1096.110000px;}
.y1a2{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.yba{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y1a1{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hb{height:44.100000px;}
.h10{height:44.190000px;}
.h2{height:46.986328px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:59.973223px;}
.h12{height:61.740000px;}
.h19{height:61.793886px;}
.h17{height:61.830000px;}
.h18{height:61.860000px;}
.ha{height:62.585859px;}
.hf{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:79.290000px;}
.h16{height:79.320000px;}
.hd{height:79.380000px;}
.he{height:79.410000px;}
.h13{height:96.930000px;}
.h11{height:96.960000px;}
.h15{height:114.480000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1b{width:103.710000px;}
.wb{width:108.840000px;}
.w8{width:112.260000px;}
.w10{width:116.190000px;}
.wa{width:122.220000px;}
.w19{width:125.100000px;}
.w3{width:125.940000px;}
.w9{width:126.000000px;}
.w13{width:130.980000px;}
.w1a{width:132.210000px;}
.wd{width:139.680000px;}
.wc{width:143.010000px;}
.w5{width:144.390000px;}
.w16{width:145.620000px;}
.w15{width:148.890000px;}
.we{width:150.960000px;}
.w6{width:152.640000px;}
.w7{width:155.430000px;}
.w11{width:156.810000px;}
.w18{width:157.710000px;}
.wf{width:161.460000px;}
.w17{width:163.530000px;}
.w14{width:163.620000px;}
.w12{width:167.310000px;}
.w4{width:174.240000px;}
.w1c{width:234.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xa{left:70.469987px;}
.x17{left:77.489987px;}
.xd{left:104.759987px;}
.x1f{left:111.239987px;}
.xf{left:181.740000px;}
.x2{left:192.719987px;}
.x5{left:195.420000px;}
.x18{left:200.550000px;}
.x13{left:220.440000px;}
.x1b{left:227.190000px;}
.xe{left:307.559987px;}
.x1c{left:353.100000px;}
.x19{left:364.890000px;}
.x6{left:370.380000px;}
.x14{left:382.710000px;}
.xb{left:419.339987px;}
.x10{left:431.490000px;}
.x1d{left:486.030000px;}
.x15{left:499.620000px;}
.x7{left:515.580000px;}
.x11{left:541.050000px;}
.x1e{left:590.460000px;}
.x16{left:657.150000px;}
.x1a{left:660.930000px;}
.x8{left:669.030000px;}
.x12{left:684.780000px;}
.x9{left:715.559987px;}
.xc{left:788.639987px;}
.x3{left:800.339987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls21{letter-spacing:-0.376533pt;}
.ls23{letter-spacing:-0.301867pt;}
.ls19{letter-spacing:-0.274133pt;}
.ls18{letter-spacing:-0.217067pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls1f{letter-spacing:-0.104533pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.057600pt;}
.ls17{letter-spacing:-0.056533pt;}
.lse{letter-spacing:-0.034560pt;}
.lsf{letter-spacing:-0.033600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.013120pt;}
.ls24{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.058240pt;}
.ls16{letter-spacing:0.060800pt;}
.ls0{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.087467pt;}
.ls10{letter-spacing:0.100800pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.160533pt;}
.ls26{letter-spacing:0.161067pt;}
.ls22{letter-spacing:0.177067pt;}
.ls1a{letter-spacing:0.244800pt;}
.ls3{letter-spacing:0.378240pt;}
.ls13{letter-spacing:0.403200pt;}
.ls25{letter-spacing:12.663680pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.933867pt;}
.ws19{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.817600pt;}
.wsd{word-spacing:-11.802880pt;}
.ws9{word-spacing:-11.800320pt;}
.ws18{word-spacing:-11.774720pt;}
.ws4{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.723200pt;}
.wsa{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.699200pt;}
.ws14{word-spacing:-11.652267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.539733pt;}
.ws12{word-spacing:-11.482667pt;}
.ws17{word-spacing:-11.454933pt;}
.ws15{word-spacing:-11.380267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._4{margin-left:-3.245145pt;}
._1{margin-left:-1.990864pt;}
._2{margin-left:-1.013926pt;}
._0{width:1.049376pt;}
._3{width:2.315520pt;}
._9{width:3.295680pt;}
._b{width:4.435734pt;}
._e{width:5.397440pt;}
._a{width:6.412800pt;}
._12{width:7.374720pt;}
._13{width:8.350224pt;}
._10{width:9.245120pt;}
._11{width:10.194716pt;}
._d{width:12.817979pt;}
._7{width:13.947733pt;}
._2f{width:15.551040pt;}
._6{width:16.994134pt;}
._5{width:18.543466pt;}
._8{width:19.933868pt;}
._f{width:20.839356pt;}
._40{width:21.804330pt;}
._c{width:22.765440pt;}
._1e{width:24.368640pt;}
._1a{width:26.078720pt;}
._1c{width:27.200960pt;}
._37{width:28.536960pt;}
._28{width:29.979840pt;}
._21{width:31.743360pt;}
._15{width:34.842880pt;}
._4a{width:35.965120pt;}
._66{width:37.192806pt;}
._58{width:38.369920pt;}
._3b{width:40.667840pt;}
._44{width:41.576320pt;}
._53{width:43.500160pt;}
._2d{width:46.813440pt;}
._4f{width:47.721920pt;}
._38{width:49.699200pt;}
._35{width:51.355840pt;}
._48{width:53.226240pt;}
._54{width:54.321766pt;}
._26{width:55.524160pt;}
._23{width:58.409920pt;}
._57{width:59.425280pt;}
._34{width:60.921600pt;}
._39{width:63.166080pt;}
._3d{width:64.341760pt;}
._46{width:65.250240pt;}
._5e{width:66.158720pt;}
._5d{width:67.174080pt;}
._5b{width:68.723840pt;}
._31{width:69.685760pt;}
._1d{width:72.999040pt;}
._65{width:74.660267pt;}
._17{width:79.037760pt;}
._18{width:80.747840pt;}
._5c{width:81.976960pt;}
._30{width:85.343680pt;}
._4d{width:90.313600pt;}
._3a{width:95.978240pt;}
._60{width:98.543360pt;}
._1b{width:99.450406pt;}
._2e{width:102.444480pt;}
._25{width:103.459840pt;}
._4c{width:106.505920pt;}
._43{width:110.888000pt;}
._1f{width:112.918720pt;}
._29{width:114.147840pt;}
._3c{width:119.545280pt;}
._55{width:120.614080pt;}
._62{width:122.537920pt;}
._49{width:123.713600pt;}
._33{width:125.744320pt;}
._2c{width:126.652800pt;}
._19{width:127.614720pt;}
._3e{width:132.798400pt;}
._59{width:135.475200pt;}
._27{width:136.806400pt;}
._52{width:141.081600pt;}
._16{width:142.952000pt;}
._2b{width:145.249920pt;}
._45{width:149.364800pt;}
._42{width:156.792960pt;}
._63{width:158.128960pt;}
._5a{width:159.037440pt;}
._22{width:161.709440pt;}
._32{width:164.595200pt;}
._2a{width:168.923840pt;}
._36{width:170.152960pt;}
._20{width:177.741440pt;}
._3f{width:179.184320pt;}
._14{width:190.032640pt;}
._41{width:200.079360pt;}
._50{width:202.430720pt;}
._64{width:209.217600pt;}
._4b{width:213.118720pt;}
._4e{width:214.561600pt;}
._61{width:226.318400pt;}
._24{width:231.502080pt;}
._47{width:250.419840pt;}
._56{width:257.687680pt;}
._51{width:286.117760pt;}
._5f{width:327.052800pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:6.960000pt;}
.y61{bottom:7.040000pt;}
.y54{bottom:22.560000pt;}
.y5c{bottom:22.640000pt;}
.y60{bottom:22.666667pt;}
.y58{bottom:38.240000pt;}
.y5f{bottom:38.266667pt;}
.y64{bottom:38.320000pt;}
.y1cd{bottom:38.346667pt;}
.y57{bottom:53.840000pt;}
.yd1{bottom:53.866667pt;}
.y5b{bottom:53.920000pt;}
.y5e{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.ya9{bottom:69.520000pt;}
.ya2{bottom:69.546667pt;}
.yce{bottom:85.120000pt;}
.y1{bottom:85.386667pt;}
.y94{bottom:100.026667pt;}
.y27c{bottom:100.266667pt;}
.yf2{bottom:102.906667pt;}
.y2ac{bottom:103.226667pt;}
.y189{bottom:103.626667pt;}
.y229{bottom:106.906667pt;}
.y9f{bottom:108.746667pt;}
.y163{bottom:110.506667pt;}
.y1a0{bottom:111.626667pt;}
.y6e{bottom:111.946667pt;}
.y13b{bottom:112.266667pt;}
.y93{bottom:115.706667pt;}
.y27b{bottom:115.866667pt;}
.yf1{bottom:118.586667pt;}
.y2ab{bottom:118.826667pt;}
.y188{bottom:119.226667pt;}
.y20d{bottom:119.626667pt;}
.y29{bottom:121.226667pt;}
.y228{bottom:122.586667pt;}
.y1ee{bottom:124.826667pt;}
.y162{bottom:126.106667pt;}
.y2a3{bottom:126.826667pt;}
.y19f{bottom:127.226667pt;}
.y6d{bottom:127.546667pt;}
.y13a{bottom:127.866667pt;}
.y59{bottom:130.266667pt;}
.y92{bottom:131.306667pt;}
.yf0{bottom:134.186667pt;}
.y28c{bottom:134.506667pt;}
.y187{bottom:134.826667pt;}
.y20c{bottom:135.226667pt;}
.y28{bottom:136.826667pt;}
.y113{bottom:137.226667pt;}
.y10e{bottom:137.546667pt;}
.y23f{bottom:138.186667pt;}
.y27a{bottom:139.546667pt;}
.y9e{bottom:140.426667pt;}
.y1ed{bottom:140.506667pt;}
.y161{bottom:141.786667pt;}
.y1c9{bottom:141.866667pt;}
.y2a2{bottom:142.506667pt;}
.y19e{bottom:142.826667pt;}
.y6c{bottom:143.226667pt;}
.y139{bottom:143.546667pt;}
.yb9{bottom:144.826667pt;}
.ycd{bottom:146.186667pt;}
.y253{bottom:146.906667pt;}
.yef{bottom:149.866667pt;}
.y28b{bottom:150.106667pt;}
.y186{bottom:150.506667pt;}
.y20b{bottom:150.826667pt;}
.y27{bottom:152.506667pt;}
.y10d{bottom:153.226667pt;}
.y23e{bottom:153.866667pt;}
.y227{bottom:154.186667pt;}
.y91{bottom:154.906667pt;}
.y279{bottom:155.146667pt;}
.y9d{bottom:156.026667pt;}
.y1ec{bottom:156.106667pt;}
.y160{bottom:157.386667pt;}
.y2aa{bottom:158.106667pt;}
.y19d{bottom:158.506667pt;}
.yb8{bottom:160.506667pt;}
.y252{bottom:162.586667pt;}
.yee{bottom:165.466667pt;}
.y2a1{bottom:166.106667pt;}
.y20a{bottom:166.506667pt;}
.y6b{bottom:166.826667pt;}
.y26{bottom:168.106667pt;}
.y10c{bottom:168.826667pt;}
.y23d{bottom:169.466667pt;}
.y226{bottom:169.866667pt;}
.y1eb{bottom:171.786667pt;}
.y28a{bottom:173.786667pt;}
.y19c{bottom:174.106667pt;}
.y138{bottom:175.146667pt;}
.yb7{bottom:176.106667pt;}
.y251{bottom:178.186667pt;}
.y278{bottom:178.746667pt;}
.yed{bottom:181.066667pt;}
.y2a0{bottom:181.786667pt;}
.y185{bottom:182.106667pt;}
.y25{bottom:183.786667pt;}
.y10b{bottom:184.426667pt;}
.y9c{bottom:184.666667pt;}
.y23c{bottom:185.066667pt;}
.y225{bottom:185.466667pt;}
.y90{bottom:186.586667pt;}
.y1ea{bottom:187.386667pt;}
.y15f{bottom:188.986667pt;}
.y289{bottom:189.386667pt;}
.y19b{bottom:189.786667pt;}
.y137{bottom:190.826667pt;}
.yb6{bottom:191.786667pt;}
.y250{bottom:193.866667pt;}
.y277{bottom:194.426667pt;}
.y29f{bottom:197.386667pt;}
.y1c8{bottom:197.466667pt;}
.y184{bottom:197.786667pt;}
.y6a{bottom:198.426667pt;}
.y24{bottom:199.386667pt;}
.y10a{bottom:200.106667pt;}
.y23b{bottom:200.746667pt;}
.y224{bottom:201.066667pt;}
.y56{bottom:201.466667pt;}
.y8f{bottom:202.186667pt;}
.y15e{bottom:204.666667pt;}
.yec{bottom:204.746667pt;}
.y136{bottom:206.426667pt;}
.yb5{bottom:207.386667pt;}
.y112{bottom:208.426667pt;}
.y288{bottom:212.986667pt;}
.y183{bottom:213.386667pt;}
.y69{bottom:214.106667pt;}
.y23a{bottom:216.346667pt;}
.y223{bottom:216.746667pt;}
.y24f{bottom:217.706667pt;}
.y8e{bottom:217.866667pt;}
.y276{bottom:218.026667pt;}
.y1e9{bottom:218.986667pt;}
.y15d{bottom:220.266667pt;}
.y29e{bottom:220.986667pt;}
.y19a{bottom:221.386667pt;}
.y135{bottom:222.026667pt;}
.yb4{bottom:222.986667pt;}
.y23{bottom:223.306667pt;}
.y287{bottom:228.666667pt;}
.y182{bottom:228.986667pt;}
.y109{bottom:231.706667pt;}
.y222{bottom:232.346667pt;}
.y8d{bottom:233.466667pt;}
.y1e8{bottom:234.666667pt;}
.y15c{bottom:235.946667pt;}
.yeb{bottom:236.346667pt;}
.y29d{bottom:236.666667pt;}
.y199{bottom:236.986667pt;}
.y134{bottom:237.706667pt;}
.yb3{bottom:238.666667pt;}
.y239{bottom:240.266667pt;}
.y275{bottom:241.626667pt;}
.y68{bottom:242.746667pt;}
.y299{bottom:244.266667pt;}
.y181{bottom:244.666667pt;}
.y108{bottom:247.386667pt;}
.y221{bottom:247.946667pt;}
.ycc{bottom:248.666667pt;}
.y8c{bottom:249.066667pt;}
.y1e7{bottom:250.266667pt;}
.y15b{bottom:251.546667pt;}
.yea{bottom:252.026667pt;}
.y286{bottom:252.266667pt;}
.y198{bottom:252.666667pt;}
.y133{bottom:253.306667pt;}
.yb2{bottom:254.266667pt;}
.y1c7{bottom:256.346667pt;}
.y274{bottom:257.306667pt;}
.y180{bottom:260.266667pt;}
.y24e{bottom:260.666667pt;}
.y107{bottom:262.986667pt;}
.y8b{bottom:264.746667pt;}
.y1e6{bottom:265.946667pt;}
.y22{bottom:266.186667pt;}
.y15a{bottom:267.146667pt;}
.ye9{bottom:267.626667pt;}
.y285{bottom:267.946667pt;}
.y197{bottom:268.266667pt;}
.y209{bottom:268.666667pt;}
.yb1{bottom:269.946667pt;}
.y220{bottom:271.626667pt;}
.y53{bottom:272.666667pt;}
.y273{bottom:272.906667pt;}
.y17f{bottom:275.946667pt;}
.y24d{bottom:276.266667pt;}
.y106{bottom:278.586667pt;}
.y8a{bottom:280.346667pt;}
.y1e5{bottom:281.546667pt;}
.y21{bottom:282.106667pt;}
.y238{bottom:283.146667pt;}
.ye8{bottom:283.226667pt;}
.y298{bottom:283.546667pt;}
.y196{bottom:283.946667pt;}
.y208{bottom:284.266667pt;}
.y132{bottom:284.986667pt;}
.y1c6{bottom:287.946667pt;}
.y159{bottom:290.826667pt;}
.y284{bottom:291.546667pt;}
.y24c{bottom:291.946667pt;}
.yb0{bottom:293.546667pt;}
.y105{bottom:294.266667pt;}
.y111{bottom:295.226667pt;}
.y89{bottom:295.946667pt;}
.y272{bottom:296.586667pt;}
.y1e4{bottom:297.146667pt;}
.y237{bottom:298.826667pt;}
.ye7{bottom:298.906667pt;}
.y297{bottom:299.146667pt;}
.y17e{bottom:299.546667pt;}
.y207{bottom:299.946667pt;}
.y131{bottom:300.586667pt;}
.y21f{bottom:303.226667pt;}
.y1c5{bottom:303.626667pt;}
.y283{bottom:307.146667pt;}
.ycb{bottom:307.546667pt;}
.y271{bottom:312.186667pt;}
.y1e3{bottom:312.826667pt;}
.y236{bottom:314.426667pt;}
.ye6{bottom:314.506667pt;}
.y296{bottom:314.826667pt;}
.y20{bottom:315.066667pt;}
.y29c{bottom:315.146667pt;}
.y130{bottom:316.186667pt;}
.y104{bottom:317.866667pt;}
.y21e{bottom:318.906667pt;}
.y1c4{bottom:319.226667pt;}
.y88{bottom:319.866667pt;}
.y158{bottom:322.426667pt;}
.y24b{bottom:323.146667pt;}
.y206{bottom:323.546667pt;}
.yaf{bottom:325.146667pt;}
.y1e2{bottom:328.426667pt;}
.y1f{bottom:330.666667pt;}
.y282{bottom:330.826667pt;}
.y17d{bottom:331.146667pt;}
.y52{bottom:331.546667pt;}
.y12f{bottom:331.866667pt;}
.y21d{bottom:334.506667pt;}
.y1c3{bottom:334.906667pt;}
.y270{bottom:335.786667pt;}
.ye5{bottom:338.106667pt;}
.y295{bottom:338.426667pt;}
.y24a{bottom:338.826667pt;}
.yca{bottom:339.146667pt;}
.yae{bottom:340.826667pt;}
.y235{bottom:346.106667pt;}
.y1e{bottom:346.266667pt;}
.y281{bottom:346.426667pt;}
.y17c{bottom:346.826667pt;}
.y12e{bottom:347.466667pt;}
.y103{bottom:349.546667pt;}
.y21c{bottom:350.106667pt;}
.y1c2{bottom:350.506667pt;}
.y26f{bottom:351.466667pt;}
.y1e1{bottom:352.106667pt;}
.y157{bottom:353.706667pt;}
.y294{bottom:354.106667pt;}
.y249{bottom:354.426667pt;}
.yc9{bottom:354.826667pt;}
.y205{bottom:355.146667pt;}
.yad{bottom:356.426667pt;}
.y234{bottom:361.706667pt;}
.y1d{bottom:361.946667pt;}
.y2a9{bottom:362.106667pt;}
.y17b{bottom:362.426667pt;}
.y87{bottom:362.826667pt;}
.y51{bottom:363.146667pt;}
.y102{bottom:365.146667pt;}
.y1c1{bottom:366.106667pt;}
.y110{bottom:366.426667pt;}
.y156{bottom:369.306667pt;}
.ye4{bottom:369.786667pt;}
.y248{bottom:370.106667pt;}
.yc8{bottom:370.426667pt;}
.y204{bottom:370.826667pt;}
.yac{bottom:372.106667pt;}
.y26e{bottom:375.066667pt;}
.y233{bottom:377.306667pt;}
.y1c{bottom:377.546667pt;}
.y293{bottom:377.706667pt;}
.y17a{bottom:378.106667pt;}
.y86{bottom:378.426667pt;}
.y12d{bottom:378.746667pt;}
.y50{bottom:378.826667pt;}
.y101{bottom:380.746667pt;}
.y1c0{bottom:381.786667pt;}
.y1e0{bottom:383.706667pt;}
.ye3{bottom:385.386667pt;}
.y247{bottom:385.706667pt;}
.yc7{bottom:386.106667pt;}
.y203{bottom:386.426667pt;}
.yab{bottom:387.706667pt;}
.y155{bottom:392.986667pt;}
.y1b{bottom:393.226667pt;}
.y292{bottom:393.306667pt;}
.y179{bottom:393.706667pt;}
.y85{bottom:394.106667pt;}
.y4f{bottom:394.426667pt;}
.y100{bottom:396.426667pt;}
.y21b{bottom:397.386667pt;}
.y26d{bottom:398.746667pt;}
.y1df{bottom:399.306667pt;}
.ye2{bottom:401.066667pt;}
.y2a8{bottom:401.306667pt;}
.yc6{bottom:401.706667pt;}
.y12c{bottom:402.346667pt;}
.y1bf{bottom:405.386667pt;}
.y1a{bottom:408.826667pt;}
.y232{bottom:408.986667pt;}
.y178{bottom:409.306667pt;}
.y84{bottom:409.706667pt;}
.y4e{bottom:410.106667pt;}
.yaa{bottom:411.306667pt;}
.yff{bottom:412.026667pt;}
.y21a{bottom:413.066667pt;}
.y26c{bottom:414.346667pt;}
.y1de{bottom:414.986667pt;}
.ye1{bottom:416.666667pt;}
.yc5{bottom:417.306667pt;}
.y202{bottom:418.133333pt;}
.y19{bottom:424.453333pt;}
.y154{bottom:424.613333pt;}
.y177{bottom:425.013333pt;}
.y83{bottom:425.333333pt;}
.y4d{bottom:425.733333pt;}
.y219{bottom:428.693333pt;}
.y1dd{bottom:430.613333pt;}
.y291{bottom:432.613333pt;}
.yc4{bottom:433.013333pt;}
.y201{bottom:433.733333pt;}
.y12b{bottom:434.053333pt;}
.yfe{bottom:435.733333pt;}
.y1be{bottom:437.093333pt;}
.y26b{bottom:437.973333pt;}
.y18{bottom:440.133333pt;}
.y153{bottom:440.293333pt;}
.y2a7{bottom:440.613333pt;}
.ya8{bottom:440.693333pt;}
.y82{bottom:441.013333pt;}
.y4c{bottom:441.333333pt;}
.y218{bottom:444.293333pt;}
.y1dc{bottom:446.293333pt;}
.ye0{bottom:448.293333pt;}
.y246{bottom:448.613333pt;}
.y200{bottom:449.333333pt;}
.y12a{bottom:449.653333pt;}
.y1bd{bottom:452.693333pt;}
.y26a{bottom:453.653333pt;}
.y17{bottom:455.733333pt;}
.y152{bottom:455.893333pt;}
.y2a6{bottom:456.293333pt;}
.y81{bottom:456.613333pt;}
.y4b{bottom:457.013333pt;}
.ydf{bottom:463.973333pt;}
.y245{bottom:464.293333pt;}
.y195{bottom:464.613333pt;}
.y1ff{bottom:465.013333pt;}
.y129{bottom:465.333333pt;}
.yfd{bottom:467.333333pt;}
.y217{bottom:468.213333pt;}
.y1bc{bottom:468.293333pt;}
.y16{bottom:471.413333pt;}
.y151{bottom:471.493333pt;}
.y231{bottom:471.893333pt;}
.y176{bottom:472.293333pt;}
.y4a{bottom:472.613333pt;}
.y269{bottom:477.253333pt;}
.y1db{bottom:477.893333pt;}
.yde{bottom:479.573333pt;}
.y244{bottom:479.893333pt;}
.y194{bottom:480.293333pt;}
.y1fe{bottom:480.613333pt;}
.y128{bottom:480.933333pt;}
.yfc{bottom:482.933333pt;}
.y1bb{bottom:483.973333pt;}
.y15{bottom:487.013333pt;}
.y150{bottom:487.173333pt;}
.y230{bottom:487.493333pt;}
.y175{bottom:487.893333pt;}
.y49{bottom:488.293333pt;}
.y268{bottom:492.933333pt;}
.y1da{bottom:493.493333pt;}
.ydd{bottom:495.253333pt;}
.y2a5{bottom:495.493333pt;}
.y193{bottom:495.893333pt;}
.y127{bottom:496.533333pt;}
.yfb{bottom:498.613333pt;}
.y1ba{bottom:499.573333pt;}
.y14{bottom:502.613333pt;}
.y14f{bottom:502.773333pt;}
.y22f{bottom:503.173333pt;}
.y174{bottom:503.493333pt;}
.y80{bottom:503.893333pt;}
.y1d9{bottom:509.173333pt;}
.ydc{bottom:510.853333pt;}
.y216{bottom:511.173333pt;}
.y192{bottom:511.493333pt;}
.y1fd{bottom:512.293333pt;}
.yfa{bottom:514.213333pt;}
.y1b9{bottom:515.253333pt;}
.y267{bottom:516.853333pt;}
.y13{bottom:518.293333pt;}
.y173{bottom:519.173333pt;}
.y7f{bottom:519.493333pt;}
.y48{bottom:519.893333pt;}
.y1d8{bottom:524.773333pt;}
.y215{bottom:526.773333pt;}
.y191{bottom:527.173333pt;}
.ya7{bottom:527.493333pt;}
.y1fc{bottom:527.893333pt;}
.y126{bottom:528.213333pt;}
.yf9{bottom:529.813333pt;}
.y1b8{bottom:530.853333pt;}
.ydb{bottom:534.453333pt;}
.y172{bottom:534.773333pt;}
.y7e{bottom:535.173333pt;}
.y47{bottom:535.493333pt;}
.y1d7{bottom:540.453333pt;}
.y12{bottom:542.213333pt;}
.y214{bottom:542.453333pt;}
.y190{bottom:542.773333pt;}
.y1fb{bottom:543.493333pt;}
.y125{bottom:543.813333pt;}
.yf8{bottom:545.493333pt;}
.y1b7{bottom:546.453333pt;}
.y14e{bottom:550.053333pt;}
.y171{bottom:550.453333pt;}
.y46{bottom:551.173333pt;}
.y1d6{bottom:556.053333pt;}
.y22e{bottom:558.453333pt;}
.y1fa{bottom:559.173333pt;}
.y124{bottom:559.413333pt;}
.y266{bottom:559.733333pt;}
.yf7{bottom:561.093333pt;}
.y1b6{bottom:562.133333pt;}
.y14d{bottom:565.653333pt;}
.y290{bottom:566.053333pt;}
.yda{bottom:566.133333pt;}
.y29b{bottom:566.453333pt;}
.y45{bottom:566.773333pt;}
.y170{bottom:574.053333pt;}
.y18f{bottom:574.453333pt;}
.y1f9{bottom:574.773333pt;}
.y123{bottom:575.093333pt;}
.y265{bottom:575.333333pt;}
.y1d5{bottom:579.653333pt;}
.y14c{bottom:581.333333pt;}
.yd9{bottom:581.733333pt;}
.y280{bottom:582.053333pt;}
.y7d{bottom:582.453333pt;}
.ya6{bottom:583.093333pt;}
.yf6{bottom:585.013333pt;}
.y11{bottom:585.093333pt;}
.y67{bottom:585.733333pt;}
.y213{bottom:589.653333pt;}
.y18e{bottom:590.053333pt;}
.y1f8{bottom:590.453333pt;}
.y122{bottom:590.693333pt;}
.yd8{bottom:597.413333pt;}
.y27f{bottom:597.653333pt;}
.y7c{bottom:598.053333pt;}
.y44{bottom:598.453333pt;}
.y66{bottom:599.093333pt;}
.y264{bottom:599.253333pt;}
.y212{bottom:605.333333pt;}
.y16f{bottom:605.653333pt;}
.y1f7{bottom:606.053333pt;}
.y121{bottom:606.373333pt;}
.y1d4{bottom:611.333333pt;}
.y14b{bottom:612.933333pt;}
.yd7{bottom:613.013333pt;}
.y243{bottom:613.333333pt;}
.y7b{bottom:613.653333pt;}
.y43{bottom:614.053333pt;}
.y10{bottom:616.693333pt;}
.y1b5{bottom:617.413333pt;}
.y211{bottom:620.933333pt;}
.y16e{bottom:621.333333pt;}
.y9b{bottom:621.653333pt;}
.y120{bottom:621.973333pt;}
.y1d3{bottom:626.933333pt;}
.yf5{bottom:627.973333pt;}
.yd6{bottom:628.613333pt;}
.y28f{bottom:628.933333pt;}
.y7a{bottom:629.333333pt;}
.y42{bottom:629.653333pt;}
.y263{bottom:632.213333pt;}
.y1b4{bottom:633.013333pt;}
.y16d{bottom:636.933333pt;}
.y9a{bottom:637.333333pt;}
.y11f{bottom:637.573333pt;}
.y1d2{bottom:642.613333pt;}
.yf4{bottom:643.573333pt;}
.y14a{bottom:644.213333pt;}
.yd5{bottom:644.293333pt;}
.y28e{bottom:644.613333pt;}
.y79{bottom:644.933333pt;}
.y41{bottom:645.333333pt;}
.y262{bottom:647.813333pt;}
.yf{bottom:648.533333pt;}
.y16c{bottom:652.613333pt;}
.y99{bottom:652.933333pt;}
.y11e{bottom:653.253333pt;}
.ya5{bottom:654.213333pt;}
.y149{bottom:659.813333pt;}
.y78{bottom:660.613333pt;}
.y40{bottom:660.933333pt;}
.y261{bottom:663.413333pt;}
.y1b3{bottom:664.613333pt;}
.y1d1{bottom:666.213333pt;}
.yd4{bottom:667.893333pt;}
.y16b{bottom:668.213333pt;}
.y10f{bottom:668.613333pt;}
.y11d{bottom:668.853333pt;}
.y65{bottom:670.213333pt;}
.yf3{bottom:672.213333pt;}
.y148{bottom:675.493333pt;}
.y242{bottom:676.213333pt;}
.y3f{bottom:676.613333pt;}
.y260{bottom:679.093333pt;}
.y1b2{bottom:680.293333pt;}
.y18d{bottom:683.813333pt;}
.ye{bottom:683.893333pt;}
.y77{bottom:684.213333pt;}
.y11c{bottom:684.533333pt;}
.y98{bottom:684.613333pt;}
.y16a{bottom:691.813333pt;}
.y3e{bottom:692.213333pt;}
.y1d0{bottom:692.853333pt;}
.yd3{bottom:694.533333pt;}
.y1b1{bottom:695.893333pt;}
.y147{bottom:699.093333pt;}
.y210{bottom:699.493333pt;}
.y29a{bottom:699.813333pt;}
.yd{bottom:699.893333pt;}
.y11b{bottom:700.133333pt;}
.y97{bottom:700.213333pt;}
.y25f{bottom:703.013333pt;}
.y18c{bottom:707.493333pt;}
.y3d{bottom:707.813333pt;}
.y1b0{bottom:711.573333pt;}
.yc{bottom:712.533333pt;}
.y20f{bottom:715.093333pt;}
.y2a4{bottom:715.493333pt;}
.y11a{bottom:715.733333pt;}
.y76{bottom:715.813333pt;}
.y241{bottom:723.093333pt;}
.y3c{bottom:723.493333pt;}
.y1f6{bottom:723.813333pt;}
.ya4{bottom:725.413333pt;}
.y1af{bottom:727.173333pt;}
.y146{bottom:730.693333pt;}
.y27e{bottom:731.093333pt;}
.y75{bottom:731.493333pt;}
.yb{bottom:731.893333pt;}
.y25e{bottom:736.213333pt;}
.y20e{bottom:738.693333pt;}
.y3b{bottom:739.093333pt;}
.y119{bottom:739.413333pt;}
.y1f5{bottom:739.493333pt;}
.y63{bottom:741.413333pt;}
.y145{bottom:746.373333pt;}
.y27d{bottom:746.693333pt;}
.y74{bottom:747.093333pt;}
.ya{bottom:747.893333pt;}
.y1cf{bottom:748.373333pt;}
.y1ae{bottom:750.773333pt;}
.y22d{bottom:754.373333pt;}
.y3a{bottom:754.693333pt;}
.y1f4{bottom:755.093333pt;}
.y144{bottom:761.973333pt;}
.y28d{bottom:762.373333pt;}
.y73{bottom:762.693333pt;}
.y9{bottom:763.893333pt;}
.y169{bottom:770.373333pt;}
.y1f3{bottom:770.693333pt;}
.y118{bottom:771.013333pt;}
.y39{bottom:778.373333pt;}
.y25d{bottom:779.093333pt;}
.y8{bottom:779.893333pt;}
.yd2{bottom:781.333333pt;}
.y1ad{bottom:782.453333pt;}
.y168{bottom:785.973333pt;}
.y1f2{bottom:786.373333pt;}
.y117{bottom:786.693333pt;}
.y143{bottom:793.653333pt;}
.y72{bottom:793.973333pt;}
.y25c{bottom:794.693333pt;}
.y7{bottom:795.893333pt;}
.ya3{bottom:796.613333pt;}
.y1ac{bottom:798.053333pt;}
.y167{bottom:801.653333pt;}
.y116{bottom:802.293333pt;}
.y1ce{bottom:803.973333pt;}
.y142{bottom:809.253333pt;}
.y96{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y25b{bottom:810.373333pt;}
.y62{bottom:812.613333pt;}
.y1ab{bottom:813.733333pt;}
.y18b{bottom:817.253333pt;}
.y115{bottom:817.893333pt;}
.y1f1{bottom:817.973333pt;}
.y6{bottom:824.613333pt;}
.y141{bottom:824.853333pt;}
.y95{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y25a{bottom:825.973333pt;}
.y22c{bottom:832.853333pt;}
.yc3{bottom:833.253333pt;}
.y1f0{bottom:833.653333pt;}
.y1aa{bottom:837.333333pt;}
.y140{bottom:840.533333pt;}
.y18a{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y114{bottom:841.493333pt;}
.y259{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y240{bottom:848.533333pt;}
.y166{bottom:848.853333pt;}
.y1ef{bottom:849.253333pt;}
.y35{bottom:856.853333pt;}
.y258{bottom:857.253333pt;}
.y1cc{bottom:859.493333pt;}
.y13f{bottom:864.133333pt;}
.y165{bottom:864.533333pt;}
.yc2{bottom:864.853333pt;}
.ya1{bottom:867.813333pt;}
.yd0{bottom:868.213333pt;}
.y1a9{bottom:868.933333pt;}
.y34{bottom:872.533333pt;}
.y257{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y164{bottom:880.133333pt;}
.yc1{bottom:880.533333pt;}
.y5d{bottom:883.813333pt;}
.y1a8{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y256{bottom:888.533333pt;}
.y13e{bottom:895.813333pt;}
.yc0{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y1a7{bottom:900.240000pt;}
.y32{bottom:903.840000pt;}
.y255{bottom:904.160000pt;}
.y13d{bottom:911.440000pt;}
.ybf{bottom:911.840000pt;}
.y1cb{bottom:915.120000pt;}
.y1a6{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.y254{bottom:919.840000pt;}
.y13c{bottom:927.040000pt;}
.ybe{bottom:927.440000pt;}
.y1a5{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.y71{bottom:935.440000pt;}
.ycf{bottom:939.440000pt;}
.y22b{bottom:942.720000pt;}
.ybd{bottom:943.040000pt;}
.y1a4{bottom:947.120000pt;}
.y2f{bottom:950.720000pt;}
.y70{bottom:951.040000pt;}
.ya0{bottom:954.640000pt;}
.y5a{bottom:955.040000pt;}
.ybc{bottom:958.720000pt;}
.y1a3{bottom:962.800000pt;}
.y22a{bottom:966.320000pt;}
.y6f{bottom:966.720000pt;}
.y1ca{bottom:970.640000pt;}
.ybb{bottom:974.320000pt;}
.y1a2{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.yba{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y1a1{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hb{height:39.200000pt;}
.h10{height:39.280000pt;}
.h2{height:41.765625pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:53.309531pt;}
.h12{height:54.880000pt;}
.h19{height:54.927899pt;}
.h17{height:54.960000pt;}
.h18{height:54.986667pt;}
.ha{height:55.631875pt;}
.hf{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:70.480000pt;}
.h16{height:70.506667pt;}
.hd{height:70.560000pt;}
.he{height:70.586667pt;}
.h13{height:86.160000pt;}
.h11{height:86.186667pt;}
.h15{height:101.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1b{width:92.186667pt;}
.wb{width:96.746667pt;}
.w8{width:99.786667pt;}
.w10{width:103.280000pt;}
.wa{width:108.640000pt;}
.w19{width:111.200000pt;}
.w3{width:111.946667pt;}
.w9{width:112.000000pt;}
.w13{width:116.426667pt;}
.w1a{width:117.520000pt;}
.wd{width:124.160000pt;}
.wc{width:127.120000pt;}
.w5{width:128.346667pt;}
.w16{width:129.440000pt;}
.w15{width:132.346667pt;}
.we{width:134.186667pt;}
.w6{width:135.680000pt;}
.w7{width:138.160000pt;}
.w11{width:139.386667pt;}
.w18{width:140.186667pt;}
.wf{width:143.520000pt;}
.w17{width:145.360000pt;}
.w14{width:145.440000pt;}
.w12{width:148.720000pt;}
.w4{width:154.880000pt;}
.w1c{width:208.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xa{left:62.639988pt;}
.x17{left:68.879988pt;}
.xd{left:93.119988pt;}
.x1f{left:98.879988pt;}
.xf{left:161.546667pt;}
.x2{left:171.306655pt;}
.x5{left:173.706667pt;}
.x18{left:178.266667pt;}
.x13{left:195.946667pt;}
.x1b{left:201.946667pt;}
.xe{left:273.386655pt;}
.x1c{left:313.866667pt;}
.x19{left:324.346667pt;}
.x6{left:329.226667pt;}
.x14{left:340.186667pt;}
.xb{left:372.746655pt;}
.x10{left:383.546667pt;}
.x1d{left:432.026667pt;}
.x15{left:444.106667pt;}
.x7{left:458.293333pt;}
.x11{left:480.933333pt;}
.x1e{left:524.853333pt;}
.x16{left:584.133333pt;}
.x1a{left:587.493333pt;}
.x8{left:594.693333pt;}
.x12{left:608.693333pt;}
.x9{left:636.053322pt;}
.xc{left:701.013322pt;}
.x3{left:711.413322pt;}
}




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