
    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_9c9c5ff68a3a13bf8665a915.woff2')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_e652e58e0e38b2d02cdc8dba.woff2')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_507ad527e94f94d2a16dbae2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0d827f0257e80ad47cb68ab8.woff2')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_804e4d0bb14051a5a594900e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_587731a2d2ce5648de0805ec.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70f88784c39ac4889b3581c7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64dba978ad6db012119574b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_288dc2a808218cae75faf426.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls1f{letter-spacing:-0.226200px;}
.ls15{letter-spacing:-0.157800px;}
.ls19{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.052560px;}
.ls24{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.015120px;}
.lsc{letter-spacing:-0.010800px;}
.ls1b{letter-spacing:-0.001440px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls1a{letter-spacing:0.052560px;}
.ls13{letter-spacing:0.063600px;}
.ls7{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.209400px;}
.ls4{letter-spacing:0.211680px;}
.lse{letter-spacing:0.211800px;}
.ls10{letter-spacing:0.223200px;}
.ls21{letter-spacing:0.224400px;}
.ls1e{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.319680px;}
.ls1c{letter-spacing:0.343200px;}
.ls1{letter-spacing:0.351360px;}
.lsb{letter-spacing:0.351600px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls1d{letter-spacing:0.562200px;}
.ls11{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732960px;}
.ls25{letter-spacing:1.080000px;}
.ls23{letter-spacing:47.466720px;}
.ls22{letter-spacing:81.306720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.wsc{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.ws16{word-spacing:-13.490400px;}
.ws8{word-spacing:-13.359000px;}
.ws10{word-spacing:-13.356600px;}
.ws18{word-spacing:-13.345200px;}
.ws15{word-spacing:-13.199760px;}
.ws4{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.136400px;}
.wse{word-spacing:-13.132080px;}
.ws19{word-spacing:-13.111200px;}
.ws12{word-spacing:-13.094640px;}
.ws13{word-spacing:-13.093920px;}
.ws14{word-spacing:-13.026000px;}
.wsf{word-spacing:-12.989400px;}
.ws17{word-spacing:-12.921000px;}
.ws11{word-spacing:-10.612800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._45{margin-left:-3.930002px;}
._c{margin-left:-2.749199px;}
._0{margin-left:-1.159200px;}
._4{width:1.246801px;}
._d{width:2.295596px;}
._5{width:3.317994px;}
._3{width:5.196960px;}
._1{width:6.358841px;}
._2{width:7.510477px;}
._6{width:9.083400px;}
._8{width:10.696801px;}
._9{width:11.986190px;}
._12{width:14.179438px;}
._7{width:15.187199px;}
._10{width:16.366081px;}
._2c{width:17.390160px;}
._a{width:18.525600px;}
._b{width:19.709994px;}
._e{width:20.736720px;}
._2b{width:21.904079px;}
._26{width:23.186880px;}
._34{width:24.569519px;}
._1f{width:26.712720px;}
._11{width:27.907920px;}
._3d{width:29.521440px;}
._15{width:32.748480px;}
._35{width:34.370159px;}
._25{width:35.616960px;}
._14{width:36.692640px;}
._33{width:37.828080px;}
._40{width:41.533200px;}
._3c{width:42.967440px;}
._f{width:44.341920px;}
._28{width:46.254240px;}
._36{width:51.692400px;}
._39{width:52.791840px;}
._16{width:54.082800px;}
._18{width:56.374560px;}
._43{width:57.668400px;}
._29{width:58.863600px;}
._38{width:60.246239px;}
._2f{width:62.269920px;}
._42{width:63.285840px;}
._3f{width:64.779840px;}
._17{width:66.214080px;}
._23{width:68.629680px;}
._20{width:72.010800px;}
._37{width:74.221920px;}
._3e{width:77.448960px;}
._32{width:80.676000px;}
._30{width:82.722240px;}
._1d{width:83.911199px;}
._13{width:86.652000px;}
._3a{width:90.058320px;}
._3b{width:94.992960px;}
._41{width:96.631920px;}
._24{width:99.274320px;}
._1b{width:111.691440px;}
._2a{width:114.679440px;}
._2e{width:115.934400px;}
._1e{width:121.551840px;}
._44{width:141.272640px;}
._31{width:146.710800px;}
._1c{width:148.145040px;}
._22{width:150.117120px;}
._19{width:153.052320px;}
._21{width:168.224400px;}
._27{width:193.145280px;}
._2d{width:198.253440px;}
._1a{width:242.446320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:7.740000px;}
.y8e{bottom:7.920000px;}
.y9d{bottom:7.950000px;}
.y95{bottom:25.380000px;}
.y9e{bottom:25.410000px;}
.y8d{bottom:25.560000px;}
.y9c{bottom:25.590000px;}
.y91{bottom:43.020000px;}
.y9b{bottom:43.050000px;}
.y94{bottom:43.065000px;}
.y92{bottom:43.200000px;}
.y168{bottom:60.480000px;}
.y90{bottom:60.660000px;}
.y9a{bottom:60.690000px;}
.y161{bottom:60.705000px;}
.y175{bottom:60.840000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y166{bottom:78.120000px;}
.y15c{bottom:78.300000px;}
.y16f{bottom:78.330000px;}
.y160{bottom:78.345000px;}
.y15a{bottom:95.760000px;}
.y170{bottom:95.790000px;}
.y162{bottom:95.805000px;}
.y15b{bottom:95.940000px;}
.y16e{bottom:95.970000px;}
.y15f{bottom:95.985000px;}
.y1{bottom:101.376000px;}
.yfb{bottom:112.896000px;}
.y16c{bottom:113.220000px;}
.ybf{bottom:113.256000px;}
.y159{bottom:113.400000px;}
.y165{bottom:113.430000px;}
.y16a{bottom:113.445000px;}
.y174{bottom:113.580000px;}
.y5e{bottom:113.796000px;}
.yab{bottom:115.596000px;}
.y176{bottom:117.036000px;}
.yd6{bottom:117.756000px;}
.y8b{bottom:126.756000px;}
.yfa{bottom:130.536000px;}
.ybe{bottom:130.896000px;}
.y173{bottom:131.040000px;}
.y5d{bottom:131.256000px;}
.y146{bottom:131.436000px;}
.y28{bottom:133.056000px;}
.yaa{bottom:133.236000px;}
.y115{bottom:133.956000px;}
.yd5{bottom:135.396000px;}
.y1a7{bottom:140.976000px;}
.y8a{bottom:144.396000px;}
.yf9{bottom:148.176000px;}
.y5c{bottom:148.896000px;}
.y145{bottom:149.076000px;}
.y27{bottom:150.690000px;}
.ya9{bottom:150.870000px;}
.y114{bottom:151.590000px;}
.yd4{bottom:152.850000px;}
.y163{bottom:156.450000px;}
.ybd{bottom:157.350000px;}
.y1a6{bottom:158.610000px;}
.y89{bottom:161.850000px;}
.yf8{bottom:165.630000px;}
.y5b{bottom:166.530000px;}
.y144{bottom:166.710000px;}
.y26{bottom:168.330000px;}
.y113{bottom:169.050000px;}
.y1a5{bottom:176.250000px;}
.y88{bottom:179.490000px;}
.yf7{bottom:183.270000px;}
.y5a{bottom:184.170000px;}
.y143{bottom:184.350000px;}
.y25{bottom:185.790000px;}
.ya8{bottom:185.970000px;}
.y112{bottom:186.690000px;}
.ybc{bottom:193.170000px;}
.y87{bottom:197.130000px;}
.yf6{bottom:200.910000px;}
.y59{bottom:201.630000px;}
.y142{bottom:201.810000px;}
.y1a4{bottom:202.710000px;}
.y24{bottom:203.430000px;}
.ya7{bottom:203.610000px;}
.y111{bottom:204.330000px;}
.yd3{bottom:215.130000px;}
.yf5{bottom:218.370000px;}
.y58{bottom:219.270000px;}
.y1a3{bottom:220.350000px;}
.y23{bottom:221.070000px;}
.y110{bottom:221.790000px;}
.y141{bottom:228.450000px;}
.y86{bottom:232.590000px;}
.yd2{bottom:232.770000px;}
.yf4{bottom:236.010000px;}
.y57{bottom:236.910000px;}
.y22{bottom:238.530000px;}
.ya6{bottom:238.710000px;}
.y10f{bottom:239.430000px;}
.ybb{bottom:241.590000px;}
.y1a2{bottom:246.990000px;}
.y85{bottom:250.230000px;}
.yf3{bottom:253.650000px;}
.y15e{bottom:254.190000px;}
.y56{bottom:254.370000px;}
.y21{bottom:256.170000px;}
.y10e{bottom:257.070000px;}
.y140{bottom:261.030000px;}
.y1a1{bottom:264.630000px;}
.ya5{bottom:265.530000px;}
.y84{bottom:267.870000px;}
.yf2{bottom:271.110000px;}
.y181{bottom:271.290000px;}
.y55{bottom:272.010000px;}
.yba{bottom:273.810000px;}
.y10d{bottom:274.530000px;}
.y20{bottom:282.990000px;}
.y83{bottom:285.510000px;}
.yf1{bottom:288.750000px;}
.y54{bottom:289.650000px;}
.y1a0{bottom:291.090000px;}
.y10c{bottom:292.170000px;}
.y13f{bottom:296.490000px;}
.y82{bottom:302.970000px;}
.y180{bottom:306.390000px;}
.y53{bottom:307.110000px;}
.y19f{bottom:308.775000px;}
.y10b{bottom:309.855000px;}
.y172{bottom:312.375000px;}
.ya4{bottom:313.275000px;}
.y13e{bottom:314.175000px;}
.yf0{bottom:315.435000px;}
.y18b{bottom:316.335000px;}
.y81{bottom:320.655000px;}
.y52{bottom:324.795000px;}
.ya3{bottom:325.335000px;}
.y1f{bottom:331.275000px;}
.y13d{bottom:331.815000px;}
.y19e{bottom:335.415000px;}
.y10a{bottom:336.315000px;}
.y1c8{bottom:337.035000px;}
.y80{bottom:338.295000px;}
.y17f{bottom:341.895000px;}
.y1e{bottom:349.275000px;}
.y13c{bottom:349.455000px;}
.yef{bottom:350.895000px;}
.y19d{bottom:353.055000px;}
.y1c7{bottom:354.675000px;}
.y7f{bottom:355.755000px;}
.y17e{bottom:359.535000px;}
.y51{bottom:360.435000px;}
.yd1{bottom:364.755000px;}
.y13b{bottom:366.915000px;}
.yee{bottom:368.535000px;}
.y15d{bottom:369.435000px;}
.y109{bottom:371.955000px;}
.y7e{bottom:373.395000px;}
.y50{bottom:378.075000px;}
.y19c{bottom:379.515000px;}
.y1c6{bottom:381.135000px;}
.y18a{bottom:382.395000px;}
.y13a{bottom:384.555000px;}
.yed{bottom:386.175000px;}
.y1d{bottom:386.355000px;}
.y108{bottom:389.595000px;}
.y7d{bottom:391.035000px;}
.y4f{bottom:395.535000px;}
.y19b{bottom:397.155000px;}
.y1c5{bottom:398.775000px;}
.y189{bottom:400.035000px;}
.yd0{bottom:400.395000px;}
.y139{bottom:402.195000px;}
.yec{bottom:403.815000px;}
.y1c{bottom:403.995000px;}
.ya2{bottom:405.435000px;}
.y107{bottom:407.235000px;}
.y171{bottom:410.115000px;}
.y4e{bottom:413.175000px;}
.y7c{bottom:417.495000px;}
.y188{bottom:417.675000px;}
.ycf{bottom:418.035000px;}
.y138{bottom:419.835000px;}
.y1b{bottom:421.455000px;}
.y17d{bottom:421.995000px;}
.y19a{bottom:423.615000px;}
.y106{bottom:424.695000px;}
.y1c4{bottom:425.235000px;}
.y4d{bottom:430.815000px;}
.y187{bottom:435.135000px;}
.yce{bottom:435.675000px;}
.y137{bottom:437.295000px;}
.y1a{bottom:439.095000px;}
.yeb{bottom:439.275000px;}
.y199{bottom:441.255000px;}
.y105{bottom:442.335000px;}
.y1c3{bottom:442.875000px;}
.y4c{bottom:448.275000px;}
.ya1{bottom:450.435000px;}
.y186{bottom:452.775000px;}
.y7b{bottom:453.135000px;}
.y19{bottom:456.735000px;}
.yea{bottom:456.915000px;}
.y104{bottom:459.975000px;}
.y1c2{bottom:460.515000px;}
.y136{bottom:463.935000px;}
.y4b{bottom:465.915000px;}
.y158{bottom:467.175000px;}
.y198{bottom:467.895000px;}
.y17c{bottom:470.235000px;}
.y185{bottom:470.415000px;}
.y7a{bottom:470.775000px;}
.y18{bottom:474.195000px;}
.ye9{bottom:474.555000px;}
.y103{bottom:477.435000px;}
.y197{bottom:485.535000px;}
.y1c1{bottom:486.975000px;}
.y79{bottom:488.415000px;}
.y17{bottom:491.835000px;}
.ye8{bottom:492.015000px;}
.y4a{bottom:492.735000px;}
.y102{bottom:495.075000px;}
.y135{bottom:499.395000px;}
.y17b{bottom:502.455000px;}
.y1c0{bottom:504.615000px;}
.y78{bottom:505.875000px;}
.y16{bottom:509.475000px;}
.ye7{bottom:509.655000px;}
.y196{bottom:511.995000px;}
.y101{bottom:512.715000px;}
.y9f{bottom:512.895000px;}
.y134{bottom:517.035000px;}
.y1bf{bottom:522.255000px;}
.y77{bottom:523.515000px;}
.y16d{bottom:525.315000px;}
.y15{bottom:526.935000px;}
.ye6{bottom:527.295000px;}
.y195{bottom:529.635000px;}
.y100{bottom:530.175000px;}
.y133{bottom:534.675000px;}
.y49{bottom:540.975000px;}
.y76{bottom:541.155000px;}
.y14{bottom:544.575000px;}
.ye5{bottom:544.935000px;}
.y1be{bottom:548.715000px;}
.y132{bottom:552.315000px;}
.y194{bottom:556.275000px;}
.yff{bottom:556.815000px;}
.y48{bottom:558.615000px;}
.y13{bottom:562.215000px;}
.ye4{bottom:562.395000px;}
.y1bd{bottom:566.355000px;}
.y131{bottom:569.775000px;}
.y193{bottom:573.915000px;}
.y99{bottom:575.355000px;}
.y47{bottom:576.255000px;}
.y12{bottom:579.855000px;}
.ye3{bottom:580.035000px;}
.y130{bottom:587.445000px;}
.yfe{bottom:589.425000px;}
.y192{bottom:591.405000px;}
.y1bc{bottom:593.025000px;}
.y46{bottom:593.925000px;}
.y11{bottom:597.345000px;}
.ye2{bottom:597.705000px;}
.y157{bottom:600.045000px;}
.y12f{bottom:605.085000px;}
.y1bb{bottom:610.665000px;}
.y45{bottom:611.385000px;}
.y10{bottom:614.985000px;}
.y191{bottom:618.045000px;}
.y12e{bottom:622.725000px;}
.yfd{bottom:625.245000px;}
.y1ba{bottom:628.305000px;}
.y75{bottom:629.025000px;}
.yf{bottom:632.625000px;}
.ye1{bottom:633.165000px;}
.ycd{bottom:638.025000px;}
.y12d{bottom:640.185000px;}
.y16b{bottom:640.725000px;}
.y190{bottom:644.865000px;}
.y74{bottom:646.665000px;}
.y44{bottom:647.025000px;}
.ye0{bottom:650.805000px;}
.y1b9{bottom:654.765000px;}
.y98{bottom:655.485000px;}
.y12c{bottom:657.825000px;}
.ye{bottom:659.265000px;}
.y73{bottom:664.305000px;}
.y43{bottom:664.665000px;}
.ydf{bottom:668.445000px;}
.y1b8{bottom:672.405000px;}
.ycc{bottom:673.665000px;}
.y12b{bottom:675.465000px;}
.y72{bottom:681.765000px;}
.y42{bottom:682.305000px;}
.y156{bottom:683.925000px;}
.yde{bottom:685.905000px;}
.y1b7{bottom:690.045000px;}
.ycb{bottom:691.305000px;}
.y12a{bottom:692.925000px;}
.y18f{bottom:693.105000px;}
.y71{bottom:699.405000px;}
.y41{bottom:699.765000px;}
.yb9{bottom:700.125000px;}
.ydd{bottom:703.545000px;}
.yd{bottom:707.685000px;}
.yca{bottom:708.765000px;}
.y1b6{bottom:716.505000px;}
.y70{bottom:717.045000px;}
.y40{bottom:717.405000px;}
.yb8{bottom:717.765000px;}
.y129{bottom:719.565000px;}
.y18e{bottom:720.105000px;}
.ydc{bottom:721.185000px;}
.yc9{bottom:726.405000px;}
.y1b5{bottom:734.145000px;}
.y6f{bottom:734.505000px;}
.y3f{bottom:735.045000px;}
.yb7{bottom:735.405000px;}
.y97{bottom:735.585000px;}
.y155{bottom:737.205000px;}
.ydb{bottom:738.645000px;}
.yc{bottom:743.505000px;}
.yc8{bottom:744.045000px;}
.y1b4{bottom:751.785000px;}
.y6e{bottom:752.145000px;}
.y3e{bottom:752.505000px;}
.yb6{bottom:753.045000px;}
.y154{bottom:754.665000px;}
.y128{bottom:755.025000px;}
.yda{bottom:756.285000px;}
.y18d{bottom:757.365000px;}
.y184{bottom:761.145000px;}
.yc7{bottom:761.505000px;}
.y3d{bottom:770.145000px;}
.yb5{bottom:770.505000px;}
.y153{bottom:772.305000px;}
.y127{bottom:772.665000px;}
.y169{bottom:773.565000px;}
.yd9{bottom:773.925000px;}
.y1b3{bottom:778.245000px;}
.y6d{bottom:778.605000px;}
.yc6{bottom:779.145000px;}
.yb{bottom:779.505000px;}
.y96{bottom:780.405000px;}
.y3c{bottom:787.785000px;}
.yb4{bottom:788.145000px;}
.y152{bottom:789.945000px;}
.y126{bottom:790.305000px;}
.y1b2{bottom:795.885000px;}
.y183{bottom:796.605000px;}
.yc5{bottom:796.785000px;}
.yd8{bottom:800.385000px;}
.y3b{bottom:805.245000px;}
.y18c{bottom:805.605000px;}
.yb3{bottom:805.785000px;}
.y151{bottom:807.585000px;}
.y125{bottom:807.945000px;}
.y6c{bottom:814.245000px;}
.ya{bottom:821.625000px;}
.y1b1{bottom:822.525000px;}
.y3a{bottom:822.885000px;}
.yb2{bottom:823.245000px;}
.y150{bottom:825.045000px;}
.y93{bottom:825.405000px;}
.y124{bottom:825.585000px;}
.y6b{bottom:831.885000px;}
.yd7{bottom:836.205000px;}
.y1b0{bottom:840.165000px;}
.y39{bottom:840.525000px;}
.yb1{bottom:840.885000px;}
.y9{bottom:841.965000px;}
.y14f{bottom:842.685000px;}
.y123{bottom:843.045000px;}
.y6a{bottom:849.525000px;}
.y1af{bottom:857.625000px;}
.y38{bottom:858.165000px;}
.yb0{bottom:858.570000px;}
.y14e{bottom:860.370000px;}
.y122{bottom:860.730000px;}
.y8{bottom:862.170000px;}
.y69{bottom:867.210000px;}
.y37{bottom:875.670000px;}
.yaf{bottom:876.210000px;}
.y121{bottom:878.370000px;}
.y7{bottom:882.330000px;}
.y1ae{bottom:884.310000px;}
.y68{bottom:884.670000px;}
.y14d{bottom:886.830000px;}
.y8f{bottom:887.910000px;}
.yae{bottom:893.670000px;}
.y120{bottom:895.830000px;}
.y1ad{bottom:901.950000px;}
.y67{bottom:902.310000px;}
.y17a{bottom:905.910000px;}
.y167{bottom:906.450000px;}
.y36{bottom:911.310000px;}
.y6{bottom:917.250000px;}
.y14c{bottom:919.410000px;}
.y66{bottom:919.950000px;}
.y11f{bottom:922.470000px;}
.y1ac{bottom:928.410000px;}
.y35{bottom:928.950000px;}
.yc4{bottom:929.310000px;}
.y179{bottom:933.990000px;}
.y65{bottom:937.410000px;}
.y5{bottom:939.570000px;}
.y178{bottom:946.050000px;}
.y34{bottom:946.410000px;}
.yc3{bottom:946.950000px;}
.y64{bottom:955.050000px;}
.y11e{bottom:957.930000px;}
.y33{bottom:964.050000px;}
.yc2{bottom:964.410000px;}
.y8c{bottom:968.010000px;}
.y1ab{bottom:972.510000px;}
.y63{bottom:972.690000px;}
.y11d{bottom:975.570000px;}
.yfc{bottom:981.510000px;}
.y4{bottom:981.690000px;}
.yc1{bottom:982.050000px;}
.y62{bottom:990.150000px;}
.y11c{bottom:993.210000px;}
.y32{bottom:999.150000px;}
.yad{bottom:999.510000px;}
.yc0{bottom:999.690000px;}
.y61{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.y11b{bottom:1010.850000px;}
.y182{bottom:1016.790000px;}
.yac{bottom:1017.150000px;}
.y164{bottom:1021.650000px;}
.y14b{bottom:1025.430000px;}
.y11a{bottom:1028.310000px;}
.y60{bottom:1034.430000px;}
.y31{bottom:1034.790000px;}
.y14a{bottom:1043.070000px;}
.y119{bottom:1045.950000px;}
.y1aa{bottom:1052.070000px;}
.y30{bottom:1052.430000px;}
.y149{bottom:1060.530000px;}
.y118{bottom:1063.590000px;}
.y5f{bottom:1069.890000px;}
.y2f{bottom:1070.070000px;}
.y1a9{bottom:1078.530000px;}
.y177{bottom:1078.890000px;}
.y117{bottom:1081.230000px;}
.y148{bottom:1087.170000px;}
.y2e{bottom:1087.530000px;}
.y1a8{bottom:1096.170000px;}
.y2d{bottom:1105.170000px;}
.y116{bottom:1107.690000px;}
.y147{bottom:1122.630000px;}
.y2c{bottom:1122.810000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.h1d{height:40.843828px;}
.h12{height:41.974453px;}
.hf{height:44.100000px;}
.hb{height:44.280000px;}
.hc{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h13{height:59.614102px;}
.h1e{height:61.423863px;}
.h11{height:61.740000px;}
.he{height:61.776000px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h1b{height:74.916000px;}
.hd{height:79.380000px;}
.h10{height:79.416000px;}
.h15{height:97.020000px;}
.h17{height:114.480000px;}
.h16{height:114.516000px;}
.h19{height:131.940000px;}
.h18{height:131.976000px;}
.h1c{height:132.120000px;}
.h14{height:132.156000px;}
.h1a{height:149.796000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:73.080000px;}
.wa{width:77.220000px;}
.wf{width:83.376000px;}
.we{width:90.000000px;}
.wb{width:92.556000px;}
.wd{width:101.376000px;}
.w8{width:114.516000px;}
.w9{width:118.116000px;}
.w6{width:130.716000px;}
.w5{width:142.236000px;}
.w7{width:147.456000px;}
.w4{width:159.330000px;}
.w3{width:173.190000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:84.095987px;}
.x15{left:86.255987px;}
.x19{left:111.275987px;}
.x9{left:124.235987px;}
.xd{left:183.990000px;}
.x18{left:198.749987px;}
.x2{left:209.729987px;}
.xb{left:224.129987px;}
.x5{left:242.670000px;}
.xe{left:303.015000px;}
.x16{left:379.514987px;}
.xf{left:380.955000px;}
.x6{left:402.735000px;}
.x10{left:474.225000px;}
.x7{left:545.685000px;}
.x11{left:548.205000px;}
.x12{left:650.490000px;}
.x8{left:677.130000px;}
.x17{left:715.469987px;}
.xa{left:717.809987px;}
.x13{left:741.210000px;}
.xc{left:808.739987px;}
.x3{left:817.019987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls1f{letter-spacing:-0.201067pt;}
.ls15{letter-spacing:-0.140267pt;}
.ls19{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.046720pt;}
.ls24{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.013440pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls1b{letter-spacing:-0.001280pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls1a{letter-spacing:0.046720pt;}
.ls13{letter-spacing:0.056533pt;}
.ls7{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.186133pt;}
.ls4{letter-spacing:0.188160pt;}
.lse{letter-spacing:0.188267pt;}
.ls10{letter-spacing:0.198400pt;}
.ls21{letter-spacing:0.199467pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.284160pt;}
.ls1c{letter-spacing:0.305067pt;}
.ls1{letter-spacing:0.312320pt;}
.lsb{letter-spacing:0.312533pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls1d{letter-spacing:0.499733pt;}
.ls11{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651520pt;}
.ls25{letter-spacing:0.960000pt;}
.ls23{letter-spacing:42.192640pt;}
.ls22{letter-spacing:72.272640pt;}
.wsd{word-spacing:-53.120000pt;}
.wsc{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.ws16{word-spacing:-11.991467pt;}
.ws8{word-spacing:-11.874667pt;}
.ws10{word-spacing:-11.872533pt;}
.ws18{word-spacing:-11.862400pt;}
.ws15{word-spacing:-11.733120pt;}
.ws4{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.676800pt;}
.wse{word-spacing:-11.672960pt;}
.ws19{word-spacing:-11.654400pt;}
.ws12{word-spacing:-11.639680pt;}
.ws13{word-spacing:-11.639040pt;}
.ws14{word-spacing:-11.578667pt;}
.wsf{word-spacing:-11.546133pt;}
.ws17{word-spacing:-11.485333pt;}
.ws11{word-spacing:-9.433600pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._45{margin-left:-3.493335pt;}
._c{margin-left:-2.443732pt;}
._0{margin-left:-1.030400pt;}
._4{width:1.108268pt;}
._d{width:2.040530pt;}
._5{width:2.949328pt;}
._3{width:4.619520pt;}
._1{width:5.652303pt;}
._2{width:6.675980pt;}
._6{width:8.074134pt;}
._8{width:9.508268pt;}
._9{width:10.654391pt;}
._12{width:12.603945pt;}
._7{width:13.499732pt;}
._10{width:14.547628pt;}
._2c{width:15.457920pt;}
._a{width:16.467200pt;}
._b{width:17.519995pt;}
._e{width:18.432640pt;}
._2b{width:19.470292pt;}
._26{width:20.610560pt;}
._34{width:21.839572pt;}
._1f{width:23.744640pt;}
._11{width:24.807040pt;}
._3d{width:26.241280pt;}
._15{width:29.109760pt;}
._35{width:30.551252pt;}
._25{width:31.659520pt;}
._14{width:32.615680pt;}
._33{width:33.624960pt;}
._40{width:36.918400pt;}
._3c{width:38.193280pt;}
._f{width:39.415040pt;}
._28{width:41.114880pt;}
._36{width:45.948800pt;}
._39{width:46.926080pt;}
._16{width:48.073600pt;}
._18{width:50.110720pt;}
._43{width:51.260800pt;}
._29{width:52.323200pt;}
._38{width:53.552212pt;}
._2f{width:55.351040pt;}
._42{width:56.254080pt;}
._3f{width:57.582080pt;}
._17{width:58.856960pt;}
._23{width:61.004160pt;}
._20{width:64.009600pt;}
._37{width:65.975040pt;}
._3e{width:68.843520pt;}
._32{width:71.712000pt;}
._30{width:73.530880pt;}
._1d{width:74.587732pt;}
._13{width:77.024000pt;}
._3a{width:80.051840pt;}
._3b{width:84.438187pt;}
._41{width:85.895040pt;}
._24{width:88.243840pt;}
._1b{width:99.281280pt;}
._2a{width:101.937280pt;}
._2e{width:103.052800pt;}
._1e{width:108.046080pt;}
._44{width:125.575680pt;}
._31{width:130.409600pt;}
._1c{width:131.684480pt;}
._22{width:133.437440pt;}
._19{width:136.046507pt;}
._21{width:149.532800pt;}
._27{width:171.684693pt;}
._2d{width:176.225280pt;}
._1a{width:215.507840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:6.880000pt;}
.y8e{bottom:7.040000pt;}
.y9d{bottom:7.066667pt;}
.y95{bottom:22.560000pt;}
.y9e{bottom:22.586667pt;}
.y8d{bottom:22.720000pt;}
.y9c{bottom:22.746667pt;}
.y91{bottom:38.240000pt;}
.y9b{bottom:38.266667pt;}
.y94{bottom:38.280000pt;}
.y92{bottom:38.400000pt;}
.y168{bottom:53.760000pt;}
.y90{bottom:53.920000pt;}
.y9a{bottom:53.946667pt;}
.y161{bottom:53.960000pt;}
.y175{bottom:54.080000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y166{bottom:69.440000pt;}
.y15c{bottom:69.600000pt;}
.y16f{bottom:69.626667pt;}
.y160{bottom:69.640000pt;}
.y15a{bottom:85.120000pt;}
.y170{bottom:85.146667pt;}
.y162{bottom:85.160000pt;}
.y15b{bottom:85.280000pt;}
.y16e{bottom:85.306667pt;}
.y15f{bottom:85.320000pt;}
.y1{bottom:90.112000pt;}
.yfb{bottom:100.352000pt;}
.y16c{bottom:100.640000pt;}
.ybf{bottom:100.672000pt;}
.y159{bottom:100.800000pt;}
.y165{bottom:100.826667pt;}
.y16a{bottom:100.840000pt;}
.y174{bottom:100.960000pt;}
.y5e{bottom:101.152000pt;}
.yab{bottom:102.752000pt;}
.y176{bottom:104.032000pt;}
.yd6{bottom:104.672000pt;}
.y8b{bottom:112.672000pt;}
.yfa{bottom:116.032000pt;}
.ybe{bottom:116.352000pt;}
.y173{bottom:116.480000pt;}
.y5d{bottom:116.672000pt;}
.y146{bottom:116.832000pt;}
.y28{bottom:118.272000pt;}
.yaa{bottom:118.432000pt;}
.y115{bottom:119.072000pt;}
.yd5{bottom:120.352000pt;}
.y1a7{bottom:125.312000pt;}
.y8a{bottom:128.352000pt;}
.yf9{bottom:131.712000pt;}
.y5c{bottom:132.352000pt;}
.y145{bottom:132.512000pt;}
.y27{bottom:133.946667pt;}
.ya9{bottom:134.106667pt;}
.y114{bottom:134.746667pt;}
.yd4{bottom:135.866667pt;}
.y163{bottom:139.066667pt;}
.ybd{bottom:139.866667pt;}
.y1a6{bottom:140.986667pt;}
.y89{bottom:143.866667pt;}
.yf8{bottom:147.226667pt;}
.y5b{bottom:148.026667pt;}
.y144{bottom:148.186667pt;}
.y26{bottom:149.626667pt;}
.y113{bottom:150.266667pt;}
.y1a5{bottom:156.666667pt;}
.y88{bottom:159.546667pt;}
.yf7{bottom:162.906667pt;}
.y5a{bottom:163.706667pt;}
.y143{bottom:163.866667pt;}
.y25{bottom:165.146667pt;}
.ya8{bottom:165.306667pt;}
.y112{bottom:165.946667pt;}
.ybc{bottom:171.706667pt;}
.y87{bottom:175.226667pt;}
.yf6{bottom:178.586667pt;}
.y59{bottom:179.226667pt;}
.y142{bottom:179.386667pt;}
.y1a4{bottom:180.186667pt;}
.y24{bottom:180.826667pt;}
.ya7{bottom:180.986667pt;}
.y111{bottom:181.626667pt;}
.yd3{bottom:191.226667pt;}
.yf5{bottom:194.106667pt;}
.y58{bottom:194.906667pt;}
.y1a3{bottom:195.866667pt;}
.y23{bottom:196.506667pt;}
.y110{bottom:197.146667pt;}
.y141{bottom:203.066667pt;}
.y86{bottom:206.746667pt;}
.yd2{bottom:206.906667pt;}
.yf4{bottom:209.786667pt;}
.y57{bottom:210.586667pt;}
.y22{bottom:212.026667pt;}
.ya6{bottom:212.186667pt;}
.y10f{bottom:212.826667pt;}
.ybb{bottom:214.746667pt;}
.y1a2{bottom:219.546667pt;}
.y85{bottom:222.426667pt;}
.yf3{bottom:225.466667pt;}
.y15e{bottom:225.946667pt;}
.y56{bottom:226.106667pt;}
.y21{bottom:227.706667pt;}
.y10e{bottom:228.506667pt;}
.y140{bottom:232.026667pt;}
.y1a1{bottom:235.226667pt;}
.ya5{bottom:236.026667pt;}
.y84{bottom:238.106667pt;}
.yf2{bottom:240.986667pt;}
.y181{bottom:241.146667pt;}
.y55{bottom:241.786667pt;}
.yba{bottom:243.386667pt;}
.y10d{bottom:244.026667pt;}
.y20{bottom:251.546667pt;}
.y83{bottom:253.786667pt;}
.yf1{bottom:256.666667pt;}
.y54{bottom:257.466667pt;}
.y1a0{bottom:258.746667pt;}
.y10c{bottom:259.706667pt;}
.y13f{bottom:263.546667pt;}
.y82{bottom:269.306667pt;}
.y180{bottom:272.346667pt;}
.y53{bottom:272.986667pt;}
.y19f{bottom:274.466667pt;}
.y10b{bottom:275.426667pt;}
.y172{bottom:277.666667pt;}
.ya4{bottom:278.466667pt;}
.y13e{bottom:279.266667pt;}
.yf0{bottom:280.386667pt;}
.y18b{bottom:281.186667pt;}
.y81{bottom:285.026667pt;}
.y52{bottom:288.706667pt;}
.ya3{bottom:289.186667pt;}
.y1f{bottom:294.466667pt;}
.y13d{bottom:294.946667pt;}
.y19e{bottom:298.146667pt;}
.y10a{bottom:298.946667pt;}
.y1c8{bottom:299.586667pt;}
.y80{bottom:300.706667pt;}
.y17f{bottom:303.906667pt;}
.y1e{bottom:310.466667pt;}
.y13c{bottom:310.626667pt;}
.yef{bottom:311.906667pt;}
.y19d{bottom:313.826667pt;}
.y1c7{bottom:315.266667pt;}
.y7f{bottom:316.226667pt;}
.y17e{bottom:319.586667pt;}
.y51{bottom:320.386667pt;}
.yd1{bottom:324.226667pt;}
.y13b{bottom:326.146667pt;}
.yee{bottom:327.586667pt;}
.y15d{bottom:328.386667pt;}
.y109{bottom:330.626667pt;}
.y7e{bottom:331.906667pt;}
.y50{bottom:336.066667pt;}
.y19c{bottom:337.346667pt;}
.y1c6{bottom:338.786667pt;}
.y18a{bottom:339.906667pt;}
.y13a{bottom:341.826667pt;}
.yed{bottom:343.266667pt;}
.y1d{bottom:343.426667pt;}
.y108{bottom:346.306667pt;}
.y7d{bottom:347.586667pt;}
.y4f{bottom:351.586667pt;}
.y19b{bottom:353.026667pt;}
.y1c5{bottom:354.466667pt;}
.y189{bottom:355.586667pt;}
.yd0{bottom:355.906667pt;}
.y139{bottom:357.506667pt;}
.yec{bottom:358.946667pt;}
.y1c{bottom:359.106667pt;}
.ya2{bottom:360.386667pt;}
.y107{bottom:361.986667pt;}
.y171{bottom:364.546667pt;}
.y4e{bottom:367.266667pt;}
.y7c{bottom:371.106667pt;}
.y188{bottom:371.266667pt;}
.ycf{bottom:371.586667pt;}
.y138{bottom:373.186667pt;}
.y1b{bottom:374.626667pt;}
.y17d{bottom:375.106667pt;}
.y19a{bottom:376.546667pt;}
.y106{bottom:377.506667pt;}
.y1c4{bottom:377.986667pt;}
.y4d{bottom:382.946667pt;}
.y187{bottom:386.786667pt;}
.yce{bottom:387.266667pt;}
.y137{bottom:388.706667pt;}
.y1a{bottom:390.306667pt;}
.yeb{bottom:390.466667pt;}
.y199{bottom:392.226667pt;}
.y105{bottom:393.186667pt;}
.y1c3{bottom:393.666667pt;}
.y4c{bottom:398.466667pt;}
.ya1{bottom:400.386667pt;}
.y186{bottom:402.466667pt;}
.y7b{bottom:402.786667pt;}
.y19{bottom:405.986667pt;}
.yea{bottom:406.146667pt;}
.y104{bottom:408.866667pt;}
.y1c2{bottom:409.346667pt;}
.y136{bottom:412.386667pt;}
.y4b{bottom:414.146667pt;}
.y158{bottom:415.266667pt;}
.y198{bottom:415.906667pt;}
.y17c{bottom:417.986667pt;}
.y185{bottom:418.146667pt;}
.y7a{bottom:418.466667pt;}
.y18{bottom:421.506667pt;}
.ye9{bottom:421.826667pt;}
.y103{bottom:424.386667pt;}
.y197{bottom:431.586667pt;}
.y1c1{bottom:432.866667pt;}
.y79{bottom:434.146667pt;}
.y17{bottom:437.186667pt;}
.ye8{bottom:437.346667pt;}
.y4a{bottom:437.986667pt;}
.y102{bottom:440.066667pt;}
.y135{bottom:443.906667pt;}
.y17b{bottom:446.626667pt;}
.y1c0{bottom:448.546667pt;}
.y78{bottom:449.666667pt;}
.y16{bottom:452.866667pt;}
.ye7{bottom:453.026667pt;}
.y196{bottom:455.106667pt;}
.y101{bottom:455.746667pt;}
.y9f{bottom:455.906667pt;}
.y134{bottom:459.586667pt;}
.y1bf{bottom:464.226667pt;}
.y77{bottom:465.346667pt;}
.y16d{bottom:466.946667pt;}
.y15{bottom:468.386667pt;}
.ye6{bottom:468.706667pt;}
.y195{bottom:470.786667pt;}
.y100{bottom:471.266667pt;}
.y133{bottom:475.266667pt;}
.y49{bottom:480.866667pt;}
.y76{bottom:481.026667pt;}
.y14{bottom:484.066667pt;}
.ye5{bottom:484.386667pt;}
.y1be{bottom:487.746667pt;}
.y132{bottom:490.946667pt;}
.y194{bottom:494.466667pt;}
.yff{bottom:494.946667pt;}
.y48{bottom:496.546667pt;}
.y13{bottom:499.746667pt;}
.ye4{bottom:499.906667pt;}
.y1bd{bottom:503.426667pt;}
.y131{bottom:506.466667pt;}
.y193{bottom:510.146667pt;}
.y99{bottom:511.426667pt;}
.y47{bottom:512.226667pt;}
.y12{bottom:515.426667pt;}
.ye3{bottom:515.586667pt;}
.y130{bottom:522.173333pt;}
.yfe{bottom:523.933333pt;}
.y192{bottom:525.693333pt;}
.y1bc{bottom:527.133333pt;}
.y46{bottom:527.933333pt;}
.y11{bottom:530.973333pt;}
.ye2{bottom:531.293333pt;}
.y157{bottom:533.373333pt;}
.y12f{bottom:537.853333pt;}
.y1bb{bottom:542.813333pt;}
.y45{bottom:543.453333pt;}
.y10{bottom:546.653333pt;}
.y191{bottom:549.373333pt;}
.y12e{bottom:553.533333pt;}
.yfd{bottom:555.773333pt;}
.y1ba{bottom:558.493333pt;}
.y75{bottom:559.133333pt;}
.yf{bottom:562.333333pt;}
.ye1{bottom:562.813333pt;}
.ycd{bottom:567.133333pt;}
.y12d{bottom:569.053333pt;}
.y16b{bottom:569.533333pt;}
.y190{bottom:573.213333pt;}
.y74{bottom:574.813333pt;}
.y44{bottom:575.133333pt;}
.ye0{bottom:578.493333pt;}
.y1b9{bottom:582.013333pt;}
.y98{bottom:582.653333pt;}
.y12c{bottom:584.733333pt;}
.ye{bottom:586.013333pt;}
.y73{bottom:590.493333pt;}
.y43{bottom:590.813333pt;}
.ydf{bottom:594.173333pt;}
.y1b8{bottom:597.693333pt;}
.ycc{bottom:598.813333pt;}
.y12b{bottom:600.413333pt;}
.y72{bottom:606.013333pt;}
.y42{bottom:606.493333pt;}
.y156{bottom:607.933333pt;}
.yde{bottom:609.693333pt;}
.y1b7{bottom:613.373333pt;}
.ycb{bottom:614.493333pt;}
.y12a{bottom:615.933333pt;}
.y18f{bottom:616.093333pt;}
.y71{bottom:621.693333pt;}
.y41{bottom:622.013333pt;}
.yb9{bottom:622.333333pt;}
.ydd{bottom:625.373333pt;}
.yd{bottom:629.053333pt;}
.yca{bottom:630.013333pt;}
.y1b6{bottom:636.893333pt;}
.y70{bottom:637.373333pt;}
.y40{bottom:637.693333pt;}
.yb8{bottom:638.013333pt;}
.y129{bottom:639.613333pt;}
.y18e{bottom:640.093333pt;}
.ydc{bottom:641.053333pt;}
.yc9{bottom:645.693333pt;}
.y1b5{bottom:652.573333pt;}
.y6f{bottom:652.893333pt;}
.y3f{bottom:653.373333pt;}
.yb7{bottom:653.693333pt;}
.y97{bottom:653.853333pt;}
.y155{bottom:655.293333pt;}
.ydb{bottom:656.573333pt;}
.yc{bottom:660.893333pt;}
.yc8{bottom:661.373333pt;}
.y1b4{bottom:668.253333pt;}
.y6e{bottom:668.573333pt;}
.y3e{bottom:668.893333pt;}
.yb6{bottom:669.373333pt;}
.y154{bottom:670.813333pt;}
.y128{bottom:671.133333pt;}
.yda{bottom:672.253333pt;}
.y18d{bottom:673.213333pt;}
.y184{bottom:676.573333pt;}
.yc7{bottom:676.893333pt;}
.y3d{bottom:684.573333pt;}
.yb5{bottom:684.893333pt;}
.y153{bottom:686.493333pt;}
.y127{bottom:686.813333pt;}
.y169{bottom:687.613333pt;}
.yd9{bottom:687.933333pt;}
.y1b3{bottom:691.773333pt;}
.y6d{bottom:692.093333pt;}
.yc6{bottom:692.573333pt;}
.yb{bottom:692.893333pt;}
.y96{bottom:693.693333pt;}
.y3c{bottom:700.253333pt;}
.yb4{bottom:700.573333pt;}
.y152{bottom:702.173333pt;}
.y126{bottom:702.493333pt;}
.y1b2{bottom:707.453333pt;}
.y183{bottom:708.093333pt;}
.yc5{bottom:708.253333pt;}
.yd8{bottom:711.453333pt;}
.y3b{bottom:715.773333pt;}
.y18c{bottom:716.093333pt;}
.yb3{bottom:716.253333pt;}
.y151{bottom:717.853333pt;}
.y125{bottom:718.173333pt;}
.y6c{bottom:723.773333pt;}
.ya{bottom:730.333333pt;}
.y1b1{bottom:731.133333pt;}
.y3a{bottom:731.453333pt;}
.yb2{bottom:731.773333pt;}
.y150{bottom:733.373333pt;}
.y93{bottom:733.693333pt;}
.y124{bottom:733.853333pt;}
.y6b{bottom:739.453333pt;}
.yd7{bottom:743.293333pt;}
.y1b0{bottom:746.813333pt;}
.y39{bottom:747.133333pt;}
.yb1{bottom:747.453333pt;}
.y9{bottom:748.413333pt;}
.y14f{bottom:749.053333pt;}
.y123{bottom:749.373333pt;}
.y6a{bottom:755.133333pt;}
.y1af{bottom:762.333333pt;}
.y38{bottom:762.813333pt;}
.yb0{bottom:763.173333pt;}
.y14e{bottom:764.773333pt;}
.y122{bottom:765.093333pt;}
.y8{bottom:766.373333pt;}
.y69{bottom:770.853333pt;}
.y37{bottom:778.373333pt;}
.yaf{bottom:778.853333pt;}
.y121{bottom:780.773333pt;}
.y7{bottom:784.293333pt;}
.y1ae{bottom:786.053333pt;}
.y68{bottom:786.373333pt;}
.y14d{bottom:788.293333pt;}
.y8f{bottom:789.253333pt;}
.yae{bottom:794.373333pt;}
.y120{bottom:796.293333pt;}
.y1ad{bottom:801.733333pt;}
.y67{bottom:802.053333pt;}
.y17a{bottom:805.253333pt;}
.y167{bottom:805.733333pt;}
.y36{bottom:810.053333pt;}
.y6{bottom:815.333333pt;}
.y14c{bottom:817.253333pt;}
.y66{bottom:817.733333pt;}
.y11f{bottom:819.973333pt;}
.y1ac{bottom:825.253333pt;}
.y35{bottom:825.733333pt;}
.yc4{bottom:826.053333pt;}
.y179{bottom:830.213333pt;}
.y65{bottom:833.253333pt;}
.y5{bottom:835.173333pt;}
.y178{bottom:840.933333pt;}
.y34{bottom:841.253333pt;}
.yc3{bottom:841.733333pt;}
.y64{bottom:848.933333pt;}
.y11e{bottom:851.493333pt;}
.y33{bottom:856.933333pt;}
.yc2{bottom:857.253333pt;}
.y8c{bottom:860.453333pt;}
.y1ab{bottom:864.453333pt;}
.y63{bottom:864.613333pt;}
.y11d{bottom:867.173333pt;}
.yfc{bottom:872.453333pt;}
.y4{bottom:872.613333pt;}
.yc1{bottom:872.933333pt;}
.y62{bottom:880.133333pt;}
.y11c{bottom:882.853333pt;}
.y32{bottom:888.133333pt;}
.yad{bottom:888.453333pt;}
.yc0{bottom:888.613333pt;}
.y61{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.y11b{bottom:898.533333pt;}
.y182{bottom:903.813333pt;}
.yac{bottom:904.133333pt;}
.y164{bottom:908.133333pt;}
.y14b{bottom:911.493333pt;}
.y11a{bottom:914.053333pt;}
.y60{bottom:919.493333pt;}
.y31{bottom:919.813333pt;}
.y14a{bottom:927.173333pt;}
.y119{bottom:929.733333pt;}
.y1aa{bottom:935.173333pt;}
.y30{bottom:935.493333pt;}
.y149{bottom:942.693333pt;}
.y118{bottom:945.413333pt;}
.y5f{bottom:951.013333pt;}
.y2f{bottom:951.173333pt;}
.y1a9{bottom:958.693333pt;}
.y177{bottom:959.013333pt;}
.y117{bottom:961.093333pt;}
.y148{bottom:966.373333pt;}
.y2e{bottom:966.693333pt;}
.y1a8{bottom:974.373333pt;}
.y2d{bottom:982.373333pt;}
.y116{bottom:984.613333pt;}
.y147{bottom:997.893333pt;}
.y2c{bottom:998.053333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.h1d{height:36.305625pt;}
.h12{height:37.310625pt;}
.hf{height:39.200000pt;}
.hb{height:39.360000pt;}
.hc{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h13{height:52.990313pt;}
.h1e{height:54.598989pt;}
.h11{height:54.880000pt;}
.he{height:54.912000pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1b{height:66.592000pt;}
.hd{height:70.560000pt;}
.h10{height:70.592000pt;}
.h15{height:86.240000pt;}
.h17{height:101.760000pt;}
.h16{height:101.792000pt;}
.h19{height:117.280000pt;}
.h18{height:117.312000pt;}
.h1c{height:117.440000pt;}
.h14{height:117.472000pt;}
.h1a{height:133.152000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:64.960000pt;}
.wa{width:68.640000pt;}
.wf{width:74.112000pt;}
.we{width:80.000000pt;}
.wb{width:82.272000pt;}
.wd{width:90.112000pt;}
.w8{width:101.792000pt;}
.w9{width:104.992000pt;}
.w6{width:116.192000pt;}
.w5{width:126.432000pt;}
.w7{width:131.072000pt;}
.w4{width:141.626667pt;}
.w3{width:153.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:74.751988pt;}
.x15{left:76.671988pt;}
.x19{left:98.911988pt;}
.x9{left:110.431988pt;}
.xd{left:163.546667pt;}
.x18{left:176.666655pt;}
.x2{left:186.426655pt;}
.xb{left:199.226655pt;}
.x5{left:215.706667pt;}
.xe{left:269.346667pt;}
.x16{left:337.346655pt;}
.xf{left:338.626667pt;}
.x6{left:357.986667pt;}
.x10{left:421.533333pt;}
.x7{left:485.053333pt;}
.x11{left:487.293333pt;}
.x12{left:578.213333pt;}
.x8{left:601.893333pt;}
.x17{left:635.973322pt;}
.xa{left:638.053322pt;}
.x13{left:658.853333pt;}
.xc{left:718.879988pt;}
.x3{left:726.239988pt;}
}




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