
    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_ae8bce6f477dd56fdaaced20.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27a2c288537e1891a05013c5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d3be56f07b8cf1923135264.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_bf87d58d0bae8bcf2baa346e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_0ef9ecd10f7ba34e1c3f25f6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_048bf792f59da37d81dc2ee6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_089f84d67e4ede71186f7600.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.220800px;}
.ls8{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.513600px;}
.ls9{letter-spacing:0.900000px;}
.ls16{letter-spacing:3.780000px;}
.ls5{letter-spacing:5.220000px;}
.ls24{letter-spacing:6.660000px;}
.ls1d{letter-spacing:7.380000px;}
.ls1e{letter-spacing:8.820000px;}
.ls22{letter-spacing:10.260000px;}
.lsf{letter-spacing:12.540000px;}
.ls17{letter-spacing:16.020000px;}
.ls28{letter-spacing:19.386720px;}
.ls3{letter-spacing:26.100000px;}
.ls0{letter-spacing:28.260000px;}
.lse{letter-spacing:30.384000px;}
.ls2c{letter-spacing:33.186720px;}
.ls25{letter-spacing:44.280000px;}
.ls4{letter-spacing:46.026720px;}
.lsd{letter-spacing:53.226720px;}
.ls2b{letter-spacing:64.002720px;}
.ls10{letter-spacing:72.666720px;}
.ls11{letter-spacing:75.060000px;}
.ls26{letter-spacing:93.180000px;}
.ls29{letter-spacing:103.602720px;}
.ls18{letter-spacing:216.180000px;}
.ls27{letter-spacing:235.800000px;}
.ls23{letter-spacing:437.940000px;}
.ls20{letter-spacing:604.260000px;}
.ls1f{letter-spacing:634.476000px;}
.ls2a{letter-spacing:2737.842720px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.wsb{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.093600px;}
.ws11{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.440800px;}
.ws9{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.220000px;}
.ws10{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.716000px;}
.ws4{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws7{word-spacing:0.000000px;}
._35{margin-left:-4.937280px;}
._b{margin-left:-1.434240px;}
._0{width:1.254960px;}
._24{width:2.270880px;}
._2{width:3.286800px;}
._11{width:4.362240px;}
._d{width:5.438160px;}
._c{width:6.752880px;}
._e{width:8.665200px;}
._13{width:10.039680px;}
._1c{width:11.115360px;}
._1a{width:12.310560px;}
._29{width:13.744800px;}
._1{width:16.324320px;}
._19{width:17.330400px;}
._10{width:18.406080px;}
._1b{width:19.601280px;}
._a{width:20.916000px;}
._4{width:22.350240px;}
._f{width:23.784480px;}
._6{width:24.860160px;}
._5{width:25.995600px;}
._7{width:27.536400px;}
._3{width:28.684800px;}
._15{width:29.820240px;}
._14{width:30.895920px;}
._23{width:32.210640px;}
._1d{width:33.883920px;}
._9{width:35.467440px;}
._8{width:36.642720px;}
._18{width:37.998960px;}
._2a{width:39.620880px;}
._17{width:41.772240px;}
._16{width:42.847920px;}
._12{width:45.417600px;}
._21{width:46.672560px;}
._20{width:48.047040px;}
._22{width:49.373760px;}
._2c{width:50.540400px;}
._30{width:51.688080px;}
._25{width:52.891680px;}
._2b{width:55.517040px;}
._37{width:57.011040px;}
._31{width:61.433280px;}
._32{width:62.987040px;}
._33{width:64.329600px;}
._39{width:65.437200px;}
._1e{width:68.126400px;}
._1f{width:69.142320px;}
._26{width:73.385280px;}
._27{width:74.879760px;}
._36{width:93.060000px;}
._2f{width:105.923280px;}
._38{width:114.141600px;}
._2d{width:189.034320px;}
._28{width:201.778320px;}
._34{width:322.740000px;}
._2e{width:332.891760px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc5{color:rgb(192,80,77);}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(34,34,34);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:2.880000px;}
.ybe{bottom:3.060000px;}
.y89{bottom:3.240000px;}
.y1e2{bottom:3.420000px;}
.y146{bottom:3.780000px;}
.y196{bottom:4.680000px;}
.y199{bottom:4.860000px;}
.y194{bottom:5.040000px;}
.y1bc{bottom:6.660000px;}
.y1de{bottom:8.460000px;}
.y1e4{bottom:8.505000px;}
.y1e0{bottom:8.640000px;}
.y191{bottom:10.260000px;}
.yb9{bottom:18.360000px;}
.ybd{bottom:18.540000px;}
.y143{bottom:19.980000px;}
.y10a{bottom:20.340000px;}
.y88{bottom:20.520000px;}
.y17b{bottom:20.550000px;}
.y141{bottom:21.060000px;}
.y149{bottom:21.240000px;}
.y1bb{bottom:23.940000px;}
.y1dd{bottom:25.740000px;}
.yb8{bottom:33.840000px;}
.yd2{bottom:34.020000px;}
.y13f{bottom:37.260000px;}
.y126{bottom:37.620000px;}
.y15c{bottom:37.650000px;}
.y99{bottom:37.800000px;}
.y1b2{bottom:38.520000px;}
.yb7{bottom:49.500000px;}
.yd1{bottom:49.530000px;}
.ye7{bottom:54.900000px;}
.y119{bottom:55.080000px;}
.yb6{bottom:64.980000px;}
.ye6{bottom:72.180000px;}
.y2{bottom:79.416000px;}
.ye5{bottom:89.460000px;}
.y1{bottom:100.116000px;}
.ye4{bottom:106.740000px;}
.y192{bottom:119.016000px;}
.y140{bottom:120.096000px;}
.y16f{bottom:124.596000px;}
.y66{bottom:126.036000px;}
.y117{bottom:129.996000px;}
.y1ec{bottom:130.176000px;}
.y32{bottom:130.536000px;}
.yc7{bottom:130.896000px;}
.y97{bottom:132.336000px;}
.y1c5{bottom:135.756000px;}
.y213{bottom:136.656000px;}
.ye2{bottom:140.616000px;}
.y16e{bottom:141.876000px;}
.y65{bottom:143.316000px;}
.y31{bottom:146.736000px;}
.y116{bottom:147.096000px;}
.y1eb{bottom:147.456000px;}
.yc6{bottom:148.176000px;}
.y96{bottom:149.436000px;}
.y1c4{bottom:153.030000px;}
.y212{bottom:153.930000px;}
.y190{bottom:154.110000px;}
.y13e{bottom:155.910000px;}
.ye1{bottom:157.890000px;}
.y16d{bottom:159.150000px;}
.y64{bottom:160.590000px;}
.y30{bottom:161.490000px;}
.y115{bottom:164.370000px;}
.y1ea{bottom:164.730000px;}
.yc5{bottom:165.450000px;}
.y95{bottom:166.710000px;}
.y1c3{bottom:170.310000px;}
.y211{bottom:171.210000px;}
.y2f{bottom:174.090000px;}
.ye0{bottom:174.990000px;}
.y16c{bottom:176.430000px;}
.y63{bottom:177.870000px;}
.y18f{bottom:179.130000px;}
.y114{bottom:181.650000px;}
.y1e9{bottom:182.010000px;}
.yc4{bottom:182.550000px;}
.y94{bottom:183.990000px;}
.y1c2{bottom:187.590000px;}
.y210{bottom:188.310000px;}
.ydf{bottom:192.270000px;}
.y16b{bottom:193.710000px;}
.y62{bottom:194.970000px;}
.y1e8{bottom:196.770000px;}
.y113{bottom:198.930000px;}
.yc3{bottom:199.830000px;}
.y93{bottom:201.270000px;}
.y1c1{bottom:204.870000px;}
.y20f{bottom:205.590000px;}
.yde{bottom:209.550000px;}
.y16a{bottom:210.990000px;}
.y13d{bottom:211.710000px;}
.y61{bottom:212.250000px;}
.y1e7{bottom:214.770000px;}
.y112{bottom:216.210000px;}
.yc2{bottom:217.110000px;}
.y18e{bottom:217.650000px;}
.y92{bottom:218.550000px;}
.y1c0{bottom:222.150000px;}
.y20e{bottom:222.870000px;}
.ydd{bottom:226.830000px;}
.y169{bottom:228.090000px;}
.y13c{bottom:228.990000px;}
.y60{bottom:229.530000px;}
.y1e6{bottom:232.770000px;}
.y111{bottom:233.490000px;}
.yc1{bottom:234.390000px;}
.y18d{bottom:234.930000px;}
.y91{bottom:235.830000px;}
.y1bf{bottom:239.250000px;}
.y20d{bottom:240.150000px;}
.ydc{bottom:244.110000px;}
.y168{bottom:245.370000px;}
.y13b{bottom:246.090000px;}
.y5f{bottom:246.810000px;}
.y110{bottom:250.590000px;}
.yc0{bottom:251.310000px;}
.y18c{bottom:252.210000px;}
.y90{bottom:252.930000px;}
.y1be{bottom:254.010000px;}
.y1e5{bottom:255.990000px;}
.y20c{bottom:257.430000px;}
.ydb{bottom:261.390000px;}
.y167{bottom:262.650000px;}
.y139{bottom:263.370000px;}
.y5e{bottom:264.090000px;}
.y2e{bottom:266.070000px;}
.y10f{bottom:267.870000px;}
.y18b{bottom:269.490000px;}
.y8f{bottom:270.210000px;}
.y1bd{bottom:272.010000px;}
.ybf{bottom:272.190000px;}
.y20b{bottom:274.530000px;}
.yda{bottom:278.490000px;}
.y1e3{bottom:279.390000px;}
.y166{bottom:279.930000px;}
.y138{bottom:280.650000px;}
.y5d{bottom:281.370000px;}
.y2d{bottom:282.990000px;}
.y10e{bottom:285.150000px;}
.y18a{bottom:286.590000px;}
.y8e{bottom:287.490000px;}
.y1ba{bottom:290.055000px;}
.y20a{bottom:291.855000px;}
.ybc{bottom:292.935000px;}
.yd9{bottom:295.815000px;}
.y165{bottom:297.255000px;}
.y137{bottom:297.975000px;}
.y5c{bottom:298.515000px;}
.y2c{bottom:298.695000px;}
.y10d{bottom:302.475000px;}
.y1e1{bottom:302.655000px;}
.y189{bottom:303.915000px;}
.y209{bottom:309.135000px;}
.y8d{bottom:309.315000px;}
.yd8{bottom:312.915000px;}
.y164{bottom:314.355000px;}
.y2b{bottom:314.535000px;}
.y136{bottom:315.255000px;}
.y5b{bottom:315.795000px;}
.y10c{bottom:317.235000px;}
.y188{bottom:321.195000px;}
.y8c{bottom:324.075000px;}
.y1df{bottom:326.055000px;}
.y208{bottom:326.415000px;}
.y1b9{bottom:328.755000px;}
.ybb{bottom:329.295000px;}
.y2a{bottom:331.635000px;}
.y135{bottom:332.355000px;}
.y5a{bottom:333.075000px;}
.yd7{bottom:333.615000px;}
.y10b{bottom:335.235000px;}
.y187{bottom:338.475000px;}
.y207{bottom:343.695000px;}
.y8b{bottom:344.235000px;}
.y1b8{bottom:346.755000px;}
.y163{bottom:348.735000px;}
.y29{bottom:348.915000px;}
.y1dc{bottom:349.455000px;}
.y13a{bottom:349.635000px;}
.y59{bottom:350.355000px;}
.yd6{bottom:354.315000px;}
.y186{bottom:355.755000px;}
.y206{bottom:360.975000px;}
.y1b7{bottom:364.755000px;}
.yb5{bottom:365.655000px;}
.y28{bottom:366.195000px;}
.y8a{bottom:366.735000px;}
.y134{bottom:366.915000px;}
.y58{bottom:367.635000px;}
.y109{bottom:370.515000px;}
.y162{bottom:371.235000px;}
.y185{bottom:372.855000px;}
.y205{bottom:378.075000px;}
.y214{bottom:383.475000px;}
.y133{bottom:384.195000px;}
.y1b6{bottom:384.555000px;}
.y57{bottom:384.915000px;}
.y87{bottom:389.235000px;}
.y184{bottom:390.135000px;}
.yd5{bottom:390.675000px;}
.y1db{bottom:393.195000px;}
.y204{bottom:395.355000px;}
.y27{bottom:400.755000px;}
.y132{bottom:401.475000px;}
.y56{bottom:402.015000px;}
.y1b5{bottom:402.555000px;}
.y108{bottom:405.615000px;}
.y183{bottom:407.415000px;}
.y1da{bottom:410.475000px;}
.y161{bottom:411.015000px;}
.y203{bottom:412.635000px;}
.y26{bottom:417.855000px;}
.y131{bottom:418.755000px;}
.y55{bottom:419.295000px;}
.y1b4{bottom:422.175000px;}
.y107{bottom:423.615000px;}
.y182{bottom:424.695000px;}
.yd4{bottom:427.035000px;}
.y1d9{bottom:427.755000px;}
.y202{bottom:429.915000px;}
.y86{bottom:430.095000px;}
.y160{bottom:433.515000px;}
.y25{bottom:435.135000px;}
.y130{bottom:435.855000px;}
.y54{bottom:436.575000px;}
.y106{bottom:441.615000px;}
.y1b1{bottom:441.795000px;}
.y181{bottom:441.975000px;}
.y1d8{bottom:444.855000px;}
.y85{bottom:447.195000px;}
.yb4{bottom:449.355000px;}
.y24{bottom:452.415000px;}
.y12f{bottom:453.135000px;}
.y53{bottom:453.855000px;}
.y15f{bottom:456.015000px;}
.y180{bottom:459.255000px;}
.y105{bottom:459.615000px;}
.y1d7{bottom:462.135000px;}
.yd3{bottom:463.215000px;}
.y84{bottom:464.475000px;}
.yb3{bottom:466.635000px;}
.y23{bottom:469.695000px;}
.y12e{bottom:470.415000px;}
.y52{bottom:471.135000px;}
.y17f{bottom:476.355000px;}
.y1b3{bottom:477.075000px;}
.y104{bottom:477.615000px;}
.y15e{bottom:478.515000px;}
.y1d6{bottom:479.415000px;}
.y201{bottom:481.575000px;}
.y80{bottom:481.755000px;}
.yb2{bottom:483.915000px;}
.y22{bottom:486.975000px;}
.y12d{bottom:487.695000px;}
.y51{bottom:488.235000px;}
.y17e{bottom:493.635000px;}
.y103{bottom:495.615000px;}
.y1d5{bottom:496.695000px;}
.y1b0{bottom:498.315000px;}
.y7f{bottom:499.035000px;}
.yd0{bottom:499.575000px;}
.y200{bottom:499.935000px;}
.y15d{bottom:501.015000px;}
.yb1{bottom:501.195000px;}
.y12c{bottom:502.455000px;}
.y21{bottom:504.255000px;}
.y50{bottom:505.515000px;}
.y17d{bottom:510.915000px;}
.y1d4{bottom:513.975000px;}
.y1af{bottom:515.595000px;}
.y7e{bottom:516.315000px;}
.y1ff{bottom:517.215000px;}
.yb0{bottom:518.475000px;}
.y12b{bottom:520.455000px;}
.y20{bottom:521.355000px;}
.y4f{bottom:522.795000px;}
.y15b{bottom:523.515000px;}
.y17c{bottom:525.675000px;}
.y1d3{bottom:531.255000px;}
.y1ae{bottom:532.875000px;}
.y83{bottom:534.135000px;}
.y1fe{bottom:534.495000px;}
.yaf{bottom:535.755000px;}
.y7d{bottom:536.295000px;}
.y1f{bottom:538.635000px;}
.y4e{bottom:540.075000px;}
.y17a{bottom:543.675000px;}
.y1d2{bottom:548.385000px;}
.y1ad{bottom:550.005000px;}
.y82{bottom:551.445000px;}
.yae{bottom:552.885000px;}
.y7c{bottom:553.605000px;}
.y12a{bottom:555.765000px;}
.y1e{bottom:555.945000px;}
.y4d{bottom:557.385000px;}
.y1d1{bottom:565.665000px;}
.y1ac{bottom:567.285000px;}
.ycf{bottom:568.005000px;}
.y81{bottom:568.725000px;}
.y1fd{bottom:569.985000px;}
.yad{bottom:570.165000px;}
.y1d{bottom:573.225000px;}
.y7b{bottom:573.585000px;}
.y129{bottom:573.765000px;}
.y4c{bottom:574.665000px;}
.y179{bottom:578.985000px;}
.y15a{bottom:581.505000px;}
.y1d0{bottom:582.945000px;}
.y1ab{bottom:584.565000px;}
.yce{bottom:585.285000px;}
.ye9{bottom:585.645000px;}
.y1fc{bottom:587.265000px;}
.yac{bottom:587.445000px;}
.y1c{bottom:590.505000px;}
.y7a{bottom:590.865000px;}
.y4b{bottom:591.765000px;}
.y159{bottom:598.785000px;}
.y1cf{bottom:600.225000px;}
.y1aa{bottom:601.845000px;}
.y1fb{bottom:604.545000px;}
.yab{bottom:604.725000px;}
.y1b{bottom:607.785000px;}
.y79{bottom:608.145000px;}
.y128{bottom:609.765000px;}
.y178{bottom:614.265000px;}
.y157{bottom:615.885000px;}
.y1ce{bottom:617.505000px;}
.y102{bottom:618.945000px;}
.y1a9{bottom:619.125000px;}
.ycd{bottom:619.665000px;}
.y1fa{bottom:621.825000px;}
.yaa{bottom:622.005000px;}
.y1a{bottom:624.885000px;}
.y4a{bottom:626.325000px;}
.y127{bottom:627.765000px;}
.y78{bottom:628.125000px;}
.y177{bottom:632.265000px;}
.y156{bottom:633.165000px;}
.y1cd{bottom:634.785000px;}
.y101{bottom:636.225000px;}
.y1a8{bottom:636.405000px;}
.ycc{bottom:636.945000px;}
.y1f9{bottom:639.105000px;}
.ya9{bottom:639.285000px;}
.y19{bottom:642.165000px;}
.y49{bottom:643.605000px;}
.y77{bottom:645.585000px;}
.y125{bottom:645.765000px;}
.ye8{bottom:647.925000px;}
.y1cc{bottom:649.545000px;}
.y176{bottom:650.265000px;}
.y155{bottom:650.445000px;}
.y100{bottom:653.505000px;}
.ycb{bottom:654.225000px;}
.ya8{bottom:656.385000px;}
.y1f8{bottom:657.465000px;}
.y18{bottom:659.445000px;}
.y48{bottom:660.885000px;}
.y76{bottom:665.565000px;}
.y1cb{bottom:667.545000px;}
.y154{bottom:667.725000px;}
.y175{bottom:668.265000px;}
.yff{bottom:670.785000px;}
.yca{bottom:671.505000px;}
.ya7{bottom:673.665000px;}
.y1f7{bottom:674.565000px;}
.y17{bottom:676.725000px;}
.y47{bottom:678.165000px;}
.y75{bottom:682.845000px;}
.y158{bottom:685.005000px;}
.y174{bottom:686.265000px;}
.ye3{bottom:687.705000px;}
.yfe{bottom:687.885000px;}
.y1a7{bottom:688.065000px;}
.yc9{bottom:688.785000px;}
.ya6{bottom:690.945000px;}
.y1f6{bottom:691.845000px;}
.y16{bottom:694.005000px;}
.y46{bottom:695.265000px;}
.y124{bottom:701.385000px;}
.y153{bottom:702.285000px;}
.y1ca{bottom:702.645000px;}
.y74{bottom:702.825000px;}
.yfd{bottom:705.165000px;}
.y1a6{bottom:705.345000px;}
.yc8{bottom:705.885000px;}
.y1f5{bottom:709.125000px;}
.y15{bottom:711.105000px;}
.y45{bottom:712.545000px;}
.y123{bottom:718.665000px;}
.y152{bottom:719.385000px;}
.y73{bottom:720.105000px;}
.y1c9{bottom:720.645000px;}
.y173{bottom:721.365000px;}
.yfc{bottom:722.445000px;}
.y1a5{bottom:722.625000px;}
.ya5{bottom:723.165000px;}
.y1f4{bottom:727.485000px;}
.y14{bottom:728.385000px;}
.y44{bottom:729.825000px;}
.y122{bottom:735.945000px;}
.y151{bottom:736.665000px;}
.y1c8{bottom:738.645000px;}
.yfb{bottom:739.725000px;}
.y1a4{bottom:739.905000px;}
.y72{bottom:740.085000px;}
.ya4{bottom:740.445000px;}
.y1f3{bottom:744.765000px;}
.y13{bottom:745.665000px;}
.y43{bottom:747.105000px;}
.y121{bottom:753.225000px;}
.y150{bottom:753.945000px;}
.y172{bottom:756.645000px;}
.yfa{bottom:757.005000px;}
.y71{bottom:757.365000px;}
.ya3{bottom:757.725000px;}
.y1f2{bottom:762.045000px;}
.y12{bottom:762.945000px;}
.y42{bottom:764.385000px;}
.y120{bottom:770.505000px;}
.y14f{bottom:771.225000px;}
.yf9{bottom:774.105000px;}
.y1a3{bottom:774.285000px;}
.y70{bottom:774.645000px;}
.ya2{bottom:775.005000px;}
.y11{bottom:780.225000px;}
.y41{bottom:781.485000px;}
.y11f{bottom:787.605000px;}
.y14e{bottom:788.505000px;}
.yf8{bottom:791.385000px;}
.y1a2{bottom:791.565000px;}
.y6f{bottom:791.925000px;}
.ya1{bottom:792.105000px;}
.y1c7{bottom:792.645000px;}
.y10{bottom:797.505000px;}
.y40{bottom:798.765000px;}
.y11e{bottom:804.885000px;}
.y14d{bottom:805.605000px;}
.yf7{bottom:808.710000px;}
.y1a1{bottom:808.890000px;}
.ya0{bottom:809.430000px;}
.y171{bottom:809.970000px;}
.y1c6{bottom:810.690000px;}
.y6e{bottom:811.950000px;}
.yf{bottom:814.650000px;}
.y1f1{bottom:814.830000px;}
.y3f{bottom:816.090000px;}
.y11d{bottom:822.030000px;}
.y14c{bottom:822.930000px;}
.yf6{bottom:825.990000px;}
.y1a0{bottom:826.170000px;}
.y9f{bottom:826.710000px;}
.y6d{bottom:829.230000px;}
.ye{bottom:831.930000px;}
.y1f0{bottom:832.110000px;}
.y3e{bottom:833.370000px;}
.y14b{bottom:837.690000px;}
.y19f{bottom:840.930000px;}
.y9e{bottom:841.470000px;}
.yf5{bottom:843.270000px;}
.y11c{bottom:844.530000px;}
.y170{bottom:845.250000px;}
.y6c{bottom:846.510000px;}
.yd{bottom:849.210000px;}
.y3d{bottom:850.650000px;}
.y14a{bottom:855.690000px;}
.y9d{bottom:859.470000px;}
.y19e{bottom:860.370000px;}
.yf4{bottom:860.550000px;}
.y6b{bottom:863.790000px;}
.y1ef{bottom:865.410000px;}
.yc{bottom:866.490000px;}
.y11b{bottom:867.030000px;}
.y3c{bottom:867.930000px;}
.y9c{bottom:877.470000px;}
.yf3{bottom:877.650000px;}
.y1ee{bottom:882.690000px;}
.yb{bottom:883.770000px;}
.y3b{bottom:885.030000px;}
.y148{bottom:891.510000px;}
.yf2{bottom:894.930000px;}
.y9b{bottom:895.470000px;}
.y19d{bottom:895.650000px;}
.y1ed{bottom:899.970000px;}
.ya{bottom:901.050000px;}
.y3a{bottom:902.310000px;}
.y11a{bottom:906.810000px;}
.yf1{bottom:912.210000px;}
.y9a{bottom:913.470000px;}
.y19c{bottom:915.270000px;}
.y9{bottom:918.150000px;}
.y39{bottom:919.590000px;}
.y147{bottom:927.510000px;}
.yf0{bottom:929.490000px;}
.y98{bottom:931.470000px;}
.y19b{bottom:934.890000px;}
.y8{bottom:935.430000px;}
.y38{bottom:936.870000px;}
.y118{bottom:946.410000px;}
.yef{bottom:946.770000px;}
.y7{bottom:952.710000px;}
.y37{bottom:954.150000px;}
.y19a{bottom:954.690000px;}
.y145{bottom:963.330000px;}
.yee{bottom:964.050000px;}
.y6{bottom:969.990000px;}
.y36{bottom:971.430000px;}
.y198{bottom:974.310000px;}
.yed{bottom:981.150000px;}
.y144{bottom:981.870000px;}
.y5{bottom:987.270000px;}
.y35{bottom:988.530000px;}
.y197{bottom:993.930000px;}
.yec{bottom:998.430000px;}
.y4{bottom:1004.550000px;}
.y195{bottom:1013.730000px;}
.yeb{bottom:1015.710000px;}
.y142{bottom:1017.690000px;}
.y6a{bottom:1021.650000px;}
.y34{bottom:1023.450000px;}
.yea{bottom:1032.810000px;}
.y193{bottom:1033.170000px;}
.y3{bottom:1038.930000px;}
.y33{bottom:1040.370000px;}
.y69{bottom:1081.080000px;}
.y68{bottom:1100.880000px;}
.y67{bottom:1119.960000px;}
.h14{height:15.480000px;}
.h11{height:15.516000px;}
.h12{height:15.660000px;}
.h16{height:17.100000px;}
.hc{height:17.280000px;}
.h25{height:17.316000px;}
.h1d{height:17.820000px;}
.h21{height:18.720000px;}
.h22{height:18.900000px;}
.h20{height:19.080000px;}
.h27{height:22.500000px;}
.h29{height:22.536000px;}
.h28{height:22.680000px;}
.h1f{height:24.300000px;}
.hf{height:30.960000px;}
.h10{height:31.140000px;}
.h18{height:34.380000px;}
.hb{height:34.560000px;}
.h1b{height:34.596000px;}
.h1c{height:35.100000px;}
.h24{height:37.980000px;}
.h26{height:39.780000px;}
.ha{height:41.726953px;}
.h6{height:51.519375px;}
.h1a{height:51.660000px;}
.h1e{height:51.696000px;}
.hd{height:51.840000px;}
.h17{height:51.876000px;}
.h23{height:52.560000px;}
.h5{height:52.998047px;}
.h7{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h2a{height:61.423863px;}
.h13{height:62.136000px;}
.h8{height:62.211094px;}
.h19{height:69.120000px;}
.h1{height:70.664062px;}
.h9{height:74.004654px;}
.he{height:77.580000px;}
.h15{height:120.816000px;}
.h0{height:1188.000000px;}
.w1d{width:22.860000px;}
.w34{width:32.940000px;}
.w24{width:34.200000px;}
.w33{width:42.120000px;}
.w14{width:45.000000px;}
.w13{width:45.216000px;}
.w15{width:45.360000px;}
.w1c{width:46.980000px;}
.w21{width:48.420000px;}
.w31{width:50.436000px;}
.w23{width:51.840000px;}
.w48{width:52.380000px;}
.w47{width:52.560000px;}
.w10{width:52.956000px;}
.w19{width:53.460000px;}
.w17{width:53.856000px;}
.w20{width:54.000000px;}
.w22{width:54.036000px;}
.w57{width:54.396000px;}
.w58{width:54.540000px;}
.w12{width:55.080000px;}
.w1b{width:56.520000px;}
.w3b{width:56.880000px;}
.w2e{width:59.436000px;}
.w1a{width:59.616000px;}
.w32{width:61.020000px;}
.w30{width:62.820000px;}
.w2f{width:63.000000px;}
.wd{width:64.116000px;}
.w2c{width:64.260000px;}
.w2b{width:64.296000px;}
.w41{width:65.160000px;}
.w40{width:65.196000px;}
.w11{width:67.140000px;}
.w45{width:70.020000px;}
.w44{width:70.056000px;}
.w5c{width:73.656000px;}
.we{width:73.800000px;}
.w4f{width:75.636000px;}
.w38{width:77.256000px;}
.w46{width:77.616000px;}
.w18{width:77.940000px;}
.w39{width:80.640000px;}
.wc{width:81.720000px;}
.w63{width:81.756000px;}
.w56{width:82.440000px;}
.w3a{width:82.476000px;}
.wb{width:82.800000px;}
.w50{width:83.700000px;}
.w53{width:83.916000px;}
.w64{width:84.420000px;}
.w1f{width:84.996000px;}
.w4c{width:85.500000px;}
.w43{width:87.660000px;}
.w5f{width:88.380000px;}
.w4d{width:88.596000px;}
.w65{width:89.100000px;}
.w2a{width:89.280000px;}
.w9{width:90.360000px;}
.w3e{width:90.576000px;}
.w3f{width:90.720000px;}
.w28{width:91.296000px;}
.w3d{width:91.800000px;}
.w54{width:94.140000px;}
.w37{width:94.680000px;}
.w5d{width:94.860000px;}
.w5e{width:95.076000px;}
.w4e{width:97.200000px;}
.w29{width:101.160000px;}
.w4b{width:102.060000px;}
.wa{width:108.396000px;}
.w62{width:112.140000px;}
.w55{width:118.656000px;}
.w67{width:118.800000px;}
.w4{width:121.176000px;}
.w68{width:126.576000px;}
.w3{width:127.836000px;}
.w2{width:138.780000px;}
.w5{width:139.140000px;}
.w52{width:140.580000px;}
.w6{width:147.096000px;}
.w66{width:168.660000px;}
.w61{width:199.650000px;}
.w3c{width:209.370000px;}
.w27{width:214.230000px;}
.w4a{width:222.735000px;}
.w8{width:231.195000px;}
.w36{width:266.070000px;}
.w42{width:292.530000px;}
.w5a{width:350.490000px;}
.w5b{width:354.315000px;}
.w16{width:360.255000px;}
.w1e{width:375.555000px;}
.w35{width:376.275000px;}
.w25{width:376.995000px;}
.w26{width:377.175000px;}
.w59{width:633.165000px;}
.w7{width:677.265000px;}
.w60{width:705.525000px;}
.w49{width:707.505000px;}
.w2d{width:719.205000px;}
.wf{width:737.790000px;}
.w51{width:759.750000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x3c{left:-5.760000px;}
.x41{left:-4.320000px;}
.x3b{left:-1.260000px;}
.x0{left:0.000000px;}
.x50{left:1.440000px;}
.x47{left:2.880000px;}
.x3f{left:4.320000px;}
.x6a{left:5.400000px;}
.x4e{left:6.480000px;}
.x2e{left:7.560000px;}
.x3a{left:8.676000px;}
.x4d{left:10.080000px;}
.x20{left:11.700000px;}
.x5f{left:12.780000px;}
.x45{left:14.040000px;}
.x2f{left:15.480000px;}
.x46{left:17.460000px;}
.x1d{left:19.080000px;}
.x32{left:20.160000px;}
.x4b{left:21.960000px;}
.x54{left:23.040000px;}
.x34{left:25.020000px;}
.x1a{left:26.280000px;}
.x26{left:27.360000px;}
.x53{left:28.620000px;}
.x25{left:30.780000px;}
.x55{left:32.040000px;}
.x60{left:33.156000px;}
.x1b{left:34.245000px;}
.x28{left:36.360000px;}
.x27{left:40.140000px;}
.x89{left:41.760000px;}
.x61{left:42.876000px;}
.x23{left:43.965000px;}
.x1f{left:48.240000px;}
.x24{left:53.994000px;}
.x56{left:56.550000px;}
.x22{left:57.645000px;}
.x18{left:61.194000px;}
.x2c{left:77.610000px;}
.x5a{left:80.280000px;}
.x2b{left:89.280000px;}
.x58{left:91.799986px;}
.x62{left:98.676000px;}
.x57{left:99.750000px;}
.x7d{left:104.436000px;}
.x2{left:106.415986px;}
.x48{left:109.110000px;}
.x11{left:114.155986px;}
.x17{left:119.556000px;}
.xc{left:124.055986px;}
.x3{left:130.895986px;}
.x12{left:133.415986px;}
.x8{left:136.475986px;}
.x6b{left:140.796000px;}
.x3d{left:142.236000px;}
.xa3{left:146.915986px;}
.x96{left:152.850000px;}
.x59{left:156.089986px;}
.x10{left:160.049986px;}
.x39{left:166.349986px;}
.x95{left:175.494000px;}
.x9{left:178.589986px;}
.x4{left:188.669986px;}
.x29{left:193.179000px;}
.x6c{left:204.510000px;}
.x99{left:207.219000px;}
.x3e{left:210.090000px;}
.xa2{left:214.059000px;}
.x5b{left:220.710000px;}
.xa{left:222.149986px;}
.x37{left:223.275000px;}
.x91{left:227.739000px;}
.x92{left:233.859000px;}
.x7{left:237.989986px;}
.x6{left:243.389986px;}
.x86{left:254.729986px;}
.x85{left:256.179000px;}
.x7b{left:258.159000px;}
.x19{left:259.230000px;}
.x7c{left:262.469986px;}
.x40{left:265.890000px;}
.x5{left:268.769986px;}
.x5c{left:270.030000px;}
.x94{left:277.229986px;}
.x69{left:280.659000px;}
.x8b{left:282.990000px;}
.x9e{left:284.429986px;}
.x74{left:286.779000px;}
.x38{left:293.655000px;}
.x84{left:296.499000px;}
.x9a{left:299.055000px;}
.x68{left:302.259000px;}
.x76{left:308.775000px;}
.x42{left:311.835000px;}
.x63{left:313.635000px;}
.xb{left:319.214986px;}
.x2d{left:321.375000px;}
.x5d{left:324.795000px;}
.x2a{left:329.834986px;}
.x75{left:333.074986px;}
.x16{left:344.954986px;}
.x8a{left:347.475000px;}
.x43{left:357.735000px;}
.x9f{left:359.355000px;}
.x6f{left:365.475000px;}
.x8c{left:367.635000px;}
.x5e{left:377.355000px;}
.x6d{left:381.135000px;}
.x1c{left:387.975000px;}
.x7e{left:397.875000px;}
.x77{left:401.295000px;}
.x44{left:403.455000px;}
.x64{left:404.715000px;}
.x30{left:412.455000px;}
.x6e{left:423.975000px;}
.x1{left:444.674986px;}
.x93{left:454.574986px;}
.x15{left:458.174986px;}
.x49{left:459.975000px;}
.x8d{left:462.495000px;}
.xa4{left:470.954986px;}
.xa0{left:478.875000px;}
.xf{left:485.174986px;}
.x7f{left:486.255000px;}
.xe{left:490.214986px;}
.x78{left:492.585000px;}
.x9b{left:494.385000px;}
.x65{left:496.725000px;}
.xa5{left:497.984986px;}
.x1e{left:509.865000px;}
.x13{left:512.204986px;}
.x4a{left:514.545000px;}
.x31{left:521.565000px;}
.x14{left:525.704986px;}
.x97{left:532.005000px;}
.x70{left:538.845000px;}
.x80{left:557.205000px;}
.x87{left:580.065000px;}
.x8e{left:581.865000px;}
.x4c{left:593.205000px;}
.x79{left:594.465000px;}
.x66{left:598.605000px;}
.x33{left:605.085000px;}
.xa1{left:606.165000px;}
.x71{left:620.205000px;}
.x81{left:627.945000px;}
.xd{left:647.564986px;}
.x21{left:649.725000px;}
.x8f{left:665.205000px;}
.x9c{left:669.705000px;}
.x88{left:677.985000px;}
.x7a{left:685.905000px;}
.x35{left:687.705000px;}
.x72{left:703.410000px;}
.x82{left:706.290000px;}
.x4f{left:707.730000px;}
.x90{left:720.330000px;}
.x98{left:723.570000px;}
.x9d{left:744.090000px;}
.x36{left:752.550000px;}
.x67{left:753.630000px;}
.x83{left:759.570000px;}
.x73{left:761.010000px;}
.x51{left:764.970000px;}
.x52{left:812.670000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.196267pt;}
.ls8{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.456533pt;}
.ls9{letter-spacing:0.800000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls5{letter-spacing:4.640000pt;}
.ls24{letter-spacing:5.920000pt;}
.ls1d{letter-spacing:6.560000pt;}
.ls1e{letter-spacing:7.840000pt;}
.ls22{letter-spacing:9.120000pt;}
.lsf{letter-spacing:11.146667pt;}
.ls17{letter-spacing:14.240000pt;}
.ls28{letter-spacing:17.232640pt;}
.ls3{letter-spacing:23.200000pt;}
.ls0{letter-spacing:25.120000pt;}
.lse{letter-spacing:27.008000pt;}
.ls2c{letter-spacing:29.499307pt;}
.ls25{letter-spacing:39.360000pt;}
.ls4{letter-spacing:40.912640pt;}
.lsd{letter-spacing:47.312640pt;}
.ls2b{letter-spacing:56.891307pt;}
.ls10{letter-spacing:64.592640pt;}
.ls11{letter-spacing:66.720000pt;}
.ls26{letter-spacing:82.826667pt;}
.ls29{letter-spacing:92.091307pt;}
.ls18{letter-spacing:192.160000pt;}
.ls27{letter-spacing:209.600000pt;}
.ls23{letter-spacing:389.280000pt;}
.ls20{letter-spacing:537.120000pt;}
.ls1f{letter-spacing:563.978667pt;}
.ls2a{letter-spacing:2433.637973pt;}
.ws14{word-spacing:-53.120000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.416533pt;}
.ws11{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.836267pt;}
.ws9{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws4{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws7{word-spacing:0.000000pt;}
._35{margin-left:-4.388693pt;}
._b{margin-left:-1.274880pt;}
._0{width:1.115520pt;}
._24{width:2.018560pt;}
._2{width:2.921600pt;}
._11{width:3.877547pt;}
._d{width:4.833920pt;}
._c{width:6.002560pt;}
._e{width:7.702400pt;}
._13{width:8.924160pt;}
._1c{width:9.880320pt;}
._1a{width:10.942720pt;}
._29{width:12.217600pt;}
._1{width:14.510507pt;}
._19{width:15.404800pt;}
._10{width:16.360960pt;}
._1b{width:17.423360pt;}
._a{width:18.592000pt;}
._4{width:19.866880pt;}
._f{width:21.141760pt;}
._6{width:22.097920pt;}
._5{width:23.107200pt;}
._7{width:24.476800pt;}
._3{width:25.497600pt;}
._15{width:26.506880pt;}
._14{width:27.463040pt;}
._23{width:28.631680pt;}
._1d{width:30.119040pt;}
._9{width:31.526613pt;}
._8{width:32.571307pt;}
._18{width:33.776853pt;}
._2a{width:35.218560pt;}
._17{width:37.130880pt;}
._16{width:38.087040pt;}
._12{width:40.371200pt;}
._21{width:41.486720pt;}
._20{width:42.708480pt;}
._22{width:43.887787pt;}
._2c{width:44.924800pt;}
._30{width:45.944960pt;}
._25{width:47.014827pt;}
._2b{width:49.348480pt;}
._37{width:50.676480pt;}
._31{width:54.607360pt;}
._32{width:55.988480pt;}
._33{width:57.181867pt;}
._39{width:58.166400pt;}
._1e{width:60.556800pt;}
._1f{width:61.459840pt;}
._26{width:65.231360pt;}
._27{width:66.559787pt;}
._36{width:82.720000pt;}
._2f{width:94.154027pt;}
._38{width:101.459200pt;}
._2d{width:168.030507pt;}
._28{width:179.358507pt;}
._34{width:286.880000pt;}
._2e{width:295.903787pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.560000pt;}
.ybe{bottom:2.720000pt;}
.y89{bottom:2.880000pt;}
.y1e2{bottom:3.040000pt;}
.y146{bottom:3.360000pt;}
.y196{bottom:4.160000pt;}
.y199{bottom:4.320000pt;}
.y194{bottom:4.480000pt;}
.y1bc{bottom:5.920000pt;}
.y1de{bottom:7.520000pt;}
.y1e4{bottom:7.560000pt;}
.y1e0{bottom:7.680000pt;}
.y191{bottom:9.120000pt;}
.yb9{bottom:16.320000pt;}
.ybd{bottom:16.480000pt;}
.y143{bottom:17.760000pt;}
.y10a{bottom:18.080000pt;}
.y88{bottom:18.240000pt;}
.y17b{bottom:18.266667pt;}
.y141{bottom:18.720000pt;}
.y149{bottom:18.880000pt;}
.y1bb{bottom:21.280000pt;}
.y1dd{bottom:22.880000pt;}
.yb8{bottom:30.080000pt;}
.yd2{bottom:30.240000pt;}
.y13f{bottom:33.120000pt;}
.y126{bottom:33.440000pt;}
.y15c{bottom:33.466667pt;}
.y99{bottom:33.600000pt;}
.y1b2{bottom:34.240000pt;}
.yb7{bottom:44.000000pt;}
.yd1{bottom:44.026667pt;}
.ye7{bottom:48.800000pt;}
.y119{bottom:48.960000pt;}
.yb6{bottom:57.760000pt;}
.ye6{bottom:64.160000pt;}
.y2{bottom:70.592000pt;}
.ye5{bottom:79.520000pt;}
.y1{bottom:88.992000pt;}
.ye4{bottom:94.880000pt;}
.y192{bottom:105.792000pt;}
.y140{bottom:106.752000pt;}
.y16f{bottom:110.752000pt;}
.y66{bottom:112.032000pt;}
.y117{bottom:115.552000pt;}
.y1ec{bottom:115.712000pt;}
.y32{bottom:116.032000pt;}
.yc7{bottom:116.352000pt;}
.y97{bottom:117.632000pt;}
.y1c5{bottom:120.672000pt;}
.y213{bottom:121.472000pt;}
.ye2{bottom:124.992000pt;}
.y16e{bottom:126.112000pt;}
.y65{bottom:127.392000pt;}
.y31{bottom:130.432000pt;}
.y116{bottom:130.752000pt;}
.y1eb{bottom:131.072000pt;}
.yc6{bottom:131.712000pt;}
.y96{bottom:132.832000pt;}
.y1c4{bottom:136.026667pt;}
.y212{bottom:136.826667pt;}
.y190{bottom:136.986667pt;}
.y13e{bottom:138.586667pt;}
.ye1{bottom:140.346667pt;}
.y16d{bottom:141.466667pt;}
.y64{bottom:142.746667pt;}
.y30{bottom:143.546667pt;}
.y115{bottom:146.106667pt;}
.y1ea{bottom:146.426667pt;}
.yc5{bottom:147.066667pt;}
.y95{bottom:148.186667pt;}
.y1c3{bottom:151.386667pt;}
.y211{bottom:152.186667pt;}
.y2f{bottom:154.746667pt;}
.ye0{bottom:155.546667pt;}
.y16c{bottom:156.826667pt;}
.y63{bottom:158.106667pt;}
.y18f{bottom:159.226667pt;}
.y114{bottom:161.466667pt;}
.y1e9{bottom:161.786667pt;}
.yc4{bottom:162.266667pt;}
.y94{bottom:163.546667pt;}
.y1c2{bottom:166.746667pt;}
.y210{bottom:167.386667pt;}
.ydf{bottom:170.906667pt;}
.y16b{bottom:172.186667pt;}
.y62{bottom:173.306667pt;}
.y1e8{bottom:174.906667pt;}
.y113{bottom:176.826667pt;}
.yc3{bottom:177.626667pt;}
.y93{bottom:178.906667pt;}
.y1c1{bottom:182.106667pt;}
.y20f{bottom:182.746667pt;}
.yde{bottom:186.266667pt;}
.y16a{bottom:187.546667pt;}
.y13d{bottom:188.186667pt;}
.y61{bottom:188.666667pt;}
.y1e7{bottom:190.906667pt;}
.y112{bottom:192.186667pt;}
.yc2{bottom:192.986667pt;}
.y18e{bottom:193.466667pt;}
.y92{bottom:194.266667pt;}
.y1c0{bottom:197.466667pt;}
.y20e{bottom:198.106667pt;}
.ydd{bottom:201.626667pt;}
.y169{bottom:202.746667pt;}
.y13c{bottom:203.546667pt;}
.y60{bottom:204.026667pt;}
.y1e6{bottom:206.906667pt;}
.y111{bottom:207.546667pt;}
.yc1{bottom:208.346667pt;}
.y18d{bottom:208.826667pt;}
.y91{bottom:209.626667pt;}
.y1bf{bottom:212.666667pt;}
.y20d{bottom:213.466667pt;}
.ydc{bottom:216.986667pt;}
.y168{bottom:218.106667pt;}
.y13b{bottom:218.746667pt;}
.y5f{bottom:219.386667pt;}
.y110{bottom:222.746667pt;}
.yc0{bottom:223.386667pt;}
.y18c{bottom:224.186667pt;}
.y90{bottom:224.826667pt;}
.y1be{bottom:225.786667pt;}
.y1e5{bottom:227.546667pt;}
.y20c{bottom:228.826667pt;}
.ydb{bottom:232.346667pt;}
.y167{bottom:233.466667pt;}
.y139{bottom:234.106667pt;}
.y5e{bottom:234.746667pt;}
.y2e{bottom:236.506667pt;}
.y10f{bottom:238.106667pt;}
.y18b{bottom:239.546667pt;}
.y8f{bottom:240.186667pt;}
.y1bd{bottom:241.786667pt;}
.ybf{bottom:241.946667pt;}
.y20b{bottom:244.026667pt;}
.yda{bottom:247.546667pt;}
.y1e3{bottom:248.346667pt;}
.y166{bottom:248.826667pt;}
.y138{bottom:249.466667pt;}
.y5d{bottom:250.106667pt;}
.y2d{bottom:251.546667pt;}
.y10e{bottom:253.466667pt;}
.y18a{bottom:254.746667pt;}
.y8e{bottom:255.546667pt;}
.y1ba{bottom:257.826667pt;}
.y20a{bottom:259.426667pt;}
.ybc{bottom:260.386667pt;}
.yd9{bottom:262.946667pt;}
.y165{bottom:264.226667pt;}
.y137{bottom:264.866667pt;}
.y5c{bottom:265.346667pt;}
.y2c{bottom:265.506667pt;}
.y10d{bottom:268.866667pt;}
.y1e1{bottom:269.026667pt;}
.y189{bottom:270.146667pt;}
.y209{bottom:274.786667pt;}
.y8d{bottom:274.946667pt;}
.yd8{bottom:278.146667pt;}
.y164{bottom:279.426667pt;}
.y2b{bottom:279.586667pt;}
.y136{bottom:280.226667pt;}
.y5b{bottom:280.706667pt;}
.y10c{bottom:281.986667pt;}
.y188{bottom:285.506667pt;}
.y8c{bottom:288.066667pt;}
.y1df{bottom:289.826667pt;}
.y208{bottom:290.146667pt;}
.y1b9{bottom:292.226667pt;}
.ybb{bottom:292.706667pt;}
.y2a{bottom:294.786667pt;}
.y135{bottom:295.426667pt;}
.y5a{bottom:296.066667pt;}
.yd7{bottom:296.546667pt;}
.y10b{bottom:297.986667pt;}
.y187{bottom:300.866667pt;}
.y207{bottom:305.506667pt;}
.y8b{bottom:305.986667pt;}
.y1b8{bottom:308.226667pt;}
.y163{bottom:309.986667pt;}
.y29{bottom:310.146667pt;}
.y1dc{bottom:310.626667pt;}
.y13a{bottom:310.786667pt;}
.y59{bottom:311.426667pt;}
.yd6{bottom:314.946667pt;}
.y186{bottom:316.226667pt;}
.y206{bottom:320.866667pt;}
.y1b7{bottom:324.226667pt;}
.yb5{bottom:325.026667pt;}
.y28{bottom:325.506667pt;}
.y8a{bottom:325.986667pt;}
.y134{bottom:326.146667pt;}
.y58{bottom:326.786667pt;}
.y109{bottom:329.346667pt;}
.y162{bottom:329.986667pt;}
.y185{bottom:331.426667pt;}
.y205{bottom:336.066667pt;}
.y214{bottom:340.866667pt;}
.y133{bottom:341.506667pt;}
.y1b6{bottom:341.826667pt;}
.y57{bottom:342.146667pt;}
.y87{bottom:345.986667pt;}
.y184{bottom:346.786667pt;}
.yd5{bottom:347.266667pt;}
.y1db{bottom:349.506667pt;}
.y204{bottom:351.426667pt;}
.y27{bottom:356.226667pt;}
.y132{bottom:356.866667pt;}
.y56{bottom:357.346667pt;}
.y1b5{bottom:357.826667pt;}
.y108{bottom:360.546667pt;}
.y183{bottom:362.146667pt;}
.y1da{bottom:364.866667pt;}
.y161{bottom:365.346667pt;}
.y203{bottom:366.786667pt;}
.y26{bottom:371.426667pt;}
.y131{bottom:372.226667pt;}
.y55{bottom:372.706667pt;}
.y1b4{bottom:375.266667pt;}
.y107{bottom:376.546667pt;}
.y182{bottom:377.506667pt;}
.yd4{bottom:379.586667pt;}
.y1d9{bottom:380.226667pt;}
.y202{bottom:382.146667pt;}
.y86{bottom:382.306667pt;}
.y160{bottom:385.346667pt;}
.y25{bottom:386.786667pt;}
.y130{bottom:387.426667pt;}
.y54{bottom:388.066667pt;}
.y106{bottom:392.546667pt;}
.y1b1{bottom:392.706667pt;}
.y181{bottom:392.866667pt;}
.y1d8{bottom:395.426667pt;}
.y85{bottom:397.506667pt;}
.yb4{bottom:399.426667pt;}
.y24{bottom:402.146667pt;}
.y12f{bottom:402.786667pt;}
.y53{bottom:403.426667pt;}
.y15f{bottom:405.346667pt;}
.y180{bottom:408.226667pt;}
.y105{bottom:408.546667pt;}
.y1d7{bottom:410.786667pt;}
.yd3{bottom:411.746667pt;}
.y84{bottom:412.866667pt;}
.yb3{bottom:414.786667pt;}
.y23{bottom:417.506667pt;}
.y12e{bottom:418.146667pt;}
.y52{bottom:418.786667pt;}
.y17f{bottom:423.426667pt;}
.y1b3{bottom:424.066667pt;}
.y104{bottom:424.546667pt;}
.y15e{bottom:425.346667pt;}
.y1d6{bottom:426.146667pt;}
.y201{bottom:428.066667pt;}
.y80{bottom:428.226667pt;}
.yb2{bottom:430.146667pt;}
.y22{bottom:432.866667pt;}
.y12d{bottom:433.506667pt;}
.y51{bottom:433.986667pt;}
.y17e{bottom:438.786667pt;}
.y103{bottom:440.546667pt;}
.y1d5{bottom:441.506667pt;}
.y1b0{bottom:442.946667pt;}
.y7f{bottom:443.586667pt;}
.yd0{bottom:444.066667pt;}
.y200{bottom:444.386667pt;}
.y15d{bottom:445.346667pt;}
.yb1{bottom:445.506667pt;}
.y12c{bottom:446.626667pt;}
.y21{bottom:448.226667pt;}
.y50{bottom:449.346667pt;}
.y17d{bottom:454.146667pt;}
.y1d4{bottom:456.866667pt;}
.y1af{bottom:458.306667pt;}
.y7e{bottom:458.946667pt;}
.y1ff{bottom:459.746667pt;}
.yb0{bottom:460.866667pt;}
.y12b{bottom:462.626667pt;}
.y20{bottom:463.426667pt;}
.y4f{bottom:464.706667pt;}
.y15b{bottom:465.346667pt;}
.y17c{bottom:467.266667pt;}
.y1d3{bottom:472.226667pt;}
.y1ae{bottom:473.666667pt;}
.y83{bottom:474.786667pt;}
.y1fe{bottom:475.106667pt;}
.yaf{bottom:476.226667pt;}
.y7d{bottom:476.706667pt;}
.y1f{bottom:478.786667pt;}
.y4e{bottom:480.066667pt;}
.y17a{bottom:483.266667pt;}
.y1d2{bottom:487.453333pt;}
.y1ad{bottom:488.893333pt;}
.y82{bottom:490.173333pt;}
.yae{bottom:491.453333pt;}
.y7c{bottom:492.093333pt;}
.y12a{bottom:494.013333pt;}
.y1e{bottom:494.173333pt;}
.y4d{bottom:495.453333pt;}
.y1d1{bottom:502.813333pt;}
.y1ac{bottom:504.253333pt;}
.ycf{bottom:504.893333pt;}
.y81{bottom:505.533333pt;}
.y1fd{bottom:506.653333pt;}
.yad{bottom:506.813333pt;}
.y1d{bottom:509.533333pt;}
.y7b{bottom:509.853333pt;}
.y129{bottom:510.013333pt;}
.y4c{bottom:510.813333pt;}
.y179{bottom:514.653333pt;}
.y15a{bottom:516.893333pt;}
.y1d0{bottom:518.173333pt;}
.y1ab{bottom:519.613333pt;}
.yce{bottom:520.253333pt;}
.ye9{bottom:520.573333pt;}
.y1fc{bottom:522.013333pt;}
.yac{bottom:522.173333pt;}
.y1c{bottom:524.893333pt;}
.y7a{bottom:525.213333pt;}
.y4b{bottom:526.013333pt;}
.y159{bottom:532.253333pt;}
.y1cf{bottom:533.533333pt;}
.y1aa{bottom:534.973333pt;}
.y1fb{bottom:537.373333pt;}
.yab{bottom:537.533333pt;}
.y1b{bottom:540.253333pt;}
.y79{bottom:540.573333pt;}
.y128{bottom:542.013333pt;}
.y178{bottom:546.013333pt;}
.y157{bottom:547.453333pt;}
.y1ce{bottom:548.893333pt;}
.y102{bottom:550.173333pt;}
.y1a9{bottom:550.333333pt;}
.ycd{bottom:550.813333pt;}
.y1fa{bottom:552.733333pt;}
.yaa{bottom:552.893333pt;}
.y1a{bottom:555.453333pt;}
.y4a{bottom:556.733333pt;}
.y127{bottom:558.013333pt;}
.y78{bottom:558.333333pt;}
.y177{bottom:562.013333pt;}
.y156{bottom:562.813333pt;}
.y1cd{bottom:564.253333pt;}
.y101{bottom:565.533333pt;}
.y1a8{bottom:565.693333pt;}
.ycc{bottom:566.173333pt;}
.y1f9{bottom:568.093333pt;}
.ya9{bottom:568.253333pt;}
.y19{bottom:570.813333pt;}
.y49{bottom:572.093333pt;}
.y77{bottom:573.853333pt;}
.y125{bottom:574.013333pt;}
.ye8{bottom:575.933333pt;}
.y1cc{bottom:577.373333pt;}
.y176{bottom:578.013333pt;}
.y155{bottom:578.173333pt;}
.y100{bottom:580.893333pt;}
.ycb{bottom:581.533333pt;}
.ya8{bottom:583.453333pt;}
.y1f8{bottom:584.413333pt;}
.y18{bottom:586.173333pt;}
.y48{bottom:587.453333pt;}
.y76{bottom:591.613333pt;}
.y1cb{bottom:593.373333pt;}
.y154{bottom:593.533333pt;}
.y175{bottom:594.013333pt;}
.yff{bottom:596.253333pt;}
.yca{bottom:596.893333pt;}
.ya7{bottom:598.813333pt;}
.y1f7{bottom:599.613333pt;}
.y17{bottom:601.533333pt;}
.y47{bottom:602.813333pt;}
.y75{bottom:606.973333pt;}
.y158{bottom:608.893333pt;}
.y174{bottom:610.013333pt;}
.ye3{bottom:611.293333pt;}
.yfe{bottom:611.453333pt;}
.y1a7{bottom:611.613333pt;}
.yc9{bottom:612.253333pt;}
.ya6{bottom:614.173333pt;}
.y1f6{bottom:614.973333pt;}
.y16{bottom:616.893333pt;}
.y46{bottom:618.013333pt;}
.y124{bottom:623.453333pt;}
.y153{bottom:624.253333pt;}
.y1ca{bottom:624.573333pt;}
.y74{bottom:624.733333pt;}
.yfd{bottom:626.813333pt;}
.y1a6{bottom:626.973333pt;}
.yc8{bottom:627.453333pt;}
.y1f5{bottom:630.333333pt;}
.y15{bottom:632.093333pt;}
.y45{bottom:633.373333pt;}
.y123{bottom:638.813333pt;}
.y152{bottom:639.453333pt;}
.y73{bottom:640.093333pt;}
.y1c9{bottom:640.573333pt;}
.y173{bottom:641.213333pt;}
.yfc{bottom:642.173333pt;}
.y1a5{bottom:642.333333pt;}
.ya5{bottom:642.813333pt;}
.y1f4{bottom:646.653333pt;}
.y14{bottom:647.453333pt;}
.y44{bottom:648.733333pt;}
.y122{bottom:654.173333pt;}
.y151{bottom:654.813333pt;}
.y1c8{bottom:656.573333pt;}
.yfb{bottom:657.533333pt;}
.y1a4{bottom:657.693333pt;}
.y72{bottom:657.853333pt;}
.ya4{bottom:658.173333pt;}
.y1f3{bottom:662.013333pt;}
.y13{bottom:662.813333pt;}
.y43{bottom:664.093333pt;}
.y121{bottom:669.533333pt;}
.y150{bottom:670.173333pt;}
.y172{bottom:672.573333pt;}
.yfa{bottom:672.893333pt;}
.y71{bottom:673.213333pt;}
.ya3{bottom:673.533333pt;}
.y1f2{bottom:677.373333pt;}
.y12{bottom:678.173333pt;}
.y42{bottom:679.453333pt;}
.y120{bottom:684.893333pt;}
.y14f{bottom:685.533333pt;}
.yf9{bottom:688.093333pt;}
.y1a3{bottom:688.253333pt;}
.y70{bottom:688.573333pt;}
.ya2{bottom:688.893333pt;}
.y11{bottom:693.533333pt;}
.y41{bottom:694.653333pt;}
.y11f{bottom:700.093333pt;}
.y14e{bottom:700.893333pt;}
.yf8{bottom:703.453333pt;}
.y1a2{bottom:703.613333pt;}
.y6f{bottom:703.933333pt;}
.ya1{bottom:704.093333pt;}
.y1c7{bottom:704.573333pt;}
.y10{bottom:708.893333pt;}
.y40{bottom:710.013333pt;}
.y11e{bottom:715.453333pt;}
.y14d{bottom:716.093333pt;}
.yf7{bottom:718.853333pt;}
.y1a1{bottom:719.013333pt;}
.ya0{bottom:719.493333pt;}
.y171{bottom:719.973333pt;}
.y1c6{bottom:720.613333pt;}
.y6e{bottom:721.733333pt;}
.yf{bottom:724.133333pt;}
.y1f1{bottom:724.293333pt;}
.y3f{bottom:725.413333pt;}
.y11d{bottom:730.693333pt;}
.y14c{bottom:731.493333pt;}
.yf6{bottom:734.213333pt;}
.y1a0{bottom:734.373333pt;}
.y9f{bottom:734.853333pt;}
.y6d{bottom:737.093333pt;}
.ye{bottom:739.493333pt;}
.y1f0{bottom:739.653333pt;}
.y3e{bottom:740.773333pt;}
.y14b{bottom:744.613333pt;}
.y19f{bottom:747.493333pt;}
.y9e{bottom:747.973333pt;}
.yf5{bottom:749.573333pt;}
.y11c{bottom:750.693333pt;}
.y170{bottom:751.333333pt;}
.y6c{bottom:752.453333pt;}
.yd{bottom:754.853333pt;}
.y3d{bottom:756.133333pt;}
.y14a{bottom:760.613333pt;}
.y9d{bottom:763.973333pt;}
.y19e{bottom:764.773333pt;}
.yf4{bottom:764.933333pt;}
.y6b{bottom:767.813333pt;}
.y1ef{bottom:769.253333pt;}
.yc{bottom:770.213333pt;}
.y11b{bottom:770.693333pt;}
.y3c{bottom:771.493333pt;}
.y9c{bottom:779.973333pt;}
.yf3{bottom:780.133333pt;}
.y1ee{bottom:784.613333pt;}
.yb{bottom:785.573333pt;}
.y3b{bottom:786.693333pt;}
.y148{bottom:792.453333pt;}
.yf2{bottom:795.493333pt;}
.y9b{bottom:795.973333pt;}
.y19d{bottom:796.133333pt;}
.y1ed{bottom:799.973333pt;}
.ya{bottom:800.933333pt;}
.y3a{bottom:802.053333pt;}
.y11a{bottom:806.053333pt;}
.yf1{bottom:810.853333pt;}
.y9a{bottom:811.973333pt;}
.y19c{bottom:813.573333pt;}
.y9{bottom:816.133333pt;}
.y39{bottom:817.413333pt;}
.y147{bottom:824.453333pt;}
.yf0{bottom:826.213333pt;}
.y98{bottom:827.973333pt;}
.y19b{bottom:831.013333pt;}
.y8{bottom:831.493333pt;}
.y38{bottom:832.773333pt;}
.y118{bottom:841.253333pt;}
.yef{bottom:841.573333pt;}
.y7{bottom:846.853333pt;}
.y37{bottom:848.133333pt;}
.y19a{bottom:848.613333pt;}
.y145{bottom:856.293333pt;}
.yee{bottom:856.933333pt;}
.y6{bottom:862.213333pt;}
.y36{bottom:863.493333pt;}
.y198{bottom:866.053333pt;}
.yed{bottom:872.133333pt;}
.y144{bottom:872.773333pt;}
.y5{bottom:877.573333pt;}
.y35{bottom:878.693333pt;}
.y197{bottom:883.493333pt;}
.yec{bottom:887.493333pt;}
.y4{bottom:892.933333pt;}
.y195{bottom:901.093333pt;}
.yeb{bottom:902.853333pt;}
.y142{bottom:904.613333pt;}
.y6a{bottom:908.133333pt;}
.y34{bottom:909.733333pt;}
.yea{bottom:918.053333pt;}
.y193{bottom:918.373333pt;}
.y3{bottom:923.493333pt;}
.y33{bottom:924.773333pt;}
.y69{bottom:960.960000pt;}
.y68{bottom:978.560000pt;}
.y67{bottom:995.520000pt;}
.h14{height:13.760000pt;}
.h11{height:13.792000pt;}
.h12{height:13.920000pt;}
.h16{height:15.200000pt;}
.hc{height:15.360000pt;}
.h25{height:15.392000pt;}
.h1d{height:15.840000pt;}
.h21{height:16.640000pt;}
.h22{height:16.800000pt;}
.h20{height:16.960000pt;}
.h27{height:20.000000pt;}
.h29{height:20.032000pt;}
.h28{height:20.160000pt;}
.h1f{height:21.600000pt;}
.hf{height:27.520000pt;}
.h10{height:27.680000pt;}
.h18{height:30.560000pt;}
.hb{height:30.720000pt;}
.h1b{height:30.752000pt;}
.h1c{height:31.200000pt;}
.h24{height:33.760000pt;}
.h26{height:35.360000pt;}
.ha{height:37.090625pt;}
.h6{height:45.795000pt;}
.h1a{height:45.920000pt;}
.h1e{height:45.952000pt;}
.hd{height:46.080000pt;}
.h17{height:46.112000pt;}
.h23{height:46.720000pt;}
.h5{height:47.109375pt;}
.h7{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h2a{height:54.598989pt;}
.h13{height:55.232000pt;}
.h8{height:55.298750pt;}
.h19{height:61.440000pt;}
.h1{height:62.812500pt;}
.h9{height:65.781915pt;}
.he{height:68.960000pt;}
.h15{height:107.392000pt;}
.h0{height:1056.000000pt;}
.w1d{width:20.320000pt;}
.w34{width:29.280000pt;}
.w24{width:30.400000pt;}
.w33{width:37.440000pt;}
.w14{width:40.000000pt;}
.w13{width:40.192000pt;}
.w15{width:40.320000pt;}
.w1c{width:41.760000pt;}
.w21{width:43.040000pt;}
.w31{width:44.832000pt;}
.w23{width:46.080000pt;}
.w48{width:46.560000pt;}
.w47{width:46.720000pt;}
.w10{width:47.072000pt;}
.w19{width:47.520000pt;}
.w17{width:47.872000pt;}
.w20{width:48.000000pt;}
.w22{width:48.032000pt;}
.w57{width:48.352000pt;}
.w58{width:48.480000pt;}
.w12{width:48.960000pt;}
.w1b{width:50.240000pt;}
.w3b{width:50.560000pt;}
.w2e{width:52.832000pt;}
.w1a{width:52.992000pt;}
.w32{width:54.240000pt;}
.w30{width:55.840000pt;}
.w2f{width:56.000000pt;}
.wd{width:56.992000pt;}
.w2c{width:57.120000pt;}
.w2b{width:57.152000pt;}
.w41{width:57.920000pt;}
.w40{width:57.952000pt;}
.w11{width:59.680000pt;}
.w45{width:62.240000pt;}
.w44{width:62.272000pt;}
.w5c{width:65.472000pt;}
.we{width:65.600000pt;}
.w4f{width:67.232000pt;}
.w38{width:68.672000pt;}
.w46{width:68.992000pt;}
.w18{width:69.280000pt;}
.w39{width:71.680000pt;}
.wc{width:72.640000pt;}
.w63{width:72.672000pt;}
.w56{width:73.280000pt;}
.w3a{width:73.312000pt;}
.wb{width:73.600000pt;}
.w50{width:74.400000pt;}
.w53{width:74.592000pt;}
.w64{width:75.040000pt;}
.w1f{width:75.552000pt;}
.w4c{width:76.000000pt;}
.w43{width:77.920000pt;}
.w5f{width:78.560000pt;}
.w4d{width:78.752000pt;}
.w65{width:79.200000pt;}
.w2a{width:79.360000pt;}
.w9{width:80.320000pt;}
.w3e{width:80.512000pt;}
.w3f{width:80.640000pt;}
.w28{width:81.152000pt;}
.w3d{width:81.600000pt;}
.w54{width:83.680000pt;}
.w37{width:84.160000pt;}
.w5d{width:84.320000pt;}
.w5e{width:84.512000pt;}
.w4e{width:86.400000pt;}
.w29{width:89.920000pt;}
.w4b{width:90.720000pt;}
.wa{width:96.352000pt;}
.w62{width:99.680000pt;}
.w55{width:105.472000pt;}
.w67{width:105.600000pt;}
.w4{width:107.712000pt;}
.w68{width:112.512000pt;}
.w3{width:113.632000pt;}
.w2{width:123.360000pt;}
.w5{width:123.680000pt;}
.w52{width:124.960000pt;}
.w6{width:130.752000pt;}
.w66{width:149.920000pt;}
.w61{width:177.466667pt;}
.w3c{width:186.106667pt;}
.w27{width:190.426667pt;}
.w4a{width:197.986667pt;}
.w8{width:205.506667pt;}
.w36{width:236.506667pt;}
.w42{width:260.026667pt;}
.w5a{width:311.546667pt;}
.w5b{width:314.946667pt;}
.w16{width:320.226667pt;}
.w1e{width:333.826667pt;}
.w35{width:334.466667pt;}
.w25{width:335.106667pt;}
.w26{width:335.266667pt;}
.w59{width:562.813333pt;}
.w7{width:602.013333pt;}
.w60{width:627.133333pt;}
.w49{width:628.893333pt;}
.w2d{width:639.293333pt;}
.wf{width:655.813333pt;}
.w51{width:675.333333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x3c{left:-5.120000pt;}
.x41{left:-3.840000pt;}
.x3b{left:-1.120000pt;}
.x0{left:0.000000pt;}
.x50{left:1.280000pt;}
.x47{left:2.560000pt;}
.x3f{left:3.840000pt;}
.x6a{left:4.800000pt;}
.x4e{left:5.760000pt;}
.x2e{left:6.720000pt;}
.x3a{left:7.712000pt;}
.x4d{left:8.960000pt;}
.x20{left:10.400000pt;}
.x5f{left:11.360000pt;}
.x45{left:12.480000pt;}
.x2f{left:13.760000pt;}
.x46{left:15.520000pt;}
.x1d{left:16.960000pt;}
.x32{left:17.920000pt;}
.x4b{left:19.520000pt;}
.x54{left:20.480000pt;}
.x34{left:22.240000pt;}
.x1a{left:23.360000pt;}
.x26{left:24.320000pt;}
.x53{left:25.440000pt;}
.x25{left:27.360000pt;}
.x55{left:28.480000pt;}
.x60{left:29.472000pt;}
.x1b{left:30.440000pt;}
.x28{left:32.320000pt;}
.x27{left:35.680000pt;}
.x89{left:37.120000pt;}
.x61{left:38.112000pt;}
.x23{left:39.080000pt;}
.x1f{left:42.880000pt;}
.x24{left:47.994667pt;}
.x56{left:50.266667pt;}
.x22{left:51.240000pt;}
.x18{left:54.394667pt;}
.x2c{left:68.986667pt;}
.x5a{left:71.360000pt;}
.x2b{left:79.360000pt;}
.x58{left:81.599988pt;}
.x62{left:87.712000pt;}
.x57{left:88.666667pt;}
.x7d{left:92.832000pt;}
.x2{left:94.591988pt;}
.x48{left:96.986667pt;}
.x11{left:101.471988pt;}
.x17{left:106.272000pt;}
.xc{left:110.271988pt;}
.x3{left:116.351988pt;}
.x12{left:118.591988pt;}
.x8{left:121.311988pt;}
.x6b{left:125.152000pt;}
.x3d{left:126.432000pt;}
.xa3{left:130.591988pt;}
.x96{left:135.866667pt;}
.x59{left:138.746655pt;}
.x10{left:142.266655pt;}
.x39{left:147.866655pt;}
.x95{left:155.994667pt;}
.x9{left:158.746655pt;}
.x4{left:167.706655pt;}
.x29{left:171.714667pt;}
.x6c{left:181.786667pt;}
.x99{left:184.194667pt;}
.x3e{left:186.746667pt;}
.xa2{left:190.274667pt;}
.x5b{left:196.186667pt;}
.xa{left:197.466655pt;}
.x37{left:198.466667pt;}
.x91{left:202.434667pt;}
.x92{left:207.874667pt;}
.x7{left:211.546655pt;}
.x6{left:216.346655pt;}
.x86{left:226.426655pt;}
.x85{left:227.714667pt;}
.x7b{left:229.474667pt;}
.x19{left:230.426667pt;}
.x7c{left:233.306655pt;}
.x40{left:236.346667pt;}
.x5{left:238.906655pt;}
.x5c{left:240.026667pt;}
.x94{left:246.426655pt;}
.x69{left:249.474667pt;}
.x8b{left:251.546667pt;}
.x9e{left:252.826655pt;}
.x74{left:254.914667pt;}
.x38{left:261.026667pt;}
.x84{left:263.554667pt;}
.x9a{left:265.826667pt;}
.x68{left:268.674667pt;}
.x76{left:274.466667pt;}
.x42{left:277.186667pt;}
.x63{left:278.786667pt;}
.xb{left:283.746655pt;}
.x2d{left:285.666667pt;}
.x5d{left:288.706667pt;}
.x2a{left:293.186655pt;}
.x75{left:296.066655pt;}
.x16{left:306.626655pt;}
.x8a{left:308.866667pt;}
.x43{left:317.986667pt;}
.x9f{left:319.426667pt;}
.x6f{left:324.866667pt;}
.x8c{left:326.786667pt;}
.x5e{left:335.426667pt;}
.x6d{left:338.786667pt;}
.x1c{left:344.866667pt;}
.x7e{left:353.666667pt;}
.x77{left:356.706667pt;}
.x44{left:358.626667pt;}
.x64{left:359.746667pt;}
.x30{left:366.626667pt;}
.x6e{left:376.866667pt;}
.x1{left:395.266655pt;}
.x93{left:404.066655pt;}
.x15{left:407.266655pt;}
.x49{left:408.866667pt;}
.x8d{left:411.106667pt;}
.xa4{left:418.626655pt;}
.xa0{left:425.666667pt;}
.xf{left:431.266655pt;}
.x7f{left:432.226667pt;}
.xe{left:435.746655pt;}
.x78{left:437.853333pt;}
.x9b{left:439.453333pt;}
.x65{left:441.533333pt;}
.xa5{left:442.653321pt;}
.x1e{left:453.213333pt;}
.x13{left:455.293321pt;}
.x4a{left:457.373333pt;}
.x31{left:463.613333pt;}
.x14{left:467.293321pt;}
.x97{left:472.893333pt;}
.x70{left:478.973333pt;}
.x80{left:495.293333pt;}
.x87{left:515.613333pt;}
.x8e{left:517.213333pt;}
.x4c{left:527.293333pt;}
.x79{left:528.413333pt;}
.x66{left:532.093333pt;}
.x33{left:537.853333pt;}
.xa1{left:538.813333pt;}
.x71{left:551.293333pt;}
.x81{left:558.173333pt;}
.xd{left:575.613321pt;}
.x21{left:577.533333pt;}
.x8f{left:591.293333pt;}
.x9c{left:595.293333pt;}
.x88{left:602.653333pt;}
.x7a{left:609.693333pt;}
.x35{left:611.293333pt;}
.x72{left:625.253333pt;}
.x82{left:627.813333pt;}
.x4f{left:629.093333pt;}
.x90{left:640.293333pt;}
.x98{left:643.173333pt;}
.x9d{left:661.413333pt;}
.x36{left:668.933333pt;}
.x67{left:669.893333pt;}
.x83{left:675.173333pt;}
.x73{left:676.453333pt;}
.x51{left:679.973333pt;}
.x52{left:722.373333pt;}
}




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