
    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_b45f2ac76888442f750b087f.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_a9f02821b4888c9b0620016d.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_bac5853e567865e85d369ab0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_fe2e520e38910f1ee1531bb9.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_802d8dadfae8331133bcecdd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_d7e9083690861cba40830aec.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_1fa5f6e194b613c8fc11e083.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_69231b17d45f44c28b24d58c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_91689a1810e2d72efe1d1e8e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c771a8af93cf4d837a5d6ca3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.444600px;}
.ls23{letter-spacing:-0.430800px;}
.ls25{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.160800px;}
.ls26{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls24{letter-spacing:-0.114000px;}
.ls1a{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.070800px;}
.ls2a{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls20{letter-spacing:0.064800px;}
.ls2d{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.113400px;}
.ls2b{letter-spacing:0.116400px;}
.ls22{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.181200px;}
.ls28{letter-spacing:0.181440px;}
.ls2c{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.199200px;}
.ls2e{letter-spacing:0.267600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.893600px;}
.ls1c{letter-spacing:3.693600px;}
.ls14{letter-spacing:4.413600px;}
.ls15{letter-spacing:4.773600px;}
.ls1d{letter-spacing:6.933600px;}
.ls1e{letter-spacing:11.613600px;}
.ls16{letter-spacing:20.253600px;}
.ls1f{letter-spacing:21.333600px;}
.ls18{letter-spacing:27.453600px;}
.ls30{letter-spacing:45.206640px;}
.ls19{letter-spacing:50.133600px;}
.ls21{letter-spacing:63.566640px;}
.ls2f{letter-spacing:78.326640px;}
.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;}
}
.ws18{word-spacing:-60.120000px;}
.ws3{word-spacing:-14.493600px;}
.wsf{word-spacing:-14.379600px;}
.wsa{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.425600px;}
.ws17{word-spacing:-13.424400px;}
.ws14{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.369800px;}
.ws16{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.339800px;}
.wsc{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.155600px;}
.ws11{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.wse{word-spacing:-12.795600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._6{margin-left:-3.787800px;}
._3{margin-left:-2.229000px;}
._0{margin-left:-1.110000px;}
._2{width:1.258200px;}
._8{width:2.765400px;}
._9{width:4.027800px;}
._a{width:5.088127px;}
._4{width:6.733200px;}
._5{width:8.597400px;}
._7{width:9.679200px;}
._d{width:11.242200px;}
._c{width:14.248801px;}
._f{width:16.122120px;}
._e{width:17.194320px;}
._23{width:18.877680px;}
._1{width:19.963272px;}
._b{width:21.000933px;}
._10{width:22.905720px;}
._11{width:24.441120px;}
._29{width:26.087400px;}
._13{width:27.114120px;}
._14{width:28.316520px;}
._18{width:29.879640px;}
._26{width:31.082040px;}
._1c{width:33.366600px;}
._17{width:34.989840px;}
._16{width:36.083520px;}
._2c{width:39.138120px;}
._22{width:40.340520px;}
._1a{width:47.093760px;}
._21{width:48.196440px;}
._15{width:49.959720px;}
._20{width:55.911600px;}
._1e{width:57.294360px;}
._28{width:58.894200px;}
._27{width:59.907360px;}
._24{width:63.735840px;}
._25{width:65.324520px;}
._1d{width:69.413760px;}
._2a{width:85.731120px;}
._2f{width:87.174000px;}
._30{width:88.256160px;}
._2d{width:94.087800px;}
._2e{width:95.541240px;}
._2b{width:117.173880px;}
._19{width:119.813760px;}
._1b{width:124.013280px;}
._12{width:125.229960px;}
._1f{width:210.173760px;}
.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;}
.fs7{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:7.830000px;}
.y99{bottom:7.920000px;}
.ya3{bottom:25.380000px;}
.y9b{bottom:25.470000px;}
.yd4{bottom:29.970000px;}
.yd3{bottom:43.110000px;}
.yd0{bottom:47.610000px;}
.yd9{bottom:52.020000px;}
.ydc{bottom:61.020000px;}
.ycf{bottom:65.160000px;}
.y2{bottom:73.380000px;}
.yd8{bottom:74.070000px;}
.y2b{bottom:74.190000px;}
.ydb{bottom:78.570000px;}
.yce{bottom:87.240000px;}
.yd7{bottom:91.710000px;}
.yda{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.ycd{bottom:104.880000px;}
.yd1{bottom:109.380000px;}
.y15f{bottom:111.450000px;}
.yd6{bottom:113.760000px;}
.y1b3{bottom:116.130000px;}
.y89{bottom:116.760000px;}
.ycc{bottom:126.930000px;}
.y15e{bottom:129.090000px;}
.y28{bottom:131.160000px;}
.y1b2{bottom:133.680000px;}
.y18d{bottom:134.220000px;}
.y88{bottom:134.310000px;}
.y133{bottom:135.840000px;}
.yf3{bottom:136.920000px;}
.ycb{bottom:144.570000px;}
.y69{bottom:145.470000px;}
.y27{bottom:148.710000px;}
.y9f{bottom:150.420000px;}
.y18c{bottom:151.860000px;}
.y87{bottom:151.950000px;}
.y132{bottom:153.390000px;}
.y4c{bottom:156.810000px;}
.y10c{bottom:160.140000px;}
.y1b1{bottom:160.320000px;}
.y68{bottom:163.110000px;}
.y26{bottom:166.350000px;}
.y15d{bottom:167.700000px;}
.y86{bottom:169.500000px;}
.y131{bottom:170.940000px;}
.yf2{bottom:172.470000px;}
.y10b{bottom:177.690000px;}
.y1b0{bottom:177.870000px;}
.y18b{bottom:178.410000px;}
.y67{bottom:180.660000px;}
.y25{bottom:183.900000px;}
.yc8{bottom:183.990000px;}
.y15c{bottom:185.250000px;}
.y85{bottom:187.050000px;}
.y130{bottom:188.580000px;}
.y4b{bottom:189.030000px;}
.y9d{bottom:195.330000px;}
.y10a{bottom:196.140000px;}
.y66{bottom:198.300000px;}
.y24{bottom:201.540000px;}
.y15b{bottom:202.890000px;}
.y1af{bottom:204.510000px;}
.y84{bottom:204.690000px;}
.y18a{bottom:205.050000px;}
.yf1{bottom:208.110000px;}
.y109{bottom:214.500000px;}
.y12f{bottom:215.130000px;}
.y65{bottom:215.850000px;}
.yc7{bottom:219.180000px;}
.y1ae{bottom:222.060000px;}
.y83{bottom:222.240000px;}
.y15a{bottom:229.800000px;}
.y189{bottom:231.600000px;}
.y108{bottom:232.950000px;}
.y64{bottom:233.400000px;}
.yc6{bottom:236.730000px;}
.y23{bottom:237.090000px;}
.y9c{bottom:240.240000px;}
.yf0{bottom:243.660000px;}
.y1ad{bottom:248.610000px;}
.y82{bottom:248.880000px;}
.y188{bottom:249.150000px;}
.y12e{bottom:250.770000px;}
.y63{bottom:251.040000px;}
.y107{bottom:251.310000px;}
.yc5{bottom:254.370000px;}
.y22{bottom:254.640000px;}
.y1ac{bottom:266.250000px;}
.y187{bottom:266.790000px;}
.y159{bottom:267.150000px;}
.y12d{bottom:268.320000px;}
.y62{bottom:268.590000px;}
.y106{bottom:269.760000px;}
.yc4{bottom:271.920000px;}
.y21{bottom:272.280000px;}
.yef{bottom:279.210000px;}
.y81{bottom:284.430000px;}
.y9a{bottom:285.150000px;}
.y12c{bottom:285.870000px;}
.y61{bottom:286.230000px;}
.yc3{bottom:289.470000px;}
.y20{bottom:289.830000px;}
.y1ab{bottom:292.800000px;}
.y186{bottom:293.340000px;}
.y105{bottom:297.210000px;}
.y80{bottom:301.980000px;}
.y12b{bottom:303.510000px;}
.y60{bottom:303.780000px;}
.yc2{bottom:307.110000px;}
.y1f{bottom:307.380000px;}
.y1aa{bottom:310.440000px;}
.y185{bottom:310.980000px;}
.yee{bottom:314.850000px;}
.y158{bottom:315.390000px;}
.y7f{bottom:319.620000px;}
.y12a{bottom:321.060000px;}
.y5f{bottom:321.330000px;}
.yc1{bottom:324.660000px;}
.y1e{bottom:325.020000px;}
.y184{bottom:328.530000px;}
.y98{bottom:330.060000px;}
.y104{bottom:332.760000px;}
.y157{bottom:332.940000px;}
.y1a9{bottom:336.990000px;}
.y7e{bottom:337.170000px;}
.y129{bottom:338.700000px;}
.yc0{bottom:342.300000px;}
.yed{bottom:350.400000px;}
.y156{bottom:350.580000px;}
.y1d{bottom:351.930000px;}
.y1a8{bottom:354.540000px;}
.y7d{bottom:354.810000px;}
.y183{bottom:355.080000px;}
.y128{bottom:356.250000px;}
.y5e{bottom:356.970000px;}
.ybf{bottom:359.850000px;}
.y103{bottom:367.950000px;}
.y155{bottom:368.130000px;}
.y1a7{bottom:372.180000px;}
.y7c{bottom:372.360000px;}
.y182{bottom:372.720000px;}
.y5d{bottom:374.520000px;}
.ybe{bottom:377.400000px;}
.y97{bottom:378.750000px;}
.y154{bottom:385.770000px;}
.yec{bottom:386.040000px;}
.y7b{bottom:389.910000px;}
.y181{bottom:390.270000px;}
.y127{bottom:391.800000px;}
.y5c{bottom:392.160000px;}
.y102{bottom:394.500000px;}
.ybd{bottom:395.040000px;}
.y96{bottom:396.390000px;}
.y1a6{bottom:398.730000px;}
.y1c{bottom:400.530000px;}
.y153{bottom:403.320000px;}
.yeb{bottom:403.590000px;}
.y7a{bottom:407.550000px;}
.y126{bottom:409.440000px;}
.y5b{bottom:409.710000px;}
.ybc{bottom:412.590000px;}
.y1a5{bottom:416.370000px;}
.y180{bottom:416.910000px;}
.yea{bottom:421.140000px;}
.y79{bottom:425.100000px;}
.y125{bottom:426.990000px;}
.y5a{bottom:427.260000px;}
.y101{bottom:430.140000px;}
.ybb{bottom:430.230000px;}
.y95{bottom:431.940000px;}
.y17f{bottom:434.460000px;}
.y1b{bottom:437.520000px;}
.ye9{bottom:438.780000px;}
.y152{bottom:438.870000px;}
.y78{bottom:442.740000px;}
.y1a4{bottom:442.920000px;}
.y124{bottom:444.630000px;}
.yba{bottom:447.780000px;}
.y94{bottom:449.580000px;}
.y17e{bottom:452.010000px;}
.y1a{bottom:455.160000px;}
.ye8{bottom:456.330000px;}
.y151{bottom:456.510000px;}
.y77{bottom:460.290000px;}
.y1a3{bottom:460.470000px;}
.y123{bottom:462.180000px;}
.y100{bottom:462.360000px;}
.y59{bottom:462.900000px;}
.yb9{bottom:465.330000px;}
.y93{bottom:467.130000px;}
.y19{bottom:472.740000px;}
.ye7{bottom:474.000000px;}
.y150{bottom:474.090000px;}
.y17d{bottom:478.680000px;}
.y122{bottom:479.760000px;}
.y58{bottom:480.480000px;}
.yb8{bottom:483.000000px;}
.y92{bottom:484.710000px;}
.y76{bottom:486.870000px;}
.y1a2{bottom:487.140000px;}
.y18{bottom:490.290000px;}
.ye6{bottom:491.550000px;}
.y14f{bottom:491.730000px;}
.y17c{bottom:496.230000px;}
.y121{bottom:497.400000px;}
.yb7{bottom:500.550000px;}
.y91{bottom:502.350000px;}
.y1a1{bottom:504.690000px;}
.y17{bottom:507.930000px;}
.y14e{bottom:509.280000px;}
.y57{bottom:512.700000px;}
.yb6{bottom:518.190000px;}
.y4a{bottom:518.730000px;}
.y90{bottom:519.900000px;}
.y75{bottom:522.780000px;}
.y17b{bottom:522.870000px;}
.y120{bottom:524.310000px;}
.y16{bottom:525.480000px;}
.y14d{bottom:526.830000px;}
.ye5{bottom:527.100000px;}
.y1a0{bottom:531.330000px;}
.yb5{bottom:535.740000px;}
.y49{bottom:536.280000px;}
.y8f{bottom:537.540000px;}
.y17a{bottom:540.420000px;}
.y15{bottom:543.120000px;}
.ye4{bottom:544.740000px;}
.y19f{bottom:548.880000px;}
.y14c{bottom:553.740000px;}
.y8e{bottom:555.090000px;}
.y14{bottom:560.670000px;}
.ye3{bottom:562.290000px;}
.y179{bottom:566.970000px;}
.y74{bottom:571.110000px;}
.yb4{bottom:571.290000px;}
.y48{bottom:571.830000px;}
.y11f{bottom:572.550000px;}
.y19e{bottom:575.430000px;}
.y13{bottom:578.220000px;}
.ye2{bottom:579.840000px;}
.y8d{bottom:581.640000px;}
.y178{bottom:585.510000px;}
.y73{bottom:588.660000px;}
.y47{bottom:589.470000px;}
.yb3{bottom:589.740000px;}
.y11e{bottom:590.190000px;}
.y19d{bottom:593.070000px;}
.y12{bottom:595.860000px;}
.ye1{bottom:597.480000px;}
.y14b{bottom:602.070000px;}
.y72{bottom:606.210000px;}
.y46{bottom:607.020000px;}
.y11d{bottom:607.740000px;}
.yb2{bottom:608.100000px;}
.y19c{bottom:610.620000px;}
.y177{bottom:613.050000px;}
.y11{bottom:613.410000px;}
.ye0{bottom:615.030000px;}
.y8c{bottom:617.280000px;}
.y14a{bottom:619.620000px;}
.y71{bottom:623.850000px;}
.yb1{bottom:626.550000px;}
.y1b8{bottom:628.260000px;}
.y176{bottom:630.600000px;}
.y10{bottom:630.960000px;}
.ydf{bottom:632.670000px;}
.y8b{bottom:634.830000px;}
.y149{bottom:637.260000px;}
.y70{bottom:641.400000px;}
.y45{bottom:642.660000px;}
.y11c{bottom:643.290000px;}
.yb0{bottom:644.910000px;}
.y175{bottom:648.240000px;}
.yf{bottom:648.600000px;}
.yde{bottom:650.220000px;}
.y148{bottom:654.810000px;}
.y6f{bottom:659.040000px;}
.y44{bottom:660.210000px;}
.y11b{bottom:660.930000px;}
.ye{bottom:666.150000px;}
.y8a{bottom:667.050000px;}
.y147{bottom:672.360000px;}
.y174{bottom:674.790000px;}
.y6e{bottom:676.590000px;}
.ydd{bottom:676.770000px;}
.yaf{bottom:681.360000px;}
.yd{bottom:683.790000px;}
.y146{bottom:690.000000px;}
.y173{bottom:692.340000px;}
.y6d{bottom:694.140000px;}
.y43{bottom:695.760000px;}
.y11a{bottom:696.480000px;}
.yae{bottom:699.000000px;}
.yc{bottom:701.340000px;}
.y145{bottom:707.550000px;}
.yd5{bottom:709.800000px;}
.y6c{bottom:711.780000px;}
.y42{bottom:713.400000px;}
.yad{bottom:716.550000px;}
.yb{bottom:718.890000px;}
.y172{bottom:718.980000px;}
.y144{bottom:725.190000px;}
.y41{bottom:730.950000px;}
.y119{bottom:732.030000px;}
.y143{bottom:742.740000px;}
.yac{bottom:743.100000px;}
.y19b{bottom:743.190000px;}
.y171{bottom:745.530000px;}
.ya{bottom:745.890000px;}
.y6b{bottom:747.330000px;}
.y40{bottom:748.590000px;}
.y118{bottom:749.670000px;}
.y142{bottom:760.290000px;}
.y19a{bottom:760.740000px;}
.y170{bottom:763.170000px;}
.y3f{bottom:766.140000px;}
.yff{bottom:767.220000px;}
.y141{bottom:777.930000px;}
.y199{bottom:778.290000px;}
.yab{bottom:779.010000px;}
.y6a{bottom:779.550000px;}
.y3e{bottom:783.690000px;}
.y117{bottom:785.220000px;}
.y1b7{bottom:787.290000px;}
.y16f{bottom:789.720000px;}
.y9{bottom:792.600000px;}
.y140{bottom:795.480000px;}
.yfe{bottom:802.860000px;}
.y198{bottom:804.930000px;}
.y16e{bottom:807.270000px;}
.y3d{bottom:810.600000px;}
.y13f{bottom:813.030000px;}
.y116{bottom:820.860000px;}
.y197{bottom:822.480000px;}
.yaa{bottom:827.340000px;}
.y8{bottom:828.420000px;}
.y1b6{bottom:831.480000px;}
.y16d{bottom:833.910000px;}
.yfd{bottom:838.410000px;}
.y196{bottom:840.030000px;}
.yd2{bottom:843.000000px;}
.ya9{bottom:844.890000px;}
.y13e{bottom:848.670000px;}
.y1b5{bottom:849.030000px;}
.y16c{bottom:851.460000px;}
.y115{bottom:856.410000px;}
.y56{bottom:858.030000px;}
.y3c{bottom:858.930000px;}
.ya8{bottom:862.530000px;}
.y7{bottom:864.420000px;}
.y13d{bottom:866.220000px;}
.y195{bottom:866.670000px;}
.yfc{bottom:873.960000px;}
.y55{bottom:875.670000px;}
.y3b{bottom:876.480000px;}
.y16b{bottom:878.100000px;}
.ya7{bottom:880.080000px;}
.y13c{bottom:883.860000px;}
.y194{bottom:884.220000px;}
.yfb{bottom:891.600000px;}
.y114{bottom:891.960000px;}
.y54{bottom:893.220000px;}
.y3a{bottom:894.030000px;}
.y16a{bottom:895.650000px;}
.ya6{bottom:897.630000px;}
.y6{bottom:900.420000px;}
.y13b{bottom:901.410000px;}
.y113{bottom:909.600000px;}
.y53{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.y169{bottom:913.200000px;}
.ya5{bottom:915.270000px;}
.yfa{bottom:927.150000px;}
.yca{bottom:927.600000px;}
.y52{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y5{bottom:936.510000px;}
.y13a{bottom:936.960000px;}
.y1b4{bottom:937.410000px;}
.y168{bottom:939.840000px;}
.ya4{bottom:941.820000px;}
.yf9{bottom:944.790000px;}
.y112{bottom:945.150000px;}
.y51{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y139{bottom:954.600000px;}
.y193{bottom:954.960000px;}
.y167{bottom:957.390000px;}
.yf8{bottom:962.340000px;}
.y50{bottom:963.600000px;}
.y36{bottom:964.410000px;}
.y138{bottom:972.150000px;}
.y192{bottom:972.600000px;}
.y4{bottom:974.850000px;}
.y166{bottom:975.030000px;}
.y111{bottom:980.790000px;}
.y35{bottom:981.960000px;}
.y137{bottom:989.790000px;}
.y191{bottom:990.150000px;}
.yf7{bottom:997.890000px;}
.y110{bottom:998.340000px;}
.y4f{bottom:999.150000px;}
.y3{bottom:999.510000px;}
.y34{bottom:999.600000px;}
.y165{bottom:1001.580000px;}
.y136{bottom:1016.370000px;}
.y4e{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y164{bottom:1019.160000px;}
.ya2{bottom:1019.790000px;}
.yf6{bottom:1033.560000px;}
.y10f{bottom:1033.920000px;}
.y4d{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y163{bottom:1036.800000px;}
.y10e{bottom:1051.560000px;}
.y135{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y190{bottom:1060.920000px;}
.y162{bottom:1063.710000px;}
.ya1{bottom:1064.700000px;}
.yf5{bottom:1069.110000px;}
.y134{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y18f{bottom:1078.560000px;}
.y10d{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.yc9{bottom:1091.610000px;}
.y18e{bottom:1096.110000px;}
.yf4{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.ya0{bottom:1109.610000px;}
.y161{bottom:1111.950000px;}
.y2d{bottom:1122.750000px;}
.y160{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1167.750000px;}
.y29{bottom:1194.300000px;}
.h11{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:32.566289px;}
.he{height:44.100000px;}
.hf{height:44.130000px;}
.hd{height:44.190000px;}
.h3{height:44.538574px;}
.h6{height:50.902383px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.h15{height:59.973223px;}
.h10{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.h9{height:68.581055px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h13{height:83.880000px;}
.h14{height:132.480000px;}
.h12{height:163.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:103.350000px;}
.w3{width:176.700000px;}
.w7{width:198.360000px;}
.w9{width:200.430000px;}
.w8{width:251.220000px;}
.w5{width:280.170000px;}
.w4{width:297.300000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x23{left:57.419987px;}
.x1{left:68.040000px;}
.x7{left:95.669987px;}
.xc{left:99.089987px;}
.x22{left:122.039987px;}
.x5{left:132.479987px;}
.xa{left:161.549987px;}
.x12{left:172.830000px;}
.xd{left:179.669987px;}
.x2{left:202.799987px;}
.x21{left:209.639987px;}
.xe{left:228.179987px;}
.x10{left:246.180000px;}
.x16{left:266.789987px;}
.x1b{left:302.069987px;}
.x1e{left:314.759987px;}
.x18{left:316.289987px;}
.x1c{left:327.719987px;}
.x1a{left:329.069987px;}
.x1f{left:334.109987px;}
.x1d{left:342.929987px;}
.x15{left:352.649987px;}
.x19{left:360.119987px;}
.x17{left:361.649987px;}
.x13{left:372.000000px;}
.x8{left:410.429987px;}
.x11{left:544.290000px;}
.x14{left:624.030000px;}
.x20{left:625.559987px;}
.xb{left:677.309987px;}
.x4{left:699.809987px;}
.x6{left:704.309987px;}
.x9{left:717.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.395200pt;}
.ls23{letter-spacing:-0.382933pt;}
.ls25{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls26{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls24{letter-spacing:-0.101333pt;}
.ls1a{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.062933pt;}
.ls2a{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls20{letter-spacing:0.057600pt;}
.ls2d{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.100800pt;}
.ls2b{letter-spacing:0.103467pt;}
.ls22{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.161067pt;}
.ls28{letter-spacing:0.161280pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.177067pt;}
.ls2e{letter-spacing:0.237867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.683200pt;}
.ls1c{letter-spacing:3.283200pt;}
.ls14{letter-spacing:3.923200pt;}
.ls15{letter-spacing:4.243200pt;}
.ls1d{letter-spacing:6.163200pt;}
.ls1e{letter-spacing:10.323200pt;}
.ls16{letter-spacing:18.003200pt;}
.ls1f{letter-spacing:18.963200pt;}
.ls18{letter-spacing:24.403200pt;}
.ls30{letter-spacing:40.183680pt;}
.ls19{letter-spacing:44.563200pt;}
.ls21{letter-spacing:56.503680pt;}
.ls2f{letter-spacing:69.623680pt;}
.ws18{word-spacing:-53.440000pt;}
.ws3{word-spacing:-12.883200pt;}
.wsf{word-spacing:-12.781867pt;}
.wsa{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.933867pt;}
.ws17{word-spacing:-11.932800pt;}
.ws14{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.884267pt;}
.ws16{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.857600pt;}
.wsc{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.693867pt;}
.ws11{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.373867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._6{margin-left:-3.366934pt;}
._3{margin-left:-1.981334pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.118400pt;}
._8{width:2.458133pt;}
._9{width:3.580266pt;}
._a{width:4.522780pt;}
._4{width:5.985066pt;}
._5{width:7.642134pt;}
._7{width:8.603733pt;}
._d{width:9.993066pt;}
._c{width:12.665601pt;}
._f{width:14.330774pt;}
._e{width:15.283840pt;}
._23{width:16.780160pt;}
._1{width:17.745131pt;}
._b{width:18.667496pt;}
._10{width:20.360640pt;}
._11{width:21.725440pt;}
._29{width:23.188800pt;}
._13{width:24.101440pt;}
._14{width:25.170240pt;}
._18{width:26.559680pt;}
._26{width:27.628480pt;}
._1c{width:29.659200pt;}
._17{width:31.102080pt;}
._16{width:32.074240pt;}
._2c{width:34.789440pt;}
._22{width:35.858240pt;}
._1a{width:41.861120pt;}
._21{width:42.841280pt;}
._15{width:44.408640pt;}
._20{width:49.699200pt;}
._1e{width:50.928320pt;}
._28{width:52.350400pt;}
._27{width:53.250987pt;}
._24{width:56.654080pt;}
._25{width:58.066240pt;}
._1d{width:61.701120pt;}
._2a{width:76.205440pt;}
._2f{width:77.488000pt;}
._30{width:78.449920pt;}
._2d{width:83.633600pt;}
._2e{width:84.925547pt;}
._2b{width:104.154560pt;}
._19{width:106.501120pt;}
._1b{width:110.234027pt;}
._12{width:111.315520pt;}
._1f{width:186.821120pt;}
.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;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:6.960000pt;}
.y99{bottom:7.040000pt;}
.ya3{bottom:22.560000pt;}
.y9b{bottom:22.640000pt;}
.yd4{bottom:26.640000pt;}
.yd3{bottom:38.320000pt;}
.yd0{bottom:42.320000pt;}
.yd9{bottom:46.240000pt;}
.ydc{bottom:54.240000pt;}
.ycf{bottom:57.920000pt;}
.y2{bottom:65.226667pt;}
.yd8{bottom:65.840000pt;}
.y2b{bottom:65.946667pt;}
.ydb{bottom:69.840000pt;}
.yce{bottom:77.546667pt;}
.yd7{bottom:81.520000pt;}
.yda{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.ycd{bottom:93.226667pt;}
.yd1{bottom:97.226667pt;}
.y15f{bottom:99.066667pt;}
.yd6{bottom:101.120000pt;}
.y1b3{bottom:103.226667pt;}
.y89{bottom:103.786667pt;}
.ycc{bottom:112.826667pt;}
.y15e{bottom:114.746667pt;}
.y28{bottom:116.586667pt;}
.y1b2{bottom:118.826667pt;}
.y18d{bottom:119.306667pt;}
.y88{bottom:119.386667pt;}
.y133{bottom:120.746667pt;}
.yf3{bottom:121.706667pt;}
.ycb{bottom:128.506667pt;}
.y69{bottom:129.306667pt;}
.y27{bottom:132.186667pt;}
.y9f{bottom:133.706667pt;}
.y18c{bottom:134.986667pt;}
.y87{bottom:135.066667pt;}
.y132{bottom:136.346667pt;}
.y4c{bottom:139.386667pt;}
.y10c{bottom:142.346667pt;}
.y1b1{bottom:142.506667pt;}
.y68{bottom:144.986667pt;}
.y26{bottom:147.866667pt;}
.y15d{bottom:149.066667pt;}
.y86{bottom:150.666667pt;}
.y131{bottom:151.946667pt;}
.yf2{bottom:153.306667pt;}
.y10b{bottom:157.946667pt;}
.y1b0{bottom:158.106667pt;}
.y18b{bottom:158.586667pt;}
.y67{bottom:160.586667pt;}
.y25{bottom:163.466667pt;}
.yc8{bottom:163.546667pt;}
.y15c{bottom:164.666667pt;}
.y85{bottom:166.266667pt;}
.y130{bottom:167.626667pt;}
.y4b{bottom:168.026667pt;}
.y9d{bottom:173.626667pt;}
.y10a{bottom:174.346667pt;}
.y66{bottom:176.266667pt;}
.y24{bottom:179.146667pt;}
.y15b{bottom:180.346667pt;}
.y1af{bottom:181.786667pt;}
.y84{bottom:181.946667pt;}
.y18a{bottom:182.266667pt;}
.yf1{bottom:184.986667pt;}
.y109{bottom:190.666667pt;}
.y12f{bottom:191.226667pt;}
.y65{bottom:191.866667pt;}
.yc7{bottom:194.826667pt;}
.y1ae{bottom:197.386667pt;}
.y83{bottom:197.546667pt;}
.y15a{bottom:204.266667pt;}
.y189{bottom:205.866667pt;}
.y108{bottom:207.066667pt;}
.y64{bottom:207.466667pt;}
.yc6{bottom:210.426667pt;}
.y23{bottom:210.746667pt;}
.y9c{bottom:213.546667pt;}
.yf0{bottom:216.586667pt;}
.y1ad{bottom:220.986667pt;}
.y82{bottom:221.226667pt;}
.y188{bottom:221.466667pt;}
.y12e{bottom:222.906667pt;}
.y63{bottom:223.146667pt;}
.y107{bottom:223.386667pt;}
.yc5{bottom:226.106667pt;}
.y22{bottom:226.346667pt;}
.y1ac{bottom:236.666667pt;}
.y187{bottom:237.146667pt;}
.y159{bottom:237.466667pt;}
.y12d{bottom:238.506667pt;}
.y62{bottom:238.746667pt;}
.y106{bottom:239.786667pt;}
.yc4{bottom:241.706667pt;}
.y21{bottom:242.026667pt;}
.yef{bottom:248.186667pt;}
.y81{bottom:252.826667pt;}
.y9a{bottom:253.466667pt;}
.y12c{bottom:254.106667pt;}
.y61{bottom:254.426667pt;}
.yc3{bottom:257.306667pt;}
.y20{bottom:257.626667pt;}
.y1ab{bottom:260.266667pt;}
.y186{bottom:260.746667pt;}
.y105{bottom:264.186667pt;}
.y80{bottom:268.426667pt;}
.y12b{bottom:269.786667pt;}
.y60{bottom:270.026667pt;}
.yc2{bottom:272.986667pt;}
.y1f{bottom:273.226667pt;}
.y1aa{bottom:275.946667pt;}
.y185{bottom:276.426667pt;}
.yee{bottom:279.866667pt;}
.y158{bottom:280.346667pt;}
.y7f{bottom:284.106667pt;}
.y12a{bottom:285.386667pt;}
.y5f{bottom:285.626667pt;}
.yc1{bottom:288.586667pt;}
.y1e{bottom:288.906667pt;}
.y184{bottom:292.026667pt;}
.y98{bottom:293.386667pt;}
.y104{bottom:295.786667pt;}
.y157{bottom:295.946667pt;}
.y1a9{bottom:299.546667pt;}
.y7e{bottom:299.706667pt;}
.y129{bottom:301.066667pt;}
.yc0{bottom:304.266667pt;}
.yed{bottom:311.466667pt;}
.y156{bottom:311.626667pt;}
.y1d{bottom:312.826667pt;}
.y1a8{bottom:315.146667pt;}
.y7d{bottom:315.386667pt;}
.y183{bottom:315.626667pt;}
.y128{bottom:316.666667pt;}
.y5e{bottom:317.306667pt;}
.ybf{bottom:319.866667pt;}
.y103{bottom:327.066667pt;}
.y155{bottom:327.226667pt;}
.y1a7{bottom:330.826667pt;}
.y7c{bottom:330.986667pt;}
.y182{bottom:331.306667pt;}
.y5d{bottom:332.906667pt;}
.ybe{bottom:335.466667pt;}
.y97{bottom:336.666667pt;}
.y154{bottom:342.906667pt;}
.yec{bottom:343.146667pt;}
.y7b{bottom:346.586667pt;}
.y181{bottom:346.906667pt;}
.y127{bottom:348.266667pt;}
.y5c{bottom:348.586667pt;}
.y102{bottom:350.666667pt;}
.ybd{bottom:351.146667pt;}
.y96{bottom:352.346667pt;}
.y1a6{bottom:354.426667pt;}
.y1c{bottom:356.026667pt;}
.y153{bottom:358.506667pt;}
.yeb{bottom:358.746667pt;}
.y7a{bottom:362.266667pt;}
.y126{bottom:363.946667pt;}
.y5b{bottom:364.186667pt;}
.ybc{bottom:366.746667pt;}
.y1a5{bottom:370.106667pt;}
.y180{bottom:370.586667pt;}
.yea{bottom:374.346667pt;}
.y79{bottom:377.866667pt;}
.y125{bottom:379.546667pt;}
.y5a{bottom:379.786667pt;}
.y101{bottom:382.346667pt;}
.ybb{bottom:382.426667pt;}
.y95{bottom:383.946667pt;}
.y17f{bottom:386.186667pt;}
.y1b{bottom:388.906667pt;}
.ye9{bottom:390.026667pt;}
.y152{bottom:390.106667pt;}
.y78{bottom:393.546667pt;}
.y1a4{bottom:393.706667pt;}
.y124{bottom:395.226667pt;}
.yba{bottom:398.026667pt;}
.y94{bottom:399.626667pt;}
.y17e{bottom:401.786667pt;}
.y1a{bottom:404.586667pt;}
.ye8{bottom:405.626667pt;}
.y151{bottom:405.786667pt;}
.y77{bottom:409.146667pt;}
.y1a3{bottom:409.306667pt;}
.y123{bottom:410.826667pt;}
.y100{bottom:410.986667pt;}
.y59{bottom:411.466667pt;}
.yb9{bottom:413.626667pt;}
.y93{bottom:415.226667pt;}
.y19{bottom:420.213333pt;}
.ye7{bottom:421.333333pt;}
.y150{bottom:421.413333pt;}
.y17d{bottom:425.493333pt;}
.y122{bottom:426.453333pt;}
.y58{bottom:427.093333pt;}
.yb8{bottom:429.333333pt;}
.y92{bottom:430.853333pt;}
.y76{bottom:432.773333pt;}
.y1a2{bottom:433.013333pt;}
.y18{bottom:435.813333pt;}
.ye6{bottom:436.933333pt;}
.y14f{bottom:437.093333pt;}
.y17c{bottom:441.093333pt;}
.y121{bottom:442.133333pt;}
.yb7{bottom:444.933333pt;}
.y91{bottom:446.533333pt;}
.y1a1{bottom:448.613333pt;}
.y17{bottom:451.493333pt;}
.y14e{bottom:452.693333pt;}
.y57{bottom:455.733333pt;}
.yb6{bottom:460.613333pt;}
.y4a{bottom:461.093333pt;}
.y90{bottom:462.133333pt;}
.y75{bottom:464.693333pt;}
.y17b{bottom:464.773333pt;}
.y120{bottom:466.053333pt;}
.y16{bottom:467.093333pt;}
.y14d{bottom:468.293333pt;}
.ye5{bottom:468.533333pt;}
.y1a0{bottom:472.293333pt;}
.yb5{bottom:476.213333pt;}
.y49{bottom:476.693333pt;}
.y8f{bottom:477.813333pt;}
.y17a{bottom:480.373333pt;}
.y15{bottom:482.773333pt;}
.ye4{bottom:484.213333pt;}
.y19f{bottom:487.893333pt;}
.y14c{bottom:492.213333pt;}
.y8e{bottom:493.413333pt;}
.y14{bottom:498.373333pt;}
.ye3{bottom:499.813333pt;}
.y179{bottom:503.973333pt;}
.y74{bottom:507.653333pt;}
.yb4{bottom:507.813333pt;}
.y48{bottom:508.293333pt;}
.y11f{bottom:508.933333pt;}
.y19e{bottom:511.493333pt;}
.y13{bottom:513.973333pt;}
.ye2{bottom:515.413333pt;}
.y8d{bottom:517.013333pt;}
.y178{bottom:520.453333pt;}
.y73{bottom:523.253333pt;}
.y47{bottom:523.973333pt;}
.yb3{bottom:524.213333pt;}
.y11e{bottom:524.613333pt;}
.y19d{bottom:527.173333pt;}
.y12{bottom:529.653333pt;}
.ye1{bottom:531.093333pt;}
.y14b{bottom:535.173333pt;}
.y72{bottom:538.853333pt;}
.y46{bottom:539.573333pt;}
.y11d{bottom:540.213333pt;}
.yb2{bottom:540.533333pt;}
.y19c{bottom:542.773333pt;}
.y177{bottom:544.933333pt;}
.y11{bottom:545.253333pt;}
.ye0{bottom:546.693333pt;}
.y8c{bottom:548.693333pt;}
.y14a{bottom:550.773333pt;}
.y71{bottom:554.533333pt;}
.yb1{bottom:556.933333pt;}
.y1b8{bottom:558.453333pt;}
.y176{bottom:560.533333pt;}
.y10{bottom:560.853333pt;}
.ydf{bottom:562.373333pt;}
.y8b{bottom:564.293333pt;}
.y149{bottom:566.453333pt;}
.y70{bottom:570.133333pt;}
.y45{bottom:571.253333pt;}
.y11c{bottom:571.813333pt;}
.yb0{bottom:573.253333pt;}
.y175{bottom:576.213333pt;}
.yf{bottom:576.533333pt;}
.yde{bottom:577.973333pt;}
.y148{bottom:582.053333pt;}
.y6f{bottom:585.813333pt;}
.y44{bottom:586.853333pt;}
.y11b{bottom:587.493333pt;}
.ye{bottom:592.133333pt;}
.y8a{bottom:592.933333pt;}
.y147{bottom:597.653333pt;}
.y174{bottom:599.813333pt;}
.y6e{bottom:601.413333pt;}
.ydd{bottom:601.573333pt;}
.yaf{bottom:605.653333pt;}
.yd{bottom:607.813333pt;}
.y146{bottom:613.333333pt;}
.y173{bottom:615.413333pt;}
.y6d{bottom:617.013333pt;}
.y43{bottom:618.453333pt;}
.y11a{bottom:619.093333pt;}
.yae{bottom:621.333333pt;}
.yc{bottom:623.413333pt;}
.y145{bottom:628.933333pt;}
.yd5{bottom:630.933333pt;}
.y6c{bottom:632.693333pt;}
.y42{bottom:634.133333pt;}
.yad{bottom:636.933333pt;}
.yb{bottom:639.013333pt;}
.y172{bottom:639.093333pt;}
.y144{bottom:644.613333pt;}
.y41{bottom:649.733333pt;}
.y119{bottom:650.693333pt;}
.y143{bottom:660.213333pt;}
.yac{bottom:660.533333pt;}
.y19b{bottom:660.613333pt;}
.y171{bottom:662.693333pt;}
.ya{bottom:663.013333pt;}
.y6b{bottom:664.293333pt;}
.y40{bottom:665.413333pt;}
.y118{bottom:666.373333pt;}
.y142{bottom:675.813333pt;}
.y19a{bottom:676.213333pt;}
.y170{bottom:678.373333pt;}
.y3f{bottom:681.013333pt;}
.yff{bottom:681.973333pt;}
.y141{bottom:691.493333pt;}
.y199{bottom:691.813333pt;}
.yab{bottom:692.453333pt;}
.y6a{bottom:692.933333pt;}
.y3e{bottom:696.613333pt;}
.y117{bottom:697.973333pt;}
.y1b7{bottom:699.813333pt;}
.y16f{bottom:701.973333pt;}
.y9{bottom:704.533333pt;}
.y140{bottom:707.093333pt;}
.yfe{bottom:713.653333pt;}
.y198{bottom:715.493333pt;}
.y16e{bottom:717.573333pt;}
.y3d{bottom:720.533333pt;}
.y13f{bottom:722.693333pt;}
.y116{bottom:729.653333pt;}
.y197{bottom:731.093333pt;}
.yaa{bottom:735.413333pt;}
.y8{bottom:736.373333pt;}
.y1b6{bottom:739.093333pt;}
.y16d{bottom:741.253333pt;}
.yfd{bottom:745.253333pt;}
.y196{bottom:746.693333pt;}
.yd2{bottom:749.333333pt;}
.ya9{bottom:751.013333pt;}
.y13e{bottom:754.373333pt;}
.y1b5{bottom:754.693333pt;}
.y16c{bottom:756.853333pt;}
.y115{bottom:761.253333pt;}
.y56{bottom:762.693333pt;}
.y3c{bottom:763.493333pt;}
.ya8{bottom:766.693333pt;}
.y7{bottom:768.373333pt;}
.y13d{bottom:769.973333pt;}
.y195{bottom:770.373333pt;}
.yfc{bottom:776.853333pt;}
.y55{bottom:778.373333pt;}
.y3b{bottom:779.093333pt;}
.y16b{bottom:780.533333pt;}
.ya7{bottom:782.293333pt;}
.y13c{bottom:785.653333pt;}
.y194{bottom:785.973333pt;}
.yfb{bottom:792.533333pt;}
.y114{bottom:792.853333pt;}
.y54{bottom:793.973333pt;}
.y3a{bottom:794.693333pt;}
.y16a{bottom:796.133333pt;}
.ya6{bottom:797.893333pt;}
.y6{bottom:800.373333pt;}
.y13b{bottom:801.253333pt;}
.y113{bottom:808.533333pt;}
.y53{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.y169{bottom:811.733333pt;}
.ya5{bottom:813.573333pt;}
.yfa{bottom:824.133333pt;}
.yca{bottom:824.533333pt;}
.y52{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y5{bottom:832.453333pt;}
.y13a{bottom:832.853333pt;}
.y1b4{bottom:833.253333pt;}
.y168{bottom:835.413333pt;}
.ya4{bottom:837.173333pt;}
.yf9{bottom:839.813333pt;}
.y112{bottom:840.133333pt;}
.y51{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y139{bottom:848.533333pt;}
.y193{bottom:848.853333pt;}
.y167{bottom:851.013333pt;}
.yf8{bottom:855.413333pt;}
.y50{bottom:856.533333pt;}
.y36{bottom:857.253333pt;}
.y138{bottom:864.133333pt;}
.y192{bottom:864.533333pt;}
.y4{bottom:866.533333pt;}
.y166{bottom:866.693333pt;}
.y111{bottom:871.813333pt;}
.y35{bottom:872.853333pt;}
.y137{bottom:879.813333pt;}
.y191{bottom:880.133333pt;}
.yf7{bottom:887.013333pt;}
.y110{bottom:887.413333pt;}
.y4f{bottom:888.133333pt;}
.y3{bottom:888.453333pt;}
.y34{bottom:888.533333pt;}
.y165{bottom:890.293333pt;}
.y136{bottom:903.440000pt;}
.y4e{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y164{bottom:905.920000pt;}
.ya2{bottom:906.480000pt;}
.yf6{bottom:918.720000pt;}
.y10f{bottom:919.040000pt;}
.y4d{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y163{bottom:921.600000pt;}
.y10e{bottom:934.720000pt;}
.y135{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y190{bottom:943.040000pt;}
.y162{bottom:945.520000pt;}
.ya1{bottom:946.400000pt;}
.yf5{bottom:950.320000pt;}
.y134{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y18f{bottom:958.720000pt;}
.y10d{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.yc9{bottom:970.320000pt;}
.y18e{bottom:974.320000pt;}
.yf4{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.ya0{bottom:986.320000pt;}
.y161{bottom:988.400000pt;}
.y2d{bottom:998.000000pt;}
.y160{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1038.000000pt;}
.y29{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:28.947812pt;}
.he{height:39.200000pt;}
.hf{height:39.226667pt;}
.hd{height:39.280000pt;}
.h3{height:39.589844pt;}
.h6{height:45.246562pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.h15{height:53.309531pt;}
.h10{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.h9{height:60.960938pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h13{height:74.560000pt;}
.h14{height:117.760000pt;}
.h12{height:145.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:91.866667pt;}
.w3{width:157.066667pt;}
.w7{width:176.320000pt;}
.w9{width:178.160000pt;}
.w8{width:223.306667pt;}
.w5{width:249.040000pt;}
.w4{width:264.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x23{left:51.039988pt;}
.x1{left:60.480000pt;}
.x7{left:85.039988pt;}
.xc{left:88.079988pt;}
.x22{left:108.479988pt;}
.x5{left:117.759988pt;}
.xa{left:143.599988pt;}
.x12{left:153.626667pt;}
.xd{left:159.706655pt;}
.x2{left:180.266655pt;}
.x21{left:186.346655pt;}
.xe{left:202.826655pt;}
.x10{left:218.826667pt;}
.x16{left:237.146655pt;}
.x1b{left:268.506655pt;}
.x1e{left:279.786655pt;}
.x18{left:281.146655pt;}
.x1c{left:291.306655pt;}
.x1a{left:292.506655pt;}
.x1f{left:296.986655pt;}
.x1d{left:304.826655pt;}
.x15{left:313.466655pt;}
.x19{left:320.106655pt;}
.x17{left:321.466655pt;}
.x13{left:330.666667pt;}
.x8{left:364.826655pt;}
.x11{left:483.813333pt;}
.x14{left:554.693333pt;}
.x20{left:556.053322pt;}
.xb{left:602.053322pt;}
.x4{left:622.053322pt;}
.x6{left:626.053322pt;}
.x9{left:638.053322pt;}
.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; }
  