
    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_10f9c91c56697abe4d96a496.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_91ca4b7888e0a992a8c43142.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_67c36038f804ec43721e18e6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_edcdd134fe8b8eb796145721.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_03599fa0bbdb3d6bb4c8550b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_9335e4148a79e44596afdf55.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7cba2f03057d0ab1a2059f51.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2e1f817aa048f74227f3529b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b3697cac0d3a1dde15698ffa.woff')format("woff");}.ff9{font-family:ff9;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:-30.240000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls3{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.126000px;}
.ls12{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:9.540000px;}
.lsb{letter-spacing:11.628000px;}
.ls17{letter-spacing:25.308000px;}
.ls4{letter-spacing:28.062720px;}
.ls8{letter-spacing:34.668000px;}
.lsc{letter-spacing:36.108000px;}
.ls7{letter-spacing:49.788000px;}
.ls16{letter-spacing:52.668000px;}
.ls5{letter-spacing:64.188000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.wsb{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.wsa{word-spacing:-14.940000px;}
.ws12{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.824000px;}
.wse{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.626000px;}
.ws8{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.374000px;}
.ws15{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.248000px;}
.ws13{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._e{width:2.472720px;}
._5{width:3.487440px;}
._8{width:5.378400px;}
._6{width:7.139760px;}
._7{width:8.366400px;}
._a{width:10.312560px;}
._9{width:11.593440px;}
._15{width:14.742000px;}
._3{width:16.254720px;}
._12{width:17.404560px;}
._4{width:18.648720px;}
._13{width:20.554560px;}
._f{width:21.978000px;}
._10{width:23.150640px;}
._22{width:24.160080px;}
._c{width:25.164000px;}
._d{width:26.236320px;}
._b{width:28.134000px;}
._14{width:29.322000px;}
._1c{width:30.456000px;}
._1a{width:31.698000px;}
._19{width:32.994000px;}
._1b{width:34.020000px;}
._11{width:35.370000px;}
._16{width:36.604320px;}
._18{width:38.445360px;}
._1e{width:39.611520px;}
._1d{width:40.770000px;}
._21{width:42.114960px;}
._3a{width:43.254000px;}
._23{width:44.766000px;}
._3f{width:45.948000px;}
._20{width:47.178000px;}
._17{width:48.276000px;}
._54{width:50.058000px;}
._42{width:51.408000px;}
._55{width:53.028000px;}
._28{width:54.707040px;}
._27{width:55.782000px;}
._49{width:57.107520px;}
._1f{width:58.158000px;}
._47{width:59.554320px;}
._24{width:61.506000px;}
._52{width:64.937520px;}
._50{width:66.449520px;}
._30{width:68.148000px;}
._2f{width:69.498000px;}
._4d{width:71.388000px;}
._44{width:74.790000px;}
._43{width:76.158000px;}
._51{width:83.808000px;}
._4f{width:86.076000px;}
._57{width:88.373520px;}
._41{width:90.425520px;}
._26{width:91.764000px;}
._3d{width:95.796000px;}
._3c{width:97.200000px;}
._4e{width:100.548000px;}
._2a{width:101.574000px;}
._25{width:103.752000px;}
._4c{width:115.025040px;}
._37{width:116.154000px;}
._32{width:132.624000px;}
._31{width:134.298000px;}
._56{width:135.324000px;}
._3b{width:141.966000px;}
._46{width:143.154000px;}
._45{width:144.180000px;}
._2d{width:149.958000px;}
._2e{width:151.038000px;}
._36{width:160.842000px;}
._35{width:162.162000px;}
._29{width:169.128000px;}
._53{width:176.148000px;}
._4b{width:178.553520px;}
._34{width:195.210000px;}
._33{width:196.236000px;}
._4a{width:202.932000px;}
._40{width:217.728000px;}
._48{width:218.808000px;}
._2b{width:296.784000px;}
._2c{width:298.110000px;}
._39{width:363.708000px;}
._38{width:365.124000px;}
._3e{width:848.556000px;}
._2{width:2903.467200px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:0.540000px;}
.y9{bottom:3.960000px;}
.y15{bottom:4.965000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y3b{bottom:6.990000px;}
.y13a{bottom:7.200000px;}
.y12f{bottom:7.380000px;}
.y131{bottom:7.740000px;}
.y133{bottom:7.920000px;}
.y164{bottom:9.705000px;}
.y14a{bottom:9.720000px;}
.y265{bottom:9.885000px;}
.y182{bottom:10.065000px;}
.y14e{bottom:10.080000px;}
.y17{bottom:10.185000px;}
.y184{bottom:10.245000px;}
.y14c{bottom:10.260000px;}
.y9d{bottom:11.130000px;}
.y1f{bottom:11.595000px;}
.y1c{bottom:14.505000px;}
.y26b{bottom:14.580000px;}
.y269{bottom:19.065000px;}
.y34{bottom:20.340000px;}
.y8{bottom:22.500000px;}
.y163{bottom:27.525000px;}
.y22f{bottom:27.885000px;}
.y23c{bottom:27.900000px;}
.y24d{bottom:28.065000px;}
.y235{bottom:28.080000px;}
.y165{bottom:28.110000px;}
.y14{bottom:29.085000px;}
.y9c{bottom:30.930000px;}
.y154{bottom:32.400000px;}
.y152{bottom:32.580000px;}
.y33{bottom:40.140000px;}
.y7{bottom:41.040000px;}
.y227{bottom:45.525000px;}
.y22e{bottom:45.705000px;}
.y23b{bottom:45.720000px;}
.y24c{bottom:45.885000px;}
.y234{bottom:45.900000px;}
.y255{bottom:45.930000px;}
.y151{bottom:54.900000px;}
.y6{bottom:56.880000px;}
.y23a{bottom:63.540000px;}
.y25f{bottom:63.585000px;}
.y22d{bottom:63.705000px;}
.y233{bottom:63.720000px;}
.y24a{bottom:63.750000px;}
.y167{bottom:65.340000px;}
.y161{bottom:73.110000px;}
.y253{bottom:77.025000px;}
.y150{bottom:77.220000px;}
.y99{bottom:79.530000px;}
.y16a{bottom:80.460000px;}
.y22c{bottom:81.525000px;}
.y232{bottom:81.540000px;}
.y249{bottom:81.570000px;}
.y25e{bottom:81.585000px;}
.y70{bottom:82.440000px;}
.yff{bottom:82.620000px;}
.y224{bottom:82.800000px;}
.y96{bottom:83.520000px;}
.y1d0{bottom:83.700000px;}
.y270{bottom:86.040000px;}
.y24e{bottom:88.560000px;}
.ye9{bottom:91.440000px;}
.y1c5{bottom:91.620000px;}
.y190{bottom:91.800000px;}
.y12d{bottom:92.520000px;}
.y19{bottom:93.525000px;}
.y22b{bottom:99.345000px;}
.y98{bottom:99.360000px;}
.y262{bottom:99.390000px;}
.y25d{bottom:99.405000px;}
.y23e{bottom:99.540000px;}
.y248{bottom:99.570000px;}
.yc5{bottom:100.260000px;}
.y6f{bottom:100.440000px;}
.y223{bottom:100.800000px;}
.y10{bottom:101.160000px;}
.y95{bottom:101.340000px;}
.y1cf{bottom:101.520000px;}
.y1fd{bottom:101.700000px;}
.y166{bottom:108.000000px;}
.y30{bottom:108.750000px;}
.ye8{bottom:109.260000px;}
.y1c4{bottom:109.440000px;}
.y18f{bottom:109.620000px;}
.y12c{bottom:109.980000px;}
.y1bb{bottom:110.340000px;}
.y26f{bottom:113.040000px;}
.y231{bottom:117.180000px;}
.y239{bottom:117.210000px;}
.y247{bottom:117.390000px;}
.yd1{bottom:117.720000px;}
.yc4{bottom:118.080000px;}
.y6e{bottom:118.260000px;}
.y20{bottom:118.440000px;}
.y222{bottom:118.620000px;}
.y94{bottom:119.160000px;}
.y1ce{bottom:119.340000px;}
.y1fc{bottom:119.520000px;}
.y1c3{bottom:127.260000px;}
.y18e{bottom:127.440000px;}
.y1ba{bottom:128.160000px;}
.y2f{bottom:128.550000px;}
.y12b{bottom:130.140000px;}
.y26e{bottom:130.860000px;}
.y238{bottom:135.030000px;}
.y260{bottom:135.180000px;}
.y230{bottom:135.210000px;}
.yc3{bottom:135.540000px;}
.y169{bottom:135.720000px;}
.y6d{bottom:136.080000px;}
.y221{bottom:136.440000px;}
.y93{bottom:136.980000px;}
.y1cd{bottom:137.160000px;}
.y1fb{bottom:137.340000px;}
.y1c2{bottom:145.080000px;}
.y12{bottom:145.230000px;}
.y18d{bottom:145.260000px;}
.y1b9{bottom:145.980000px;}
.y2e{bottom:148.350000px;}
.y26d{bottom:148.680000px;}
.y237{bottom:152.850000px;}
.y246{bottom:153.030000px;}
.yd0{bottom:153.540000px;}
.y6c{bottom:153.900000px;}
.y220{bottom:154.260000px;}
.y92{bottom:154.800000px;}
.y1cc{bottom:154.980000px;}
.y1fa{bottom:155.160000px;}
.y251{bottom:162.750000px;}
.yc2{bottom:162.900000px;}
.y168{bottom:163.260000px;}
.y1b8{bottom:163.980000px;}
.y26c{bottom:166.680000px;}
.y2d{bottom:168.150000px;}
.y6b{bottom:171.720000px;}
.ye7{bottom:171.900000px;}
.y21f{bottom:172.080000px;}
.y91{bottom:172.620000px;}
.y1cb{bottom:172.980000px;}
.y12a{bottom:176.940000px;}
.y32{bottom:178.020000px;}
.y229{bottom:180.570000px;}
.yc1{bottom:180.720000px;}
.y101{bottom:180.900000px;}
.y18c{bottom:181.080000px;}
.y26a{bottom:181.440000px;}
.y1b7{bottom:181.800000px;}
.y6a{bottom:189.720000px;}
.y21e{bottom:189.900000px;}
.y90{bottom:190.620000px;}
.y160{bottom:190.800000px;}
.y1f9{bottom:190.980000px;}
.y129{bottom:194.760000px;}
.y228{bottom:198.390000px;}
.yc0{bottom:198.540000px;}
.ye6{bottom:198.720000px;}
.y18b{bottom:198.900000px;}
.y1b6{bottom:199.620000px;}
.y31{bottom:207.360000px;}
.y69{bottom:207.570000px;}
.y21d{bottom:207.930000px;}
.y8f{bottom:208.470000px;}
.y1ca{bottom:208.650000px;}
.y1f8{bottom:208.830000px;}
.y128{bottom:212.790000px;}
.y250{bottom:216.210000px;}
.ybf{bottom:216.390000px;}
.ye5{bottom:216.570000px;}
.y18a{bottom:216.750000px;}
.y1b5{bottom:217.470000px;}
.y252{bottom:223.245000px;}
.yfe{bottom:225.390000px;}
.y21c{bottom:225.750000px;}
.y8e{bottom:226.290000px;}
.y1c9{bottom:226.470000px;}
.y1f7{bottom:226.650000px;}
.y127{bottom:230.610000px;}
.y24f{bottom:234.030000px;}
.ybe{bottom:234.210000px;}
.y68{bottom:234.390000px;}
.y189{bottom:234.570000px;}
.y22a{bottom:236.205000px;}
.y162{bottom:236.385000px;}
.y2a{bottom:236.730000px;}
.yfd{bottom:243.210000px;}
.y21b{bottom:243.570000px;}
.y8d{bottom:244.110000px;}
.y1b4{bottom:244.290000px;}
.y1f6{bottom:244.470000px;}
.y268{bottom:244.845000px;}
.y126{bottom:248.430000px;}
.ybd{bottom:252.030000px;}
.y67{bottom:252.210000px;}
.y188{bottom:252.390000px;}
.y29{bottom:256.530000px;}
.yfc{bottom:261.030000px;}
.y21a{bottom:261.390000px;}
.y1b3{bottom:262.110000px;}
.y1f5{bottom:262.290000px;}
.y125{bottom:266.250000px;}
.y66{bottom:270.030000px;}
.y8c{bottom:270.930000px;}
.y28{bottom:276.330000px;}
.yfb{bottom:279.030000px;}
.y219{bottom:279.210000px;}
.y187{bottom:279.390000px;}
.y1b2{bottom:280.110000px;}
.y124{bottom:284.070000px;}
.y15f{bottom:287.490000px;}
.y65{bottom:287.850000px;}
.ye4{bottom:288.030000px;}
.y8b{bottom:288.930000px;}
.y267{bottom:290.385000px;}
.yfa{bottom:296.850000px;}
.y1c1{bottom:297.030000px;}
.y1b1{bottom:297.930000px;}
.y1f4{bottom:298.110000px;}
.y186{bottom:301.365000px;}
.y123{bottom:301.890000px;}
.y15e{bottom:304.950000px;}
.ybc{bottom:305.670000px;}
.y64{bottom:305.850000px;}
.y2c{bottom:306.210000px;}
.y8a{bottom:306.750000px;}
.yf9{bottom:314.310000px;}
.y1c0{bottom:314.850000px;}
.y218{bottom:315.030000px;}
.y1b0{bottom:315.750000px;}
.y1f3{bottom:315.930000px;}
.y266{bottom:317.925000px;}
.y122{bottom:319.890000px;}
.ybb{bottom:323.490000px;}
.y63{bottom:323.670000px;}
.y89{bottom:324.570000px;}
.y185{bottom:328.905000px;}
.y15d{bottom:332.130000px;}
.y1bf{bottom:332.670000px;}
.y217{bottom:332.850000px;}
.y1af{bottom:333.570000px;}
.y1f2{bottom:333.750000px;}
.y2b{bottom:335.370000px;}
.y121{bottom:337.710000px;}
.y23f{bottom:340.065000px;}
.ycf{bottom:341.310000px;}
.y62{bottom:341.490000px;}
.y88{bottom:342.390000px;}
.y25{bottom:344.955000px;}
.y15c{bottom:349.950000px;}
.yba{bottom:350.310000px;}
.y1be{bottom:350.490000px;}
.y216{bottom:350.670000px;}
.y1ae{bottom:351.390000px;}
.y1f1{bottom:351.570000px;}
.y226{bottom:353.025000px;}
.y120{bottom:355.530000px;}
.y183{bottom:356.445000px;}
.y61{bottom:359.310000px;}
.y87{bottom:360.210000px;}
.y264{bottom:363.285000px;}
.y24{bottom:364.755000px;}
.y15b{bottom:367.770000px;}
.yb9{bottom:368.310000px;}
.y215{bottom:368.490000px;}
.y1ad{bottom:369.210000px;}
.y1f0{bottom:369.390000px;}
.y11f{bottom:373.350000px;}
.y60{bottom:377.130000px;}
.ye3{bottom:377.310000px;}
.y86{bottom:378.030000px;}
.y181{bottom:384.165000px;}
.y23{bottom:384.555000px;}
.y15a{bottom:385.590000px;}
.yb8{bottom:386.130000px;}
.y1bd{bottom:386.310000px;}
.y1ac{bottom:387.210000px;}
.y11e{bottom:391.170000px;}
.y5f{bottom:395.130000px;}
.y85{bottom:396.030000px;}
.y263{bottom:396.750000px;}
.y159{bottom:403.590000px;}
.yb7{bottom:403.950000px;}
.y100{bottom:404.130000px;}
.y214{bottom:404.310000px;}
.y22{bottom:404.535000px;}
.y1ab{bottom:405.030000px;}
.y1ef{bottom:405.210000px;}
.y11d{bottom:408.990000px;}
.y257{bottom:411.525000px;}
.y180{bottom:411.705000px;}
.y5e{bottom:412.950000px;}
.y84{bottom:413.850000px;}
.y27{bottom:414.390000px;}
.y158{bottom:421.410000px;}
.yb6{bottom:421.770000px;}
.yf8{bottom:421.950000px;}
.y213{bottom:422.130000px;}
.y1aa{bottom:422.850000px;}
.y1ee{bottom:423.030000px;}
.y21{bottom:423.975000px;}
.y11c{bottom:426.990000px;}
.y5d{bottom:430.770000px;}
.y157{bottom:439.230000px;}
.yb5{bottom:439.590000px;}
.yf7{bottom:439.770000px;}
.y212{bottom:439.950000px;}
.y83{bottom:440.715000px;}
.y1ed{bottom:440.895000px;}
.y26{bottom:443.550000px;}
.y11b{bottom:444.495000px;}
.y17f{bottom:444.675000px;}
.y225{bottom:448.455000px;}
.y5c{bottom:448.635000px;}
.y156{bottom:457.095000px;}
.yb4{bottom:457.455000px;}
.ye2{bottom:457.635000px;}
.y211{bottom:457.815000px;}
.y82{bottom:458.535000px;}
.y1ec{bottom:458.715000px;}
.y5b{bottom:466.455000px;}
.y17e{bottom:466.995000px;}
.y25c{bottom:467.880000px;}
.y11a{bottom:471.675000px;}
.yb3{bottom:475.455000px;}
.y210{bottom:475.635000px;}
.y81{bottom:476.355000px;}
.y1a9{bottom:476.535000px;}
.y155{bottom:479.055000px;}
.y5a{bottom:484.275000px;}
.y25b{bottom:485.700000px;}
.y244{bottom:485.880000px;}
.y119{bottom:489.495000px;}
.y24b{bottom:492.735000px;}
.yb2{bottom:493.275000px;}
.ye1{bottom:493.455000px;}
.y80{bottom:494.355000px;}
.y17d{bottom:494.535000px;}
.y59{bottom:502.275000px;}
.y25a{bottom:503.565000px;}
.y243{bottom:503.700000px;}
.y153{bottom:506.775000px;}
.y118{bottom:507.315000px;}
.yce{bottom:511.095000px;}
.ye0{bottom:511.275000px;}
.y20f{bottom:511.455000px;}
.y7f{bottom:512.175000px;}
.y1eb{bottom:512.355000px;}
.y58{bottom:520.095000px;}
.y242{bottom:521.520000px;}
.y259{bottom:521.565000px;}
.y117{bottom:525.315000px;}
.y17c{bottom:527.475000px;}
.ycd{bottom:528.915000px;}
.ydf{bottom:529.095000px;}
.y20e{bottom:529.275000px;}
.y7e{bottom:529.995000px;}
.y1ea{bottom:530.175000px;}
.y57{bottom:537.915000px;}
.y241{bottom:539.340000px;}
.y258{bottom:539.385000px;}
.y116{bottom:543.135000px;}
.yde{bottom:546.915000px;}
.y20d{bottom:547.095000px;}
.y7d{bottom:547.815000px;}
.y1e9{bottom:547.995000px;}
.y56{bottom:555.735000px;}
.y14f{bottom:556.635000px;}
.y240{bottom:557.160000px;}
.y17b{bottom:557.895000px;}
.y115{bottom:560.955000px;}
.y261{bottom:564.195000px;}
.ydd{bottom:564.735000px;}
.y20c{bottom:564.915000px;}
.y7c{bottom:565.635000px;}
.y1e8{bottom:565.815000px;}
.y1c8{bottom:567.795000px;}
.y55{bottom:573.555000px;}
.yb1{bottom:573.735000px;}
.y17a{bottom:575.535000px;}
.y114{bottom:578.775000px;}
.ydc{bottom:582.735000px;}
.y1e7{bottom:583.635000px;}
.y54{bottom:591.555000px;}
.y7b{bottom:592.455000px;}
.y1a8{bottom:592.635000px;}
.y113{bottom:596.595000px;}
.ydb{bottom:600.555000px;}
.y20b{bottom:600.735000px;}
.y1e6{bottom:601.635000px;}
.y179{bottom:602.355000px;}
.y53{bottom:609.375000px;}
.yf6{bottom:609.555000px;}
.y7a{bottom:610.455000px;}
.y112{bottom:614.415000px;}
.yf{bottom:614.955000px;}
.yda{bottom:618.375000px;}
.y20a{bottom:618.555000px;}
.y1e5{bottom:619.455000px;}
.yb0{bottom:627.195000px;}
.yf5{bottom:627.375000px;}
.y79{bottom:628.275000px;}
.y111{bottom:632.415000px;}
.ye{bottom:633.855000px;}
.y52{bottom:636.195000px;}
.y209{bottom:636.375000px;}
.y1e4{bottom:637.275000px;}
.y1e{bottom:639.720000px;}
.yaf{bottom:645.015000px;}
.yf4{bottom:645.195000px;}
.y78{bottom:646.095000px;}
.y178{bottom:650.055000px;}
.y110{bottom:650.235000px;}
.y14d{bottom:651.315000px;}
.y51{bottom:654.015000px;}
.y208{bottom:654.195000px;}
.y1e3{bottom:655.095000px;}
.ycc{bottom:662.835000px;}
.yf3{bottom:663.015000px;}
.y77{bottom:663.915000px;}
.y177{bottom:667.875000px;}
.y10f{bottom:668.055000px;}
.y50{bottom:671.835000px;}
.y207{bottom:672.015000px;}
.y1e2{bottom:672.915000px;}
.y14b{bottom:678.885000px;}
.y1d{bottom:679.755000px;}
.ycb{bottom:680.865000px;}
.y76{bottom:681.765000px;}
.y1a7{bottom:681.945000px;}
.y176{bottom:685.725000px;}
.y10e{bottom:685.905000px;}
.y4f{bottom:689.685000px;}
.yae{bottom:689.865000px;}
.y1e1{bottom:690.945000px;}
.yca{bottom:698.685000px;}
.yf2{bottom:698.865000px;}
.y75{bottom:699.765000px;}
.y10d{bottom:703.725000px;}
.y149{bottom:706.605000px;}
.y4e{bottom:707.685000px;}
.y206{bottom:707.865000px;}
.yd{bottom:708.585000px;}
.y1e0{bottom:708.765000px;}
.y175{bottom:712.545000px;}
.y18{bottom:714.420000px;}
.yd9{bottom:716.685000px;}
.y74{bottom:717.585000px;}
.y10c{bottom:721.725000px;}
.y4d{bottom:725.505000px;}
.y205{bottom:725.685000px;}
.y1df{bottom:726.585000px;}
.yd8{bottom:734.505000px;}
.y73{bottom:735.405000px;}
.y10b{bottom:739.545000px;}
.y148{bottom:739.725000px;}
.y4c{bottom:743.325000px;}
.y204{bottom:743.505000px;}
.y1de{bottom:744.405000px;}
.yd7{bottom:752.325000px;}
.y72{bottom:753.225000px;}
.y1b{bottom:755.205000px;}
.y147{bottom:757.185000px;}
.y10a{bottom:757.365000px;}
.y4b{bottom:761.145000px;}
.y203{bottom:761.325000px;}
.y1dd{bottom:762.225000px;}
.yd6{bottom:770.145000px;}
.y1a6{bottom:771.045000px;}
.y71{bottom:773.025000px;}
.y174{bottom:774.825000px;}
.y109{bottom:775.185000px;}
.y4a{bottom:778.965000px;}
.yad{bottom:779.145000px;}
.y1dc{bottom:780.045000px;}
.y1a{bottom:781.665000px;}
.y146{bottom:784.545000px;}
.yd5{bottom:788.145000px;}
.y1a5{bottom:789.045000px;}
.y108{bottom:792.645000px;}
.yac{bottom:796.965000px;}
.y202{bottom:797.145000px;}
.y245{bottom:797.865000px;}
.y1db{bottom:798.045000px;}
.y173{bottom:802.005000px;}
.y145{bottom:802.365000px;}
.y49{bottom:805.785000px;}
.yd4{bottom:805.965000px;}
.y1a4{bottom:806.865000px;}
.y107{bottom:812.985000px;}
.yab{bottom:814.785000px;}
.y201{bottom:814.965000px;}
.y1da{bottom:815.865000px;}
.y172{bottom:819.825000px;}
.y144{bottom:820.185000px;}
.y48{bottom:823.785000px;}
.y1a3{bottom:824.685000px;}
.yc{bottom:825.585000px;}
.y16{bottom:831.420000px;}
.yaa{bottom:832.605000px;}
.y200{bottom:832.785000px;}
.y1d9{bottom:833.685000px;}
.y171{bottom:837.825000px;}
.y143{bottom:838.005000px;}
.y47{bottom:841.605000px;}
.y1a2{bottom:842.505000px;}
.y106{bottom:845.745000px;}
.ya9{bottom:850.425000px;}
.y1ff{bottom:850.605000px;}
.y1d8{bottom:851.505000px;}
.y170{bottom:855.645000px;}
.y142{bottom:855.825000px;}
.y46{bottom:859.425000px;}
.y1a1{bottom:860.325000px;}
.yc9{bottom:868.245000px;}
.y1fe{bottom:868.425000px;}
.y105{bottom:869.325000px;}
.y16f{bottom:873.465000px;}
.y141{bottom:873.825000px;}
.y45{bottom:877.245000px;}
.y1a0{bottom:878.325000px;}
.y13{bottom:882.360000px;}
.y1c7{bottom:885.885000px;}
.yc8{bottom:886.245000px;}
.y1d7{bottom:887.325000px;}
.y140{bottom:891.645000px;}
.y44{bottom:895.065000px;}
.ya8{bottom:895.245000px;}
.y19f{bottom:896.145000px;}
.y16e{bottom:900.285000px;}
.yf1{bottom:904.245000px;}
.y1d6{bottom:905.145000px;}
.y13f{bottom:909.465000px;}
.y43{bottom:913.110000px;}
.y19e{bottom:914.010000px;}
.y23d{bottom:914.730000px;}
.yf0{bottom:922.110000px;}
.y1d5{bottom:923.010000px;}
.y16d{bottom:927.150000px;}
.y13e{bottom:927.330000px;}
.y42{bottom:930.930000px;}
.y19d{bottom:931.830000px;}
.yb{bottom:936.870000px;}
.yef{bottom:939.930000px;}
.y1d4{bottom:940.830000px;}
.y11{bottom:943.740000px;}
.y13d{bottom:945.150000px;}
.y41{bottom:948.750000px;}
.y19c{bottom:949.650000px;}
.y16c{bottom:953.970000px;}
.yee{bottom:957.750000px;}
.y3a{bottom:958.140000px;}
.y1d3{bottom:958.650000px;}
.y40{bottom:966.570000px;}
.y19b{bottom:967.110000px;}
.y256{bottom:968.370000px;}
.y13c{bottom:971.970000px;}
.yed{bottom:975.570000px;}
.y1d2{bottom:976.470000px;}
.y16b{bottom:980.970000px;}
.y1bc{bottom:984.210000px;}
.y3f{bottom:984.390000px;}
.ya7{bottom:984.570000px;}
.y13b{bottom:989.970000px;}
.y39{bottom:991.770000px;}
.yec{bottom:993.570000px;}
.y19a{bottom:994.470000px;}
.y3e{bottom:1002.210000px;}
.ya6{bottom:1002.390000px;}
.y139{bottom:1002.930000px;}
.yeb{bottom:1011.390000px;}
.y199{bottom:1012.290000px;}
.y38{bottom:1018.050000px;}
.y3d{bottom:1020.210000px;}
.y138{bottom:1024.530000px;}
.yd3{bottom:1029.210000px;}
.y198{bottom:1030.110000px;}
.y236{bottom:1031.730000px;}
.ya5{bottom:1038.030000px;}
.y3c{bottom:1040.010000px;}
.y37{bottom:1044.510000px;}
.y137{bottom:1046.670000px;}
.yd2{bottom:1047.030000px;}
.y197{bottom:1047.930000px;}
.ya4{bottom:1055.490000px;}
.y1c6{bottom:1055.850000px;}
.yc7{bottom:1064.850000px;}
.y196{bottom:1065.750000px;}
.y136{bottom:1068.810000px;}
.y97{bottom:1069.740000px;}
.y36{bottom:1070.790000px;}
.ya3{bottom:1073.310000px;}
.y104{bottom:1073.670000px;}
.yc6{bottom:1082.670000px;}
.y195{bottom:1083.750000px;}
.y135{bottom:1091.130000px;}
.y103{bottom:1091.670000px;}
.y9b{bottom:1100.670000px;}
.y194{bottom:1101.570000px;}
.y254{bottom:1103.010000px;}
.y102{bottom:1109.490000px;}
.ya{bottom:1110.030000px;}
.y134{bottom:1113.270000px;}
.ya2{bottom:1118.490000px;}
.y193{bottom:1119.390000px;}
.y9a{bottom:1129.470000px;}
.y132{bottom:1135.410000px;}
.ya1{bottom:1136.310000px;}
.y192{bottom:1136.850000px;}
.y1d1{bottom:1137.210000px;}
.ya0{bottom:1154.160000px;}
.y191{bottom:1157.040000px;}
.y130{bottom:1157.760000px;}
.y9f{bottom:1171.980000px;}
.y12e{bottom:1179.900000px;}
.yea{bottom:1189.440000px;}
.y9e{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h23{height:20.880000px;}
.h20{height:21.420000px;}
.h22{height:21.600000px;}
.h21{height:21.622500px;}
.h4{height:21.780000px;}
.h31{height:26.805000px;}
.h30{height:26.815500px;}
.h24{height:26.820000px;}
.h27{height:26.850000px;}
.h2a{height:26.985000px;}
.h26{height:27.000000px;}
.hd{height:38.880000px;}
.h10{height:40.985156px;}
.h2d{height:44.625000px;}
.h2e{height:44.856000px;}
.h19{height:48.410156px;}
.hb{height:48.600000px;}
.h3{height:48.616875px;}
.h29{height:49.125000px;}
.h15{height:49.255313px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.h9{height:52.998047px;}
.h1f{height:54.421875px;}
.h1a{height:55.503491px;}
.h8{height:55.825312px;}
.h1e{height:56.214844px;}
.h14{height:58.621992px;}
.h1d{height:58.651172px;}
.h16{height:58.763250px;}
.h2b{height:59.092031px;}
.h25{height:60.041250px;}
.h1c{height:60.226875px;}
.h33{height:62.625000px;}
.h45{height:62.676000px;}
.h12{height:63.180000px;}
.h6{height:65.010937px;}
.h11{height:66.757500px;}
.he{height:72.326250px;}
.h32{height:78.367500px;}
.h18{height:80.949375px;}
.h2f{height:82.075500px;}
.hc{height:84.898125px;}
.h2c{height:90.216000px;}
.h28{height:93.945000px;}
.h40{height:98.302500px;}
.hf{height:105.480000px;}
.h1b{height:113.040000px;}
.h35{height:116.085000px;}
.h3a{height:116.136000px;}
.h38{height:116.280000px;}
.h17{height:132.480000px;}
.h3c{height:133.905000px;}
.h41{height:133.920000px;}
.h44{height:133.950000px;}
.h3f{height:133.956000px;}
.h43{height:151.920000px;}
.h3d{height:151.935000px;}
.h36{height:151.950000px;}
.ha{height:160.560000px;}
.h37{height:169.590000px;}
.h3b{height:169.770000px;}
.h3e{height:250.770000px;}
.h34{height:268.770000px;}
.h13{height:438.120000px;}
.h42{height:556.110000px;}
.h39{height:573.930000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:32.602500px;}
.w1b{width:32.940000px;}
.w3f{width:33.465000px;}
.w1a{width:39.600000px;}
.w37{width:39.765000px;}
.w2c{width:41.385000px;}
.w2a{width:41.421000px;}
.w21{width:45.705000px;}
.w27{width:45.750000px;}
.w3a{width:46.425000px;}
.w1c{width:46.440000px;}
.w39{width:46.605000px;}
.w3e{width:46.785000px;}
.w3d{width:46.965000px;}
.w22{width:47.865000px;}
.w2f{width:48.225000px;}
.w34{width:48.262500px;}
.w29{width:49.125000px;}
.w23{width:50.025000px;}
.wd{width:50.962500px;}
.w2d{width:52.185000px;}
.w25{width:52.545000px;}
.w24{width:52.581000px;}
.w2e{width:53.130000px;}
.w1d{width:53.280000px;}
.w2b{width:57.045000px;}
.w40{width:60.330000px;}
.w28{width:65.865000px;}
.w26{width:66.045000px;}
.w1f{width:66.591000px;}
.w35{width:73.431000px;}
.w31{width:73.461000px;}
.w30{width:73.605000px;}
.w33{width:73.620000px;}
.w2{width:85.320000px;}
.w13{width:86.602500px;}
.w19{width:86.976000px;}
.w14{width:87.111000px;}
.w3c{width:93.765000px;}
.w3b{width:93.810000px;}
.w15{width:93.816000px;}
.w16{width:96.300000px;}
.w17{width:100.102500px;}
.w18{width:100.440000px;}
.wb{width:115.596000px;}
.wa{width:139.342500px;}
.w38{width:147.801000px;}
.we{width:163.290000px;}
.wf{width:181.470000px;}
.w32{width:181.650000px;}
.w10{width:188.295000px;}
.w11{width:195.150000px;}
.w9{width:255.670500px;}
.w20{width:363.490500px;}
.w12{width:366.010500px;}
.w36{width:377.340000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:777.420000px;}
.wc{width:782.095500px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x60{left:3.240000px;}
.x2c{left:4.485000px;}
.x3e{left:5.580000px;}
.x2a{left:7.200000px;}
.x2e{left:9.715500px;}
.xb{left:10.800000px;}
.x41{left:12.420000px;}
.xc{left:13.860000px;}
.x39{left:16.020000px;}
.x3c{left:17.460000px;}
.x3f{left:18.540000px;}
.x42{left:19.620000px;}
.x24{left:21.235500px;}
.x45{left:22.680000px;}
.x29{left:25.375500px;}
.x26{left:28.800000px;}
.x37{left:31.711500px;}
.x61{left:42.465000px;}
.x44{left:43.605000px;}
.xe{left:51.516000px;}
.x5{left:54.000000px;}
.x22{left:55.444500px;}
.x27{left:57.811500px;}
.x36{left:58.864500px;}
.x14{left:61.200000px;}
.x13{left:65.160000px;}
.x2f{left:66.234000px;}
.x59{left:67.500000px;}
.x23{left:70.051500px;}
.x15{left:72.000000px;}
.x30{left:75.420000px;}
.x1c{left:81.000000px;}
.x31{left:82.245000px;}
.x32{left:85.680000px;}
.xf{left:89.316000px;}
.x43{left:92.376000px;}
.x1{left:100.080000px;}
.x1d{left:108.036000px;}
.x46{left:115.765500px;}
.x33{left:144.936000px;}
.x12{left:147.450000px;}
.x38{left:159.870000px;}
.x6{left:161.670000px;}
.x1b{left:170.895000px;}
.x5a{left:174.270000px;}
.x25{left:195.510000px;}
.x1a{left:198.360000px;}
.x40{left:207.030000px;}
.x34{left:232.770000px;}
.x10{left:240.330000px;}
.x5b{left:248.610000px;}
.x3a{left:261.030000px;}
.x2b{left:271.155000px;}
.x11{left:272.415000px;}
.x18{left:279.795000px;}
.x19{left:287.715000px;}
.x16{left:290.415000px;}
.x35{left:327.315000px;}
.x28{left:332.350500px;}
.x3b{left:348.915000px;}
.xd{left:350.175000px;}
.x7{left:356.655000px;}
.x17{left:358.635000px;}
.x3{left:367.920000px;}
.x3d{left:389.415000px;}
.x4{left:454.140000px;}
.x56{left:462.900000px;}
.x1e{left:465.945000px;}
.x49{left:469.920000px;}
.x1f{left:492.945000px;}
.x5c{left:505.920000px;}
.x57{left:511.860000px;}
.x47{left:514.185000px;}
.x4a{left:516.360000px;}
.x20{left:519.945000px;}
.x48{left:534.885000px;}
.x50{left:536.880000px;}
.x4b{left:564.960000px;}
.x51{left:586.740000px;}
.x4c{left:615.720000px;}
.x52{left:628.890000px;}
.x2d{left:642.390000px;}
.x5d{left:654.450000px;}
.x58{left:660.390000px;}
.x4d{left:669.030000px;}
.x53{left:686.670000px;}
.x5e{left:701.790000px;}
.x4e{left:722.490000px;}
.x54{left:728.790000px;}
.x5f{left:748.950000px;}
.x55{left:781.710000px;}
.x4f{left:789.270000px;}
.x21{left:833.220000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xa{left:848.340000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.112000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:8.480000pt;}
.lsb{letter-spacing:10.336000pt;}
.ls17{letter-spacing:22.496000pt;}
.ls4{letter-spacing:24.944640pt;}
.ls8{letter-spacing:30.816000pt;}
.lsc{letter-spacing:32.096000pt;}
.ls7{letter-spacing:44.256000pt;}
.ls16{letter-spacing:46.816000pt;}
.ls5{letter-spacing:57.056000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsb{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.288000pt;}
.wse{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.112000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws15{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.776000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._e{width:2.197973pt;}
._5{width:3.099947pt;}
._8{width:4.780800pt;}
._6{width:6.346453pt;}
._7{width:7.436800pt;}
._a{width:9.166720pt;}
._9{width:10.305280pt;}
._15{width:13.104000pt;}
._3{width:14.448640pt;}
._12{width:15.470720pt;}
._4{width:16.576640pt;}
._13{width:18.270720pt;}
._f{width:19.536000pt;}
._10{width:20.578347pt;}
._22{width:21.475627pt;}
._c{width:22.368000pt;}
._d{width:23.321173pt;}
._b{width:25.008000pt;}
._14{width:26.064000pt;}
._1c{width:27.072000pt;}
._1a{width:28.176000pt;}
._19{width:29.328000pt;}
._1b{width:30.240000pt;}
._11{width:31.440000pt;}
._16{width:32.537173pt;}
._18{width:34.173653pt;}
._1e{width:35.210240pt;}
._1d{width:36.240000pt;}
._21{width:37.435520pt;}
._3a{width:38.448000pt;}
._23{width:39.792000pt;}
._3f{width:40.842667pt;}
._20{width:41.936000pt;}
._17{width:42.912000pt;}
._54{width:44.496000pt;}
._42{width:45.696000pt;}
._55{width:47.136000pt;}
._28{width:48.628480pt;}
._27{width:49.584000pt;}
._49{width:50.762240pt;}
._1f{width:51.696000pt;}
._47{width:52.937173pt;}
._24{width:54.672000pt;}
._52{width:57.722240pt;}
._50{width:59.066240pt;}
._30{width:60.576000pt;}
._2f{width:61.776000pt;}
._4d{width:63.456000pt;}
._44{width:66.480000pt;}
._43{width:67.696000pt;}
._51{width:74.496000pt;}
._4f{width:76.512000pt;}
._57{width:78.554240pt;}
._41{width:80.378240pt;}
._26{width:81.568000pt;}
._3d{width:85.152000pt;}
._3c{width:86.400000pt;}
._4e{width:89.376000pt;}
._2a{width:90.288000pt;}
._25{width:92.224000pt;}
._4c{width:102.244480pt;}
._37{width:103.248000pt;}
._32{width:117.888000pt;}
._31{width:119.376000pt;}
._56{width:120.288000pt;}
._3b{width:126.192000pt;}
._46{width:127.248000pt;}
._45{width:128.160000pt;}
._2d{width:133.296000pt;}
._2e{width:134.256000pt;}
._36{width:142.970667pt;}
._35{width:144.144000pt;}
._29{width:150.336000pt;}
._53{width:156.576000pt;}
._4b{width:158.714240pt;}
._34{width:173.520000pt;}
._33{width:174.432000pt;}
._4a{width:180.384000pt;}
._40{width:193.536000pt;}
._48{width:194.496000pt;}
._2b{width:263.808000pt;}
._2c{width:264.986667pt;}
._39{width:323.296000pt;}
._38{width:324.554667pt;}
._3e{width:754.272000pt;}
._2{width:2580.859733pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:0.480000pt;}
.y9{bottom:3.520000pt;}
.y15{bottom:4.413333pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y3b{bottom:6.213333pt;}
.y13a{bottom:6.400000pt;}
.y12f{bottom:6.560000pt;}
.y131{bottom:6.880000pt;}
.y133{bottom:7.040000pt;}
.y164{bottom:8.626667pt;}
.y14a{bottom:8.640000pt;}
.y265{bottom:8.786667pt;}
.y182{bottom:8.946667pt;}
.y14e{bottom:8.960000pt;}
.y17{bottom:9.053333pt;}
.y184{bottom:9.106667pt;}
.y14c{bottom:9.120000pt;}
.y9d{bottom:9.893333pt;}
.y1f{bottom:10.306667pt;}
.y1c{bottom:12.893333pt;}
.y26b{bottom:12.960000pt;}
.y269{bottom:16.946667pt;}
.y34{bottom:18.080000pt;}
.y8{bottom:20.000000pt;}
.y163{bottom:24.466667pt;}
.y22f{bottom:24.786667pt;}
.y23c{bottom:24.800000pt;}
.y24d{bottom:24.946667pt;}
.y235{bottom:24.960000pt;}
.y165{bottom:24.986667pt;}
.y14{bottom:25.853333pt;}
.y9c{bottom:27.493333pt;}
.y154{bottom:28.800000pt;}
.y152{bottom:28.960000pt;}
.y33{bottom:35.680000pt;}
.y7{bottom:36.480000pt;}
.y227{bottom:40.466667pt;}
.y22e{bottom:40.626667pt;}
.y23b{bottom:40.640000pt;}
.y24c{bottom:40.786667pt;}
.y234{bottom:40.800000pt;}
.y255{bottom:40.826667pt;}
.y151{bottom:48.800000pt;}
.y6{bottom:50.560000pt;}
.y23a{bottom:56.480000pt;}
.y25f{bottom:56.520000pt;}
.y22d{bottom:56.626667pt;}
.y233{bottom:56.640000pt;}
.y24a{bottom:56.666667pt;}
.y167{bottom:58.080000pt;}
.y161{bottom:64.986667pt;}
.y253{bottom:68.466667pt;}
.y150{bottom:68.640000pt;}
.y99{bottom:70.693333pt;}
.y16a{bottom:71.520000pt;}
.y22c{bottom:72.466667pt;}
.y232{bottom:72.480000pt;}
.y249{bottom:72.506667pt;}
.y25e{bottom:72.520000pt;}
.y70{bottom:73.280000pt;}
.yff{bottom:73.440000pt;}
.y224{bottom:73.600000pt;}
.y96{bottom:74.240000pt;}
.y1d0{bottom:74.400000pt;}
.y270{bottom:76.480000pt;}
.y24e{bottom:78.720000pt;}
.ye9{bottom:81.280000pt;}
.y1c5{bottom:81.440000pt;}
.y190{bottom:81.600000pt;}
.y12d{bottom:82.240000pt;}
.y19{bottom:83.133333pt;}
.y22b{bottom:88.306667pt;}
.y98{bottom:88.320000pt;}
.y262{bottom:88.346667pt;}
.y25d{bottom:88.360000pt;}
.y23e{bottom:88.480000pt;}
.y248{bottom:88.506667pt;}
.yc5{bottom:89.120000pt;}
.y6f{bottom:89.280000pt;}
.y223{bottom:89.600000pt;}
.y10{bottom:89.920000pt;}
.y95{bottom:90.080000pt;}
.y1cf{bottom:90.240000pt;}
.y1fd{bottom:90.400000pt;}
.y166{bottom:96.000000pt;}
.y30{bottom:96.666667pt;}
.ye8{bottom:97.120000pt;}
.y1c4{bottom:97.280000pt;}
.y18f{bottom:97.440000pt;}
.y12c{bottom:97.760000pt;}
.y1bb{bottom:98.080000pt;}
.y26f{bottom:100.480000pt;}
.y231{bottom:104.160000pt;}
.y239{bottom:104.186667pt;}
.y247{bottom:104.346667pt;}
.yd1{bottom:104.640000pt;}
.yc4{bottom:104.960000pt;}
.y6e{bottom:105.120000pt;}
.y20{bottom:105.280000pt;}
.y222{bottom:105.440000pt;}
.y94{bottom:105.920000pt;}
.y1ce{bottom:106.080000pt;}
.y1fc{bottom:106.240000pt;}
.y1c3{bottom:113.120000pt;}
.y18e{bottom:113.280000pt;}
.y1ba{bottom:113.920000pt;}
.y2f{bottom:114.266667pt;}
.y12b{bottom:115.680000pt;}
.y26e{bottom:116.320000pt;}
.y238{bottom:120.026667pt;}
.y260{bottom:120.160000pt;}
.y230{bottom:120.186667pt;}
.yc3{bottom:120.480000pt;}
.y169{bottom:120.640000pt;}
.y6d{bottom:120.960000pt;}
.y221{bottom:121.280000pt;}
.y93{bottom:121.760000pt;}
.y1cd{bottom:121.920000pt;}
.y1fb{bottom:122.080000pt;}
.y1c2{bottom:128.960000pt;}
.y12{bottom:129.093333pt;}
.y18d{bottom:129.120000pt;}
.y1b9{bottom:129.760000pt;}
.y2e{bottom:131.866667pt;}
.y26d{bottom:132.160000pt;}
.y237{bottom:135.866667pt;}
.y246{bottom:136.026667pt;}
.yd0{bottom:136.480000pt;}
.y6c{bottom:136.800000pt;}
.y220{bottom:137.120000pt;}
.y92{bottom:137.600000pt;}
.y1cc{bottom:137.760000pt;}
.y1fa{bottom:137.920000pt;}
.y251{bottom:144.666667pt;}
.yc2{bottom:144.800000pt;}
.y168{bottom:145.120000pt;}
.y1b8{bottom:145.760000pt;}
.y26c{bottom:148.160000pt;}
.y2d{bottom:149.466667pt;}
.y6b{bottom:152.640000pt;}
.ye7{bottom:152.800000pt;}
.y21f{bottom:152.960000pt;}
.y91{bottom:153.440000pt;}
.y1cb{bottom:153.760000pt;}
.y12a{bottom:157.280000pt;}
.y32{bottom:158.240000pt;}
.y229{bottom:160.506667pt;}
.yc1{bottom:160.640000pt;}
.y101{bottom:160.800000pt;}
.y18c{bottom:160.960000pt;}
.y26a{bottom:161.280000pt;}
.y1b7{bottom:161.600000pt;}
.y6a{bottom:168.640000pt;}
.y21e{bottom:168.800000pt;}
.y90{bottom:169.440000pt;}
.y160{bottom:169.600000pt;}
.y1f9{bottom:169.760000pt;}
.y129{bottom:173.120000pt;}
.y228{bottom:176.346667pt;}
.yc0{bottom:176.480000pt;}
.ye6{bottom:176.640000pt;}
.y18b{bottom:176.800000pt;}
.y1b6{bottom:177.440000pt;}
.y31{bottom:184.320000pt;}
.y69{bottom:184.506667pt;}
.y21d{bottom:184.826667pt;}
.y8f{bottom:185.306667pt;}
.y1ca{bottom:185.466667pt;}
.y1f8{bottom:185.626667pt;}
.y128{bottom:189.146667pt;}
.y250{bottom:192.186667pt;}
.ybf{bottom:192.346667pt;}
.ye5{bottom:192.506667pt;}
.y18a{bottom:192.666667pt;}
.y1b5{bottom:193.306667pt;}
.y252{bottom:198.440000pt;}
.yfe{bottom:200.346667pt;}
.y21c{bottom:200.666667pt;}
.y8e{bottom:201.146667pt;}
.y1c9{bottom:201.306667pt;}
.y1f7{bottom:201.466667pt;}
.y127{bottom:204.986667pt;}
.y24f{bottom:208.026667pt;}
.ybe{bottom:208.186667pt;}
.y68{bottom:208.346667pt;}
.y189{bottom:208.506667pt;}
.y22a{bottom:209.960000pt;}
.y162{bottom:210.120000pt;}
.y2a{bottom:210.426667pt;}
.yfd{bottom:216.186667pt;}
.y21b{bottom:216.506667pt;}
.y8d{bottom:216.986667pt;}
.y1b4{bottom:217.146667pt;}
.y1f6{bottom:217.306667pt;}
.y268{bottom:217.640000pt;}
.y126{bottom:220.826667pt;}
.ybd{bottom:224.026667pt;}
.y67{bottom:224.186667pt;}
.y188{bottom:224.346667pt;}
.y29{bottom:228.026667pt;}
.yfc{bottom:232.026667pt;}
.y21a{bottom:232.346667pt;}
.y1b3{bottom:232.986667pt;}
.y1f5{bottom:233.146667pt;}
.y125{bottom:236.666667pt;}
.y66{bottom:240.026667pt;}
.y8c{bottom:240.826667pt;}
.y28{bottom:245.626667pt;}
.yfb{bottom:248.026667pt;}
.y219{bottom:248.186667pt;}
.y187{bottom:248.346667pt;}
.y1b2{bottom:248.986667pt;}
.y124{bottom:252.506667pt;}
.y15f{bottom:255.546667pt;}
.y65{bottom:255.866667pt;}
.ye4{bottom:256.026667pt;}
.y8b{bottom:256.826667pt;}
.y267{bottom:258.120000pt;}
.yfa{bottom:263.866667pt;}
.y1c1{bottom:264.026667pt;}
.y1b1{bottom:264.826667pt;}
.y1f4{bottom:264.986667pt;}
.y186{bottom:267.880000pt;}
.y123{bottom:268.346667pt;}
.y15e{bottom:271.066667pt;}
.ybc{bottom:271.706667pt;}
.y64{bottom:271.866667pt;}
.y2c{bottom:272.186667pt;}
.y8a{bottom:272.666667pt;}
.yf9{bottom:279.386667pt;}
.y1c0{bottom:279.866667pt;}
.y218{bottom:280.026667pt;}
.y1b0{bottom:280.666667pt;}
.y1f3{bottom:280.826667pt;}
.y266{bottom:282.600000pt;}
.y122{bottom:284.346667pt;}
.ybb{bottom:287.546667pt;}
.y63{bottom:287.706667pt;}
.y89{bottom:288.506667pt;}
.y185{bottom:292.360000pt;}
.y15d{bottom:295.226667pt;}
.y1bf{bottom:295.706667pt;}
.y217{bottom:295.866667pt;}
.y1af{bottom:296.506667pt;}
.y1f2{bottom:296.666667pt;}
.y2b{bottom:298.106667pt;}
.y121{bottom:300.186667pt;}
.y23f{bottom:302.280000pt;}
.ycf{bottom:303.386667pt;}
.y62{bottom:303.546667pt;}
.y88{bottom:304.346667pt;}
.y25{bottom:306.626667pt;}
.y15c{bottom:311.066667pt;}
.yba{bottom:311.386667pt;}
.y1be{bottom:311.546667pt;}
.y216{bottom:311.706667pt;}
.y1ae{bottom:312.346667pt;}
.y1f1{bottom:312.506667pt;}
.y226{bottom:313.800000pt;}
.y120{bottom:316.026667pt;}
.y183{bottom:316.840000pt;}
.y61{bottom:319.386667pt;}
.y87{bottom:320.186667pt;}
.y264{bottom:322.920000pt;}
.y24{bottom:324.226667pt;}
.y15b{bottom:326.906667pt;}
.yb9{bottom:327.386667pt;}
.y215{bottom:327.546667pt;}
.y1ad{bottom:328.186667pt;}
.y1f0{bottom:328.346667pt;}
.y11f{bottom:331.866667pt;}
.y60{bottom:335.226667pt;}
.ye3{bottom:335.386667pt;}
.y86{bottom:336.026667pt;}
.y181{bottom:341.480000pt;}
.y23{bottom:341.826667pt;}
.y15a{bottom:342.746667pt;}
.yb8{bottom:343.226667pt;}
.y1bd{bottom:343.386667pt;}
.y1ac{bottom:344.186667pt;}
.y11e{bottom:347.706667pt;}
.y5f{bottom:351.226667pt;}
.y85{bottom:352.026667pt;}
.y263{bottom:352.666667pt;}
.y159{bottom:358.746667pt;}
.yb7{bottom:359.066667pt;}
.y100{bottom:359.226667pt;}
.y214{bottom:359.386667pt;}
.y22{bottom:359.586667pt;}
.y1ab{bottom:360.026667pt;}
.y1ef{bottom:360.186667pt;}
.y11d{bottom:363.546667pt;}
.y257{bottom:365.800000pt;}
.y180{bottom:365.960000pt;}
.y5e{bottom:367.066667pt;}
.y84{bottom:367.866667pt;}
.y27{bottom:368.346667pt;}
.y158{bottom:374.586667pt;}
.yb6{bottom:374.906667pt;}
.yf8{bottom:375.066667pt;}
.y213{bottom:375.226667pt;}
.y1aa{bottom:375.866667pt;}
.y1ee{bottom:376.026667pt;}
.y21{bottom:376.866667pt;}
.y11c{bottom:379.546667pt;}
.y5d{bottom:382.906667pt;}
.y157{bottom:390.426667pt;}
.yb5{bottom:390.746667pt;}
.yf7{bottom:390.906667pt;}
.y212{bottom:391.066667pt;}
.y83{bottom:391.746667pt;}
.y1ed{bottom:391.906667pt;}
.y26{bottom:394.266667pt;}
.y11b{bottom:395.106667pt;}
.y17f{bottom:395.266667pt;}
.y225{bottom:398.626667pt;}
.y5c{bottom:398.786667pt;}
.y156{bottom:406.306667pt;}
.yb4{bottom:406.626667pt;}
.ye2{bottom:406.786667pt;}
.y211{bottom:406.946667pt;}
.y82{bottom:407.586667pt;}
.y1ec{bottom:407.746667pt;}
.y5b{bottom:414.626667pt;}
.y17e{bottom:415.106667pt;}
.y25c{bottom:415.893333pt;}
.y11a{bottom:419.266667pt;}
.yb3{bottom:422.626667pt;}
.y210{bottom:422.786667pt;}
.y81{bottom:423.426667pt;}
.y1a9{bottom:423.586667pt;}
.y155{bottom:425.826667pt;}
.y5a{bottom:430.466667pt;}
.y25b{bottom:431.733333pt;}
.y244{bottom:431.893333pt;}
.y119{bottom:435.106667pt;}
.y24b{bottom:437.986667pt;}
.yb2{bottom:438.466667pt;}
.ye1{bottom:438.626667pt;}
.y80{bottom:439.426667pt;}
.y17d{bottom:439.586667pt;}
.y59{bottom:446.466667pt;}
.y25a{bottom:447.613333pt;}
.y243{bottom:447.733333pt;}
.y153{bottom:450.466667pt;}
.y118{bottom:450.946667pt;}
.yce{bottom:454.306667pt;}
.ye0{bottom:454.466667pt;}
.y20f{bottom:454.626667pt;}
.y7f{bottom:455.266667pt;}
.y1eb{bottom:455.426667pt;}
.y58{bottom:462.306667pt;}
.y242{bottom:463.573333pt;}
.y259{bottom:463.613333pt;}
.y117{bottom:466.946667pt;}
.y17c{bottom:468.866667pt;}
.ycd{bottom:470.146667pt;}
.ydf{bottom:470.306667pt;}
.y20e{bottom:470.466667pt;}
.y7e{bottom:471.106667pt;}
.y1ea{bottom:471.266667pt;}
.y57{bottom:478.146667pt;}
.y241{bottom:479.413333pt;}
.y258{bottom:479.453333pt;}
.y116{bottom:482.786667pt;}
.yde{bottom:486.146667pt;}
.y20d{bottom:486.306667pt;}
.y7d{bottom:486.946667pt;}
.y1e9{bottom:487.106667pt;}
.y56{bottom:493.986667pt;}
.y14f{bottom:494.786667pt;}
.y240{bottom:495.253333pt;}
.y17b{bottom:495.906667pt;}
.y115{bottom:498.626667pt;}
.y261{bottom:501.506667pt;}
.ydd{bottom:501.986667pt;}
.y20c{bottom:502.146667pt;}
.y7c{bottom:502.786667pt;}
.y1e8{bottom:502.946667pt;}
.y1c8{bottom:504.706667pt;}
.y55{bottom:509.826667pt;}
.yb1{bottom:509.986667pt;}
.y17a{bottom:511.586667pt;}
.y114{bottom:514.466667pt;}
.ydc{bottom:517.986667pt;}
.y1e7{bottom:518.786667pt;}
.y54{bottom:525.826667pt;}
.y7b{bottom:526.626667pt;}
.y1a8{bottom:526.786667pt;}
.y113{bottom:530.306667pt;}
.ydb{bottom:533.826667pt;}
.y20b{bottom:533.986667pt;}
.y1e6{bottom:534.786667pt;}
.y179{bottom:535.426667pt;}
.y53{bottom:541.666667pt;}
.yf6{bottom:541.826667pt;}
.y7a{bottom:542.626667pt;}
.y112{bottom:546.146667pt;}
.yf{bottom:546.626667pt;}
.yda{bottom:549.666667pt;}
.y20a{bottom:549.826667pt;}
.y1e5{bottom:550.626667pt;}
.yb0{bottom:557.506667pt;}
.yf5{bottom:557.666667pt;}
.y79{bottom:558.466667pt;}
.y111{bottom:562.146667pt;}
.ye{bottom:563.426667pt;}
.y52{bottom:565.506667pt;}
.y209{bottom:565.666667pt;}
.y1e4{bottom:566.466667pt;}
.y1e{bottom:568.640000pt;}
.yaf{bottom:573.346667pt;}
.yf4{bottom:573.506667pt;}
.y78{bottom:574.306667pt;}
.y178{bottom:577.826667pt;}
.y110{bottom:577.986667pt;}
.y14d{bottom:578.946667pt;}
.y51{bottom:581.346667pt;}
.y208{bottom:581.506667pt;}
.y1e3{bottom:582.306667pt;}
.ycc{bottom:589.186667pt;}
.yf3{bottom:589.346667pt;}
.y77{bottom:590.146667pt;}
.y177{bottom:593.666667pt;}
.y10f{bottom:593.826667pt;}
.y50{bottom:597.186667pt;}
.y207{bottom:597.346667pt;}
.y1e2{bottom:598.146667pt;}
.y14b{bottom:603.453333pt;}
.y1d{bottom:604.226667pt;}
.ycb{bottom:605.213333pt;}
.y76{bottom:606.013333pt;}
.y1a7{bottom:606.173333pt;}
.y176{bottom:609.533333pt;}
.y10e{bottom:609.693333pt;}
.y4f{bottom:613.053333pt;}
.yae{bottom:613.213333pt;}
.y1e1{bottom:614.173333pt;}
.yca{bottom:621.053333pt;}
.yf2{bottom:621.213333pt;}
.y75{bottom:622.013333pt;}
.y10d{bottom:625.533333pt;}
.y149{bottom:628.093333pt;}
.y4e{bottom:629.053333pt;}
.y206{bottom:629.213333pt;}
.yd{bottom:629.853333pt;}
.y1e0{bottom:630.013333pt;}
.y175{bottom:633.373333pt;}
.y18{bottom:635.040000pt;}
.yd9{bottom:637.053333pt;}
.y74{bottom:637.853333pt;}
.y10c{bottom:641.533333pt;}
.y4d{bottom:644.893333pt;}
.y205{bottom:645.053333pt;}
.y1df{bottom:645.853333pt;}
.yd8{bottom:652.893333pt;}
.y73{bottom:653.693333pt;}
.y10b{bottom:657.373333pt;}
.y148{bottom:657.533333pt;}
.y4c{bottom:660.733333pt;}
.y204{bottom:660.893333pt;}
.y1de{bottom:661.693333pt;}
.yd7{bottom:668.733333pt;}
.y72{bottom:669.533333pt;}
.y1b{bottom:671.293333pt;}
.y147{bottom:673.053333pt;}
.y10a{bottom:673.213333pt;}
.y4b{bottom:676.573333pt;}
.y203{bottom:676.733333pt;}
.y1dd{bottom:677.533333pt;}
.yd6{bottom:684.573333pt;}
.y1a6{bottom:685.373333pt;}
.y71{bottom:687.133333pt;}
.y174{bottom:688.733333pt;}
.y109{bottom:689.053333pt;}
.y4a{bottom:692.413333pt;}
.yad{bottom:692.573333pt;}
.y1dc{bottom:693.373333pt;}
.y1a{bottom:694.813333pt;}
.y146{bottom:697.373333pt;}
.yd5{bottom:700.573333pt;}
.y1a5{bottom:701.373333pt;}
.y108{bottom:704.573333pt;}
.yac{bottom:708.413333pt;}
.y202{bottom:708.573333pt;}
.y245{bottom:709.213333pt;}
.y1db{bottom:709.373333pt;}
.y173{bottom:712.893333pt;}
.y145{bottom:713.213333pt;}
.y49{bottom:716.253333pt;}
.yd4{bottom:716.413333pt;}
.y1a4{bottom:717.213333pt;}
.y107{bottom:722.653333pt;}
.yab{bottom:724.253333pt;}
.y201{bottom:724.413333pt;}
.y1da{bottom:725.213333pt;}
.y172{bottom:728.733333pt;}
.y144{bottom:729.053333pt;}
.y48{bottom:732.253333pt;}
.y1a3{bottom:733.053333pt;}
.yc{bottom:733.853333pt;}
.y16{bottom:739.040000pt;}
.yaa{bottom:740.093333pt;}
.y200{bottom:740.253333pt;}
.y1d9{bottom:741.053333pt;}
.y171{bottom:744.733333pt;}
.y143{bottom:744.893333pt;}
.y47{bottom:748.093333pt;}
.y1a2{bottom:748.893333pt;}
.y106{bottom:751.773333pt;}
.ya9{bottom:755.933333pt;}
.y1ff{bottom:756.093333pt;}
.y1d8{bottom:756.893333pt;}
.y170{bottom:760.573333pt;}
.y142{bottom:760.733333pt;}
.y46{bottom:763.933333pt;}
.y1a1{bottom:764.733333pt;}
.yc9{bottom:771.773333pt;}
.y1fe{bottom:771.933333pt;}
.y105{bottom:772.733333pt;}
.y16f{bottom:776.413333pt;}
.y141{bottom:776.733333pt;}
.y45{bottom:779.773333pt;}
.y1a0{bottom:780.733333pt;}
.y13{bottom:784.320000pt;}
.y1c7{bottom:787.453333pt;}
.yc8{bottom:787.773333pt;}
.y1d7{bottom:788.733333pt;}
.y140{bottom:792.573333pt;}
.y44{bottom:795.613333pt;}
.ya8{bottom:795.773333pt;}
.y19f{bottom:796.573333pt;}
.y16e{bottom:800.253333pt;}
.yf1{bottom:803.773333pt;}
.y1d6{bottom:804.573333pt;}
.y13f{bottom:808.413333pt;}
.y43{bottom:811.653333pt;}
.y19e{bottom:812.453333pt;}
.y23d{bottom:813.093333pt;}
.yf0{bottom:819.653333pt;}
.y1d5{bottom:820.453333pt;}
.y16d{bottom:824.133333pt;}
.y13e{bottom:824.293333pt;}
.y42{bottom:827.493333pt;}
.y19d{bottom:828.293333pt;}
.yb{bottom:832.773333pt;}
.yef{bottom:835.493333pt;}
.y1d4{bottom:836.293333pt;}
.y11{bottom:838.880000pt;}
.y13d{bottom:840.133333pt;}
.y41{bottom:843.333333pt;}
.y19c{bottom:844.133333pt;}
.y16c{bottom:847.973333pt;}
.yee{bottom:851.333333pt;}
.y3a{bottom:851.680000pt;}
.y1d3{bottom:852.133333pt;}
.y40{bottom:859.173333pt;}
.y19b{bottom:859.653333pt;}
.y256{bottom:860.773333pt;}
.y13c{bottom:863.973333pt;}
.yed{bottom:867.173333pt;}
.y1d2{bottom:867.973333pt;}
.y16b{bottom:871.973333pt;}
.y1bc{bottom:874.853333pt;}
.y3f{bottom:875.013333pt;}
.ya7{bottom:875.173333pt;}
.y13b{bottom:879.973333pt;}
.y39{bottom:881.573333pt;}
.yec{bottom:883.173333pt;}
.y19a{bottom:883.973333pt;}
.y3e{bottom:890.853333pt;}
.ya6{bottom:891.013333pt;}
.y139{bottom:891.493333pt;}
.yeb{bottom:899.013333pt;}
.y199{bottom:899.813333pt;}
.y38{bottom:904.933333pt;}
.y3d{bottom:906.853333pt;}
.y138{bottom:910.693333pt;}
.yd3{bottom:914.853333pt;}
.y198{bottom:915.653333pt;}
.y236{bottom:917.093333pt;}
.ya5{bottom:922.693333pt;}
.y3c{bottom:924.453333pt;}
.y37{bottom:928.453333pt;}
.y137{bottom:930.373333pt;}
.yd2{bottom:930.693333pt;}
.y197{bottom:931.493333pt;}
.ya4{bottom:938.213333pt;}
.y1c6{bottom:938.533333pt;}
.yc7{bottom:946.533333pt;}
.y196{bottom:947.333333pt;}
.y136{bottom:950.053333pt;}
.y97{bottom:950.880000pt;}
.y36{bottom:951.813333pt;}
.ya3{bottom:954.053333pt;}
.y104{bottom:954.373333pt;}
.yc6{bottom:962.373333pt;}
.y195{bottom:963.333333pt;}
.y135{bottom:969.893333pt;}
.y103{bottom:970.373333pt;}
.y9b{bottom:978.373333pt;}
.y194{bottom:979.173333pt;}
.y254{bottom:980.453333pt;}
.y102{bottom:986.213333pt;}
.ya{bottom:986.693333pt;}
.y134{bottom:989.573333pt;}
.ya2{bottom:994.213333pt;}
.y193{bottom:995.013333pt;}
.y9a{bottom:1003.973333pt;}
.y132{bottom:1009.253333pt;}
.ya1{bottom:1010.053333pt;}
.y192{bottom:1010.533333pt;}
.y1d1{bottom:1010.853333pt;}
.ya0{bottom:1025.920000pt;}
.y191{bottom:1028.480000pt;}
.y130{bottom:1029.120000pt;}
.y9f{bottom:1041.760000pt;}
.y12e{bottom:1048.800000pt;}
.yea{bottom:1057.280000pt;}
.y9e{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h23{height:18.560000pt;}
.h20{height:19.040000pt;}
.h22{height:19.200000pt;}
.h21{height:19.220000pt;}
.h4{height:19.360000pt;}
.h31{height:23.826667pt;}
.h30{height:23.836000pt;}
.h24{height:23.840000pt;}
.h27{height:23.866667pt;}
.h2a{height:23.986667pt;}
.h26{height:24.000000pt;}
.hd{height:34.560000pt;}
.h10{height:36.431250pt;}
.h2d{height:39.666667pt;}
.h2e{height:39.872000pt;}
.h19{height:43.031250pt;}
.hb{height:43.200000pt;}
.h3{height:43.215000pt;}
.h29{height:43.666667pt;}
.h15{height:43.782500pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.h9{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h8{height:49.622500pt;}
.h1e{height:49.968750pt;}
.h14{height:52.108438pt;}
.h1d{height:52.134375pt;}
.h16{height:52.234000pt;}
.h2b{height:52.526250pt;}
.h25{height:53.370000pt;}
.h1c{height:53.535000pt;}
.h33{height:55.666667pt;}
.h45{height:55.712000pt;}
.h12{height:56.160000pt;}
.h6{height:57.787500pt;}
.h11{height:59.340000pt;}
.he{height:64.290000pt;}
.h32{height:69.660000pt;}
.h18{height:71.955000pt;}
.h2f{height:72.956000pt;}
.hc{height:75.465000pt;}
.h2c{height:80.192000pt;}
.h28{height:83.506667pt;}
.h40{height:87.380000pt;}
.hf{height:93.760000pt;}
.h1b{height:100.480000pt;}
.h35{height:103.186667pt;}
.h3a{height:103.232000pt;}
.h38{height:103.360000pt;}
.h17{height:117.760000pt;}
.h3c{height:119.026667pt;}
.h41{height:119.040000pt;}
.h44{height:119.066667pt;}
.h3f{height:119.072000pt;}
.h43{height:135.040000pt;}
.h3d{height:135.053333pt;}
.h36{height:135.066667pt;}
.ha{height:142.720000pt;}
.h37{height:150.746667pt;}
.h3b{height:150.906667pt;}
.h3e{height:222.906667pt;}
.h34{height:238.906667pt;}
.h13{height:389.440000pt;}
.h42{height:494.320000pt;}
.h39{height:510.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:28.980000pt;}
.w1b{width:29.280000pt;}
.w3f{width:29.746667pt;}
.w1a{width:35.200000pt;}
.w37{width:35.346667pt;}
.w2c{width:36.786667pt;}
.w2a{width:36.818667pt;}
.w21{width:40.626667pt;}
.w27{width:40.666667pt;}
.w3a{width:41.266667pt;}
.w1c{width:41.280000pt;}
.w39{width:41.426667pt;}
.w3e{width:41.586667pt;}
.w3d{width:41.746667pt;}
.w22{width:42.546667pt;}
.w2f{width:42.866667pt;}
.w34{width:42.900000pt;}
.w29{width:43.666667pt;}
.w23{width:44.466667pt;}
.wd{width:45.300000pt;}
.w2d{width:46.386667pt;}
.w25{width:46.706667pt;}
.w24{width:46.738667pt;}
.w2e{width:47.226667pt;}
.w1d{width:47.360000pt;}
.w2b{width:50.706667pt;}
.w40{width:53.626667pt;}
.w28{width:58.546667pt;}
.w26{width:58.706667pt;}
.w1f{width:59.192000pt;}
.w35{width:65.272000pt;}
.w31{width:65.298667pt;}
.w30{width:65.426667pt;}
.w33{width:65.440000pt;}
.w2{width:75.840000pt;}
.w13{width:76.980000pt;}
.w19{width:77.312000pt;}
.w14{width:77.432000pt;}
.w3c{width:83.346667pt;}
.w3b{width:83.386667pt;}
.w15{width:83.392000pt;}
.w16{width:85.600000pt;}
.w17{width:88.980000pt;}
.w18{width:89.280000pt;}
.wb{width:102.752000pt;}
.wa{width:123.860000pt;}
.w38{width:131.378667pt;}
.we{width:145.146667pt;}
.wf{width:161.306667pt;}
.w32{width:161.466667pt;}
.w10{width:167.373333pt;}
.w11{width:173.466667pt;}
.w9{width:227.262667pt;}
.w20{width:323.102667pt;}
.w12{width:325.342667pt;}
.w36{width:335.413333pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:691.040000pt;}
.wc{width:695.196000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x60{left:2.880000pt;}
.x2c{left:3.986667pt;}
.x3e{left:4.960000pt;}
.x2a{left:6.400000pt;}
.x2e{left:8.636000pt;}
.xb{left:9.600000pt;}
.x41{left:11.040000pt;}
.xc{left:12.320000pt;}
.x39{left:14.240000pt;}
.x3c{left:15.520000pt;}
.x3f{left:16.480000pt;}
.x42{left:17.440000pt;}
.x24{left:18.876000pt;}
.x45{left:20.160000pt;}
.x29{left:22.556000pt;}
.x26{left:25.600000pt;}
.x37{left:28.188000pt;}
.x61{left:37.746667pt;}
.x44{left:38.760000pt;}
.xe{left:45.792000pt;}
.x5{left:48.000000pt;}
.x22{left:49.284000pt;}
.x27{left:51.388000pt;}
.x36{left:52.324000pt;}
.x14{left:54.400000pt;}
.x13{left:57.920000pt;}
.x2f{left:58.874667pt;}
.x59{left:60.000000pt;}
.x23{left:62.268000pt;}
.x15{left:64.000000pt;}
.x30{left:67.040000pt;}
.x1c{left:72.000000pt;}
.x31{left:73.106667pt;}
.x32{left:76.160000pt;}
.xf{left:79.392000pt;}
.x43{left:82.112000pt;}
.x1{left:88.960000pt;}
.x1d{left:96.032000pt;}
.x46{left:102.902667pt;}
.x33{left:128.832000pt;}
.x12{left:131.066667pt;}
.x38{left:142.106667pt;}
.x6{left:143.706667pt;}
.x1b{left:151.906667pt;}
.x5a{left:154.906667pt;}
.x25{left:173.786667pt;}
.x1a{left:176.320000pt;}
.x40{left:184.026667pt;}
.x34{left:206.906667pt;}
.x10{left:213.626667pt;}
.x5b{left:220.986667pt;}
.x3a{left:232.026667pt;}
.x2b{left:241.026667pt;}
.x11{left:242.146667pt;}
.x18{left:248.706667pt;}
.x19{left:255.746667pt;}
.x16{left:258.146667pt;}
.x35{left:290.946667pt;}
.x28{left:295.422667pt;}
.x3b{left:310.146667pt;}
.xd{left:311.266667pt;}
.x7{left:317.026667pt;}
.x17{left:318.786667pt;}
.x3{left:327.040000pt;}
.x3d{left:346.146667pt;}
.x4{left:403.680000pt;}
.x56{left:411.466667pt;}
.x1e{left:414.173333pt;}
.x49{left:417.706667pt;}
.x1f{left:438.173333pt;}
.x5c{left:449.706667pt;}
.x57{left:454.986667pt;}
.x47{left:457.053333pt;}
.x4a{left:458.986667pt;}
.x20{left:462.173333pt;}
.x48{left:475.453333pt;}
.x50{left:477.226667pt;}
.x4b{left:502.186667pt;}
.x51{left:521.546667pt;}
.x4c{left:547.306667pt;}
.x52{left:559.013333pt;}
.x2d{left:571.013333pt;}
.x5d{left:581.733333pt;}
.x58{left:587.013333pt;}
.x4d{left:594.693333pt;}
.x53{left:610.373333pt;}
.x5e{left:623.813333pt;}
.x4e{left:642.213333pt;}
.x54{left:647.813333pt;}
.x5f{left:665.733333pt;}
.x55{left:694.853333pt;}
.x4f{left:701.573333pt;}
.x21{left:740.640000pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xa{left:754.080000pt;}
}




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