
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_02dd795e89c3b0c454308efa.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_92cca23e25e6dcc0eb6b2374.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a0a9175dd526274646af4655.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_c34ae546147149b25cf9641c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_48c8b4da935b5e27bad0d394.woff')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_1d7aea2f7859cd06998d2375.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8b4b8a5a4eae3cc79c8cbc28.woff')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;}
.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;}
.ls18{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.178800px;}
.ls19{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:47.726640px;}
.ls15{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;}
}
.ws4{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.ws7{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.220280px;}
.wsc{word-spacing:-13.101000px;}
.ws12{word-spacing:-13.072800px;}
.ws13{word-spacing:-13.047600px;}
.ws2{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._d{margin-left:-3.487200px;}
._b{margin-left:-2.148720px;}
._0{margin-left:-1.110000px;}
._2{width:1.120524px;}
._a{width:2.159425px;}
._8{width:3.547200px;}
._15{width:4.564199px;}
._4{width:5.651400px;}
._7{width:7.122000px;}
._c{width:8.597400px;}
._f{width:9.668075px;}
._5{width:11.242200px;}
._9{width:15.090000px;}
._12{width:16.172280px;}
._13{width:17.254560px;}
._14{width:18.778715px;}
._32{width:19.780663px;}
._16{width:20.825246px;}
._28{width:22.665240px;}
._17{width:23.900674px;}
._10{width:25.190400px;}
._11{width:26.194559px;}
._20{width:28.131359px;}
._6{width:29.398800px;}
._e{width:30.885719px;}
._1e{width:32.585040px;}
._1d{width:33.667200px;}
._1f{width:34.802400px;}
._2d{width:35.868240px;}
._1b{width:46.532880px;}
._1c{width:47.779800px;}
._3{width:49.320636px;}
._1{width:50.468040px;}
._34{width:54.550920px;}
._31{width:55.797120px;}
._18{width:57.294360px;}
._2f{width:62.645040px;}
._22{width:70.280280px;}
._30{width:76.412520px;}
._2b{width:83.446560px;}
._2a{width:87.534720px;}
._25{width:91.262160px;}
._29{width:100.039680px;}
._33{width:102.444480px;}
._26{width:125.049600px;}
._24{width:137.013480px;}
._35{width:142.364160px;}
._21{width:144.348120px;}
._19{width:161.602560px;}
._2e{width:168.904920px;}
._23{width:172.484280px;}
._1a{width:247.033080px;}
._27{width:328.735800px;}
._2c{width:393.545520px;}
.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;}
.y4e{bottom:7.830000px;}
.y4b{bottom:7.920000px;}
.y52{bottom:25.380000px;}
.y4d{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y57{bottom:115.050000px;}
.y85{bottom:120.270000px;}
.yd2{bottom:121.980000px;}
.y109{bottom:122.340000px;}
.ya8{bottom:124.410000px;}
.ye3{bottom:130.980000px;}
.y27{bottom:131.250000px;}
.y56{bottom:132.600000px;}
.y84{bottom:137.910000px;}
.yd1{bottom:139.530000px;}
.y108{bottom:139.980000px;}
.ya7{bottom:141.960000px;}
.y148{bottom:146.640000px;}
.y26{bottom:148.800000px;}
.y55{bottom:150.240000px;}
.y83{bottom:155.460000px;}
.yd0{bottom:157.170000px;}
.y107{bottom:157.530000px;}
.ya6{bottom:159.600000px;}
.y147{bottom:164.190000px;}
.y25{bottom:166.350000px;}
.ye2{bottom:166.530000px;}
.y82{bottom:173.100000px;}
.ycf{bottom:174.720000px;}
.y106{bottom:175.170000px;}
.y54{bottom:176.790000px;}
.ya5{bottom:177.150000px;}
.y146{bottom:181.830000px;}
.y24{bottom:183.990000px;}
.ye1{bottom:184.170000px;}
.y81{bottom:190.650000px;}
.y105{bottom:192.720000px;}
.ya4{bottom:194.700000px;}
.y121{bottom:197.220000px;}
.yce{bottom:201.270000px;}
.y23{bottom:201.540000px;}
.ye0{bottom:201.720000px;}
.y145{bottom:208.380000px;}
.y53{bottom:209.820000px;}
.y104{bottom:210.270000px;}
.y80{bottom:217.200000px;}
.y22{bottom:219.090000px;}
.ydf{bottom:219.270000px;}
.ya3{bottom:221.340000px;}
.y144{bottom:225.930000px;}
.y103{bottom:227.910000px;}
.y120{bottom:232.500000px;}
.y21{bottom:236.730000px;}
.ycd{bottom:236.910000px;}
.y102{bottom:245.460000px;}
.y143{bottom:252.570000px;}
.y7f{bottom:252.840000px;}
.y20{bottom:254.280000px;}
.ycc{bottom:254.460000px;}
.y51{bottom:254.730000px;}
.ya2{bottom:256.890000px;}
.y101{bottom:263.100000px;}
.y11f{bottom:267.870000px;}
.y142{bottom:270.120000px;}
.y7e{bottom:270.390000px;}
.ycb{bottom:272.100000px;}
.ya1{bottom:274.530000px;}
.y100{bottom:280.650000px;}
.y1f{bottom:280.920000px;}
.y11e{bottom:285.510000px;}
.y7d{bottom:287.940000px;}
.yca{bottom:289.650000px;}
.ya0{bottom:292.080000px;}
.y141{bottom:296.760000px;}
.y50{bottom:299.640000px;}
.y11d{bottom:303.060000px;}
.y7c{bottom:305.580000px;}
.yc9{bottom:307.200000px;}
.y9f{bottom:309.630000px;}
.y140{bottom:314.310000px;}
.y1e{bottom:316.470000px;}
.y11c{bottom:320.610000px;}
.y7b{bottom:323.130000px;}
.yc8{bottom:324.840000px;}
.y9e{bottom:327.270000px;}
.y13f{bottom:331.860000px;}
.y1d{bottom:334.020000px;}
.y11b{bottom:338.250000px;}
.y7a{bottom:340.770000px;}
.yc7{bottom:342.390000px;}
.yff{bottom:343.110000px;}
.y4f{bottom:344.550000px;}
.y9d{bottom:344.820000px;}
.y1c{bottom:351.660000px;}
.y11a{bottom:355.800000px;}
.y79{bottom:358.320000px;}
.y13e{bottom:358.500000px;}
.yc6{bottom:359.940000px;}
.y9c{bottom:362.370000px;}
.y1b{bottom:369.210000px;}
.y119{bottom:373.440000px;}
.y78{bottom:375.870000px;}
.y13d{bottom:376.050000px;}
.yc5{bottom:377.580000px;}
.y9b{bottom:380.010000px;}
.yde{bottom:386.580000px;}
.y1a{bottom:386.850000px;}
.y4c{bottom:389.460000px;}
.y118{bottom:390.990000px;}
.yfe{bottom:391.440000px;}
.y77{bottom:393.510000px;}
.y13c{bottom:393.690000px;}
.yc4{bottom:395.130000px;}
.y9a{bottom:397.560000px;}
.y19{bottom:404.400000px;}
.y117{bottom:408.540000px;}
.yfd{bottom:408.990000px;}
.yc3{bottom:412.770000px;}
.y99{bottom:415.200000px;}
.y76{bottom:420.060000px;}
.y13b{bottom:420.240000px;}
.ydd{bottom:422.490000px;}
.y116{bottom:426.180000px;}
.yfc{bottom:426.540000px;}
.yc2{bottom:430.320000px;}
.y18{bottom:430.950000px;}
.y4a{bottom:434.370000px;}
.y13a{bottom:437.790000px;}
.y98{bottom:441.750000px;}
.y115{bottom:443.730000px;}
.yfb{bottom:444.180000px;}
.y139{bottom:455.430000px;}
.y75{bottom:455.700000px;}
.yc1{bottom:456.870000px;}
.y114{bottom:461.370000px;}
.yfa{bottom:461.730000px;}
.y17{bottom:466.860000px;}
.ydc{bottom:470.760000px;}
.y138{bottom:473.010000px;}
.y74{bottom:473.280000px;}
.y97{bottom:477.690000px;}
.y113{bottom:478.950000px;}
.yf9{bottom:479.400000px;}
.y49{bottom:483.090000px;}
.ydb{bottom:488.400000px;}
.y73{bottom:490.830000px;}
.yc0{bottom:492.810000px;}
.y112{bottom:496.500000px;}
.yf8{bottom:496.950000px;}
.y137{bottom:499.920000px;}
.yda{bottom:505.950000px;}
.y72{bottom:508.470000px;}
.yf7{bottom:514.500000px;}
.y16{bottom:515.490000px;}
.y48{bottom:518.730000px;}
.y111{bottom:523.140000px;}
.yd9{bottom:523.500000px;}
.y96{bottom:525.930000px;}
.y71{bottom:526.020000px;}
.yf6{bottom:532.140000px;}
.y47{bottom:536.280000px;}
.ybf{bottom:541.140000px;}
.y95{bottom:543.570000px;}
.y70{bottom:543.660000px;}
.y136{bottom:548.160000px;}
.yf5{bottom:549.690000px;}
.y15{bottom:552.570000px;}
.y46{bottom:553.830000px;}
.ybe{bottom:558.690000px;}
.y94{bottom:561.120000px;}
.y6f{bottom:561.210000px;}
.y135{bottom:565.800000px;}
.yf4{bottom:567.330000px;}
.y14{bottom:570.120000px;}
.y45{bottom:571.470000px;}
.ybd{bottom:576.330000px;}
.y6e{bottom:578.760000px;}
.y134{bottom:583.350000px;}
.yf3{bottom:584.880000px;}
.y13{bottom:587.670000px;}
.y44{bottom:589.020000px;}
.ybc{bottom:593.880000px;}
.y93{bottom:596.310000px;}
.y6d{bottom:596.400000px;}
.y133{bottom:600.990000px;}
.yf2{bottom:602.430000px;}
.y12{bottom:605.310000px;}
.y43{bottom:606.660000px;}
.ybb{bottom:611.430000px;}
.y92{bottom:613.860000px;}
.y132{bottom:618.540000px;}
.y11{bottom:622.860000px;}
.y6c{bottom:622.950000px;}
.y42{bottom:624.210000px;}
.yba{bottom:629.070000px;}
.y91{bottom:631.500000px;}
.y131{bottom:636.090000px;}
.y10{bottom:640.500000px;}
.y41{bottom:641.760000px;}
.yb9{bottom:646.620000px;}
.y90{bottom:649.050000px;}
.y130{bottom:653.730000px;}
.yf{bottom:658.050000px;}
.y6b{bottom:658.860000px;}
.y40{bottom:659.400000px;}
.yb8{bottom:664.260000px;}
.yf1{bottom:664.620000px;}
.y8f{bottom:666.690000px;}
.y12f{bottom:671.280000px;}
.ye{bottom:675.600000px;}
.yb7{bottom:681.810000px;}
.yf0{bottom:682.260000px;}
.y8e{bottom:684.240000px;}
.y3f{bottom:685.950000px;}
.y12e{bottom:688.920000px;}
.yd{bottom:693.240000px;}
.yb6{bottom:699.360000px;}
.yef{bottom:699.810000px;}
.y12d{bottom:706.470000px;}
.y6a{bottom:707.190000px;}
.yc{bottom:710.790000px;}
.yb5{bottom:717.000000px;}
.yee{bottom:717.360000px;}
.y3e{bottom:721.590000px;}
.y12c{bottom:724.020000px;}
.y69{bottom:724.740000px;}
.yd8{bottom:726.000000px;}
.yb{bottom:728.430000px;}
.yb4{bottom:734.550000px;}
.yed{bottom:735.000000px;}
.y3d{bottom:739.140000px;}
.y12b{bottom:741.660000px;}
.y8d{bottom:746.250000px;}
.y110{bottom:752.190000px;}
.yec{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y3c{bottom:756.690000px;}
.y12a{bottom:759.210000px;}
.y68{bottom:760.290000px;}
.y8c{bottom:761.010000px;}
.yb3{bottom:761.190000px;}
.yd7{bottom:761.550000px;}
.y10f{bottom:769.740000px;}
.yeb{bottom:770.190000px;}
.y3b{bottom:774.330000px;}
.y129{bottom:776.850000px;}
.y67{bottom:777.930000px;}
.y14c{bottom:778.740000px;}
.yd6{bottom:779.190000px;}
.yea{bottom:787.740000px;}
.y3a{bottom:791.880000px;}
.y66{bottom:795.480000px;}
.y10e{bottom:796.290000px;}
.yb2{bottom:796.740000px;}
.y9{bottom:803.580000px;}
.y128{bottom:803.760000px;}
.ye9{bottom:805.290000px;}
.y8b{bottom:805.920000px;}
.y39{bottom:809.520000px;}
.y14b{bottom:813.930000px;}
.yb1{bottom:814.290000px;}
.ye8{bottom:822.930000px;}
.y38{bottom:827.070000px;}
.y65{bottom:831.030000px;}
.yb0{bottom:831.930000px;}
.y8{bottom:839.130000px;}
.ye7{bottom:840.480000px;}
.y37{bottom:844.620000px;}
.y64{bottom:848.670000px;}
.y127{bottom:849.390000px;}
.yaf{bottom:849.480000px;}
.y8a{bottom:850.920000px;}
.ye6{bottom:858.030000px;}
.y63{bottom:866.220000px;}
.yae{bottom:867.030000px;}
.y36{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.ye5{bottom:875.670000px;}
.yad{bottom:884.670000px;}
.y14a{bottom:893.220000px;}
.y126{bottom:894.300000px;}
.y89{bottom:895.830000px;}
.y62{bottom:901.860000px;}
.yac{bottom:902.220000px;}
.y35{bottom:907.170000px;}
.y6{bottom:910.950000px;}
.y61{bottom:919.410000px;}
.yab{bottom:919.860000px;}
.y60{bottom:936.960000px;}
.yaa{bottom:937.410000px;}
.ye4{bottom:937.860000px;}
.y125{bottom:939.210000px;}
.y88{bottom:940.740000px;}
.y5{bottom:947.040000px;}
.ya9{bottom:954.960000px;}
.y34{bottom:955.410000px;}
.y5f{bottom:972.600000px;}
.y33{bottom:972.960000px;}
.yd5{bottom:981.600000px;}
.y124{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.y87{bottom:985.650000px;}
.y5e{bottom:990.150000px;}
.y32{bottom:990.600000px;}
.y149{bottom:999.150000px;}
.y10d{bottom:1007.790000px;}
.y31{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y5d{bottom:1016.820000px;}
.yd4{bottom:1017.180000px;}
.y10c{bottom:1025.370000px;}
.y30{bottom:1025.820000px;}
.y123{bottom:1029.060000px;}
.y86{bottom:1034.370000px;}
.yd3{bottom:1034.820000px;}
.y10b{bottom:1042.920000px;}
.y2f{bottom:1043.370000px;}
.y5c{bottom:1052.370000px;}
.y2e{bottom:1060.920000px;}
.y10a{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.y122{bottom:1073.970000px;}
.y2d{bottom:1078.560000px;}
.y5a{bottom:1087.560000px;}
.y2c{bottom:1096.110000px;}
.y59{bottom:1105.110000px;}
.y2b{bottom:1113.750000px;}
.y58{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hb{height:44.190000px;}
.hf{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:122.970000px;}
.wb{width:152.760000px;}
.w4{width:166.410000px;}
.w5{width:174.180000px;}
.w3{width:181.380000px;}
.w8{width:183.060000px;}
.wd{width:192.450000px;}
.we{width:193.500000px;}
.wc{width:214.830000px;}
.wa{width:218.250000px;}
.w9{width:229.260000px;}
.w6{width:231.480000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x9{left:192.450000px;}
.x2{left:202.799987px;}
.xc{left:222.240000px;}
.x5{left:250.950000px;}
.xa{left:376.230000px;}
.x6{left:418.080000px;}
.xd{left:437.790000px;}
.x7{left:592.980000px;}
.xb{left:606.210000px;}
.xe{left:630.960000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.158933pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.ws7{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.751360pt;}
.wsc{word-spacing:-11.645333pt;}
.ws12{word-spacing:-11.620267pt;}
.ws13{word-spacing:-11.597867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._d{margin-left:-3.099734pt;}
._b{margin-left:-1.909973pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.996021pt;}
._a{width:1.919489pt;}
._8{width:3.153067pt;}
._15{width:4.057066pt;}
._4{width:5.023467pt;}
._7{width:6.330667pt;}
._c{width:7.642134pt;}
._f{width:8.593844pt;}
._5{width:9.993066pt;}
._9{width:13.413333pt;}
._12{width:14.375360pt;}
._13{width:15.337387pt;}
._14{width:16.692191pt;}
._32{width:17.582812pt;}
._16{width:18.511329pt;}
._28{width:20.146880pt;}
._17{width:21.245044pt;}
._10{width:22.391467pt;}
._11{width:23.284053pt;}
._20{width:25.005653pt;}
._6{width:26.132267pt;}
._e{width:27.453972pt;}
._1e{width:28.964480pt;}
._1d{width:29.926400pt;}
._1f{width:30.935467pt;}
._2d{width:31.882880pt;}
._1b{width:41.362560pt;}
._1c{width:42.470933pt;}
._3{width:43.840565pt;}
._1{width:44.860480pt;}
._34{width:48.489707pt;}
._31{width:49.597440pt;}
._18{width:50.928320pt;}
._2f{width:55.684480pt;}
._22{width:62.471360pt;}
._30{width:67.922240pt;}
._2b{width:74.174720pt;}
._2a{width:77.808640pt;}
._25{width:81.121920pt;}
._29{width:88.924160pt;}
._33{width:91.061760pt;}
._26{width:111.155200pt;}
._24{width:121.789760pt;}
._35{width:126.545920pt;}
._21{width:128.309440pt;}
._19{width:143.646720pt;}
._2e{width:150.137707pt;}
._23{width:153.319360pt;}
._1a{width:219.584960pt;}
._27{width:292.209600pt;}
._2c{width:349.818240pt;}
.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;}
.y4e{bottom:6.960000pt;}
.y4b{bottom:7.040000pt;}
.y52{bottom:22.560000pt;}
.y4d{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y57{bottom:102.266667pt;}
.y85{bottom:106.906667pt;}
.yd2{bottom:108.426667pt;}
.y109{bottom:108.746667pt;}
.ya8{bottom:110.586667pt;}
.ye3{bottom:116.426667pt;}
.y27{bottom:116.666667pt;}
.y56{bottom:117.866667pt;}
.y84{bottom:122.586667pt;}
.yd1{bottom:124.026667pt;}
.y108{bottom:124.426667pt;}
.ya7{bottom:126.186667pt;}
.y148{bottom:130.346667pt;}
.y26{bottom:132.266667pt;}
.y55{bottom:133.546667pt;}
.y83{bottom:138.186667pt;}
.yd0{bottom:139.706667pt;}
.y107{bottom:140.026667pt;}
.ya6{bottom:141.866667pt;}
.y147{bottom:145.946667pt;}
.y25{bottom:147.866667pt;}
.ye2{bottom:148.026667pt;}
.y82{bottom:153.866667pt;}
.ycf{bottom:155.306667pt;}
.y106{bottom:155.706667pt;}
.y54{bottom:157.146667pt;}
.ya5{bottom:157.466667pt;}
.y146{bottom:161.626667pt;}
.y24{bottom:163.546667pt;}
.ye1{bottom:163.706667pt;}
.y81{bottom:169.466667pt;}
.y105{bottom:171.306667pt;}
.ya4{bottom:173.066667pt;}
.y121{bottom:175.306667pt;}
.yce{bottom:178.906667pt;}
.y23{bottom:179.146667pt;}
.ye0{bottom:179.306667pt;}
.y145{bottom:185.226667pt;}
.y53{bottom:186.506667pt;}
.y104{bottom:186.906667pt;}
.y80{bottom:193.066667pt;}
.y22{bottom:194.746667pt;}
.ydf{bottom:194.906667pt;}
.ya3{bottom:196.746667pt;}
.y144{bottom:200.826667pt;}
.y103{bottom:202.586667pt;}
.y120{bottom:206.666667pt;}
.y21{bottom:210.426667pt;}
.ycd{bottom:210.586667pt;}
.y102{bottom:218.186667pt;}
.y143{bottom:224.506667pt;}
.y7f{bottom:224.746667pt;}
.y20{bottom:226.026667pt;}
.ycc{bottom:226.186667pt;}
.y51{bottom:226.426667pt;}
.ya2{bottom:228.346667pt;}
.y101{bottom:233.866667pt;}
.y11f{bottom:238.106667pt;}
.y142{bottom:240.106667pt;}
.y7e{bottom:240.346667pt;}
.ycb{bottom:241.866667pt;}
.ya1{bottom:244.026667pt;}
.y100{bottom:249.466667pt;}
.y1f{bottom:249.706667pt;}
.y11e{bottom:253.786667pt;}
.y7d{bottom:255.946667pt;}
.yca{bottom:257.466667pt;}
.ya0{bottom:259.626667pt;}
.y141{bottom:263.786667pt;}
.y50{bottom:266.346667pt;}
.y11d{bottom:269.386667pt;}
.y7c{bottom:271.626667pt;}
.yc9{bottom:273.066667pt;}
.y9f{bottom:275.226667pt;}
.y140{bottom:279.386667pt;}
.y1e{bottom:281.306667pt;}
.y11c{bottom:284.986667pt;}
.y7b{bottom:287.226667pt;}
.yc8{bottom:288.746667pt;}
.y9e{bottom:290.906667pt;}
.y13f{bottom:294.986667pt;}
.y1d{bottom:296.906667pt;}
.y11b{bottom:300.666667pt;}
.y7a{bottom:302.906667pt;}
.yc7{bottom:304.346667pt;}
.yff{bottom:304.986667pt;}
.y4f{bottom:306.266667pt;}
.y9d{bottom:306.506667pt;}
.y1c{bottom:312.586667pt;}
.y11a{bottom:316.266667pt;}
.y79{bottom:318.506667pt;}
.y13e{bottom:318.666667pt;}
.yc6{bottom:319.946667pt;}
.y9c{bottom:322.106667pt;}
.y1b{bottom:328.186667pt;}
.y119{bottom:331.946667pt;}
.y78{bottom:334.106667pt;}
.y13d{bottom:334.266667pt;}
.yc5{bottom:335.626667pt;}
.y9b{bottom:337.786667pt;}
.yde{bottom:343.626667pt;}
.y1a{bottom:343.866667pt;}
.y4c{bottom:346.186667pt;}
.y118{bottom:347.546667pt;}
.yfe{bottom:347.946667pt;}
.y77{bottom:349.786667pt;}
.y13c{bottom:349.946667pt;}
.yc4{bottom:351.226667pt;}
.y9a{bottom:353.386667pt;}
.y19{bottom:359.466667pt;}
.y117{bottom:363.146667pt;}
.yfd{bottom:363.546667pt;}
.yc3{bottom:366.906667pt;}
.y99{bottom:369.066667pt;}
.y76{bottom:373.386667pt;}
.y13b{bottom:373.546667pt;}
.ydd{bottom:375.546667pt;}
.y116{bottom:378.826667pt;}
.yfc{bottom:379.146667pt;}
.yc2{bottom:382.506667pt;}
.y18{bottom:383.066667pt;}
.y4a{bottom:386.106667pt;}
.y13a{bottom:389.146667pt;}
.y98{bottom:392.666667pt;}
.y115{bottom:394.426667pt;}
.yfb{bottom:394.826667pt;}
.y139{bottom:404.826667pt;}
.y75{bottom:405.066667pt;}
.yc1{bottom:406.106667pt;}
.y114{bottom:410.106667pt;}
.yfa{bottom:410.426667pt;}
.y17{bottom:414.986667pt;}
.ydc{bottom:418.453333pt;}
.y138{bottom:420.453333pt;}
.y74{bottom:420.693333pt;}
.y97{bottom:424.613333pt;}
.y113{bottom:425.733333pt;}
.yf9{bottom:426.133333pt;}
.y49{bottom:429.413333pt;}
.ydb{bottom:434.133333pt;}
.y73{bottom:436.293333pt;}
.yc0{bottom:438.053333pt;}
.y112{bottom:441.333333pt;}
.yf8{bottom:441.733333pt;}
.y137{bottom:444.373333pt;}
.yda{bottom:449.733333pt;}
.y72{bottom:451.973333pt;}
.yf7{bottom:457.333333pt;}
.y16{bottom:458.213333pt;}
.y48{bottom:461.093333pt;}
.y111{bottom:465.013333pt;}
.yd9{bottom:465.333333pt;}
.y96{bottom:467.493333pt;}
.y71{bottom:467.573333pt;}
.yf6{bottom:473.013333pt;}
.y47{bottom:476.693333pt;}
.ybf{bottom:481.013333pt;}
.y95{bottom:483.173333pt;}
.y70{bottom:483.253333pt;}
.y136{bottom:487.253333pt;}
.yf5{bottom:488.613333pt;}
.y15{bottom:491.173333pt;}
.y46{bottom:492.293333pt;}
.ybe{bottom:496.613333pt;}
.y94{bottom:498.773333pt;}
.y6f{bottom:498.853333pt;}
.y135{bottom:502.933333pt;}
.yf4{bottom:504.293333pt;}
.y14{bottom:506.773333pt;}
.y45{bottom:507.973333pt;}
.ybd{bottom:512.293333pt;}
.y6e{bottom:514.453333pt;}
.y134{bottom:518.533333pt;}
.yf3{bottom:519.893333pt;}
.y13{bottom:522.373333pt;}
.y44{bottom:523.573333pt;}
.ybc{bottom:527.893333pt;}
.y93{bottom:530.053333pt;}
.y6d{bottom:530.133333pt;}
.y133{bottom:534.213333pt;}
.yf2{bottom:535.493333pt;}
.y12{bottom:538.053333pt;}
.y43{bottom:539.253333pt;}
.ybb{bottom:543.493333pt;}
.y92{bottom:545.653333pt;}
.y132{bottom:549.813333pt;}
.y11{bottom:553.653333pt;}
.y6c{bottom:553.733333pt;}
.y42{bottom:554.853333pt;}
.yba{bottom:559.173333pt;}
.y91{bottom:561.333333pt;}
.y131{bottom:565.413333pt;}
.y10{bottom:569.333333pt;}
.y41{bottom:570.453333pt;}
.yb9{bottom:574.773333pt;}
.y90{bottom:576.933333pt;}
.y130{bottom:581.093333pt;}
.yf{bottom:584.933333pt;}
.y6b{bottom:585.653333pt;}
.y40{bottom:586.133333pt;}
.yb8{bottom:590.453333pt;}
.yf1{bottom:590.773333pt;}
.y8f{bottom:592.613333pt;}
.y12f{bottom:596.693333pt;}
.ye{bottom:600.533333pt;}
.yb7{bottom:606.053333pt;}
.yf0{bottom:606.453333pt;}
.y8e{bottom:608.213333pt;}
.y3f{bottom:609.733333pt;}
.y12e{bottom:612.373333pt;}
.yd{bottom:616.213333pt;}
.yb6{bottom:621.653333pt;}
.yef{bottom:622.053333pt;}
.y12d{bottom:627.973333pt;}
.y6a{bottom:628.613333pt;}
.yc{bottom:631.813333pt;}
.yb5{bottom:637.333333pt;}
.yee{bottom:637.653333pt;}
.y3e{bottom:641.413333pt;}
.y12c{bottom:643.573333pt;}
.y69{bottom:644.213333pt;}
.yd8{bottom:645.333333pt;}
.yb{bottom:647.493333pt;}
.yb4{bottom:652.933333pt;}
.yed{bottom:653.333333pt;}
.y3d{bottom:657.013333pt;}
.y12b{bottom:659.253333pt;}
.y8d{bottom:663.333333pt;}
.y110{bottom:668.613333pt;}
.yec{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y3c{bottom:672.613333pt;}
.y12a{bottom:674.853333pt;}
.y68{bottom:675.813333pt;}
.y8c{bottom:676.453333pt;}
.yb3{bottom:676.613333pt;}
.yd7{bottom:676.933333pt;}
.y10f{bottom:684.213333pt;}
.yeb{bottom:684.613333pt;}
.y3b{bottom:688.293333pt;}
.y129{bottom:690.533333pt;}
.y67{bottom:691.493333pt;}
.y14c{bottom:692.213333pt;}
.yd6{bottom:692.613333pt;}
.yea{bottom:700.213333pt;}
.y3a{bottom:703.893333pt;}
.y66{bottom:707.093333pt;}
.y10e{bottom:707.813333pt;}
.yb2{bottom:708.213333pt;}
.y9{bottom:714.293333pt;}
.y128{bottom:714.453333pt;}
.ye9{bottom:715.813333pt;}
.y8b{bottom:716.373333pt;}
.y39{bottom:719.573333pt;}
.y14b{bottom:723.493333pt;}
.yb1{bottom:723.813333pt;}
.ye8{bottom:731.493333pt;}
.y38{bottom:735.173333pt;}
.y65{bottom:738.693333pt;}
.yb0{bottom:739.493333pt;}
.y8{bottom:745.893333pt;}
.ye7{bottom:747.093333pt;}
.y37{bottom:750.773333pt;}
.y64{bottom:754.373333pt;}
.y127{bottom:755.013333pt;}
.yaf{bottom:755.093333pt;}
.y8a{bottom:756.373333pt;}
.ye6{bottom:762.693333pt;}
.y63{bottom:769.973333pt;}
.yae{bottom:770.693333pt;}
.y36{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.ye5{bottom:778.373333pt;}
.yad{bottom:786.373333pt;}
.y14a{bottom:793.973333pt;}
.y126{bottom:794.933333pt;}
.y89{bottom:796.293333pt;}
.y62{bottom:801.653333pt;}
.yac{bottom:801.973333pt;}
.y35{bottom:806.373333pt;}
.y6{bottom:809.733333pt;}
.y61{bottom:817.253333pt;}
.yab{bottom:817.653333pt;}
.y60{bottom:832.853333pt;}
.yaa{bottom:833.253333pt;}
.ye4{bottom:833.653333pt;}
.y125{bottom:834.853333pt;}
.y88{bottom:836.213333pt;}
.y5{bottom:841.813333pt;}
.ya9{bottom:848.853333pt;}
.y34{bottom:849.253333pt;}
.y5f{bottom:864.533333pt;}
.y33{bottom:864.853333pt;}
.yd5{bottom:872.533333pt;}
.y124{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.y87{bottom:876.133333pt;}
.y5e{bottom:880.133333pt;}
.y32{bottom:880.533333pt;}
.y149{bottom:888.133333pt;}
.y10d{bottom:895.813333pt;}
.y31{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y5d{bottom:903.840000pt;}
.yd4{bottom:904.160000pt;}
.y10c{bottom:911.440000pt;}
.y30{bottom:911.840000pt;}
.y123{bottom:914.720000pt;}
.y86{bottom:919.440000pt;}
.yd3{bottom:919.840000pt;}
.y10b{bottom:927.040000pt;}
.y2f{bottom:927.440000pt;}
.y5c{bottom:935.440000pt;}
.y2e{bottom:943.040000pt;}
.y10a{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.y122{bottom:954.640000pt;}
.y2d{bottom:958.720000pt;}
.y5a{bottom:966.720000pt;}
.y2c{bottom:974.320000pt;}
.y59{bottom:982.320000pt;}
.y2b{bottom:990.000000pt;}
.y58{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hb{height:39.280000pt;}
.hf{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:109.306667pt;}
.wb{width:135.786667pt;}
.w4{width:147.920000pt;}
.w5{width:154.826667pt;}
.w3{width:161.226667pt;}
.w8{width:162.720000pt;}
.wd{width:171.066667pt;}
.we{width:172.000000pt;}
.wc{width:190.960000pt;}
.wa{width:194.000000pt;}
.w9{width:203.786667pt;}
.w6{width:205.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x9{left:171.066667pt;}
.x2{left:180.266655pt;}
.xc{left:197.546667pt;}
.x5{left:223.066667pt;}
.xa{left:334.426667pt;}
.x6{left:371.626667pt;}
.xd{left:389.146667pt;}
.x7{left:527.093333pt;}
.xb{left:538.853333pt;}
.xe{left:560.853333pt;}
.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; }
  