
    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_bad8f658d549edfb6243ef64.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c2e8c59c325e79496531059c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d8f6ad2eaed929e8339a4b68.woff')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_ed84502ebc5485eafc1c040f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_fb0b98fefac281fa961e8067.woff')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_f98aed9be08ee8db46174dfe.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_aa040f7d40243c354984f789.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;}
.m3{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,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:-110.160000px;}
.v6{vertical-align:-76.320000px;}
.v5{vertical-align:-69.120000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.450600px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.106560px;}
.ls18{letter-spacing:0.106800px;}
.lse{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.135360px;}
.ls1a{letter-spacing:0.135600px;}
.ls4{letter-spacing:0.169920px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls8{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.269400px;}
.ls17{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.439920px;}
.ls1c{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.620000px;}
.ls22{letter-spacing:2.880000px;}
.ls21{letter-spacing:5.220000px;}
.ls6{letter-spacing:5.940000px;}
.ls1f{letter-spacing:17.280000px;}
.ls10{letter-spacing:38.441280px;}
.ls1{letter-spacing:53.820000px;}
.lsf{letter-spacing:90.720000px;}
.ls3{letter-spacing:130.500000px;}
.ls12{letter-spacing:195.816000px;}
.ls0{letter-spacing:1336.416000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.060000px;}
.wsf{word-spacing:-17.280000px;}
.wsb{word-spacing:-16.560000px;}
.wse{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws9{word-spacing:-12.780000px;}
.ws0{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._19{margin-left:-5.065920px;}
._13{margin-left:-4.040640px;}
._c{margin-left:-2.952000px;}
._0{margin-left:-1.929600px;}
._1{width:1.114560px;}
._5{width:3.033120px;}
._10{width:4.416000px;}
._d{width:5.562720px;}
._a{width:6.578640px;}
._8{width:7.822560px;}
._9{width:8.995920px;}
._11{width:10.863360px;}
._12{width:12.585600px;}
._15{width:13.795200px;}
._f{width:18.550080px;}
._e{width:20.465280px;}
._16{width:21.594240px;}
._17{width:22.786560px;}
._1e{width:24.111360px;}
._18{width:26.118720px;}
._14{width:27.423360px;}
._1b{width:34.047360px;}
._1a{width:36.175680px;}
._1d{width:37.342080px;}
._1c{width:38.361600px;}
._1f{width:39.776640px;}
._7{width:53.103600px;}
._6{width:54.183600px;}
._2{width:187.380000px;}
._3{width:194.400000px;}
._4{width:1605.876000px;}
._b{width:1859.758800px;}
.fc7{color:rgb(52,59,76);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(255,0,255);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(7,75,185);}
.fc6{color:rgb(51,51,51);}
.fc4{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y35{bottom:2.700000px;}
.yea{bottom:5.754000px;}
.y90{bottom:5.760000px;}
.y10c{bottom:5.805000px;}
.y94{bottom:5.940000px;}
.y8b{bottom:6.480000px;}
.yab{bottom:6.510000px;}
.y34{bottom:17.100000px;}
.y89{bottom:17.460000px;}
.yf8{bottom:25.554000px;}
.y8f{bottom:25.560000px;}
.yb1{bottom:25.605000px;}
.ye9{bottom:25.734000px;}
.y93{bottom:25.740000px;}
.ycd{bottom:25.770000px;}
.yd3{bottom:25.785000px;}
.yc3{bottom:30.420000px;}
.y33{bottom:30.960000px;}
.y8e{bottom:45.360000px;}
.y9c{bottom:45.390000px;}
.yc6{bottom:45.405000px;}
.ya9{bottom:45.534000px;}
.y97{bottom:45.540000px;}
.ydf{bottom:45.570000px;}
.ya4{bottom:45.585000px;}
.yd7{bottom:53.094000px;}
.y2{bottom:55.620000px;}
.y38{bottom:56.340000px;}
.ya1{bottom:65.160000px;}
.y8d{bottom:65.340000px;}
.y116{bottom:65.385000px;}
.y1{bottom:69.300000px;}
.y37{bottom:73.620000px;}
.ya0{bottom:85.140000px;}
.y9f{bottom:104.940000px;}
.y138{bottom:105.120000px;}
.yc2{bottom:111.996000px;}
.y135{bottom:114.516000px;}
.y119{bottom:115.596000px;}
.y109{bottom:116.136000px;}
.y156{bottom:116.496000px;}
.y84{bottom:117.036000px;}
.yd6{bottom:117.576000px;}
.y30{bottom:119.736000px;}
.y173{bottom:119.916000px;}
.yf9{bottom:120.456000px;}
.ya8{bottom:120.636000px;}
.yeb{bottom:122.436000px;}
.yd5{bottom:124.920000px;}
.y134{bottom:133.596000px;}
.y155{bottom:135.576000px;}
.y83{bottom:136.116000px;}
.y2f{bottom:138.636000px;}
.y172{bottom:138.996000px;}
.y108{bottom:140.256000px;}
.yf7{bottom:144.576000px;}
.y137{bottom:144.720000px;}
.ye8{bottom:146.556000px;}
.y133{bottom:152.490000px;}
.y69{bottom:152.850000px;}
.y154{bottom:154.470000px;}
.y82{bottom:155.010000px;}
.y2e{bottom:157.530000px;}
.y171{bottom:157.890000px;}
.yc1{bottom:160.050000px;}
.y132{bottom:171.570000px;}
.y153{bottom:173.370000px;}
.y81{bottom:173.910000px;}
.y68{bottom:174.810000px;}
.y170{bottom:176.970000px;}
.y2d{bottom:177.510000px;}
.y107{bottom:182.010000px;}
.ya7{bottom:183.810000px;}
.yf6{bottom:186.330000px;}
.yd4{bottom:188.310000px;}
.y131{bottom:190.470000px;}
.y152{bottom:192.450000px;}
.y80{bottom:192.990000px;}
.y16f{bottom:195.870000px;}
.y67{bottom:196.590000px;}
.y2c{bottom:200.730000px;}
.yc0{bottom:201.810000px;}
.ye7{bottom:208.110000px;}
.y130{bottom:209.370000px;}
.y151{bottom:211.350000px;}
.y7f{bottom:211.890000px;}
.y16e{bottom:214.770000px;}
.y66{bottom:218.370000px;}
.y2b{bottom:219.630000px;}
.y106{bottom:223.770000px;}
.ya6{bottom:225.570000px;}
.y118{bottom:228.090000px;}
.y12f{bottom:228.450000px;}
.y150{bottom:230.430000px;}
.y7e{bottom:230.970000px;}
.y16d{bottom:233.850000px;}
.y65{bottom:240.150000px;}
.y2a{bottom:242.310000px;}
.y12e{bottom:247.350000px;}
.yf5{bottom:247.890000px;}
.y14f{bottom:249.330000px;}
.y7d{bottom:249.870000px;}
.ye6{bottom:250.050000px;}
.y16c{bottom:252.750000px;}
.y29{bottom:261.030000px;}
.y64{bottom:261.930000px;}
.ybf{bottom:263.550000px;}
.y105{bottom:265.530000px;}
.y12d{bottom:266.430000px;}
.ya5{bottom:267.330000px;}
.y14e{bottom:268.230000px;}
.y7c{bottom:268.770000px;}
.y117{bottom:269.850000px;}
.y16b{bottom:271.830000px;}
.y28{bottom:278.130000px;}
.y63{bottom:283.890000px;}
.y12c{bottom:285.330000px;}
.y14d{bottom:287.310000px;}
.y7b{bottom:287.850000px;}
.y16a{bottom:290.730000px;}
.ye5{bottom:291.810000px;}
.y27{bottom:295.410000px;}
.y12b{bottom:304.230000px;}
.ybe{bottom:305.310000px;}
.y62{bottom:305.670000px;}
.y14c{bottom:306.210000px;}
.y10d{bottom:307.290000px;}
.y7a{bottom:307.650000px;}
.ya3{bottom:309.090000px;}
.y169{bottom:309.630000px;}
.y115{bottom:311.610000px;}
.y26{bottom:312.690000px;}
.y12a{bottom:323.310000px;}
.y14b{bottom:325.290000px;}
.y104{bottom:327.270000px;}
.y61{bottom:327.450000px;}
.y168{bottom:328.710000px;}
.yd2{bottom:329.250000px;}
.y25{bottom:329.970000px;}
.y79{bottom:330.870000px;}
.ye4{bottom:333.570000px;}
.y129{bottom:342.210000px;}
.y14a{bottom:344.190000px;}
.ybd{bottom:347.070000px;}
.y24{bottom:347.250000px;}
.y167{bottom:348.510000px;}
.y60{bottom:349.230000px;}
.y78{bottom:349.950000px;}
.y128{bottom:361.335000px;}
.y149{bottom:363.135000px;}
.y23{bottom:364.575000px;}
.y77{bottom:368.895000px;}
.y103{bottom:369.075000px;}
.ya2{bottom:370.875000px;}
.y5f{bottom:371.055000px;}
.y166{bottom:371.775000px;}
.ye3{bottom:375.375000px;}
.y127{bottom:380.235000px;}
.y22{bottom:381.675000px;}
.y148{bottom:382.215000px;}
.y76{bottom:387.975000px;}
.ybc{bottom:388.875000px;}
.y165{bottom:390.855000px;}
.yd1{bottom:391.035000px;}
.y5e{bottom:393.015000px;}
.y126{bottom:399.135000px;}
.y21{bottom:399.495000px;}
.y147{bottom:401.115000px;}
.y75{bottom:406.875000px;}
.y164{bottom:409.755000px;}
.y10b{bottom:410.835000px;}
.y9e{bottom:412.635000px;}
.y125{bottom:418.215000px;}
.y146{bottom:420.195000px;}
.y20{bottom:421.995000px;}
.y163{bottom:428.835000px;}
.y102{bottom:430.635000px;}
.yf4{bottom:432.795000px;}
.y5d{bottom:433.875000px;}
.ye2{bottom:436.935000px;}
.y124{bottom:437.115000px;}
.y145{bottom:439.095000px;}
.y74{bottom:444.855000px;}
.y162{bottom:447.735000px;}
.ybb{bottom:450.435000px;}
.yd0{bottom:452.595000px;}
.y5c{bottom:452.955000px;}
.y114{bottom:454.755000px;}
.y123{bottom:456.195000px;}
.y1f{bottom:457.995000px;}
.y73{bottom:463.755000px;}
.y161{bottom:466.635000px;}
.y5b{bottom:471.855000px;}
.y101{bottom:472.395000px;}
.y122{bottom:475.095000px;}
.y1e{bottom:475.275000px;}
.y144{bottom:477.075000px;}
.y72{bottom:482.295000px;}
.y160{bottom:485.715000px;}
.y5a{bottom:490.935000px;}
.yba{bottom:492.195000px;}
.y1d{bottom:492.375000px;}
.y121{bottom:493.995000px;}
.ycf{bottom:494.355000px;}
.y143{bottom:495.975000px;}
.y71{bottom:497.595000px;}
.ye1{bottom:498.495000px;}
.y70{bottom:503.175000px;}
.y15f{bottom:504.615000px;}
.y59{bottom:509.835000px;}
.y120{bottom:513.075000px;}
.y100{bottom:514.155000px;}
.y1c{bottom:514.875000px;}
.y142{bottom:515.055000px;}
.y15e{bottom:524.415000px;}
.y58{bottom:528.735000px;}
.y11f{bottom:531.975000px;}
.y1b{bottom:532.155000px;}
.y9d{bottom:533.595000px;}
.yb9{bottom:533.955000px;}
.yf3{bottom:536.115000px;}
.ye0{bottom:540.255000px;}
.y1a{bottom:544.215000px;}
.y57{bottom:547.815000px;}
.y11e{bottom:551.055000px;}
.y141{bottom:553.035000px;}
.yce{bottom:555.915000px;}
.y19{bottom:566.715000px;}
.y11d{bottom:569.955000px;}
.y140{bottom:571.935000px;}
.y9b{bottom:575.535000px;}
.yb8{bottom:575.715000px;}
.yf2{bottom:577.875000px;}
.y18{bottom:578.595000px;}
.yde{bottom:582.015000px;}
.y15d{bottom:585.795000px;}
.y56{bottom:586.515000px;}
.y11c{bottom:588.855000px;}
.y13f{bottom:590.835000px;}
.ycc{bottom:597.675000px;}
.y17{bottom:601.095000px;}
.y15c{bottom:604.695000px;}
.y11b{bottom:607.935000px;}
.y55{bottom:609.915000px;}
.yb7{bottom:617.505000px;}
.y16{bottom:618.405000px;}
.yf1{bottom:619.665000px;}
.y15b{bottom:623.625000px;}
.y11a{bottom:626.865000px;}
.y54{bottom:628.845000px;}
.y15{bottom:635.685000px;}
.y9a{bottom:637.125000px;}
.ycb{bottom:639.465000px;}
.y15a{bottom:642.705000px;}
.ydd{bottom:643.785000px;}
.y13e{bottom:645.765000px;}
.y14{bottom:647.745000px;}
.y53{bottom:647.925000px;}
.yb6{bottom:659.445000px;}
.yf0{bottom:661.425000px;}
.y159{bottom:661.605000px;}
.y52{bottom:666.825000px;}
.y13{bottom:670.245000px;}
.y99{bottom:678.885000px;}
.y158{bottom:680.685000px;}
.yca{bottom:681.225000px;}
.y12{bottom:682.125000px;}
.y51{bottom:685.725000px;}
.y157{bottom:700.485000px;}
.yb5{bottom:701.205000px;}
.yef{bottom:703.185000px;}
.y11{bottom:704.625000px;}
.y50{bottom:704.805000px;}
.y13d{bottom:707.505000px;}
.y10{bottom:716.685000px;}
.y98{bottom:720.645000px;}
.yc9{bottom:722.985000px;}
.y4f{bottom:723.705000px;}
.ydc{bottom:725.145000px;}
.yf{bottom:739.185000px;}
.y4e{bottom:742.785000px;}
.yb4{bottom:742.965000px;}
.yee{bottom:744.945000px;}
.ye{bottom:751.245000px;}
.y4d{bottom:761.685000px;}
.yc8{bottom:764.925000px;}
.ydb{bottom:766.905000px;}
.yd{bottom:773.745000px;}
.y4c{bottom:780.585000px;}
.y96{bottom:782.205000px;}
.yb3{bottom:784.725000px;}
.yc{bottom:785.625000px;}
.y113{bottom:786.705000px;}
.y13c{bottom:788.865000px;}
.y4b{bottom:799.665000px;}
.yb{bottom:803.625000px;}
.yff{bottom:804.525000px;}
.yc7{bottom:806.685000px;}
.y4a{bottom:818.565000px;}
.ya{bottom:824.325000px;}
.yb2{bottom:826.485000px;}
.y112{bottom:828.465000px;}
.y13b{bottom:830.625000px;}
.y49{bottom:837.645000px;}
.y95{bottom:843.765000px;}
.y9{bottom:845.025000px;}
.y10a{bottom:846.285000px;}
.yda{bottom:848.445000px;}
.y48{bottom:856.545000px;}
.y8{bottom:865.725000px;}
.yfe{bottom:866.085000px;}
.yb0{bottom:868.245000px;}
.y111{bottom:870.405000px;}
.y47{bottom:875.445000px;}
.y92{bottom:885.570000px;}
.y7{bottom:886.290000px;}
.yed{bottom:888.090000px;}
.y13a{bottom:892.230000px;}
.y46{bottom:894.570000px;}
.y6{bottom:906.810000px;}
.yfd{bottom:907.890000px;}
.yaf{bottom:910.050000px;}
.y45{bottom:913.470000px;}
.y91{bottom:927.510000px;}
.yc5{bottom:929.850000px;}
.y110{bottom:932.010000px;}
.y44{bottom:932.550000px;}
.y139{bottom:933.990000px;}
.yfc{bottom:949.650000px;}
.y43{bottom:951.450000px;}
.yd9{bottom:951.810000px;}
.y5{bottom:962.070000px;}
.y42{bottom:970.350000px;}
.yae{bottom:971.610000px;}
.y136{bottom:975.750000px;}
.y8c{bottom:989.070000px;}
.y41{bottom:989.430000px;}
.yec{bottom:991.410000px;}
.y10f{bottom:993.570000px;}
.y40{bottom:1008.330000px;}
.yfb{bottom:1011.390000px;}
.yd8{bottom:1013.370000px;}
.y4{bottom:1017.150000px;}
.y3f{bottom:1027.410000px;}
.yad{bottom:1033.170000px;}
.y6f{bottom:1033.350000px;}
.y10e{bottom:1035.330000px;}
.y3{bottom:1039.470000px;}
.y3e{bottom:1046.310000px;}
.yfa{bottom:1053.150000px;}
.y6e{bottom:1053.690000px;}
.y3d{bottom:1065.390000px;}
.y88{bottom:1071.150000px;}
.yac{bottom:1074.930000px;}
.y6d{bottom:1075.650000px;}
.y3c{bottom:1084.290000px;}
.y8a{bottom:1093.830000px;}
.yc4{bottom:1094.910000px;}
.y6c{bottom:1097.430000px;}
.y31{bottom:1100.850000px;}
.y3b{bottom:1103.190000px;}
.y32{bottom:1108.950000px;}
.y87{bottom:1116.510000px;}
.y6b{bottom:1119.210000px;}
.y3a{bottom:1122.270000px;}
.y86{bottom:1125.330000px;}
.yaa{bottom:1135.950000px;}
.y6a{bottom:1141.020000px;}
.y39{bottom:1141.200000px;}
.y85{bottom:1142.460000px;}
.y36{bottom:1195.740000px;}
.h16{height:20.520000px;}
.h29{height:20.550000px;}
.h20{height:20.556000px;}
.h13{height:23.319141px;}
.he{height:24.840000px;}
.h9{height:38.139609px;}
.h1c{height:39.600000px;}
.h21{height:39.636000px;}
.h19{height:39.780000px;}
.h1a{height:39.816000px;}
.hf{height:42.156000px;}
.h15{height:43.200000px;}
.h22{height:44.460000px;}
.h2{height:47.344922px;}
.h10{height:50.171484px;}
.ha{height:58.621992px;}
.hc{height:58.651172px;}
.hb{height:59.019609px;}
.h18{height:59.400000px;}
.h1d{height:59.436000px;}
.h1b{height:59.580000px;}
.h1f{height:59.616000px;}
.h8{height:60.226875px;}
.h11{height:60.288750px;}
.h2b{height:64.978594px;}
.h5{height:65.010937px;}
.h14{height:66.757500px;}
.h24{height:67.140000px;}
.h12{height:68.084282px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.h7{height:74.704922px;}
.h25{height:79.200000px;}
.h26{height:79.236000px;}
.h17{height:79.380000px;}
.h28{height:79.416000px;}
.hd{height:84.898125px;}
.h4{height:96.508125px;}
.h27{height:99.180000px;}
.h1e{height:118.980000px;}
.h23{height:138.960000px;}
.h2a{height:158.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:20.520000px;}
.wb{width:20.556000px;}
.w9{width:20.700000px;}
.w5{width:40.500000px;}
.w3{width:111.996000px;}
.w6{width:169.050000px;}
.w7{width:191.010000px;}
.w8{width:279.795000px;}
.w4{width:300.675000px;}
.wc{width:681.810000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.x31{left:9.000000px;}
.x19{left:10.800000px;}
.x2e{left:12.780000px;}
.x20{left:16.380000px;}
.x24{left:64.620000px;}
.x22{left:68.394000px;}
.x32{left:76.494000px;}
.x33{left:80.094000px;}
.x34{left:82.974000px;}
.x17{left:87.870000px;}
.x1f{left:105.156000px;}
.x1{left:106.415987px;}
.xd{left:107.495987px;}
.x10{left:109.115987px;}
.xa{left:118.835987px;}
.x11{left:120.815987px;}
.x1b{left:133.235987px;}
.x21{left:145.656000px;}
.x1a{left:159.509987px;}
.x7{left:186.509987px;}
.xf{left:188.669987px;}
.x5{left:195.329987px;}
.x14{left:199.109987px;}
.xb{left:200.369987px;}
.x9{left:201.809987px;}
.x2{left:214.409987px;}
.x13{left:220.529987px;}
.x6{left:233.309987px;}
.xe{left:240.689987px;}
.xc{left:244.694987px;}
.x12{left:252.434987px;}
.x15{left:255.674987px;}
.x18{left:296.355000px;}
.x23{left:315.435000px;}
.x27{left:336.855000px;}
.x28{left:358.095000px;}
.x29{left:379.335000px;}
.x3{left:400.214987px;}
.x8{left:419.504987px;}
.x2a{left:422.025000px;}
.x2b{left:443.265000px;}
.x4{left:446.504987px;}
.x2c{left:464.685000px;}
.x2d{left:485.925000px;}
.x2f{left:504.474000px;}
.x25{left:507.165000px;}
.x1c{left:567.464987px;}
.x30{left:673.704000px;}
.x16{left:700.350000px;}
.x1d{left:764.279987px;}
.x1e{left:786.779987px;}
@media print{
.v1{vertical-align:-97.920000pt;}
.v6{vertical-align:-67.840000pt;}
.v5{vertical-align:-61.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.400533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.094720pt;}
.ls18{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.120320pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls4{letter-spacing:0.151040pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls8{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.239467pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.391040pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.440000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls21{letter-spacing:4.640000pt;}
.ls6{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:15.360000pt;}
.ls10{letter-spacing:34.170027pt;}
.ls1{letter-spacing:47.840000pt;}
.lsf{letter-spacing:80.640000pt;}
.ls3{letter-spacing:116.000000pt;}
.ls12{letter-spacing:174.058667pt;}
.ls0{letter-spacing:1187.925333pt;}
.ws6{word-spacing:-18.720000pt;}
.wsf{word-spacing:-15.360000pt;}
.wsb{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.313067pt;}
.ws3{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws9{word-spacing:-11.360000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._19{margin-left:-4.503040pt;}
._13{margin-left:-3.591680pt;}
._c{margin-left:-2.624000pt;}
._0{margin-left:-1.715200pt;}
._1{width:0.990720pt;}
._5{width:2.696107pt;}
._10{width:3.925333pt;}
._d{width:4.944640pt;}
._a{width:5.847680pt;}
._8{width:6.953387pt;}
._9{width:7.996373pt;}
._11{width:9.656320pt;}
._12{width:11.187200pt;}
._15{width:12.262400pt;}
._f{width:16.488960pt;}
._e{width:18.191360pt;}
._16{width:19.194880pt;}
._17{width:20.254720pt;}
._1e{width:21.432320pt;}
._18{width:23.216640pt;}
._14{width:24.376320pt;}
._1b{width:30.264320pt;}
._1a{width:32.156160pt;}
._1d{width:33.192960pt;}
._1c{width:34.099200pt;}
._1f{width:35.357013pt;}
._7{width:47.203200pt;}
._6{width:48.163200pt;}
._2{width:166.560000pt;}
._3{width:172.800000pt;}
._4{width:1427.445333pt;}
._b{width:1653.118933pt;}
.fs8{font-size:21.120000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.400000pt;}
.yea{bottom:5.114667pt;}
.y90{bottom:5.120000pt;}
.y10c{bottom:5.160000pt;}
.y94{bottom:5.280000pt;}
.y8b{bottom:5.760000pt;}
.yab{bottom:5.786667pt;}
.y34{bottom:15.200000pt;}
.y89{bottom:15.520000pt;}
.yf8{bottom:22.714667pt;}
.y8f{bottom:22.720000pt;}
.yb1{bottom:22.760000pt;}
.ye9{bottom:22.874667pt;}
.y93{bottom:22.880000pt;}
.ycd{bottom:22.906667pt;}
.yd3{bottom:22.920000pt;}
.yc3{bottom:27.040000pt;}
.y33{bottom:27.520000pt;}
.y8e{bottom:40.320000pt;}
.y9c{bottom:40.346667pt;}
.yc6{bottom:40.360000pt;}
.ya9{bottom:40.474667pt;}
.y97{bottom:40.480000pt;}
.ydf{bottom:40.506667pt;}
.ya4{bottom:40.520000pt;}
.yd7{bottom:47.194667pt;}
.y2{bottom:49.440000pt;}
.y38{bottom:50.080000pt;}
.ya1{bottom:57.920000pt;}
.y8d{bottom:58.080000pt;}
.y116{bottom:58.120000pt;}
.y1{bottom:61.600000pt;}
.y37{bottom:65.440000pt;}
.ya0{bottom:75.680000pt;}
.y9f{bottom:93.280000pt;}
.y138{bottom:93.440000pt;}
.yc2{bottom:99.552000pt;}
.y135{bottom:101.792000pt;}
.y119{bottom:102.752000pt;}
.y109{bottom:103.232000pt;}
.y156{bottom:103.552000pt;}
.y84{bottom:104.032000pt;}
.yd6{bottom:104.512000pt;}
.y30{bottom:106.432000pt;}
.y173{bottom:106.592000pt;}
.yf9{bottom:107.072000pt;}
.ya8{bottom:107.232000pt;}
.yeb{bottom:108.832000pt;}
.yd5{bottom:111.040000pt;}
.y134{bottom:118.752000pt;}
.y155{bottom:120.512000pt;}
.y83{bottom:120.992000pt;}
.y2f{bottom:123.232000pt;}
.y172{bottom:123.552000pt;}
.y108{bottom:124.672000pt;}
.yf7{bottom:128.512000pt;}
.y137{bottom:128.640000pt;}
.ye8{bottom:130.272000pt;}
.y133{bottom:135.546667pt;}
.y69{bottom:135.866667pt;}
.y154{bottom:137.306667pt;}
.y82{bottom:137.786667pt;}
.y2e{bottom:140.026667pt;}
.y171{bottom:140.346667pt;}
.yc1{bottom:142.266667pt;}
.y132{bottom:152.506667pt;}
.y153{bottom:154.106667pt;}
.y81{bottom:154.586667pt;}
.y68{bottom:155.386667pt;}
.y170{bottom:157.306667pt;}
.y2d{bottom:157.786667pt;}
.y107{bottom:161.786667pt;}
.ya7{bottom:163.386667pt;}
.yf6{bottom:165.626667pt;}
.yd4{bottom:167.386667pt;}
.y131{bottom:169.306667pt;}
.y152{bottom:171.066667pt;}
.y80{bottom:171.546667pt;}
.y16f{bottom:174.106667pt;}
.y67{bottom:174.746667pt;}
.y2c{bottom:178.426667pt;}
.yc0{bottom:179.386667pt;}
.ye7{bottom:184.986667pt;}
.y130{bottom:186.106667pt;}
.y151{bottom:187.866667pt;}
.y7f{bottom:188.346667pt;}
.y16e{bottom:190.906667pt;}
.y66{bottom:194.106667pt;}
.y2b{bottom:195.226667pt;}
.y106{bottom:198.906667pt;}
.ya6{bottom:200.506667pt;}
.y118{bottom:202.746667pt;}
.y12f{bottom:203.066667pt;}
.y150{bottom:204.826667pt;}
.y7e{bottom:205.306667pt;}
.y16d{bottom:207.866667pt;}
.y65{bottom:213.466667pt;}
.y2a{bottom:215.386667pt;}
.y12e{bottom:219.866667pt;}
.yf5{bottom:220.346667pt;}
.y14f{bottom:221.626667pt;}
.y7d{bottom:222.106667pt;}
.ye6{bottom:222.266667pt;}
.y16c{bottom:224.666667pt;}
.y29{bottom:232.026667pt;}
.y64{bottom:232.826667pt;}
.ybf{bottom:234.266667pt;}
.y105{bottom:236.026667pt;}
.y12d{bottom:236.826667pt;}
.ya5{bottom:237.626667pt;}
.y14e{bottom:238.426667pt;}
.y7c{bottom:238.906667pt;}
.y117{bottom:239.866667pt;}
.y16b{bottom:241.626667pt;}
.y28{bottom:247.226667pt;}
.y63{bottom:252.346667pt;}
.y12c{bottom:253.626667pt;}
.y14d{bottom:255.386667pt;}
.y7b{bottom:255.866667pt;}
.y16a{bottom:258.426667pt;}
.ye5{bottom:259.386667pt;}
.y27{bottom:262.586667pt;}
.y12b{bottom:270.426667pt;}
.ybe{bottom:271.386667pt;}
.y62{bottom:271.706667pt;}
.y14c{bottom:272.186667pt;}
.y10d{bottom:273.146667pt;}
.y7a{bottom:273.466667pt;}
.ya3{bottom:274.746667pt;}
.y169{bottom:275.226667pt;}
.y115{bottom:276.986667pt;}
.y26{bottom:277.946667pt;}
.y12a{bottom:287.386667pt;}
.y14b{bottom:289.146667pt;}
.y104{bottom:290.906667pt;}
.y61{bottom:291.066667pt;}
.y168{bottom:292.186667pt;}
.yd2{bottom:292.666667pt;}
.y25{bottom:293.306667pt;}
.y79{bottom:294.106667pt;}
.ye4{bottom:296.506667pt;}
.y129{bottom:304.186667pt;}
.y14a{bottom:305.946667pt;}
.ybd{bottom:308.506667pt;}
.y24{bottom:308.666667pt;}
.y167{bottom:309.786667pt;}
.y60{bottom:310.426667pt;}
.y78{bottom:311.066667pt;}
.y128{bottom:321.186667pt;}
.y149{bottom:322.786667pt;}
.y23{bottom:324.066667pt;}
.y77{bottom:327.906667pt;}
.y103{bottom:328.066667pt;}
.ya2{bottom:329.666667pt;}
.y5f{bottom:329.826667pt;}
.y166{bottom:330.466667pt;}
.ye3{bottom:333.666667pt;}
.y127{bottom:337.986667pt;}
.y22{bottom:339.266667pt;}
.y148{bottom:339.746667pt;}
.y76{bottom:344.866667pt;}
.ybc{bottom:345.666667pt;}
.y165{bottom:347.426667pt;}
.yd1{bottom:347.586667pt;}
.y5e{bottom:349.346667pt;}
.y126{bottom:354.786667pt;}
.y21{bottom:355.106667pt;}
.y147{bottom:356.546667pt;}
.y75{bottom:361.666667pt;}
.y164{bottom:364.226667pt;}
.y10b{bottom:365.186667pt;}
.y9e{bottom:366.786667pt;}
.y125{bottom:371.746667pt;}
.y146{bottom:373.506667pt;}
.y20{bottom:375.106667pt;}
.y163{bottom:381.186667pt;}
.y102{bottom:382.786667pt;}
.yf4{bottom:384.706667pt;}
.y5d{bottom:385.666667pt;}
.ye2{bottom:388.386667pt;}
.y124{bottom:388.546667pt;}
.y145{bottom:390.306667pt;}
.y74{bottom:395.426667pt;}
.y162{bottom:397.986667pt;}
.ybb{bottom:400.386667pt;}
.yd0{bottom:402.306667pt;}
.y5c{bottom:402.626667pt;}
.y114{bottom:404.226667pt;}
.y123{bottom:405.506667pt;}
.y1f{bottom:407.106667pt;}
.y73{bottom:412.226667pt;}
.y161{bottom:414.786667pt;}
.y5b{bottom:419.426667pt;}
.y101{bottom:419.906667pt;}
.y122{bottom:422.306667pt;}
.y1e{bottom:422.466667pt;}
.y144{bottom:424.066667pt;}
.y72{bottom:428.706667pt;}
.y160{bottom:431.746667pt;}
.y5a{bottom:436.386667pt;}
.yba{bottom:437.506667pt;}
.y1d{bottom:437.666667pt;}
.y121{bottom:439.106667pt;}
.ycf{bottom:439.426667pt;}
.y143{bottom:440.866667pt;}
.y71{bottom:442.306667pt;}
.ye1{bottom:443.106667pt;}
.y70{bottom:447.266667pt;}
.y15f{bottom:448.546667pt;}
.y59{bottom:453.186667pt;}
.y120{bottom:456.066667pt;}
.y100{bottom:457.026667pt;}
.y1c{bottom:457.666667pt;}
.y142{bottom:457.826667pt;}
.y15e{bottom:466.146667pt;}
.y58{bottom:469.986667pt;}
.y11f{bottom:472.866667pt;}
.y1b{bottom:473.026667pt;}
.y9d{bottom:474.306667pt;}
.yb9{bottom:474.626667pt;}
.yf3{bottom:476.546667pt;}
.ye0{bottom:480.226667pt;}
.y1a{bottom:483.746667pt;}
.y57{bottom:486.946667pt;}
.y11e{bottom:489.826667pt;}
.y141{bottom:491.586667pt;}
.yce{bottom:494.146667pt;}
.y19{bottom:503.746667pt;}
.y11d{bottom:506.626667pt;}
.y140{bottom:508.386667pt;}
.y9b{bottom:511.586667pt;}
.yb8{bottom:511.746667pt;}
.yf2{bottom:513.666667pt;}
.y18{bottom:514.306667pt;}
.yde{bottom:517.346667pt;}
.y15d{bottom:520.706667pt;}
.y56{bottom:521.346667pt;}
.y11c{bottom:523.426667pt;}
.y13f{bottom:525.186667pt;}
.ycc{bottom:531.266667pt;}
.y17{bottom:534.306667pt;}
.y15c{bottom:537.506667pt;}
.y11b{bottom:540.386667pt;}
.y55{bottom:542.146667pt;}
.yb7{bottom:548.893333pt;}
.y16{bottom:549.693333pt;}
.yf1{bottom:550.813333pt;}
.y15b{bottom:554.333333pt;}
.y11a{bottom:557.213333pt;}
.y54{bottom:558.973333pt;}
.y15{bottom:565.053333pt;}
.y9a{bottom:566.333333pt;}
.ycb{bottom:568.413333pt;}
.y15a{bottom:571.293333pt;}
.ydd{bottom:572.253333pt;}
.y13e{bottom:574.013333pt;}
.y14{bottom:575.773333pt;}
.y53{bottom:575.933333pt;}
.yb6{bottom:586.173333pt;}
.yf0{bottom:587.933333pt;}
.y159{bottom:588.093333pt;}
.y52{bottom:592.733333pt;}
.y13{bottom:595.773333pt;}
.y99{bottom:603.453333pt;}
.y158{bottom:605.053333pt;}
.yca{bottom:605.533333pt;}
.y12{bottom:606.333333pt;}
.y51{bottom:609.533333pt;}
.y157{bottom:622.653333pt;}
.yb5{bottom:623.293333pt;}
.yef{bottom:625.053333pt;}
.y11{bottom:626.333333pt;}
.y50{bottom:626.493333pt;}
.y13d{bottom:628.893333pt;}
.y10{bottom:637.053333pt;}
.y98{bottom:640.573333pt;}
.yc9{bottom:642.653333pt;}
.y4f{bottom:643.293333pt;}
.ydc{bottom:644.573333pt;}
.yf{bottom:657.053333pt;}
.y4e{bottom:660.253333pt;}
.yb4{bottom:660.413333pt;}
.yee{bottom:662.173333pt;}
.ye{bottom:667.773333pt;}
.y4d{bottom:677.053333pt;}
.yc8{bottom:679.933333pt;}
.ydb{bottom:681.693333pt;}
.yd{bottom:687.773333pt;}
.y4c{bottom:693.853333pt;}
.y96{bottom:695.293333pt;}
.yb3{bottom:697.533333pt;}
.yc{bottom:698.333333pt;}
.y113{bottom:699.293333pt;}
.y13c{bottom:701.213333pt;}
.y4b{bottom:710.813333pt;}
.yb{bottom:714.333333pt;}
.yff{bottom:715.133333pt;}
.yc7{bottom:717.053333pt;}
.y4a{bottom:727.613333pt;}
.ya{bottom:732.733333pt;}
.yb2{bottom:734.653333pt;}
.y112{bottom:736.413333pt;}
.y13b{bottom:738.333333pt;}
.y49{bottom:744.573333pt;}
.y95{bottom:750.013333pt;}
.y9{bottom:751.133333pt;}
.y10a{bottom:752.253333pt;}
.yda{bottom:754.173333pt;}
.y48{bottom:761.373333pt;}
.y8{bottom:769.533333pt;}
.yfe{bottom:769.853333pt;}
.yb0{bottom:771.773333pt;}
.y111{bottom:773.693333pt;}
.y47{bottom:778.173333pt;}
.y92{bottom:787.173333pt;}
.y7{bottom:787.813333pt;}
.yed{bottom:789.413333pt;}
.y13a{bottom:793.093333pt;}
.y46{bottom:795.173333pt;}
.y6{bottom:806.053333pt;}
.yfd{bottom:807.013333pt;}
.yaf{bottom:808.933333pt;}
.y45{bottom:811.973333pt;}
.y91{bottom:824.453333pt;}
.yc5{bottom:826.533333pt;}
.y110{bottom:828.453333pt;}
.y44{bottom:828.933333pt;}
.y139{bottom:830.213333pt;}
.yfc{bottom:844.133333pt;}
.y43{bottom:845.733333pt;}
.yd9{bottom:846.053333pt;}
.y5{bottom:855.173333pt;}
.y42{bottom:862.533333pt;}
.yae{bottom:863.653333pt;}
.y136{bottom:867.333333pt;}
.y8c{bottom:879.173333pt;}
.y41{bottom:879.493333pt;}
.yec{bottom:881.253333pt;}
.y10f{bottom:883.173333pt;}
.y40{bottom:896.293333pt;}
.yfb{bottom:899.013333pt;}
.yd8{bottom:900.773333pt;}
.y4{bottom:904.133333pt;}
.y3f{bottom:913.253333pt;}
.yad{bottom:918.373333pt;}
.y6f{bottom:918.533333pt;}
.y10e{bottom:920.293333pt;}
.y3{bottom:923.973333pt;}
.y3e{bottom:930.053333pt;}
.yfa{bottom:936.133333pt;}
.y6e{bottom:936.613333pt;}
.y3d{bottom:947.013333pt;}
.y88{bottom:952.133333pt;}
.yac{bottom:955.493333pt;}
.y6d{bottom:956.133333pt;}
.y3c{bottom:963.813333pt;}
.y8a{bottom:972.293333pt;}
.yc4{bottom:973.253333pt;}
.y6c{bottom:975.493333pt;}
.y31{bottom:978.533333pt;}
.y3b{bottom:980.613333pt;}
.y32{bottom:985.733333pt;}
.y87{bottom:992.453333pt;}
.y6b{bottom:994.853333pt;}
.y3a{bottom:997.573333pt;}
.y86{bottom:1000.293333pt;}
.yaa{bottom:1009.733333pt;}
.y6a{bottom:1014.240000pt;}
.y39{bottom:1014.400000pt;}
.y85{bottom:1015.520000pt;}
.y36{bottom:1062.880000pt;}
.h16{height:18.240000pt;}
.h29{height:18.266667pt;}
.h20{height:18.272000pt;}
.h13{height:20.728125pt;}
.he{height:22.080000pt;}
.h9{height:33.901875pt;}
.h1c{height:35.200000pt;}
.h21{height:35.232000pt;}
.h19{height:35.360000pt;}
.h1a{height:35.392000pt;}
.hf{height:37.472000pt;}
.h15{height:38.400000pt;}
.h22{height:39.520000pt;}
.h2{height:42.084375pt;}
.h10{height:44.596875pt;}
.ha{height:52.108438pt;}
.hc{height:52.134375pt;}
.hb{height:52.461875pt;}
.h18{height:52.800000pt;}
.h1d{height:52.832000pt;}
.h1b{height:52.960000pt;}
.h1f{height:52.992000pt;}
.h8{height:53.535000pt;}
.h11{height:53.590000pt;}
.h2b{height:57.758750pt;}
.h5{height:57.787500pt;}
.h14{height:59.340000pt;}
.h24{height:59.680000pt;}
.h12{height:60.519362pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.h7{height:66.404375pt;}
.h25{height:70.400000pt;}
.h26{height:70.432000pt;}
.h17{height:70.560000pt;}
.h28{height:70.592000pt;}
.hd{height:75.465000pt;}
.h4{height:85.785000pt;}
.h27{height:88.160000pt;}
.h1e{height:105.760000pt;}
.h23{height:123.520000pt;}
.h2a{height:141.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.240000pt;}
.wb{width:18.272000pt;}
.w9{width:18.400000pt;}
.w5{width:36.000000pt;}
.w3{width:99.552000pt;}
.w6{width:150.266667pt;}
.w7{width:169.786667pt;}
.w8{width:248.706667pt;}
.w4{width:267.266667pt;}
.wc{width:606.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.x31{left:8.000000pt;}
.x19{left:9.600000pt;}
.x2e{left:11.360000pt;}
.x20{left:14.560000pt;}
.x24{left:57.440000pt;}
.x22{left:60.794667pt;}
.x32{left:67.994667pt;}
.x33{left:71.194667pt;}
.x34{left:73.754667pt;}
.x17{left:78.106667pt;}
.x1f{left:93.472000pt;}
.x1{left:94.591988pt;}
.xd{left:95.551988pt;}
.x10{left:96.991988pt;}
.xa{left:105.631988pt;}
.x11{left:107.391988pt;}
.x1b{left:118.431988pt;}
.x21{left:129.472000pt;}
.x1a{left:141.786655pt;}
.x7{left:165.786655pt;}
.xf{left:167.706655pt;}
.x5{left:173.626655pt;}
.x14{left:176.986655pt;}
.xb{left:178.106655pt;}
.x9{left:179.386655pt;}
.x2{left:190.586655pt;}
.x13{left:196.026655pt;}
.x6{left:207.386655pt;}
.xe{left:213.946655pt;}
.xc{left:217.506655pt;}
.x12{left:224.386655pt;}
.x15{left:227.266655pt;}
.x18{left:263.426667pt;}
.x23{left:280.386667pt;}
.x27{left:299.426667pt;}
.x28{left:318.306667pt;}
.x29{left:337.186667pt;}
.x3{left:355.746655pt;}
.x8{left:372.893322pt;}
.x2a{left:375.133333pt;}
.x2b{left:394.013333pt;}
.x4{left:396.893322pt;}
.x2c{left:413.053333pt;}
.x2d{left:431.933333pt;}
.x2f{left:448.421333pt;}
.x25{left:450.813333pt;}
.x1c{left:504.413322pt;}
.x30{left:598.848000pt;}
.x16{left:622.533333pt;}
.x1d{left:679.359988pt;}
.x1e{left:699.359988pt;}
}




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