
    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_07e2956070e665a66a5bfb68.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_84c2ba3a9ab555d30c34758d.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_5929517d33ba062d3568030d.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_fb9ceed303231ef638776cc3.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_d53297096c2d7ba0a241cb69.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_776cf79cdd0cd6dac5119a75.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ece1391fa55252ac2d9ff2a.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_79f1c03f4c8853f194342721.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5eb79fbd4785384b9a5d3efa.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ls26{letter-spacing:-0.444600px;}
.ls25{letter-spacing:-0.310800px;}
.lsd{letter-spacing:-0.267600px;}
.ls14{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.101400px;}
.ls6{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.ls2b{letter-spacing:-0.038880px;}
.ls2d{letter-spacing:-0.015480px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.011160px;}
.ls2a{letter-spacing:0.024120px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.108600px;}
.ls2e{letter-spacing:0.115800px;}
.ls2c{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.148200px;}
.ls12{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls11{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.180600px;}
.lsb{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls27{letter-spacing:1.173600px;}
.ls21{letter-spacing:1.530000px;}
.ls22{letter-spacing:2.610000px;}
.ls1c{letter-spacing:3.690000px;}
.ls1a{letter-spacing:4.410000px;}
.ls1b{letter-spacing:5.490000px;}
.ls1e{letter-spacing:12.333600px;}
.ls23{letter-spacing:14.490000px;}
.ls1d{letter-spacing:15.930000px;}
.ls29{letter-spacing:47.726640px;}
.ls28{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.407600px;}
.wsc{word-spacing:-13.407000px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.374600px;}
.ws14{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.335000px;}
.wsb{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.237560px;}
.ws3{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.210920px;}
.wsd{word-spacing:-13.162800px;}
.wse{word-spacing:-13.125000px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.915600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._10{margin-left:-4.346512px;}
._9{margin-left:-3.237544px;}
._8{margin-left:-2.205360px;}
._0{margin-left:-1.110000px;}
._2{width:1.252259px;}
._5{width:2.595541px;}
._6{width:3.646318px;}
._7{width:4.980969px;}
._1{width:6.206952px;}
._3{width:7.288319px;}
._4{width:8.292910px;}
._b{width:9.334865px;}
._d{width:11.182320px;}
._15{width:12.204360px;}
._c{width:14.693400px;}
._a{width:15.931800px;}
._11{width:17.675280px;}
._12{width:19.016760px;}
._13{width:20.068443px;}
._16{width:21.074280px;}
._14{width:22.452600px;}
._e{width:23.567040px;}
._f{width:24.579360px;}
._1c{width:26.152680px;}
._18{width:27.387240px;}
._17{width:28.494480px;}
._19{width:29.627280px;}
._1a{width:51.823440px;}
._1b{width:53.000400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.830000px;}
.y6a{bottom:7.920000px;}
.yc2{bottom:21.510000px;}
.y6e{bottom:21.600000px;}
.y71{bottom:35.190000px;}
.y8b{bottom:48.900000px;}
.y2{bottom:55.380000px;}
.y2b{bottom:56.190000px;}
.y83{bottom:62.550000px;}
.y76{bottom:62.580000px;}
.y7c{bottom:76.230000px;}
.y1{bottom:83.640000px;}
.y102{bottom:113.790000px;}
.yae{bottom:115.410000px;}
.yd7{bottom:124.410000px;}
.y101{bottom:131.340000px;}
.y82{bottom:132.060000px;}
.yd6{bottom:141.960000px;}
.yaf{bottom:142.680000px;}
.y12f{bottom:144.840000px;}
.y59{bottom:146.910000px;}
.y100{bottom:148.980000px;}
.y15b{bottom:149.430000px;}
.y183{bottom:151.320000px;}
.y87{bottom:159.330000px;}
.y12e{bottom:162.390000px;}
.y28{bottom:162.930000px;}
.yd5{bottom:165.990000px;}
.yff{bottom:166.530000px;}
.y15a{bottom:166.980000px;}
.y182{bottom:168.870000px;}
.yad{bottom:170.040000px;}
.y12d{bottom:179.940000px;}
.y27{bottom:180.480000px;}
.y58{bottom:182.460000px;}
.yfe{bottom:184.170000px;}
.y159{bottom:184.620000px;}
.y86{bottom:186.690000px;}
.yd4{bottom:193.260000px;}
.y181{bottom:195.510000px;}
.yac{bottom:197.400000px;}
.y12c{bottom:197.580000px;}
.y26{bottom:198.030000px;}
.yfd{bottom:201.720000px;}
.y158{bottom:211.170000px;}
.y180{bottom:213.060000px;}
.y85{bottom:214.050000px;}
.y12b{bottom:215.130000px;}
.y25{bottom:215.670000px;}
.y57{bottom:218.100000px;}
.yfc{bottom:219.270000px;}
.yd3{bottom:220.620000px;}
.y157{bottom:228.720000px;}
.y12a{bottom:232.680000px;}
.y24{bottom:233.220000px;}
.y56{bottom:235.650000px;}
.yfb{bottom:236.910000px;}
.y17f{bottom:239.610000px;}
.y84{bottom:241.410000px;}
.yab{bottom:246.090000px;}
.yd2{bottom:247.980000px;}
.y129{bottom:250.320000px;}
.y23{bottom:250.770000px;}
.y55{bottom:253.200000px;}
.yfa{bottom:254.460000px;}
.y156{bottom:255.630000px;}
.y17e{bottom:257.250000px;}
.y128{bottom:267.870000px;}
.y22{bottom:268.410000px;}
.y7b{bottom:268.680000px;}
.y54{bottom:270.840000px;}
.yaa{bottom:272.640000px;}
.yd1{bottom:275.340000px;}
.yf9{bottom:281.100000px;}
.y17d{bottom:283.800000px;}
.y127{bottom:285.510000px;}
.y21{bottom:285.960000px;}
.y53{bottom:288.390000px;}
.y81{bottom:296.040000px;}
.y17c{bottom:301.440000px;}
.y126{bottom:303.060000px;}
.y20{bottom:303.600000px;}
.y155{bottom:303.960000px;}
.ya9{bottom:308.280000px;}
.y52{bottom:314.940000px;}
.yf8{bottom:316.650000px;}
.y125{bottom:320.610000px;}
.y1f{bottom:321.150000px;}
.y80{bottom:323.400000px;}
.yd0{bottom:324.030000px;}
.ya8{bottom:325.830000px;}
.y17b{bottom:327.990000px;}
.y154{bottom:330.870000px;}
.yf7{bottom:334.200000px;}
.y1e{bottom:338.700000px;}
.ycf{bottom:341.580000px;}
.ya7{bottom:343.470000px;}
.y17a{bottom:345.540000px;}
.y124{bottom:347.250000px;}
.y51{bottom:350.580000px;}
.y7f{bottom:350.760000px;}
.yf6{bottom:351.840000px;}
.y1d{bottom:356.340000px;}
.ya6{bottom:367.410000px;}
.y153{bottom:367.860000px;}
.y50{bottom:368.130000px;}
.yce{bottom:368.220000px;}
.yf5{bottom:369.390000px;}
.y179{bottom:372.180000px;}
.y1c{bottom:373.890000px;}
.y7e{bottom:378.030000px;}
.y123{bottom:382.800000px;}
.y152{bottom:385.500000px;}
.y4f{bottom:385.770000px;}
.yf4{bottom:386.940000px;}
.y178{bottom:389.730000px;}
.ya5{bottom:394.770000px;}
.y122{bottom:400.440000px;}
.y1b{bottom:400.800000px;}
.y151{bottom:403.050000px;}
.y4e{bottom:403.320000px;}
.ycd{bottom:403.770000px;}
.yf3{bottom:404.580000px;}
.y7d{bottom:405.390000px;}
.y177{bottom:407.370000px;}
.y121{bottom:417.990000px;}
.y150{bottom:420.600000px;}
.y4d{bottom:420.870000px;}
.ycc{bottom:421.320000px;}
.ya4{bottom:422.040000px;}
.yf2{bottom:422.130000px;}
.y75{bottom:432.750000px;}
.y176{bottom:433.920000px;}
.y120{bottom:435.540000px;}
.y14f{bottom:438.240000px;}
.ycb{bottom:438.960000px;}
.yf1{bottom:439.770000px;}
.y4c{bottom:447.510000px;}
.y1a{bottom:449.130000px;}
.ya3{bottom:449.400000px;}
.y175{bottom:451.470000px;}
.y11f{bottom:453.180000px;}
.yca{bottom:456.510000px;}
.yf0{bottom:457.320000px;}
.y7a{bottom:460.020000px;}
.y14e{bottom:465.150000px;}
.y11e{bottom:470.760000px;}
.yc9{bottom:474.090000px;}
.yef{bottom:474.900000px;}
.ya2{bottom:476.790000px;}
.y174{bottom:478.140000px;}
.y4b{bottom:483.090000px;}
.y19{bottom:484.710000px;}
.y79{bottom:487.410000px;}
.y11d{bottom:488.400000px;}
.yc8{bottom:491.730000px;}
.yee{bottom:492.540000px;}
.y173{bottom:495.690000px;}
.y4a{bottom:500.730000px;}
.y14d{bottom:502.170000px;}
.y18{bottom:502.260000px;}
.y11c{bottom:505.950000px;}
.yc7{bottom:509.280000px;}
.yed{bottom:510.090000px;}
.y78{bottom:514.770000px;}
.y49{bottom:518.280000px;}
.y14c{bottom:519.720000px;}
.y17{bottom:519.900000px;}
.y172{bottom:522.330000px;}
.y11b{bottom:523.500000px;}
.ya1{bottom:525.480000px;}
.yc6{bottom:526.920000px;}
.yec{bottom:527.730000px;}
.y48{bottom:535.830000px;}
.y14b{bottom:537.360000px;}
.y16{bottom:537.450000px;}
.y171{bottom:539.880000px;}
.y11a{bottom:541.140000px;}
.y77{bottom:542.130000px;}
.ya0{bottom:543.030000px;}
.yeb{bottom:545.280000px;}
.yc4{bottom:550.860000px;}
.y47{bottom:553.470000px;}
.y14a{bottom:554.910000px;}
.y15{bottom:555.090000px;}
.y119{bottom:558.690000px;}
.yea{bottom:562.830000px;}
.y170{bottom:566.430000px;}
.y74{bottom:569.400000px;}
.y9f{bottom:569.670000px;}
.y46{bottom:571.020000px;}
.y149{bottom:572.550000px;}
.y14{bottom:572.640000px;}
.y118{bottom:576.330000px;}
.yc5{bottom:578.220000px;}
.ye9{bottom:580.470000px;}
.y16f{bottom:584.070000px;}
.y45{bottom:588.660000px;}
.y148{bottom:590.100000px;}
.y13{bottom:590.190000px;}
.y117{bottom:593.880000px;}
.y70{bottom:596.760000px;}
.ye8{bottom:598.020000px;}
.y9e{bottom:605.220000px;}
.yc3{bottom:605.490000px;}
.y44{bottom:606.210000px;}
.y147{bottom:607.650000px;}
.y12{bottom:607.830000px;}
.y16e{bottom:610.620000px;}
.y116{bottom:611.430000px;}
.ye7{bottom:615.660000px;}
.y9d{bottom:622.770000px;}
.y43{bottom:623.760000px;}
.y73{bottom:624.120000px;}
.y146{bottom:625.290000px;}
.y11{bottom:625.380000px;}
.y16d{bottom:628.260000px;}
.y115{bottom:629.070000px;}
.ybf{bottom:632.850000px;}
.y9c{bottom:640.410000px;}
.ye6{bottom:642.210000px;}
.y10{bottom:643.020000px;}
.y114{bottom:646.620000px;}
.y42{bottom:650.400000px;}
.y72{bottom:651.480000px;}
.y145{bottom:652.200000px;}
.y16c{bottom:654.810000px;}
.y9b{bottom:657.960000px;}
.yc1{bottom:660.210000px;}
.yf{bottom:660.570000px;}
.y16b{bottom:672.360000px;}
.y113{bottom:673.260000px;}
.y9a{bottom:675.600000px;}
.ye5{bottom:677.760000px;}
.ye{bottom:678.120000px;}
.y6d{bottom:678.750000px;}
.y41{bottom:685.950000px;}
.yc0{bottom:687.570000px;}
.y144{bottom:689.190000px;}
.y99{bottom:693.150000px;}
.ye4{bottom:695.400000px;}
.yd{bottom:695.760000px;}
.y16a{bottom:699.000000px;}
.y40{bottom:703.590000px;}
.y6f{bottom:706.110000px;}
.y143{bottom:706.830000px;}
.y112{bottom:708.810000px;}
.ye3{bottom:712.950000px;}
.y169{bottom:716.550000px;}
.y94{bottom:717.090000px;}
.y3f{bottom:721.140000px;}
.yc{bottom:722.670000px;}
.y142{bottom:724.380000px;}
.y111{bottom:726.360000px;}
.ye2{bottom:730.590000px;}
.y6b{bottom:733.470000px;}
.ybe{bottom:736.260000px;}
.y3e{bottom:738.690000px;}
.y141{bottom:741.930000px;}
.y168{bottom:743.190000px;}
.y110{bottom:744.000000px;}
.y98{bottom:744.450000px;}
.ye1{bottom:748.140000px;}
.ybd{bottom:753.810000px;}
.y3d{bottom:756.330000px;}
.y140{bottom:759.570000px;}
.y69{bottom:760.740000px;}
.y10f{bottom:761.550000px;}
.ye0{bottom:765.690000px;}
.yb{bottom:769.380000px;}
.y97{bottom:771.810000px;}
.y3c{bottom:773.880000px;}
.y13f{bottom:777.120000px;}
.y18c{bottom:778.290000px;}
.y10e{bottom:779.190000px;}
.ybc{bottom:780.450000px;}
.ydf{bottom:783.330000px;}
.y167{bottom:787.290000px;}
.y3b{bottom:791.520000px;}
.y13e{bottom:794.670000px;}
.y10d{bottom:796.740000px;}
.y96{bottom:799.170000px;}
.yde{bottom:800.880000px;}
.y166{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.y68{bottom:809.520000px;}
.y13d{bottom:812.310000px;}
.y10c{bottom:814.290000px;}
.ybb{bottom:816.000000px;}
.y3a{bottom:818.070000px;}
.ydd{bottom:818.520000px;}
.y18b{bottom:822.480000px;}
.y95{bottom:826.440000px;}
.y13c{bottom:829.860000px;}
.y165{bottom:831.480000px;}
.y10b{bottom:831.930000px;}
.yba{bottom:833.550000px;}
.y67{bottom:836.070000px;}
.y9{bottom:841.200000px;}
.y13b{bottom:847.500000px;}
.y164{bottom:849.030000px;}
.y10a{bottom:849.480000px;}
.yb9{bottom:851.190000px;}
.y39{bottom:853.620000px;}
.y8f{bottom:853.800000px;}
.y13a{bottom:865.050000px;}
.y18a{bottom:866.670000px;}
.y109{bottom:867.030000px;}
.y38{bottom:871.260000px;}
.y66{bottom:871.620000px;}
.yb8{bottom:875.130000px;}
.y163{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.y93{bottom:881.160000px;}
.y108{bottom:884.670000px;}
.y37{bottom:888.810000px;}
.y65{bottom:889.260000px;}
.y139{bottom:891.960000px;}
.y162{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y107{bottom:902.220000px;}
.yb7{bottom:902.490000px;}
.y36{bottom:906.450000px;}
.y64{bottom:906.810000px;}
.y92{bottom:908.430000px;}
.y189{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y106{bottom:919.860000px;}
.ydc{bottom:924.000000px;}
.y63{bottom:924.450000px;}
.y188{bottom:928.410000px;}
.y138{bottom:929.310000px;}
.yb6{bottom:929.850000px;}
.y35{bottom:933.000000px;}
.y91{bottom:935.790000px;}
.y161{bottom:937.410000px;}
.ydb{bottom:941.550000px;}
.y62{bottom:942.000000px;}
.y105{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y160{bottom:954.960000px;}
.yb5{bottom:957.120000px;}
.yda{bottom:959.190000px;}
.y61{bottom:959.550000px;}
.y90{bottom:963.150000px;}
.y34{bottom:968.910000px;}
.y187{bottom:972.600000px;}
.y60{bottom:977.190000px;}
.y137{bottom:977.550000px;}
.y15f{bottom:981.600000px;}
.y104{bottom:981.960000px;}
.yd9{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y8a{bottom:990.510000px;}
.y5f{bottom:994.740000px;}
.y136{bottom:995.190000px;}
.y15e{bottom:999.150000px;}
.y103{bottom:999.600000px;}
.yb4{bottom:1005.810000px;}
.y3{bottom:1012.320000px;}
.y135{bottom:1012.770000px;}
.y186{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y8e{bottom:1017.810000px;}
.yd8{bottom:1021.680000px;}
.y15d{bottom:1025.820000px;}
.y5e{bottom:1029.960000px;}
.y134{bottom:1030.320000px;}
.yb3{bottom:1032.480000px;}
.y32{bottom:1034.820000px;}
.y15c{bottom:1043.370000px;}
.y8d{bottom:1045.170000px;}
.y5d{bottom:1047.510000px;}
.y133{bottom:1047.960000px;}
.y31{bottom:1052.370000px;}
.y185{bottom:1060.920000px;}
.y5c{bottom:1065.150000px;}
.y132{bottom:1065.510000px;}
.yb2{bottom:1068.030000px;}
.y30{bottom:1069.920000px;}
.y8c{bottom:1072.530000px;}
.y184{bottom:1078.560000px;}
.y131{bottom:1083.150000px;}
.yb1{bottom:1085.670000px;}
.y2f{bottom:1087.560000px;}
.y5b{bottom:1091.700000px;}
.y89{bottom:1099.890000px;}
.y130{bottom:1100.700000px;}
.yb0{bottom:1103.220000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y88{bottom:1127.160000px;}
.y5a{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1176.750000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.h16{height:26.580000px;}
.hc{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.hf{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h18{height:59.973223px;}
.h1a{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h9{height:71.019492px;}
.h4{height:72.985430px;}
.h19{height:81.180000px;}
.h10{height:81.270000px;}
.h15{height:108.570000px;}
.h14{height:135.900000px;}
.h11{height:135.930000px;}
.h17{height:135.990000px;}
.h13{height:163.260000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:32.040000px;}
.w5{width:32.130000px;}
.w10{width:35.190000px;}
.wc{width:41.940000px;}
.w6{width:43.470000px;}
.wa{width:43.560000px;}
.wd{width:44.130000px;}
.we{width:48.690000px;}
.wf{width:53.280000px;}
.w15{width:63.360000px;}
.w19{width:67.050000px;}
.w17{width:79.860000px;}
.w16{width:88.200000px;}
.w1a{width:109.710000px;}
.w3{width:119.070000px;}
.w12{width:121.320000px;}
.w18{width:133.680000px;}
.w14{width:168.870000px;}
.wb{width:175.680000px;}
.w8{width:202.620000px;}
.w4{width:218.190000px;}
.w11{width:252.210000px;}
.w13{width:265.890000px;}
.w7{width:415.110000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x1d{left:111.239987px;}
.x2{left:201.539987px;}
.xc{left:228.900000px;}
.x4{left:239.070000px;}
.x16{left:252.660000px;}
.x13{left:282.000000px;}
.x9{left:306.750000px;}
.x6{left:358.950000px;}
.x17{left:374.700000px;}
.x1a{left:378.930000px;}
.xd{left:405.390000px;}
.xe{left:438.240000px;}
.x19{left:463.710000px;}
.xf{left:480.900000px;}
.xa{left:510.180000px;}
.x1b{left:513.330000px;}
.x10{left:525.750000px;}
.x14{left:534.930000px;}
.xb{left:542.940000px;}
.x18{left:544.290000px;}
.x15{left:567.780000px;}
.x11{left:575.160000px;}
.x7{left:577.860000px;}
.x1c{left:581.100000px;}
.x8{left:610.710000px;}
.x12{left:629.160000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls26{letter-spacing:-0.395200pt;}
.ls25{letter-spacing:-0.276267pt;}
.lsd{letter-spacing:-0.237867pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.090133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls2b{letter-spacing:-0.034560pt;}
.ls2d{letter-spacing:-0.013760pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.009920pt;}
.ls2a{letter-spacing:0.021440pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.096533pt;}
.ls2e{letter-spacing:0.102933pt;}
.ls2c{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.131733pt;}
.ls12{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls11{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.160533pt;}
.lsb{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls27{letter-spacing:1.043200pt;}
.ls21{letter-spacing:1.360000pt;}
.ls22{letter-spacing:2.320000pt;}
.ls1c{letter-spacing:3.280000pt;}
.ls1a{letter-spacing:3.920000pt;}
.ls1b{letter-spacing:4.880000pt;}
.ls1e{letter-spacing:10.963200pt;}
.ls23{letter-spacing:12.880000pt;}
.ls1d{letter-spacing:14.160000pt;}
.ls29{letter-spacing:42.423680pt;}
.ls28{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.917867pt;}
.wsc{word-spacing:-11.917333pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.888533pt;}
.ws14{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.853333pt;}
.wsb{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.766720pt;}
.ws3{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.743040pt;}
.wsd{word-spacing:-11.700267pt;}
.wse{word-spacing:-11.666667pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.480533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._10{margin-left:-3.863566pt;}
._9{margin-left:-2.877817pt;}
._8{margin-left:-1.960320pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.113119pt;}
._5{width:2.307147pt;}
._6{width:3.241171pt;}
._7{width:4.427528pt;}
._1{width:5.517291pt;}
._3{width:6.478506pt;}
._4{width:7.371475pt;}
._b{width:8.297657pt;}
._d{width:9.939840pt;}
._15{width:10.848320pt;}
._c{width:13.060800pt;}
._a{width:14.161600pt;}
._11{width:15.711360pt;}
._12{width:16.903786pt;}
._13{width:17.838616pt;}
._16{width:18.732693pt;}
._14{width:19.957867pt;}
._e{width:20.948480pt;}
._f{width:21.848320pt;}
._1c{width:23.246827pt;}
._18{width:24.344213pt;}
._17{width:25.328427pt;}
._19{width:26.335360pt;}
._1a{width:46.065280pt;}
._1b{width:47.111467pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.960000pt;}
.y6a{bottom:7.040000pt;}
.yc2{bottom:19.120000pt;}
.y6e{bottom:19.200000pt;}
.y71{bottom:31.280000pt;}
.y8b{bottom:43.466667pt;}
.y2{bottom:49.226667pt;}
.y2b{bottom:49.946667pt;}
.y83{bottom:55.600000pt;}
.y76{bottom:55.626667pt;}
.y7c{bottom:67.760000pt;}
.y1{bottom:74.346667pt;}
.y102{bottom:101.146667pt;}
.yae{bottom:102.586667pt;}
.yd7{bottom:110.586667pt;}
.y101{bottom:116.746667pt;}
.y82{bottom:117.386667pt;}
.yd6{bottom:126.186667pt;}
.yaf{bottom:126.826667pt;}
.y12f{bottom:128.746667pt;}
.y59{bottom:130.586667pt;}
.y100{bottom:132.426667pt;}
.y15b{bottom:132.826667pt;}
.y183{bottom:134.506667pt;}
.y87{bottom:141.626667pt;}
.y12e{bottom:144.346667pt;}
.y28{bottom:144.826667pt;}
.yd5{bottom:147.546667pt;}
.yff{bottom:148.026667pt;}
.y15a{bottom:148.426667pt;}
.y182{bottom:150.106667pt;}
.yad{bottom:151.146667pt;}
.y12d{bottom:159.946667pt;}
.y27{bottom:160.426667pt;}
.y58{bottom:162.186667pt;}
.yfe{bottom:163.706667pt;}
.y159{bottom:164.106667pt;}
.y86{bottom:165.946667pt;}
.yd4{bottom:171.786667pt;}
.y181{bottom:173.786667pt;}
.yac{bottom:175.466667pt;}
.y12c{bottom:175.626667pt;}
.y26{bottom:176.026667pt;}
.yfd{bottom:179.306667pt;}
.y158{bottom:187.706667pt;}
.y180{bottom:189.386667pt;}
.y85{bottom:190.266667pt;}
.y12b{bottom:191.226667pt;}
.y25{bottom:191.706667pt;}
.y57{bottom:193.866667pt;}
.yfc{bottom:194.906667pt;}
.yd3{bottom:196.106667pt;}
.y157{bottom:203.306667pt;}
.y12a{bottom:206.826667pt;}
.y24{bottom:207.306667pt;}
.y56{bottom:209.466667pt;}
.yfb{bottom:210.586667pt;}
.y17f{bottom:212.986667pt;}
.y84{bottom:214.586667pt;}
.yab{bottom:218.746667pt;}
.yd2{bottom:220.426667pt;}
.y129{bottom:222.506667pt;}
.y23{bottom:222.906667pt;}
.y55{bottom:225.066667pt;}
.yfa{bottom:226.186667pt;}
.y156{bottom:227.226667pt;}
.y17e{bottom:228.666667pt;}
.y128{bottom:238.106667pt;}
.y22{bottom:238.586667pt;}
.y7b{bottom:238.826667pt;}
.y54{bottom:240.746667pt;}
.yaa{bottom:242.346667pt;}
.yd1{bottom:244.746667pt;}
.yf9{bottom:249.866667pt;}
.y17d{bottom:252.266667pt;}
.y127{bottom:253.786667pt;}
.y21{bottom:254.186667pt;}
.y53{bottom:256.346667pt;}
.y81{bottom:263.146667pt;}
.y17c{bottom:267.946667pt;}
.y126{bottom:269.386667pt;}
.y20{bottom:269.866667pt;}
.y155{bottom:270.186667pt;}
.ya9{bottom:274.026667pt;}
.y52{bottom:279.946667pt;}
.yf8{bottom:281.466667pt;}
.y125{bottom:284.986667pt;}
.y1f{bottom:285.466667pt;}
.y80{bottom:287.466667pt;}
.yd0{bottom:288.026667pt;}
.ya8{bottom:289.626667pt;}
.y17b{bottom:291.546667pt;}
.y154{bottom:294.106667pt;}
.yf7{bottom:297.066667pt;}
.y1e{bottom:301.066667pt;}
.ycf{bottom:303.626667pt;}
.ya7{bottom:305.306667pt;}
.y17a{bottom:307.146667pt;}
.y124{bottom:308.666667pt;}
.y51{bottom:311.626667pt;}
.y7f{bottom:311.786667pt;}
.yf6{bottom:312.746667pt;}
.y1d{bottom:316.746667pt;}
.ya6{bottom:326.586667pt;}
.y153{bottom:326.986667pt;}
.y50{bottom:327.226667pt;}
.yce{bottom:327.306667pt;}
.yf5{bottom:328.346667pt;}
.y179{bottom:330.826667pt;}
.y1c{bottom:332.346667pt;}
.y7e{bottom:336.026667pt;}
.y123{bottom:340.266667pt;}
.y152{bottom:342.666667pt;}
.y4f{bottom:342.906667pt;}
.yf4{bottom:343.946667pt;}
.y178{bottom:346.426667pt;}
.ya5{bottom:350.906667pt;}
.y122{bottom:355.946667pt;}
.y1b{bottom:356.266667pt;}
.y151{bottom:358.266667pt;}
.y4e{bottom:358.506667pt;}
.ycd{bottom:358.906667pt;}
.yf3{bottom:359.626667pt;}
.y7d{bottom:360.346667pt;}
.y177{bottom:362.106667pt;}
.y121{bottom:371.546667pt;}
.y150{bottom:373.866667pt;}
.y4d{bottom:374.106667pt;}
.ycc{bottom:374.506667pt;}
.ya4{bottom:375.146667pt;}
.yf2{bottom:375.226667pt;}
.y75{bottom:384.666667pt;}
.y176{bottom:385.706667pt;}
.y120{bottom:387.146667pt;}
.y14f{bottom:389.546667pt;}
.ycb{bottom:390.186667pt;}
.yf1{bottom:390.906667pt;}
.y4c{bottom:397.786667pt;}
.y1a{bottom:399.226667pt;}
.ya3{bottom:399.466667pt;}
.y175{bottom:401.306667pt;}
.y11f{bottom:402.826667pt;}
.yca{bottom:405.786667pt;}
.yf0{bottom:406.506667pt;}
.y7a{bottom:408.906667pt;}
.y14e{bottom:413.466667pt;}
.y11e{bottom:418.453333pt;}
.yc9{bottom:421.413333pt;}
.yef{bottom:422.133333pt;}
.ya2{bottom:423.813333pt;}
.y174{bottom:425.013333pt;}
.y4b{bottom:429.413333pt;}
.y19{bottom:430.853333pt;}
.y79{bottom:433.253333pt;}
.y11d{bottom:434.133333pt;}
.yc8{bottom:437.093333pt;}
.yee{bottom:437.813333pt;}
.y173{bottom:440.613333pt;}
.y4a{bottom:445.093333pt;}
.y14d{bottom:446.373333pt;}
.y18{bottom:446.453333pt;}
.y11c{bottom:449.733333pt;}
.yc7{bottom:452.693333pt;}
.yed{bottom:453.413333pt;}
.y78{bottom:457.573333pt;}
.y49{bottom:460.693333pt;}
.y14c{bottom:461.973333pt;}
.y17{bottom:462.133333pt;}
.y172{bottom:464.293333pt;}
.y11b{bottom:465.333333pt;}
.ya1{bottom:467.093333pt;}
.yc6{bottom:468.373333pt;}
.yec{bottom:469.093333pt;}
.y48{bottom:476.293333pt;}
.y14b{bottom:477.653333pt;}
.y16{bottom:477.733333pt;}
.y171{bottom:479.893333pt;}
.y11a{bottom:481.013333pt;}
.y77{bottom:481.893333pt;}
.ya0{bottom:482.693333pt;}
.yeb{bottom:484.693333pt;}
.yc4{bottom:489.653333pt;}
.y47{bottom:491.973333pt;}
.y14a{bottom:493.253333pt;}
.y15{bottom:493.413333pt;}
.y119{bottom:496.613333pt;}
.yea{bottom:500.293333pt;}
.y170{bottom:503.493333pt;}
.y74{bottom:506.133333pt;}
.y9f{bottom:506.373333pt;}
.y46{bottom:507.573333pt;}
.y149{bottom:508.933333pt;}
.y14{bottom:509.013333pt;}
.y118{bottom:512.293333pt;}
.yc5{bottom:513.973333pt;}
.ye9{bottom:515.973333pt;}
.y16f{bottom:519.173333pt;}
.y45{bottom:523.253333pt;}
.y148{bottom:524.533333pt;}
.y13{bottom:524.613333pt;}
.y117{bottom:527.893333pt;}
.y70{bottom:530.453333pt;}
.ye8{bottom:531.573333pt;}
.y9e{bottom:537.973333pt;}
.yc3{bottom:538.213333pt;}
.y44{bottom:538.853333pt;}
.y147{bottom:540.133333pt;}
.y12{bottom:540.293333pt;}
.y16e{bottom:542.773333pt;}
.y116{bottom:543.493333pt;}
.ye7{bottom:547.253333pt;}
.y9d{bottom:553.573333pt;}
.y43{bottom:554.453333pt;}
.y73{bottom:554.773333pt;}
.y146{bottom:555.813333pt;}
.y11{bottom:555.893333pt;}
.y16d{bottom:558.453333pt;}
.y115{bottom:559.173333pt;}
.ybf{bottom:562.533333pt;}
.y9c{bottom:569.253333pt;}
.ye6{bottom:570.853333pt;}
.y10{bottom:571.573333pt;}
.y114{bottom:574.773333pt;}
.y42{bottom:578.133333pt;}
.y72{bottom:579.093333pt;}
.y145{bottom:579.733333pt;}
.y16c{bottom:582.053333pt;}
.y9b{bottom:584.853333pt;}
.yc1{bottom:586.853333pt;}
.yf{bottom:587.173333pt;}
.y16b{bottom:597.653333pt;}
.y113{bottom:598.453333pt;}
.y9a{bottom:600.533333pt;}
.ye5{bottom:602.453333pt;}
.ye{bottom:602.773333pt;}
.y6d{bottom:603.333333pt;}
.y41{bottom:609.733333pt;}
.yc0{bottom:611.173333pt;}
.y144{bottom:612.613333pt;}
.y99{bottom:616.133333pt;}
.ye4{bottom:618.133333pt;}
.yd{bottom:618.453333pt;}
.y16a{bottom:621.333333pt;}
.y40{bottom:625.413333pt;}
.y6f{bottom:627.653333pt;}
.y143{bottom:628.293333pt;}
.y112{bottom:630.053333pt;}
.ye3{bottom:633.733333pt;}
.y169{bottom:636.933333pt;}
.y94{bottom:637.413333pt;}
.y3f{bottom:641.013333pt;}
.yc{bottom:642.373333pt;}
.y142{bottom:643.893333pt;}
.y111{bottom:645.653333pt;}
.ye2{bottom:649.413333pt;}
.y6b{bottom:651.973333pt;}
.ybe{bottom:654.453333pt;}
.y3e{bottom:656.613333pt;}
.y141{bottom:659.493333pt;}
.y168{bottom:660.613333pt;}
.y110{bottom:661.333333pt;}
.y98{bottom:661.733333pt;}
.ye1{bottom:665.013333pt;}
.ybd{bottom:670.053333pt;}
.y3d{bottom:672.293333pt;}
.y140{bottom:675.173333pt;}
.y69{bottom:676.213333pt;}
.y10f{bottom:676.933333pt;}
.ye0{bottom:680.613333pt;}
.yb{bottom:683.893333pt;}
.y97{bottom:686.053333pt;}
.y3c{bottom:687.893333pt;}
.y13f{bottom:690.773333pt;}
.y18c{bottom:691.813333pt;}
.y10e{bottom:692.613333pt;}
.ybc{bottom:693.733333pt;}
.ydf{bottom:696.293333pt;}
.y167{bottom:699.813333pt;}
.y3b{bottom:703.573333pt;}
.y13e{bottom:706.373333pt;}
.y10d{bottom:708.213333pt;}
.y96{bottom:710.373333pt;}
.yde{bottom:711.893333pt;}
.y166{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.y68{bottom:719.573333pt;}
.y13d{bottom:722.053333pt;}
.y10c{bottom:723.813333pt;}
.ybb{bottom:725.333333pt;}
.y3a{bottom:727.173333pt;}
.ydd{bottom:727.573333pt;}
.y18b{bottom:731.093333pt;}
.y95{bottom:734.613333pt;}
.y13c{bottom:737.653333pt;}
.y165{bottom:739.093333pt;}
.y10b{bottom:739.493333pt;}
.yba{bottom:740.933333pt;}
.y67{bottom:743.173333pt;}
.y9{bottom:747.733333pt;}
.y13b{bottom:753.333333pt;}
.y164{bottom:754.693333pt;}
.y10a{bottom:755.093333pt;}
.yb9{bottom:756.613333pt;}
.y39{bottom:758.773333pt;}
.y8f{bottom:758.933333pt;}
.y13a{bottom:768.933333pt;}
.y18a{bottom:770.373333pt;}
.y109{bottom:770.693333pt;}
.y38{bottom:774.453333pt;}
.y66{bottom:774.773333pt;}
.yb8{bottom:777.893333pt;}
.y163{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.y93{bottom:783.253333pt;}
.y108{bottom:786.373333pt;}
.y37{bottom:790.053333pt;}
.y65{bottom:790.453333pt;}
.y139{bottom:792.853333pt;}
.y162{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y107{bottom:801.973333pt;}
.yb7{bottom:802.213333pt;}
.y36{bottom:805.733333pt;}
.y64{bottom:806.053333pt;}
.y92{bottom:807.493333pt;}
.y189{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y106{bottom:817.653333pt;}
.ydc{bottom:821.333333pt;}
.y63{bottom:821.733333pt;}
.y188{bottom:825.253333pt;}
.y138{bottom:826.053333pt;}
.yb6{bottom:826.533333pt;}
.y35{bottom:829.333333pt;}
.y91{bottom:831.813333pt;}
.y161{bottom:833.253333pt;}
.ydb{bottom:836.933333pt;}
.y62{bottom:837.333333pt;}
.y105{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y160{bottom:848.853333pt;}
.yb5{bottom:850.773333pt;}
.yda{bottom:852.613333pt;}
.y61{bottom:852.933333pt;}
.y90{bottom:856.133333pt;}
.y34{bottom:861.253333pt;}
.y187{bottom:864.533333pt;}
.y60{bottom:868.613333pt;}
.y137{bottom:868.933333pt;}
.y15f{bottom:872.533333pt;}
.y104{bottom:872.853333pt;}
.yd9{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y8a{bottom:880.453333pt;}
.y5f{bottom:884.213333pt;}
.y136{bottom:884.613333pt;}
.y15e{bottom:888.133333pt;}
.y103{bottom:888.533333pt;}
.yb4{bottom:894.053333pt;}
.y3{bottom:899.840000pt;}
.y135{bottom:900.240000pt;}
.y186{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y8e{bottom:904.720000pt;}
.yd8{bottom:908.160000pt;}
.y15d{bottom:911.840000pt;}
.y5e{bottom:915.520000pt;}
.y134{bottom:915.840000pt;}
.yb3{bottom:917.760000pt;}
.y32{bottom:919.840000pt;}
.y15c{bottom:927.440000pt;}
.y8d{bottom:929.040000pt;}
.y5d{bottom:931.120000pt;}
.y133{bottom:931.520000pt;}
.y31{bottom:935.440000pt;}
.y185{bottom:943.040000pt;}
.y5c{bottom:946.800000pt;}
.y132{bottom:947.120000pt;}
.yb2{bottom:949.360000pt;}
.y30{bottom:951.040000pt;}
.y8c{bottom:953.360000pt;}
.y184{bottom:958.720000pt;}
.y131{bottom:962.800000pt;}
.yb1{bottom:965.040000pt;}
.y2f{bottom:966.720000pt;}
.y5b{bottom:970.400000pt;}
.y89{bottom:977.680000pt;}
.y130{bottom:978.400000pt;}
.yb0{bottom:980.640000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y88{bottom:1001.920000pt;}
.y5a{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1046.000000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h16{height:23.626667pt;}
.hc{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.hf{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h18{height:53.309531pt;}
.h1a{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h9{height:63.128437pt;}
.h4{height:64.875937pt;}
.h19{height:72.160000pt;}
.h10{height:72.240000pt;}
.h15{height:96.506667pt;}
.h14{height:120.800000pt;}
.h11{height:120.826667pt;}
.h17{height:120.880000pt;}
.h13{height:145.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:28.480000pt;}
.w5{width:28.560000pt;}
.w10{width:31.280000pt;}
.wc{width:37.280000pt;}
.w6{width:38.640000pt;}
.wa{width:38.720000pt;}
.wd{width:39.226667pt;}
.we{width:43.280000pt;}
.wf{width:47.360000pt;}
.w15{width:56.320000pt;}
.w19{width:59.600000pt;}
.w17{width:70.986667pt;}
.w16{width:78.400000pt;}
.w1a{width:97.520000pt;}
.w3{width:105.840000pt;}
.w12{width:107.840000pt;}
.w18{width:118.826667pt;}
.w14{width:150.106667pt;}
.wb{width:156.160000pt;}
.w8{width:180.106667pt;}
.w4{width:193.946667pt;}
.w11{width:224.186667pt;}
.w13{width:236.346667pt;}
.w7{width:368.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1d{left:98.879988pt;}
.x2{left:179.146655pt;}
.xc{left:203.466667pt;}
.x4{left:212.506667pt;}
.x16{left:224.586667pt;}
.x13{left:250.666667pt;}
.x9{left:272.666667pt;}
.x6{left:319.066667pt;}
.x17{left:333.066667pt;}
.x1a{left:336.826667pt;}
.xd{left:360.346667pt;}
.xe{left:389.546667pt;}
.x19{left:412.186667pt;}
.xf{left:427.466667pt;}
.xa{left:453.493333pt;}
.x1b{left:456.293333pt;}
.x10{left:467.333333pt;}
.x14{left:475.493333pt;}
.xb{left:482.613333pt;}
.x18{left:483.813333pt;}
.x15{left:504.693333pt;}
.x11{left:511.253333pt;}
.x7{left:513.653333pt;}
.x1c{left:516.533333pt;}
.x8{left:542.853333pt;}
.x12{left:559.253333pt;}
.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; }
  