
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c146560d3137a154f17b4309.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1518972439193ed3df778c38.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_eea7ad83b3409eb22d69a41e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6b3b72229cfc196c65752880.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_128e319fa5c86b56aefc8b6f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2f1f338883846559becb9ebe.woff')format("woff");}.ff7{font-family:ff7;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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.538800px;}
.lsf{letter-spacing:-0.485400px;}
.lsc{letter-spacing:-0.399000px;}
.ls18{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.199200px;}
.ls8{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.018360px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.074160px;}
.ls10{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.093600px;}
.ls9{letter-spacing:0.116400px;}
.ls11{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls1a{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.342800px;}
.ws9{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.208040px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.064400px;}
.wsb{word-spacing:-13.047600px;}
.ws6{word-spacing:-13.039800px;}
.wse{word-spacing:-13.027200px;}
.wsa{word-spacing:-12.827400px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:4.304880px;}
._15{margin-left:-4.448880px;}
._2{margin-left:-3.246600px;}
._e{margin-left:-2.176800px;}
._0{margin-left:-1.020000px;}
._1{width:1.174236px;}
._13{width:2.180159px;}
._6{width:3.182400px;}
._3{width:4.208400px;}
._a{width:5.318880px;}
._9{width:6.327360px;}
._d{width:7.769004px;}
._f{width:8.957880px;}
._b{width:10.160400px;}
._5{width:11.843400px;}
._c{width:14.428800px;}
._8{width:15.688799px;}
._4{width:16.713600px;}
._16{width:17.926200px;}
._17{width:19.252920px;}
._14{width:20.656561px;}
._11{width:22.003920px;}
._18{width:23.025960px;}
._1a{width:24.230043px;}
._7{width:25.284960px;}
._12{width:26.607564px;}
._10{width:27.775440px;}
._1b{width:30.733800px;}
._1c{width:31.737720px;}
._1d{width:37.063800px;}
._21{width:40.965480px;}
._1e{width:42.835320px;}
._1f{width:44.572680px;}
._20{width:64.592640px;}
._22{width:81.005400px;}
._23{width:82.100160px;}
._19{width:1000.835400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y12e{bottom:112.980000px;}
.ya3{bottom:118.920000px;}
.yc5{bottom:119.190000px;}
.y184{bottom:119.550000px;}
.y84{bottom:120.180000px;}
.y211{bottom:123.870000px;}
.y19f{bottom:124.140000px;}
.y14a{bottom:127.200000px;}
.y1c2{bottom:128.640000px;}
.y12d{bottom:130.530000px;}
.yc4{bottom:136.830000px;}
.y183{bottom:137.100000px;}
.y83{bottom:137.730000px;}
.y1e9{bottom:139.080000px;}
.y29{bottom:141.060000px;}
.y210{bottom:141.510000px;}
.y19e{bottom:141.690000px;}
.y149{bottom:144.840000px;}
.y1c1{bottom:146.280000px;}
.y152{bottom:146.820000px;}
.yd8{bottom:147.630000px;}
.y12c{bottom:148.170000px;}
.ya2{bottom:148.260000px;}
.y10a{bottom:149.430000px;}
.yc3{bottom:154.380000px;}
.y182{bottom:154.740000px;}
.y82{bottom:155.370000px;}
.y1e8{bottom:156.720000px;}
.y28{bottom:158.610000px;}
.y19d{bottom:159.240000px;}
.y148{bottom:162.390000px;}
.y1c0{bottom:163.830000px;}
.y12b{bottom:165.720000px;}
.ya1{bottom:165.810000px;}
.y109{bottom:166.980000px;}
.y20f{bottom:168.060000px;}
.y60{bottom:171.840000px;}
.yc2{bottom:172.020000px;}
.y181{bottom:172.290000px;}
.y81{bottom:172.920000px;}
.y27{bottom:176.250000px;}
.y19c{bottom:176.880000px;}
.y151{bottom:179.040000px;}
.y147{bottom:179.940000px;}
.y1bf{bottom:181.470000px;}
.yd7{bottom:183.270000px;}
.ya0{bottom:183.450000px;}
.y108{bottom:184.620000px;}
.y20e{bottom:185.610000px;}
.y5f{bottom:189.390000px;}
.yc1{bottom:189.570000px;}
.y180{bottom:189.840000px;}
.y80{bottom:190.470000px;}
.y26{bottom:193.800000px;}
.y19b{bottom:194.430000px;}
.y1be{bottom:199.020000px;}
.y1e7{bottom:200.820000px;}
.y12a{bottom:200.910000px;}
.y9f{bottom:201.000000px;}
.y107{bottom:202.170000px;}
.y5e{bottom:206.940000px;}
.yc0{bottom:207.120000px;}
.y17f{bottom:207.480000px;}
.y7f{bottom:208.110000px;}
.y25{bottom:211.350000px;}
.y19a{bottom:212.070000px;}
.y20d{bottom:212.250000px;}
.yd6{bottom:215.490000px;}
.y146{bottom:215.580000px;}
.y1bd{bottom:216.570000px;}
.y129{bottom:218.460000px;}
.y9e{bottom:218.550000px;}
.y106{bottom:219.720000px;}
.y5d{bottom:224.580000px;}
.ybf{bottom:224.760000px;}
.y17e{bottom:225.030000px;}
.y1e6{bottom:227.460000px;}
.y24{bottom:228.990000px;}
.y199{bottom:229.620000px;}
.y20c{bottom:229.800000px;}
.y145{bottom:233.130000px;}
.y1bc{bottom:234.210000px;}
.y128{bottom:236.100000px;}
.y9d{bottom:236.190000px;}
.y105{bottom:237.360000px;}
.y5c{bottom:242.130000px;}
.y17d{bottom:242.580000px;}
.y7e{bottom:243.660000px;}
.y1e5{bottom:245.010000px;}
.y23{bottom:246.540000px;}
.y198{bottom:247.170000px;}
.y144{bottom:250.680000px;}
.y127{bottom:253.650000px;}
.y9c{bottom:253.740000px;}
.ybe{bottom:254.010000px;}
.y104{bottom:254.910000px;}
.y20b{bottom:256.440000px;}
.y5b{bottom:259.680000px;}
.y17c{bottom:260.220000px;}
.y1bb{bottom:263.820000px;}
.y22{bottom:264.090000px;}
.y197{bottom:264.810000px;}
.y7d{bottom:266.880000px;}
.y143{bottom:268.320000px;}
.y126{bottom:271.200000px;}
.y9b{bottom:271.380000px;}
.y1e4{bottom:271.650000px;}
.y103{bottom:272.550000px;}
.y20a{bottom:273.990000px;}
.y5a{bottom:277.320000px;}
.y17b{bottom:277.770000px;}
.y21{bottom:281.730000px;}
.y196{bottom:282.360000px;}
.y142{bottom:285.870000px;}
.y125{bottom:288.840000px;}
.y9a{bottom:288.930000px;}
.y1e3{bottom:289.200000px;}
.ybd{bottom:289.650000px;}
.y102{bottom:290.100000px;}
.y59{bottom:294.870000px;}
.y20{bottom:299.280000px;}
.y195{bottom:300.000000px;}
.y209{bottom:300.540000px;}
.y141{bottom:303.510000px;}
.y124{bottom:306.390000px;}
.y99{bottom:306.480000px;}
.y1e2{bottom:306.750000px;}
.y17a{bottom:307.110000px;}
.ybc{bottom:307.200000px;}
.y101{bottom:307.650000px;}
.ye4{bottom:311.430000px;}
.y1ba{bottom:312.060000px;}
.y58{bottom:312.510000px;}
.y194{bottom:317.550000px;}
.y208{bottom:318.180000px;}
.y140{bottom:321.060000px;}
.y123{bottom:324.030000px;}
.y98{bottom:324.120000px;}
.y179{bottom:324.660000px;}
.ybb{bottom:324.750000px;}
.y100{bottom:325.290000px;}
.y1f{bottom:326.190000px;}
.ye3{bottom:329.070000px;}
.y1b9{bottom:329.700000px;}
.y57{bottom:330.060000px;}
.y1e1{bottom:333.660000px;}
.y193{bottom:335.100000px;}
.y13f{bottom:338.610000px;}
.y97{bottom:341.670000px;}
.y178{bottom:342.210000px;}
.yba{bottom:342.390000px;}
.yff{bottom:342.840000px;}
.y207{bottom:344.730000px;}
.ye2{bottom:346.620000px;}
.y1b8{bottom:347.250000px;}
.y56{bottom:347.610000px;}
.y192{bottom:352.740000px;}
.y13e{bottom:356.250000px;}
.y96{bottom:359.310000px;}
.y122{bottom:359.580000px;}
.y177{bottom:359.850000px;}
.yb9{bottom:359.940000px;}
.yfe{bottom:360.480000px;}
.ye1{bottom:364.260000px;}
.y1b7{bottom:364.800000px;}
.y55{bottom:365.250000px;}
.y206{bottom:371.370000px;}
.y13d{bottom:373.800000px;}
.y1e{bottom:374.520000px;}
.y95{bottom:376.860000px;}
.y121{bottom:377.130000px;}
.y176{bottom:377.400000px;}
.ye0{bottom:381.810000px;}
.y1e0{bottom:381.990000px;}
.y191{bottom:382.350000px;}
.y1b6{bottom:382.440000px;}
.y54{bottom:382.800000px;}
.y205{bottom:388.920000px;}
.y13c{bottom:391.440000px;}
.y1d{bottom:392.430000px;}
.y94{bottom:394.410000px;}
.y120{bottom:394.770000px;}
.y175{bottom:395.040000px;}
.yb8{bottom:395.580000px;}
.yfd{bottom:396.030000px;}
.ydf{bottom:399.360000px;}
.y1df{bottom:399.540000px;}
.y1b5{bottom:399.990000px;}
.y13b{bottom:408.990000px;}
.y93{bottom:412.050000px;}
.y11f{bottom:412.320000px;}
.y174{bottom:412.590000px;}
.yfc{bottom:413.580000px;}
.y204{bottom:415.470000px;}
.y1de{bottom:417.090000px;}
.y1b4{bottom:417.540000px;}
.y53{bottom:418.440000px;}
.yb7{bottom:418.800000px;}
.y13a{bottom:426.540000px;}
.y1c{bottom:429.420000px;}
.y92{bottom:429.600000px;}
.y11e{bottom:429.960000px;}
.y173{bottom:430.140000px;}
.y190{bottom:430.590000px;}
.yfb{bottom:431.220000px;}
.y1dd{bottom:434.730000px;}
.yde{bottom:435.000000px;}
.y1b3{bottom:435.180000px;}
.y52{bottom:435.990000px;}
.y203{bottom:442.110000px;}
.y139{bottom:444.180000px;}
.y1b{bottom:446.970000px;}
.y91{bottom:447.150000px;}
.y11d{bottom:447.510000px;}
.y172{bottom:447.780000px;}
.y18f{bottom:448.140000px;}
.yfa{bottom:448.770000px;}
.y1dc{bottom:452.280000px;}
.y1b2{bottom:452.730000px;}
.y51{bottom:453.540000px;}
.y202{bottom:459.660000px;}
.y138{bottom:461.730000px;}
.yd5{bottom:461.820000px;}
.y1a{bottom:464.610000px;}
.y90{bottom:464.790000px;}
.y11c{bottom:465.060000px;}
.y171{bottom:465.330000px;}
.y18e{bottom:465.780000px;}
.yf9{bottom:466.410000px;}
.ydd{bottom:467.220000px;}
.y1b1{bottom:470.400000px;}
.y50{bottom:471.210000px;}
.y137{bottom:479.400000px;}
.yd4{bottom:479.490000px;}
.y1db{bottom:481.650000px;}
.y19{bottom:482.190000px;}
.y11b{bottom:482.730000px;}
.y170{bottom:483.000000px;}
.y18d{bottom:483.360000px;}
.yf8{bottom:483.990000px;}
.y201{bottom:486.330000px;}
.y1b0{bottom:487.950000px;}
.y4f{bottom:488.760000px;}
.y8f{bottom:494.070000px;}
.y1da{bottom:499.200000px;}
.y18{bottom:499.830000px;}
.y11a{bottom:500.280000px;}
.y18c{bottom:501.000000px;}
.yf7{bottom:501.540000px;}
.y200{bottom:503.880000px;}
.y1af{bottom:505.500000px;}
.y136{bottom:505.950000px;}
.y4e{bottom:506.400000px;}
.y16f{bottom:512.250000px;}
.yd3{bottom:515.040000px;}
.y150{bottom:515.400000px;}
.y1d9{bottom:516.750000px;}
.y17{bottom:517.380000px;}
.y119{bottom:517.830000px;}
.y18b{bottom:518.550000px;}
.y1ae{bottom:523.140000px;}
.y4d{bottom:523.950000px;}
.y8e{bottom:529.710000px;}
.y1ff{bottom:530.430000px;}
.y14f{bottom:532.950000px;}
.y1d8{bottom:534.390000px;}
.y16{bottom:534.930000px;}
.y118{bottom:535.470000px;}
.y18a{bottom:536.100000px;}
.yf6{bottom:537.180000px;}
.yd2{bottom:538.260000px;}
.y4c{bottom:541.500000px;}
.y8d{bottom:547.260000px;}
.y16e{bottom:547.800000px;}
.y1fe{bottom:548.070000px;}
.y14e{bottom:550.590000px;}
.y1d7{bottom:551.940000px;}
.y1ad{bottom:552.390000px;}
.y7c{bottom:552.480000px;}
.y15{bottom:552.570000px;}
.y117{bottom:553.020000px;}
.y189{bottom:553.740000px;}
.yf5{bottom:554.730000px;}
.y4b{bottom:559.140000px;}
.y8c{bottom:564.810000px;}
.y16d{bottom:565.440000px;}
.y14d{bottom:568.140000px;}
.y1d6{bottom:569.580000px;}
.y7b{bottom:570.030000px;}
.y14{bottom:570.120000px;}
.y116{bottom:570.660000px;}
.y188{bottom:571.290000px;}
.yf4{bottom:572.280000px;}
.y1fd{bottom:574.620000px;}
.y4a{bottom:576.690000px;}
.y8b{bottom:582.450000px;}
.y16c{bottom:582.990000px;}
.y1d5{bottom:587.130000px;}
.y1ac{bottom:587.580000px;}
.y13{bottom:587.670000px;}
.y115{bottom:588.210000px;}
.y187{bottom:588.930000px;}
.yf3{bottom:589.920000px;}
.y1fc{bottom:592.260000px;}
.y49{bottom:594.330000px;}
.y16b{bottom:600.630000px;}
.y14c{bottom:603.780000px;}
.y1d4{bottom:604.680000px;}
.y1ab{bottom:605.130000px;}
.y7a{bottom:605.220000px;}
.y12{bottom:605.310000px;}
.y114{bottom:605.760000px;}
.y186{bottom:606.480000px;}
.yf2{bottom:607.470000px;}
.y48{bottom:611.880000px;}
.y8a{bottom:618.000000px;}
.y16a{bottom:618.180000px;}
.y1fb{bottom:618.810000px;}
.y1d3{bottom:622.320000px;}
.y1aa{bottom:622.770000px;}
.y11{bottom:622.860000px;}
.y113{bottom:623.400000px;}
.y185{bottom:624.030000px;}
.yf1{bottom:625.110000px;}
.y47{bottom:629.430000px;}
.y169{bottom:635.730000px;}
.y1fa{bottom:636.360000px;}
.y14b{bottom:639.330000px;}
.y1d2{bottom:639.870000px;}
.y1a9{bottom:640.320000px;}
.y10{bottom:640.500000px;}
.y112{bottom:640.950000px;}
.y89{bottom:641.220000px;}
.yf0{bottom:642.660000px;}
.y46{bottom:647.070000px;}
.y79{bottom:652.110000px;}
.y168{bottom:653.370000px;}
.y1d1{bottom:657.510000px;}
.y1a8{bottom:657.960000px;}
.yf{bottom:658.050000px;}
.y111{bottom:658.590000px;}
.yef{bottom:660.210000px;}
.y1f9{bottom:663.000000px;}
.y45{bottom:664.620000px;}
.y78{bottom:669.660000px;}
.y167{bottom:670.920000px;}
.y1a7{bottom:675.510000px;}
.ye{bottom:675.600000px;}
.yee{bottom:677.850000px;}
.y1f8{bottom:680.550000px;}
.y44{bottom:682.260000px;}
.y110{bottom:685.140000px;}
.y1d0{bottom:686.760000px;}
.y77{bottom:687.300000px;}
.y166{bottom:688.560000px;}
.y1a6{bottom:693.060000px;}
.yd{bottom:693.240000px;}
.yed{bottom:695.400000px;}
.y43{bottom:699.810000px;}
.y1cf{bottom:704.310000px;}
.y76{bottom:704.850000px;}
.y165{bottom:706.110000px;}
.y1f7{bottom:707.190000px;}
.y1a5{bottom:710.700000px;}
.yc{bottom:710.790000px;}
.yec{bottom:713.040000px;}
.y42{bottom:717.360000px;}
.y10f{bottom:720.690000px;}
.y1ce{bottom:721.950000px;}
.y75{bottom:722.490000px;}
.y164{bottom:723.660000px;}
.yb6{bottom:724.110000px;}
.y1f6{bottom:724.740000px;}
.y1a4{bottom:728.250000px;}
.yb{bottom:728.430000px;}
.y135{bottom:735.000000px;}
.y10e{bottom:738.330000px;}
.y1cd{bottom:739.500000px;}
.yeb{bottom:739.590000px;}
.y74{bottom:740.040000px;}
.y163{bottom:741.300000px;}
.yb5{bottom:741.660000px;}
.y1a3{bottom:745.890000px;}
.y1f5{bottom:751.290000px;}
.y134{bottom:752.550000px;}
.y41{bottom:753.000000px;}
.ya{bottom:755.340000px;}
.y10d{bottom:755.880000px;}
.y1cc{bottom:757.140000px;}
.y162{bottom:758.850000px;}
.yb4{bottom:759.300000px;}
.y1a2{bottom:763.440000px;}
.ydc{bottom:767.580000px;}
.y1f4{bottom:768.930000px;}
.y73{bottom:769.290000px;}
.y133{bottom:770.190000px;}
.y40{bottom:770.550000px;}
.y10c{bottom:773.520000px;}
.y1cb{bottom:774.690000px;}
.yea{bottom:775.140000px;}
.y161{bottom:776.490000px;}
.yb3{bottom:776.850000px;}
.y1a1{bottom:780.990000px;}
.y72{bottom:786.930000px;}
.y132{bottom:787.740000px;}
.y3f{bottom:788.190000px;}
.y1ca{bottom:792.240000px;}
.ye9{bottom:792.780000px;}
.y160{bottom:794.040000px;}
.yb2{bottom:794.490000px;}
.y1f3{bottom:795.480000px;}
.ydb{bottom:803.220000px;}
.y9{bottom:803.580000px;}
.y71{bottom:804.480000px;}
.y131{bottom:805.290000px;}
.y3e{bottom:805.740000px;}
.y10b{bottom:809.070000px;}
.y1c9{bottom:809.880000px;}
.ye8{bottom:810.330000px;}
.y1a0{bottom:810.600000px;}
.y15f{bottom:811.590000px;}
.yb1{bottom:812.040000px;}
.y1f2{bottom:813.030000px;}
.y70{bottom:822.120000px;}
.y3d{bottom:823.290000px;}
.y1c8{bottom:827.430000px;}
.ye7{bottom:827.970000px;}
.y15e{bottom:829.230000px;}
.yb0{bottom:829.590000px;}
.yda{bottom:838.770000px;}
.y8{bottom:839.130000px;}
.y6f{bottom:839.670000px;}
.y3c{bottom:840.930000px;}
.yd1{bottom:841.290000px;}
.y1c7{bottom:845.070000px;}
.y15d{bottom:846.780000px;}
.yaf{bottom:847.230000px;}
.y6e{bottom:857.220000px;}
.y3b{bottom:858.480000px;}
.yd0{bottom:858.930000px;}
.y1c6{bottom:862.620000px;}
.ye6{bottom:863.520000px;}
.y15c{bottom:864.330000px;}
.yae{bottom:864.780000px;}
.y1f1{bottom:866.220000px;}
.yd9{bottom:870.990000px;}
.y6d{bottom:874.860000px;}
.y7{bottom:874.950000px;}
.y3a{bottom:876.030000px;}
.ycf{bottom:876.480000px;}
.y1c5{bottom:880.170000px;}
.y15b{bottom:881.970000px;}
.yad{bottom:882.330000px;}
.y1f0{bottom:892.860000px;}
.y39{bottom:893.670000px;}
.yce{bottom:894.030000px;}
.ye5{bottom:895.740000px;}
.y1c4{bottom:897.810000px;}
.y15a{bottom:899.520000px;}
.yac{bottom:899.970000px;}
.y6c{bottom:904.110000px;}
.y6{bottom:910.950000px;}
.y38{bottom:911.220000px;}
.ycd{bottom:911.670000px;}
.y159{bottom:917.160000px;}
.yab{bottom:917.520000px;}
.y1ef{bottom:919.410000px;}
.y6b{bottom:921.750000px;}
.y1c3{bottom:927.420000px;}
.y37{bottom:928.860000px;}
.ycc{bottom:929.220000px;}
.y158{bottom:934.710000px;}
.yaa{bottom:935.160000px;}
.y1ee{bottom:936.960000px;}
.y6a{bottom:939.300000px;}
.y36{bottom:946.410000px;}
.ycb{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y157{bottom:952.260000px;}
.ya9{bottom:952.710000px;}
.y69{bottom:956.850000px;}
.y1ed{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.yca{bottom:964.410000px;}
.y156{bottom:969.900000px;}
.ya8{bottom:970.260000px;}
.y68{bottom:974.490000px;}
.y34{bottom:981.600000px;}
.yc9{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y155{bottom:987.450000px;}
.ya7{bottom:987.900000px;}
.y1ec{bottom:990.150000px;}
.y67{bottom:992.040000px;}
.y33{bottom:999.150000px;}
.yc8{bottom:999.600000px;}
.y154{bottom:1005.090000px;}
.ya6{bottom:1005.450000px;}
.y66{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y32{bottom:1016.820000px;}
.yc7{bottom:1017.180000px;}
.y153{bottom:1022.670000px;}
.y88{bottom:1023.120000px;}
.y65{bottom:1027.260000px;}
.y130{bottom:1034.370000px;}
.yc6{bottom:1034.820000px;}
.y87{bottom:1040.670000px;}
.y64{bottom:1044.810000px;}
.y12f{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y86{bottom:1058.220000px;}
.y1eb{bottom:1060.920000px;}
.y63{bottom:1062.450000px;}
.y30{bottom:1069.920000px;}
.y85{bottom:1075.860000px;}
.y1ea{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y62{bottom:1091.700000px;}
.ya5{bottom:1093.410000px;}
.y2e{bottom:1105.110000px;}
.ya4{bottom:1111.050000px;}
.y2d{bottom:1122.750000px;}
.y61{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x19{left:111.239987px;}
.x14{left:179.219987px;}
.x2{left:202.799987px;}
.x5{left:218.909987px;}
.x13{left:234.029987px;}
.x7{left:255.989987px;}
.xc{left:259.319987px;}
.xd{left:263.729987px;}
.x18{left:266.159987px;}
.x11{left:274.439987px;}
.xf{left:286.859987px;}
.xb{left:299.819987px;}
.x9{left:303.689987px;}
.x15{left:319.979987px;}
.x16{left:335.999987px;}
.x17{left:621.509987px;}
.x6{left:642.929987px;}
.x8{left:657.959987px;}
.x4{left:685.949987px;}
.x10{left:691.889987px;}
.xa{left:698.009987px;}
.x12{left:700.889987px;}
.xe{left:710.339987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.478933pt;}
.lsf{letter-spacing:-0.431467pt;}
.lsc{letter-spacing:-0.354667pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.177067pt;}
.ls8{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.016320pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.065920pt;}
.ls10{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.083200pt;}
.ls9{letter-spacing:0.103467pt;}
.ls11{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.860267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.740480pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.612800pt;}
.wsb{word-spacing:-11.597867pt;}
.ws6{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.579733pt;}
.wsa{word-spacing:-11.402133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:3.826560pt;}
._15{margin-left:-3.954560pt;}
._2{margin-left:-2.885867pt;}
._e{margin-left:-1.934934pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.043765pt;}
._13{width:1.937919pt;}
._6{width:2.828800pt;}
._3{width:3.740800pt;}
._a{width:4.727893pt;}
._9{width:5.624320pt;}
._d{width:6.905781pt;}
._f{width:7.962560pt;}
._b{width:9.031467pt;}
._5{width:10.527466pt;}
._c{width:12.825600pt;}
._8{width:13.945599pt;}
._4{width:14.856534pt;}
._16{width:15.934400pt;}
._17{width:17.113707pt;}
._14{width:18.361388pt;}
._11{width:19.559040pt;}
._18{width:20.467520pt;}
._1a{width:21.537816pt;}
._7{width:22.475520pt;}
._12{width:23.651168pt;}
._10{width:24.689280pt;}
._1b{width:27.318934pt;}
._1c{width:28.211307pt;}
._1d{width:32.945600pt;}
._21{width:36.413760pt;}
._1e{width:38.075840pt;}
._1f{width:39.620160pt;}
._20{width:57.415680pt;}
._22{width:72.004800pt;}
._23{width:72.977920pt;}
._19{width:889.631467pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y12e{bottom:100.426667pt;}
.ya3{bottom:105.706667pt;}
.yc5{bottom:105.946667pt;}
.y184{bottom:106.266667pt;}
.y84{bottom:106.826667pt;}
.y211{bottom:110.106667pt;}
.y19f{bottom:110.346667pt;}
.y14a{bottom:113.066667pt;}
.y1c2{bottom:114.346667pt;}
.y12d{bottom:116.026667pt;}
.yc4{bottom:121.626667pt;}
.y183{bottom:121.866667pt;}
.y83{bottom:122.426667pt;}
.y1e9{bottom:123.626667pt;}
.y29{bottom:125.386667pt;}
.y210{bottom:125.786667pt;}
.y19e{bottom:125.946667pt;}
.y149{bottom:128.746667pt;}
.y1c1{bottom:130.026667pt;}
.y152{bottom:130.506667pt;}
.yd8{bottom:131.226667pt;}
.y12c{bottom:131.706667pt;}
.ya2{bottom:131.786667pt;}
.y10a{bottom:132.826667pt;}
.yc3{bottom:137.226667pt;}
.y182{bottom:137.546667pt;}
.y82{bottom:138.106667pt;}
.y1e8{bottom:139.306667pt;}
.y28{bottom:140.986667pt;}
.y19d{bottom:141.546667pt;}
.y148{bottom:144.346667pt;}
.y1c0{bottom:145.626667pt;}
.y12b{bottom:147.306667pt;}
.ya1{bottom:147.386667pt;}
.y109{bottom:148.426667pt;}
.y20f{bottom:149.386667pt;}
.y60{bottom:152.746667pt;}
.yc2{bottom:152.906667pt;}
.y181{bottom:153.146667pt;}
.y81{bottom:153.706667pt;}
.y27{bottom:156.666667pt;}
.y19c{bottom:157.226667pt;}
.y151{bottom:159.146667pt;}
.y147{bottom:159.946667pt;}
.y1bf{bottom:161.306667pt;}
.yd7{bottom:162.906667pt;}
.ya0{bottom:163.066667pt;}
.y108{bottom:164.106667pt;}
.y20e{bottom:164.986667pt;}
.y5f{bottom:168.346667pt;}
.yc1{bottom:168.506667pt;}
.y180{bottom:168.746667pt;}
.y80{bottom:169.306667pt;}
.y26{bottom:172.266667pt;}
.y19b{bottom:172.826667pt;}
.y1be{bottom:176.906667pt;}
.y1e7{bottom:178.506667pt;}
.y12a{bottom:178.586667pt;}
.y9f{bottom:178.666667pt;}
.y107{bottom:179.706667pt;}
.y5e{bottom:183.946667pt;}
.yc0{bottom:184.106667pt;}
.y17f{bottom:184.426667pt;}
.y7f{bottom:184.986667pt;}
.y25{bottom:187.866667pt;}
.y19a{bottom:188.506667pt;}
.y20d{bottom:188.666667pt;}
.yd6{bottom:191.546667pt;}
.y146{bottom:191.626667pt;}
.y1bd{bottom:192.506667pt;}
.y129{bottom:194.186667pt;}
.y9e{bottom:194.266667pt;}
.y106{bottom:195.306667pt;}
.y5d{bottom:199.626667pt;}
.ybf{bottom:199.786667pt;}
.y17e{bottom:200.026667pt;}
.y1e6{bottom:202.186667pt;}
.y24{bottom:203.546667pt;}
.y199{bottom:204.106667pt;}
.y20c{bottom:204.266667pt;}
.y145{bottom:207.226667pt;}
.y1bc{bottom:208.186667pt;}
.y128{bottom:209.866667pt;}
.y9d{bottom:209.946667pt;}
.y105{bottom:210.986667pt;}
.y5c{bottom:215.226667pt;}
.y17d{bottom:215.626667pt;}
.y7e{bottom:216.586667pt;}
.y1e5{bottom:217.786667pt;}
.y23{bottom:219.146667pt;}
.y198{bottom:219.706667pt;}
.y144{bottom:222.826667pt;}
.y127{bottom:225.466667pt;}
.y9c{bottom:225.546667pt;}
.ybe{bottom:225.786667pt;}
.y104{bottom:226.586667pt;}
.y20b{bottom:227.946667pt;}
.y5b{bottom:230.826667pt;}
.y17c{bottom:231.306667pt;}
.y1bb{bottom:234.506667pt;}
.y22{bottom:234.746667pt;}
.y197{bottom:235.386667pt;}
.y7d{bottom:237.226667pt;}
.y143{bottom:238.506667pt;}
.y126{bottom:241.066667pt;}
.y9b{bottom:241.226667pt;}
.y1e4{bottom:241.466667pt;}
.y103{bottom:242.266667pt;}
.y20a{bottom:243.546667pt;}
.y5a{bottom:246.506667pt;}
.y17b{bottom:246.906667pt;}
.y21{bottom:250.426667pt;}
.y196{bottom:250.986667pt;}
.y142{bottom:254.106667pt;}
.y125{bottom:256.746667pt;}
.y9a{bottom:256.826667pt;}
.y1e3{bottom:257.066667pt;}
.ybd{bottom:257.466667pt;}
.y102{bottom:257.866667pt;}
.y59{bottom:262.106667pt;}
.y20{bottom:266.026667pt;}
.y195{bottom:266.666667pt;}
.y209{bottom:267.146667pt;}
.y141{bottom:269.786667pt;}
.y124{bottom:272.346667pt;}
.y99{bottom:272.426667pt;}
.y1e2{bottom:272.666667pt;}
.y17a{bottom:272.986667pt;}
.ybc{bottom:273.066667pt;}
.y101{bottom:273.466667pt;}
.ye4{bottom:276.826667pt;}
.y1ba{bottom:277.386667pt;}
.y58{bottom:277.786667pt;}
.y194{bottom:282.266667pt;}
.y208{bottom:282.826667pt;}
.y140{bottom:285.386667pt;}
.y123{bottom:288.026667pt;}
.y98{bottom:288.106667pt;}
.y179{bottom:288.586667pt;}
.ybb{bottom:288.666667pt;}
.y100{bottom:289.146667pt;}
.y1f{bottom:289.946667pt;}
.ye3{bottom:292.506667pt;}
.y1b9{bottom:293.066667pt;}
.y57{bottom:293.386667pt;}
.y1e1{bottom:296.586667pt;}
.y193{bottom:297.866667pt;}
.y13f{bottom:300.986667pt;}
.y97{bottom:303.706667pt;}
.y178{bottom:304.186667pt;}
.yba{bottom:304.346667pt;}
.yff{bottom:304.746667pt;}
.y207{bottom:306.426667pt;}
.ye2{bottom:308.106667pt;}
.y1b8{bottom:308.666667pt;}
.y56{bottom:308.986667pt;}
.y192{bottom:313.546667pt;}
.y13e{bottom:316.666667pt;}
.y96{bottom:319.386667pt;}
.y122{bottom:319.626667pt;}
.y177{bottom:319.866667pt;}
.yb9{bottom:319.946667pt;}
.yfe{bottom:320.426667pt;}
.ye1{bottom:323.786667pt;}
.y1b7{bottom:324.266667pt;}
.y55{bottom:324.666667pt;}
.y206{bottom:330.106667pt;}
.y13d{bottom:332.266667pt;}
.y1e{bottom:332.906667pt;}
.y95{bottom:334.986667pt;}
.y121{bottom:335.226667pt;}
.y176{bottom:335.466667pt;}
.ye0{bottom:339.386667pt;}
.y1e0{bottom:339.546667pt;}
.y191{bottom:339.866667pt;}
.y1b6{bottom:339.946667pt;}
.y54{bottom:340.266667pt;}
.y205{bottom:345.706667pt;}
.y13c{bottom:347.946667pt;}
.y1d{bottom:348.826667pt;}
.y94{bottom:350.586667pt;}
.y120{bottom:350.906667pt;}
.y175{bottom:351.146667pt;}
.yb8{bottom:351.626667pt;}
.yfd{bottom:352.026667pt;}
.ydf{bottom:354.986667pt;}
.y1df{bottom:355.146667pt;}
.y1b5{bottom:355.546667pt;}
.y13b{bottom:363.546667pt;}
.y93{bottom:366.266667pt;}
.y11f{bottom:366.506667pt;}
.y174{bottom:366.746667pt;}
.yfc{bottom:367.626667pt;}
.y204{bottom:369.306667pt;}
.y1de{bottom:370.746667pt;}
.y1b4{bottom:371.146667pt;}
.y53{bottom:371.946667pt;}
.yb7{bottom:372.266667pt;}
.y13a{bottom:379.146667pt;}
.y1c{bottom:381.706667pt;}
.y92{bottom:381.866667pt;}
.y11e{bottom:382.186667pt;}
.y173{bottom:382.346667pt;}
.y190{bottom:382.746667pt;}
.yfb{bottom:383.306667pt;}
.y1dd{bottom:386.426667pt;}
.yde{bottom:386.666667pt;}
.y1b3{bottom:386.826667pt;}
.y52{bottom:387.546667pt;}
.y203{bottom:392.986667pt;}
.y139{bottom:394.826667pt;}
.y1b{bottom:397.306667pt;}
.y91{bottom:397.466667pt;}
.y11d{bottom:397.786667pt;}
.y172{bottom:398.026667pt;}
.y18f{bottom:398.346667pt;}
.yfa{bottom:398.906667pt;}
.y1dc{bottom:402.026667pt;}
.y1b2{bottom:402.426667pt;}
.y51{bottom:403.146667pt;}
.y202{bottom:408.586667pt;}
.y138{bottom:410.426667pt;}
.yd5{bottom:410.506667pt;}
.y1a{bottom:412.986667pt;}
.y90{bottom:413.146667pt;}
.y11c{bottom:413.386667pt;}
.y171{bottom:413.626667pt;}
.y18e{bottom:414.026667pt;}
.yf9{bottom:414.586667pt;}
.ydd{bottom:415.306667pt;}
.y1b1{bottom:418.133333pt;}
.y50{bottom:418.853333pt;}
.y137{bottom:426.133333pt;}
.yd4{bottom:426.213333pt;}
.y1db{bottom:428.133333pt;}
.y19{bottom:428.613333pt;}
.y11b{bottom:429.093333pt;}
.y170{bottom:429.333333pt;}
.y18d{bottom:429.653333pt;}
.yf8{bottom:430.213333pt;}
.y201{bottom:432.293333pt;}
.y1b0{bottom:433.733333pt;}
.y4f{bottom:434.453333pt;}
.y8f{bottom:439.173333pt;}
.y1da{bottom:443.733333pt;}
.y18{bottom:444.293333pt;}
.y11a{bottom:444.693333pt;}
.y18c{bottom:445.333333pt;}
.yf7{bottom:445.813333pt;}
.y200{bottom:447.893333pt;}
.y1af{bottom:449.333333pt;}
.y136{bottom:449.733333pt;}
.y4e{bottom:450.133333pt;}
.y16f{bottom:455.333333pt;}
.yd3{bottom:457.813333pt;}
.y150{bottom:458.133333pt;}
.y1d9{bottom:459.333333pt;}
.y17{bottom:459.893333pt;}
.y119{bottom:460.293333pt;}
.y18b{bottom:460.933333pt;}
.y1ae{bottom:465.013333pt;}
.y4d{bottom:465.733333pt;}
.y8e{bottom:470.853333pt;}
.y1ff{bottom:471.493333pt;}
.y14f{bottom:473.733333pt;}
.y1d8{bottom:475.013333pt;}
.y16{bottom:475.493333pt;}
.y118{bottom:475.973333pt;}
.y18a{bottom:476.533333pt;}
.yf6{bottom:477.493333pt;}
.yd2{bottom:478.453333pt;}
.y4c{bottom:481.333333pt;}
.y8d{bottom:486.453333pt;}
.y16e{bottom:486.933333pt;}
.y1fe{bottom:487.173333pt;}
.y14e{bottom:489.413333pt;}
.y1d7{bottom:490.613333pt;}
.y1ad{bottom:491.013333pt;}
.y7c{bottom:491.093333pt;}
.y15{bottom:491.173333pt;}
.y117{bottom:491.573333pt;}
.y189{bottom:492.213333pt;}
.yf5{bottom:493.093333pt;}
.y4b{bottom:497.013333pt;}
.y8c{bottom:502.053333pt;}
.y16d{bottom:502.613333pt;}
.y14d{bottom:505.013333pt;}
.y1d6{bottom:506.293333pt;}
.y7b{bottom:506.693333pt;}
.y14{bottom:506.773333pt;}
.y116{bottom:507.253333pt;}
.y188{bottom:507.813333pt;}
.yf4{bottom:508.693333pt;}
.y1fd{bottom:510.773333pt;}
.y4a{bottom:512.613333pt;}
.y8b{bottom:517.733333pt;}
.y16c{bottom:518.213333pt;}
.y1d5{bottom:521.893333pt;}
.y1ac{bottom:522.293333pt;}
.y13{bottom:522.373333pt;}
.y115{bottom:522.853333pt;}
.y187{bottom:523.493333pt;}
.yf3{bottom:524.373333pt;}
.y1fc{bottom:526.453333pt;}
.y49{bottom:528.293333pt;}
.y16b{bottom:533.893333pt;}
.y14c{bottom:536.693333pt;}
.y1d4{bottom:537.493333pt;}
.y1ab{bottom:537.893333pt;}
.y7a{bottom:537.973333pt;}
.y12{bottom:538.053333pt;}
.y114{bottom:538.453333pt;}
.y186{bottom:539.093333pt;}
.yf2{bottom:539.973333pt;}
.y48{bottom:543.893333pt;}
.y8a{bottom:549.333333pt;}
.y16a{bottom:549.493333pt;}
.y1fb{bottom:550.053333pt;}
.y1d3{bottom:553.173333pt;}
.y1aa{bottom:553.573333pt;}
.y11{bottom:553.653333pt;}
.y113{bottom:554.133333pt;}
.y185{bottom:554.693333pt;}
.yf1{bottom:555.653333pt;}
.y47{bottom:559.493333pt;}
.y169{bottom:565.093333pt;}
.y1fa{bottom:565.653333pt;}
.y14b{bottom:568.293333pt;}
.y1d2{bottom:568.773333pt;}
.y1a9{bottom:569.173333pt;}
.y10{bottom:569.333333pt;}
.y112{bottom:569.733333pt;}
.y89{bottom:569.973333pt;}
.yf0{bottom:571.253333pt;}
.y46{bottom:575.173333pt;}
.y79{bottom:579.653333pt;}
.y168{bottom:580.773333pt;}
.y1d1{bottom:584.453333pt;}
.y1a8{bottom:584.853333pt;}
.yf{bottom:584.933333pt;}
.y111{bottom:585.413333pt;}
.yef{bottom:586.853333pt;}
.y1f9{bottom:589.333333pt;}
.y45{bottom:590.773333pt;}
.y78{bottom:595.253333pt;}
.y167{bottom:596.373333pt;}
.y1a7{bottom:600.453333pt;}
.ye{bottom:600.533333pt;}
.yee{bottom:602.533333pt;}
.y1f8{bottom:604.933333pt;}
.y44{bottom:606.453333pt;}
.y110{bottom:609.013333pt;}
.y1d0{bottom:610.453333pt;}
.y77{bottom:610.933333pt;}
.y166{bottom:612.053333pt;}
.y1a6{bottom:616.053333pt;}
.yd{bottom:616.213333pt;}
.yed{bottom:618.133333pt;}
.y43{bottom:622.053333pt;}
.y1cf{bottom:626.053333pt;}
.y76{bottom:626.533333pt;}
.y165{bottom:627.653333pt;}
.y1f7{bottom:628.613333pt;}
.y1a5{bottom:631.733333pt;}
.yc{bottom:631.813333pt;}
.yec{bottom:633.813333pt;}
.y42{bottom:637.653333pt;}
.y10f{bottom:640.613333pt;}
.y1ce{bottom:641.733333pt;}
.y75{bottom:642.213333pt;}
.y164{bottom:643.253333pt;}
.yb6{bottom:643.653333pt;}
.y1f6{bottom:644.213333pt;}
.y1a4{bottom:647.333333pt;}
.yb{bottom:647.493333pt;}
.y135{bottom:653.333333pt;}
.y10e{bottom:656.293333pt;}
.y1cd{bottom:657.333333pt;}
.yeb{bottom:657.413333pt;}
.y74{bottom:657.813333pt;}
.y163{bottom:658.933333pt;}
.yb5{bottom:659.253333pt;}
.y1a3{bottom:663.013333pt;}
.y1f5{bottom:667.813333pt;}
.y134{bottom:668.933333pt;}
.y41{bottom:669.333333pt;}
.ya{bottom:671.413333pt;}
.y10d{bottom:671.893333pt;}
.y1cc{bottom:673.013333pt;}
.y162{bottom:674.533333pt;}
.yb4{bottom:674.933333pt;}
.y1a2{bottom:678.613333pt;}
.ydc{bottom:682.293333pt;}
.y1f4{bottom:683.493333pt;}
.y73{bottom:683.813333pt;}
.y133{bottom:684.613333pt;}
.y40{bottom:684.933333pt;}
.y10c{bottom:687.573333pt;}
.y1cb{bottom:688.613333pt;}
.yea{bottom:689.013333pt;}
.y161{bottom:690.213333pt;}
.yb3{bottom:690.533333pt;}
.y1a1{bottom:694.213333pt;}
.y72{bottom:699.493333pt;}
.y132{bottom:700.213333pt;}
.y3f{bottom:700.613333pt;}
.y1ca{bottom:704.213333pt;}
.ye9{bottom:704.693333pt;}
.y160{bottom:705.813333pt;}
.yb2{bottom:706.213333pt;}
.y1f3{bottom:707.093333pt;}
.ydb{bottom:713.973333pt;}
.y9{bottom:714.293333pt;}
.y71{bottom:715.093333pt;}
.y131{bottom:715.813333pt;}
.y3e{bottom:716.213333pt;}
.y10b{bottom:719.173333pt;}
.y1c9{bottom:719.893333pt;}
.ye8{bottom:720.293333pt;}
.y1a0{bottom:720.533333pt;}
.y15f{bottom:721.413333pt;}
.yb1{bottom:721.813333pt;}
.y1f2{bottom:722.693333pt;}
.y70{bottom:730.773333pt;}
.y3d{bottom:731.813333pt;}
.y1c8{bottom:735.493333pt;}
.ye7{bottom:735.973333pt;}
.y15e{bottom:737.093333pt;}
.yb0{bottom:737.413333pt;}
.yda{bottom:745.573333pt;}
.y8{bottom:745.893333pt;}
.y6f{bottom:746.373333pt;}
.y3c{bottom:747.493333pt;}
.yd1{bottom:747.813333pt;}
.y1c7{bottom:751.173333pt;}
.y15d{bottom:752.693333pt;}
.yaf{bottom:753.093333pt;}
.y6e{bottom:761.973333pt;}
.y3b{bottom:763.093333pt;}
.yd0{bottom:763.493333pt;}
.y1c6{bottom:766.773333pt;}
.ye6{bottom:767.573333pt;}
.y15c{bottom:768.293333pt;}
.yae{bottom:768.693333pt;}
.y1f1{bottom:769.973333pt;}
.yd9{bottom:774.213333pt;}
.y6d{bottom:777.653333pt;}
.y7{bottom:777.733333pt;}
.y3a{bottom:778.693333pt;}
.ycf{bottom:779.093333pt;}
.y1c5{bottom:782.373333pt;}
.y15b{bottom:783.973333pt;}
.yad{bottom:784.293333pt;}
.y1f0{bottom:793.653333pt;}
.y39{bottom:794.373333pt;}
.yce{bottom:794.693333pt;}
.ye5{bottom:796.213333pt;}
.y1c4{bottom:798.053333pt;}
.y15a{bottom:799.573333pt;}
.yac{bottom:799.973333pt;}
.y6c{bottom:803.653333pt;}
.y6{bottom:809.733333pt;}
.y38{bottom:809.973333pt;}
.ycd{bottom:810.373333pt;}
.y159{bottom:815.253333pt;}
.yab{bottom:815.573333pt;}
.y1ef{bottom:817.253333pt;}
.y6b{bottom:819.333333pt;}
.y1c3{bottom:824.373333pt;}
.y37{bottom:825.653333pt;}
.ycc{bottom:825.973333pt;}
.y158{bottom:830.853333pt;}
.yaa{bottom:831.253333pt;}
.y1ee{bottom:832.853333pt;}
.y6a{bottom:834.933333pt;}
.y36{bottom:841.253333pt;}
.ycb{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y157{bottom:846.453333pt;}
.ya9{bottom:846.853333pt;}
.y69{bottom:850.533333pt;}
.y1ed{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.yca{bottom:857.253333pt;}
.y156{bottom:862.133333pt;}
.ya8{bottom:862.453333pt;}
.y68{bottom:866.213333pt;}
.y34{bottom:872.533333pt;}
.yc9{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y155{bottom:877.733333pt;}
.ya7{bottom:878.133333pt;}
.y1ec{bottom:880.133333pt;}
.y67{bottom:881.813333pt;}
.y33{bottom:888.133333pt;}
.yc8{bottom:888.533333pt;}
.y154{bottom:893.413333pt;}
.ya6{bottom:893.733333pt;}
.y66{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y32{bottom:903.840000pt;}
.yc7{bottom:904.160000pt;}
.y153{bottom:909.040000pt;}
.y88{bottom:909.440000pt;}
.y65{bottom:913.120000pt;}
.y130{bottom:919.440000pt;}
.yc6{bottom:919.840000pt;}
.y87{bottom:925.040000pt;}
.y64{bottom:928.720000pt;}
.y12f{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y86{bottom:940.640000pt;}
.y1eb{bottom:943.040000pt;}
.y63{bottom:944.400000pt;}
.y30{bottom:951.040000pt;}
.y85{bottom:956.320000pt;}
.y1ea{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y62{bottom:970.400000pt;}
.ya5{bottom:971.920000pt;}
.y2e{bottom:982.320000pt;}
.ya4{bottom:987.600000pt;}
.y2d{bottom:998.000000pt;}
.y61{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x19{left:98.879988pt;}
.x14{left:159.306655pt;}
.x2{left:180.266655pt;}
.x5{left:194.586655pt;}
.x13{left:208.026655pt;}
.x7{left:227.546655pt;}
.xc{left:230.506655pt;}
.xd{left:234.426655pt;}
.x18{left:236.586655pt;}
.x11{left:243.946655pt;}
.xf{left:254.986655pt;}
.xb{left:266.506655pt;}
.x9{left:269.946655pt;}
.x15{left:284.426655pt;}
.x16{left:298.666655pt;}
.x17{left:552.453322pt;}
.x6{left:571.493322pt;}
.x8{left:584.853322pt;}
.x4{left:609.733322pt;}
.x10{left:615.013322pt;}
.xa{left:620.453322pt;}
.x12{left:623.013322pt;}
.xe{left:631.413322pt;}
.x3{left:704.053322pt;}
}




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