
    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_1a030cc5e3bf4d8350646a09.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9fd8231beeaba0472eac04ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_7ace353527b6b797e2dc524b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_53a3e32a52999875fbf63aec.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_ffca61f62a3590ebada1fe5c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_750f74fef8fd4d51d46ae6bd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_0804997d1219b34880394180.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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:ffb;src:url('chunks/assets/font_c180a48585b0f50288c906e8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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:ffc;src:url('chunks/assets/font_dd72cf4bb97a84c684cd812e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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:ffd;src:url('chunks/assets/font_c7eb1a8e351029dc1e8f3cff.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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:fff;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a064129aefcfedab38c1bbda.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-2.520000px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.127200px;}
.ls14{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.066240px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls13{letter-spacing:0.900000px;}
.ls15{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.wse{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.732960px;}
.ws10{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._17{margin-left:-7.863120px;}
._6{margin-left:-5.048640px;}
._4{margin-left:-3.961680px;}
._3{margin-left:-2.334000px;}
._0{margin-left:-1.134000px;}
._1{width:1.110000px;}
._5{width:2.766000px;}
._2{width:4.620000px;}
._c{width:5.658720px;}
._7{width:7.230960px;}
._d{width:8.606880px;}
._10{width:10.278720px;}
._a{width:11.546160px;}
._9{width:12.848400px;}
._15{width:13.864320px;}
._8{width:16.698480px;}
._18{width:17.973120px;}
._11{width:19.025760px;}
._12{width:20.297520px;}
._14{width:21.321360px;}
._13{width:22.410000px;}
._b{width:28.027440px;}
._f{width:31.852080px;}
._e{width:33.166800px;}
._19{width:45.740160px;}
._16{width:849.360000px;}
.fc6{color:rgb(54,95,145);}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y48{bottom:3.240000px;}
.y4{bottom:3.636000px;}
.y4d{bottom:3.960000px;}
.y95{bottom:4.320000px;}
.y90{bottom:4.500000px;}
.y93{bottom:4.530000px;}
.y97{bottom:4.680000px;}
.ya4{bottom:4.725000px;}
.y1a{bottom:4.860000px;}
.yf{bottom:9.540000px;}
.y4b{bottom:10.620000px;}
.y1d{bottom:12.600000px;}
.yd{bottom:13.860000px;}
.y3{bottom:20.016000px;}
.y47{bottom:20.565000px;}
.y4c{bottom:22.140000px;}
.y4a{bottom:25.200000px;}
.y19{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y46{bottom:37.845000px;}
.y18{bottom:45.765000px;}
.yb{bottom:46.620000px;}
.y6{bottom:47.340000px;}
.y45{bottom:55.125000px;}
.y17{bottom:61.605000px;}
.y1{bottom:68.400000px;}
.y16{bottom:72.045000px;}
.y44{bottom:72.225000px;}
.ya{bottom:73.440000px;}
.y43{bottom:89.505000px;}
.y15{bottom:90.405000px;}
.y9{bottom:93.090000px;}
.y42{bottom:106.785000px;}
.y14{bottom:109.305000px;}
.y8{bottom:111.450000px;}
.y41{bottom:124.065000px;}
.ycc{bottom:127.296000px;}
.y8f{bottom:134.856000px;}
.y13{bottom:135.045000px;}
.y10d{bottom:139.176000px;}
.y40{bottom:141.345000px;}
.ycb{bottom:142.056000px;}
.y11e{bottom:143.316000px;}
.y10c{bottom:156.450000px;}
.y8e{bottom:158.430000px;}
.y3f{bottom:158.445000px;}
.yca{bottom:160.050000px;}
.y11d{bottom:160.590000px;}
.y12{bottom:160.785000px;}
.y55{bottom:161.130000px;}
.y10b{bottom:173.730000px;}
.y8d{bottom:175.710000px;}
.y3e{bottom:175.725000px;}
.y11c{bottom:177.870000px;}
.yc9{bottom:178.050000px;}
.y54{bottom:178.410000px;}
.y11{bottom:185.265000px;}
.y10a{bottom:191.010000px;}
.y8c{bottom:192.990000px;}
.y3d{bottom:193.005000px;}
.y11b{bottom:194.970000px;}
.y53{bottom:195.690000px;}
.yc8{bottom:196.050000px;}
.y2d{bottom:199.485000px;}
.y109{bottom:208.110000px;}
.y8b{bottom:210.090000px;}
.y3c{bottom:210.285000px;}
.y11a{bottom:212.250000px;}
.y52{bottom:212.790000px;}
.yc7{bottom:214.050000px;}
.y2c{bottom:214.785000px;}
.y108{bottom:225.390000px;}
.y8a{bottom:227.370000px;}
.y3b{bottom:227.565000px;}
.y119{bottom:229.530000px;}
.y51{bottom:230.070000px;}
.yc6{bottom:232.050000px;}
.y2b{bottom:232.245000px;}
.y107{bottom:242.670000px;}
.y89{bottom:244.650000px;}
.y3a{bottom:244.845000px;}
.y118{bottom:246.810000px;}
.y50{bottom:247.350000px;}
.y2a{bottom:249.525000px;}
.yf5{bottom:250.230000px;}
.yc5{bottom:253.290000px;}
.y106{bottom:259.950000px;}
.y88{bottom:261.930000px;}
.y39{bottom:261.945000px;}
.y117{bottom:264.090000px;}
.y4f{bottom:264.630000px;}
.y29{bottom:266.805000px;}
.yf4{bottom:267.510000px;}
.yc4{bottom:270.570000px;}
.y105{bottom:277.230000px;}
.y87{bottom:279.210000px;}
.y38{bottom:279.255000px;}
.y116{bottom:281.370000px;}
.y4e{bottom:281.910000px;}
.y28{bottom:284.655000px;}
.yf3{bottom:284.790000px;}
.yc3{bottom:287.850000px;}
.y104{bottom:294.510000px;}
.y49{bottom:295.950000px;}
.y86{bottom:296.310000px;}
.y37{bottom:296.535000px;}
.yfa{bottom:296.670000px;}
.y115{bottom:298.470000px;}
.yf2{bottom:301.890000px;}
.y27{bottom:302.115000px;}
.yc2{bottom:305.130000px;}
.yfd{bottom:308.550000px;}
.yf9{bottom:310.710000px;}
.y103{bottom:311.610000px;}
.y85{bottom:313.590000px;}
.y36{bottom:313.815000px;}
.y114{bottom:315.750000px;}
.yf1{bottom:319.170000px;}
.y26{bottom:319.395000px;}
.yc1{bottom:322.410000px;}
.y102{bottom:325.830000px;}
.y84{bottom:330.870000px;}
.y35{bottom:331.095000px;}
.y1e{bottom:332.490000px;}
.y113{bottom:333.030000px;}
.yf0{bottom:336.495000px;}
.y25{bottom:336.855000px;}
.yc0{bottom:337.215000px;}
.y83{bottom:348.195000px;}
.y34{bottom:348.375000px;}
.y112{bottom:350.355000px;}
.yef{bottom:351.255000px;}
.y24{bottom:354.135000px;}
.ybf{bottom:358.095000px;}
.y33{bottom:365.475000px;}
.y111{bottom:367.635000px;}
.yee{bottom:371.415000px;}
.y23{bottom:371.595000px;}
.ybe{bottom:378.435000px;}
.y32{bottom:382.755000px;}
.y110{bottom:384.915000px;}
.y22{bottom:389.055000px;}
.yed{bottom:392.115000px;}
.ybd{bottom:398.955000px;}
.y82{bottom:399.855000px;}
.y31{bottom:400.035000px;}
.y10f{bottom:402.015000px;}
.y21{bottom:409.215000px;}
.yec{bottom:412.815000px;}
.y30{bottom:417.315000px;}
.y81{bottom:418.215000px;}
.y10e{bottom:419.295000px;}
.ybc{bottom:419.835000px;}
.yeb{bottom:433.515000px;}
.y2f{bottom:434.595000px;}
.y80{bottom:436.575000px;}
.y20{bottom:436.755000px;}
.ybb{bottom:443.595000px;}
.y2e{bottom:451.875000px;}
.y7f{bottom:453.855000px;}
.yea{bottom:454.215000px;}
.y1f{bottom:454.395000px;}
.yba{bottom:460.695000px;}
.y7e{bottom:471.135000px;}
.ye9{bottom:474.915000px;}
.yb9{bottom:477.975000px;}
.y7d{bottom:488.235000px;}
.yb8{bottom:495.255000px;}
.y7c{bottom:505.515000px;}
.yb7{bottom:510.015000px;}
.ye8{bottom:515.955000px;}
.y7b{bottom:522.795000px;}
.yb6{bottom:531.075000px;}
.ye7{bottom:539.895000px;}
.y7a{bottom:540.075000px;}
.yb5{bottom:551.415000px;}
.ye6{bottom:557.175000px;}
.y79{bottom:557.355000px;}
.ye5{bottom:574.455000px;}
.y78{bottom:574.635000px;}
.yb4{bottom:575.175000px;}
.ye4{bottom:591.555000px;}
.y77{bottom:591.735000px;}
.yb3{bottom:592.455000px;}
.ye3{bottom:608.865000px;}
.y76{bottom:609.045000px;}
.yb2{bottom:609.765000px;}
.yff{bottom:610.125000px;}
.yfe{bottom:624.165000px;}
.ye2{bottom:626.145000px;}
.y75{bottom:626.325000px;}
.yb1{bottom:627.045000px;}
.ye1{bottom:640.905000px;}
.y74{bottom:643.605000px;}
.yb0{bottom:644.325000px;}
.yaf{bottom:659.085000px;}
.y73{bottom:660.885000px;}
.ye0{bottom:661.425000px;}
.y101{bottom:677.985000px;}
.y72{bottom:678.165000px;}
.yae{bottom:679.785000px;}
.ydf{bottom:682.305000px;}
.y100{bottom:693.645000px;}
.y71{bottom:695.265000px;}
.yad{bottom:700.485000px;}
.yde{bottom:702.645000px;}
.y70{bottom:712.545000px;}
.yf8{bottom:717.585000px;}
.yac{bottom:720.645000px;}
.yfc{bottom:721.545000px;}
.ydd{bottom:723.165000px;}
.y6f{bottom:729.825000px;}
.yf7{bottom:731.625000px;}
.yfb{bottom:735.585000px;}
.ydc{bottom:744.045000px;}
.yab{bottom:744.585000px;}
.y6e{bottom:747.105000px;}
.yaa{bottom:761.865000px;}
.y6d{bottom:764.385000px;}
.ydb{bottom:764.565000px;}
.yf6{bottom:775.905000px;}
.ya9{bottom:779.145000px;}
.y6c{bottom:781.665000px;}
.yda{bottom:785.085000px;}
.ya8{bottom:796.245000px;}
.y1b{bottom:798.225000px;}
.y6b{bottom:798.765000px;}
.yd9{bottom:805.785000px;}
.ya7{bottom:813.525000px;}
.y6a{bottom:816.045000px;}
.y10{bottom:827.925000px;}
.ya6{bottom:828.285000px;}
.yd8{bottom:829.545000px;}
.y69{bottom:833.325000px;}
.yd7{bottom:846.825000px;}
.ya5{bottom:848.805000px;}
.y68{bottom:850.605000px;}
.yd6{bottom:864.105000px;}
.y67{bottom:867.885000px;}
.ya3{bottom:869.325000px;}
.yd5{bottom:881.430000px;}
.y66{bottom:885.030000px;}
.ya2{bottom:890.250000px;}
.yd4{bottom:898.530000px;}
.y65{bottom:902.310000px;}
.ya1{bottom:914.010000px;}
.yd3{bottom:915.810000px;}
.y64{bottom:919.590000px;}
.yd2{bottom:930.570000px;}
.ya0{bottom:931.290000px;}
.y63{bottom:936.870000px;}
.y9f{bottom:948.390000px;}
.yd1{bottom:951.450000px;}
.y62{bottom:954.150000px;}
.y9e{bottom:965.670000px;}
.y61{bottom:971.430000px;}
.yd0{bottom:972.150000px;}
.y9d{bottom:982.950000px;}
.y60{bottom:988.530000px;}
.ycf{bottom:992.490000px;}
.y9c{bottom:1000.230000px;}
.y5f{bottom:1005.810000px;}
.yce{bottom:1013.190000px;}
.y9b{bottom:1017.510000px;}
.y5e{bottom:1023.090000px;}
.ye{bottom:1028.310000px;}
.y9a{bottom:1032.270000px;}
.ycd{bottom:1033.530000px;}
.y5d{bottom:1040.370000px;}
.y99{bottom:1052.790000px;}
.y7{bottom:1053.510000px;}
.y5c{bottom:1057.650000px;}
.y98{bottom:1073.130000px;}
.y5b{bottom:1074.930000px;}
.y5a{bottom:1092.030000px;}
.y96{bottom:1093.290000px;}
.y59{bottom:1109.310000px;}
.y94{bottom:1113.990000px;}
.y58{bottom:1126.590000px;}
.y92{bottom:1134.150000px;}
.y57{bottom:1143.900000px;}
.y91{bottom:1154.520000px;}
.y56{bottom:1161.180000px;}
.h2c{height:17.280000px;}
.h27{height:19.440000px;}
.h24{height:19.620000px;}
.h26{height:19.656000px;}
.h25{height:19.800000px;}
.h28{height:19.980000px;}
.h2b{height:20.160000px;}
.h29{height:20.196000px;}
.h2a{height:20.340000px;}
.hd{height:24.840000px;}
.h16{height:29.700000px;}
.h14{height:31.923633px;}
.h15{height:32.103633px;}
.h13{height:35.806641px;}
.ha{height:36.180000px;}
.h20{height:36.540000px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h1d{height:42.186445px;}
.h23{height:43.506914px;}
.h1c{height:43.681992px;}
.hf{height:44.002969px;}
.hc{height:44.820000px;}
.h5{height:47.223633px;}
.h19{height:47.980898px;}
.h22{height:48.027656px;}
.h2d{height:48.312422px;}
.h2{height:49.356000px;}
.h1b{height:49.742227px;}
.h21{height:52.260820px;}
.h4{height:53.709961px;}
.hb{height:54.000000px;}
.h3{height:55.291992px;}
.h1a{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h7{height:65.884219px;}
.h6{height:67.824844px;}
.h9{height:71.613281px;}
.h17{height:73.722656px;}
.h8{height:121.536000px;}
.he{height:200.370000px;}
.h18{height:465.735000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w2d{width:142.920000px;}
.w29{width:143.280000px;}
.w13{width:148.356000px;}
.w10{width:148.716000px;}
.w5{width:155.370000px;}
.w2c{width:174.450000px;}
.w28{width:175.170000px;}
.w2a{width:177.510000px;}
.w26{width:177.870000px;}
.w39{width:188.670000px;}
.w36{width:189.030000px;}
.w1f{width:198.210000px;}
.w1d{width:198.570000px;}
.w1b{width:204.870000px;}
.w18{width:205.230000px;}
.w25{width:212.250000px;}
.w22{width:212.610000px;}
.w8{width:220.935000px;}
.wf{width:225.570000px;}
.wc{width:225.930000px;}
.w38{width:230.610000px;}
.w35{width:231.330000px;}
.w31{width:236.055000px;}
.w2e{width:236.415000px;}
.w33{width:245.910000px;}
.we{width:246.090000px;}
.w30{width:246.270000px;}
.wb{width:246.810000px;}
.w1a{width:248.610000px;}
.w17{width:249.330000px;}
.w2b{width:249.555000px;}
.w27{width:250.275000px;}
.w24{width:259.230000px;}
.w21{width:259.950000px;}
.w32{width:260.670000px;}
.w2f{width:261.390000px;}
.w15{width:268.410000px;}
.w12{width:268.770000px;}
.wd{width:270.075000px;}
.wa{width:270.435000px;}
.w23{width:271.155000px;}
.w20{width:271.515000px;}
.w19{width:290.235000px;}
.w16{width:290.595000px;}
.w37{width:319.935000px;}
.w34{width:320.295000px;}
.w3d{width:323.670000px;}
.w3b{width:324.030000px;}
.w14{width:325.875000px;}
.w11{width:326.595000px;}
.w3c{width:419.685000px;}
.w3a{width:420.045000px;}
.w9{width:526.395000px;}
.w1e{width:549.825000px;}
.w1c{width:550.185000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.x40{left:22.140000px;}
.x3b{left:25.236000px;}
.xd{left:30.096000px;}
.x3d{left:32.625000px;}
.x11{left:41.796000px;}
.x52{left:45.225000px;}
.x42{left:52.020000px;}
.x23{left:53.136000px;}
.x44{left:55.800000px;}
.x34{left:56.925000px;}
.x28{left:58.185000px;}
.xe{left:59.256000px;}
.x31{left:61.245000px;}
.x1e{left:63.936000px;}
.x30{left:65.025000px;}
.x17{left:67.680000px;}
.x26{left:68.940000px;}
.x4d{left:70.596000px;}
.x1{left:72.360000px;}
.x4a{left:73.620000px;}
.x53{left:75.105000px;}
.x47{left:76.536000px;}
.x29{left:78.690000px;}
.x43{left:79.740000px;}
.x4{left:80.999987px;}
.x25{left:84.270000px;}
.x37{left:86.805000px;}
.x39{left:88.590000px;}
.x21{left:90.000000px;}
.x1c{left:95.265000px;}
.x4b{left:96.330000px;}
.x5{left:98.130000px;}
.x4e{left:101.550000px;}
.x4c{left:103.545000px;}
.x15{left:108.035987px;}
.x12{left:111.090000px;}
.x5c{left:112.710000px;}
.x41{left:113.805000px;}
.x10{left:116.850000px;}
.x19{left:118.110000px;}
.x1b{left:119.520000px;}
.x45{left:121.005000px;}
.x36{left:122.070000px;}
.x38{left:125.850000px;}
.x57{left:127.650000px;}
.x2b{left:129.810000px;}
.x2a{left:131.610000px;}
.x16{left:135.035987px;}
.x55{left:151.050000px;}
.x22{left:156.105000px;}
.x2f{left:157.350000px;}
.x58{left:161.670000px;}
.x59{left:166.710000px;}
.x5a{left:170.490000px;}
.x5b{left:175.890000px;}
.xf{left:216.075000px;}
.x1f{left:221.970000px;}
.x6{left:228.270000px;}
.x2d{left:240.735000px;}
.x3c{left:251.130000px;}
.x3a{left:265.709987px;}
.x9{left:285.015000px;}
.x13{left:293.835000px;}
.x2c{left:298.694987px;}
.x4f{left:299.774987px;}
.x48{left:309.675000px;}
.x1d{left:320.654987px;}
.x60{left:321.914987px;}
.x54{left:322.994987px;}
.x66{left:328.574987px;}
.x24{left:337.574987px;}
.x7{left:342.975000px;}
.x1a{left:344.055000px;}
.x35{left:345.135000px;}
.x32{left:346.754987px;}
.x46{left:355.214987px;}
.x5d{left:358.994987px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.xc{left:373.575000px;}
.x50{left:393.555000px;}
.x62{left:446.474987px;}
.xa{left:452.280000px;}
.x56{left:493.305000px;}
.x3e{left:501.405000px;}
.x20{left:548.565000px;}
.x49{left:571.065000px;}
.x18{left:590.505000px;}
.x61{left:600.584987px;}
.x63{left:602.384987px;}
.x33{left:604.725000px;}
.x64{left:606.524987px;}
.x27{left:613.185000px;}
.x67{left:614.804987px;}
.x2e{left:623.445000px;}
.x51{left:624.885000px;}
.x5e{left:646.664987px;}
.x5f{left:647.924987px;}
.x3f{left:676.590000px;}
.x3{left:745.890000px;}
.x65{left:781.889987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-2.240000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.058880pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls13{letter-spacing:0.800000pt;}
.ls15{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.wse{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.651520pt;}
.ws10{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._17{margin-left:-6.989440pt;}
._6{margin-left:-4.487680pt;}
._4{margin-left:-3.521493pt;}
._3{margin-left:-2.074667pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.986667pt;}
._5{width:2.458667pt;}
._2{width:4.106667pt;}
._c{width:5.029973pt;}
._7{width:6.427520pt;}
._d{width:7.650560pt;}
._10{width:9.136640pt;}
._a{width:10.263253pt;}
._9{width:11.420800pt;}
._15{width:12.323840pt;}
._8{width:14.843093pt;}
._18{width:15.976107pt;}
._11{width:16.911787pt;}
._12{width:18.042240pt;}
._14{width:18.952320pt;}
._13{width:19.920000pt;}
._b{width:24.913280pt;}
._f{width:28.312960pt;}
._e{width:29.481600pt;}
._19{width:40.657920pt;}
._16{width:754.986667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y48{bottom:2.880000pt;}
.y4{bottom:3.232000pt;}
.y4d{bottom:3.520000pt;}
.y95{bottom:3.840000pt;}
.y90{bottom:4.000000pt;}
.y93{bottom:4.026667pt;}
.y97{bottom:4.160000pt;}
.ya4{bottom:4.200000pt;}
.y1a{bottom:4.320000pt;}
.yf{bottom:8.480000pt;}
.y4b{bottom:9.440000pt;}
.y1d{bottom:11.200000pt;}
.yd{bottom:12.320000pt;}
.y3{bottom:17.792000pt;}
.y47{bottom:18.280000pt;}
.y4c{bottom:19.680000pt;}
.y4a{bottom:22.400000pt;}
.y19{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y46{bottom:33.640000pt;}
.y18{bottom:40.680000pt;}
.yb{bottom:41.440000pt;}
.y6{bottom:42.080000pt;}
.y45{bottom:49.000000pt;}
.y17{bottom:54.760000pt;}
.y1{bottom:60.800000pt;}
.y16{bottom:64.040000pt;}
.y44{bottom:64.200000pt;}
.ya{bottom:65.280000pt;}
.y43{bottom:79.560000pt;}
.y15{bottom:80.360000pt;}
.y9{bottom:82.746667pt;}
.y42{bottom:94.920000pt;}
.y14{bottom:97.160000pt;}
.y8{bottom:99.066667pt;}
.y41{bottom:110.280000pt;}
.ycc{bottom:113.152000pt;}
.y8f{bottom:119.872000pt;}
.y13{bottom:120.040000pt;}
.y10d{bottom:123.712000pt;}
.y40{bottom:125.640000pt;}
.ycb{bottom:126.272000pt;}
.y11e{bottom:127.392000pt;}
.y10c{bottom:139.066667pt;}
.y8e{bottom:140.826667pt;}
.y3f{bottom:140.840000pt;}
.yca{bottom:142.266667pt;}
.y11d{bottom:142.746667pt;}
.y12{bottom:142.920000pt;}
.y55{bottom:143.226667pt;}
.y10b{bottom:154.426667pt;}
.y8d{bottom:156.186667pt;}
.y3e{bottom:156.200000pt;}
.y11c{bottom:158.106667pt;}
.yc9{bottom:158.266667pt;}
.y54{bottom:158.586667pt;}
.y11{bottom:164.680000pt;}
.y10a{bottom:169.786667pt;}
.y8c{bottom:171.546667pt;}
.y3d{bottom:171.560000pt;}
.y11b{bottom:173.306667pt;}
.y53{bottom:173.946667pt;}
.yc8{bottom:174.266667pt;}
.y2d{bottom:177.320000pt;}
.y109{bottom:184.986667pt;}
.y8b{bottom:186.746667pt;}
.y3c{bottom:186.920000pt;}
.y11a{bottom:188.666667pt;}
.y52{bottom:189.146667pt;}
.yc7{bottom:190.266667pt;}
.y2c{bottom:190.920000pt;}
.y108{bottom:200.346667pt;}
.y8a{bottom:202.106667pt;}
.y3b{bottom:202.280000pt;}
.y119{bottom:204.026667pt;}
.y51{bottom:204.506667pt;}
.yc6{bottom:206.266667pt;}
.y2b{bottom:206.440000pt;}
.y107{bottom:215.706667pt;}
.y89{bottom:217.466667pt;}
.y3a{bottom:217.640000pt;}
.y118{bottom:219.386667pt;}
.y50{bottom:219.866667pt;}
.y2a{bottom:221.800000pt;}
.yf5{bottom:222.426667pt;}
.yc5{bottom:225.146667pt;}
.y106{bottom:231.066667pt;}
.y88{bottom:232.826667pt;}
.y39{bottom:232.840000pt;}
.y117{bottom:234.746667pt;}
.y4f{bottom:235.226667pt;}
.y29{bottom:237.160000pt;}
.yf4{bottom:237.786667pt;}
.yc4{bottom:240.506667pt;}
.y105{bottom:246.426667pt;}
.y87{bottom:248.186667pt;}
.y38{bottom:248.226667pt;}
.y116{bottom:250.106667pt;}
.y4e{bottom:250.586667pt;}
.y28{bottom:253.026667pt;}
.yf3{bottom:253.146667pt;}
.yc3{bottom:255.866667pt;}
.y104{bottom:261.786667pt;}
.y49{bottom:263.066667pt;}
.y86{bottom:263.386667pt;}
.y37{bottom:263.586667pt;}
.yfa{bottom:263.706667pt;}
.y115{bottom:265.306667pt;}
.yf2{bottom:268.346667pt;}
.y27{bottom:268.546667pt;}
.yc2{bottom:271.226667pt;}
.yfd{bottom:274.266667pt;}
.yf9{bottom:276.186667pt;}
.y103{bottom:276.986667pt;}
.y85{bottom:278.746667pt;}
.y36{bottom:278.946667pt;}
.y114{bottom:280.666667pt;}
.yf1{bottom:283.706667pt;}
.y26{bottom:283.906667pt;}
.yc1{bottom:286.586667pt;}
.y102{bottom:289.626667pt;}
.y84{bottom:294.106667pt;}
.y35{bottom:294.306667pt;}
.y1e{bottom:295.546667pt;}
.y113{bottom:296.026667pt;}
.yf0{bottom:299.106667pt;}
.y25{bottom:299.426667pt;}
.yc0{bottom:299.746667pt;}
.y83{bottom:309.506667pt;}
.y34{bottom:309.666667pt;}
.y112{bottom:311.426667pt;}
.yef{bottom:312.226667pt;}
.y24{bottom:314.786667pt;}
.ybf{bottom:318.306667pt;}
.y33{bottom:324.866667pt;}
.y111{bottom:326.786667pt;}
.yee{bottom:330.146667pt;}
.y23{bottom:330.306667pt;}
.ybe{bottom:336.386667pt;}
.y32{bottom:340.226667pt;}
.y110{bottom:342.146667pt;}
.y22{bottom:345.826667pt;}
.yed{bottom:348.546667pt;}
.ybd{bottom:354.626667pt;}
.y82{bottom:355.426667pt;}
.y31{bottom:355.586667pt;}
.y10f{bottom:357.346667pt;}
.y21{bottom:363.746667pt;}
.yec{bottom:366.946667pt;}
.y30{bottom:370.946667pt;}
.y81{bottom:371.746667pt;}
.y10e{bottom:372.706667pt;}
.ybc{bottom:373.186667pt;}
.yeb{bottom:385.346667pt;}
.y2f{bottom:386.306667pt;}
.y80{bottom:388.066667pt;}
.y20{bottom:388.226667pt;}
.ybb{bottom:394.306667pt;}
.y2e{bottom:401.666667pt;}
.y7f{bottom:403.426667pt;}
.yea{bottom:403.746667pt;}
.y1f{bottom:403.906667pt;}
.yba{bottom:409.506667pt;}
.y7e{bottom:418.786667pt;}
.ye9{bottom:422.146667pt;}
.yb9{bottom:424.866667pt;}
.y7d{bottom:433.986667pt;}
.yb8{bottom:440.226667pt;}
.y7c{bottom:449.346667pt;}
.yb7{bottom:453.346667pt;}
.ye8{bottom:458.626667pt;}
.y7b{bottom:464.706667pt;}
.yb6{bottom:472.066667pt;}
.ye7{bottom:479.906667pt;}
.y7a{bottom:480.066667pt;}
.yb5{bottom:490.146667pt;}
.ye6{bottom:495.266667pt;}
.y79{bottom:495.426667pt;}
.ye5{bottom:510.626667pt;}
.y78{bottom:510.786667pt;}
.yb4{bottom:511.266667pt;}
.ye4{bottom:525.826667pt;}
.y77{bottom:525.986667pt;}
.yb3{bottom:526.626667pt;}
.ye3{bottom:541.213333pt;}
.y76{bottom:541.373333pt;}
.yb2{bottom:542.013333pt;}
.yff{bottom:542.333333pt;}
.yfe{bottom:554.813333pt;}
.ye2{bottom:556.573333pt;}
.y75{bottom:556.733333pt;}
.yb1{bottom:557.373333pt;}
.ye1{bottom:569.693333pt;}
.y74{bottom:572.093333pt;}
.yb0{bottom:572.733333pt;}
.yaf{bottom:585.853333pt;}
.y73{bottom:587.453333pt;}
.ye0{bottom:587.933333pt;}
.y101{bottom:602.653333pt;}
.y72{bottom:602.813333pt;}
.yae{bottom:604.253333pt;}
.ydf{bottom:606.493333pt;}
.y100{bottom:616.573333pt;}
.y71{bottom:618.013333pt;}
.yad{bottom:622.653333pt;}
.yde{bottom:624.573333pt;}
.y70{bottom:633.373333pt;}
.yf8{bottom:637.853333pt;}
.yac{bottom:640.573333pt;}
.yfc{bottom:641.373333pt;}
.ydd{bottom:642.813333pt;}
.y6f{bottom:648.733333pt;}
.yf7{bottom:650.333333pt;}
.yfb{bottom:653.853333pt;}
.ydc{bottom:661.373333pt;}
.yab{bottom:661.853333pt;}
.y6e{bottom:664.093333pt;}
.yaa{bottom:677.213333pt;}
.y6d{bottom:679.453333pt;}
.ydb{bottom:679.613333pt;}
.yf6{bottom:689.693333pt;}
.ya9{bottom:692.573333pt;}
.y6c{bottom:694.813333pt;}
.yda{bottom:697.853333pt;}
.ya8{bottom:707.773333pt;}
.y1b{bottom:709.533333pt;}
.y6b{bottom:710.013333pt;}
.yd9{bottom:716.253333pt;}
.ya7{bottom:723.133333pt;}
.y6a{bottom:725.373333pt;}
.y10{bottom:735.933333pt;}
.ya6{bottom:736.253333pt;}
.yd8{bottom:737.373333pt;}
.y69{bottom:740.733333pt;}
.yd7{bottom:752.733333pt;}
.ya5{bottom:754.493333pt;}
.y68{bottom:756.093333pt;}
.yd6{bottom:768.093333pt;}
.y67{bottom:771.453333pt;}
.ya3{bottom:772.733333pt;}
.yd5{bottom:783.493333pt;}
.y66{bottom:786.693333pt;}
.ya2{bottom:791.333333pt;}
.yd4{bottom:798.693333pt;}
.y65{bottom:802.053333pt;}
.ya1{bottom:812.453333pt;}
.yd3{bottom:814.053333pt;}
.y64{bottom:817.413333pt;}
.yd2{bottom:827.173333pt;}
.ya0{bottom:827.813333pt;}
.y63{bottom:832.773333pt;}
.y9f{bottom:843.013333pt;}
.yd1{bottom:845.733333pt;}
.y62{bottom:848.133333pt;}
.y9e{bottom:858.373333pt;}
.y61{bottom:863.493333pt;}
.yd0{bottom:864.133333pt;}
.y9d{bottom:873.733333pt;}
.y60{bottom:878.693333pt;}
.ycf{bottom:882.213333pt;}
.y9c{bottom:889.093333pt;}
.y5f{bottom:894.053333pt;}
.yce{bottom:900.613333pt;}
.y9b{bottom:904.453333pt;}
.y5e{bottom:909.413333pt;}
.ye{bottom:914.053333pt;}
.y9a{bottom:917.573333pt;}
.ycd{bottom:918.693333pt;}
.y5d{bottom:924.773333pt;}
.y99{bottom:935.813333pt;}
.y7{bottom:936.453333pt;}
.y5c{bottom:940.133333pt;}
.y98{bottom:953.893333pt;}
.y5b{bottom:955.493333pt;}
.y5a{bottom:970.693333pt;}
.y96{bottom:971.813333pt;}
.y59{bottom:986.053333pt;}
.y94{bottom:990.213333pt;}
.y58{bottom:1001.413333pt;}
.y92{bottom:1008.133333pt;}
.y57{bottom:1016.800000pt;}
.y91{bottom:1026.240000pt;}
.y56{bottom:1032.160000pt;}
.h2c{height:15.360000pt;}
.h27{height:17.280000pt;}
.h24{height:17.440000pt;}
.h26{height:17.472000pt;}
.h25{height:17.600000pt;}
.h28{height:17.760000pt;}
.h2b{height:17.920000pt;}
.h29{height:17.952000pt;}
.h2a{height:18.080000pt;}
.hd{height:22.080000pt;}
.h16{height:26.400000pt;}
.h14{height:28.376563pt;}
.h15{height:28.536563pt;}
.h13{height:31.828125pt;}
.ha{height:32.160000pt;}
.h20{height:32.480000pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h1d{height:37.499062pt;}
.h23{height:38.672812pt;}
.h1c{height:38.828437pt;}
.hf{height:39.113750pt;}
.hc{height:39.840000pt;}
.h5{height:41.976562pt;}
.h19{height:42.649687pt;}
.h22{height:42.691250pt;}
.h2d{height:42.944375pt;}
.h2{height:43.872000pt;}
.h1b{height:44.215312pt;}
.h21{height:46.454062pt;}
.h4{height:47.742188pt;}
.hb{height:48.000000pt;}
.h3{height:49.148438pt;}
.h1a{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h7{height:58.563750pt;}
.h6{height:60.288750pt;}
.h9{height:63.656250pt;}
.h17{height:65.531250pt;}
.h8{height:108.032000pt;}
.he{height:178.106667pt;}
.h18{height:413.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w2d{width:127.040000pt;}
.w29{width:127.360000pt;}
.w13{width:131.872000pt;}
.w10{width:132.192000pt;}
.w5{width:138.106667pt;}
.w2c{width:155.066667pt;}
.w28{width:155.706667pt;}
.w2a{width:157.786667pt;}
.w26{width:158.106667pt;}
.w39{width:167.706667pt;}
.w36{width:168.026667pt;}
.w1f{width:176.186667pt;}
.w1d{width:176.506667pt;}
.w1b{width:182.106667pt;}
.w18{width:182.426667pt;}
.w25{width:188.666667pt;}
.w22{width:188.986667pt;}
.w8{width:196.386667pt;}
.wf{width:200.506667pt;}
.wc{width:200.826667pt;}
.w38{width:204.986667pt;}
.w35{width:205.626667pt;}
.w31{width:209.826667pt;}
.w2e{width:210.146667pt;}
.w33{width:218.586667pt;}
.we{width:218.746667pt;}
.w30{width:218.906667pt;}
.wb{width:219.386667pt;}
.w1a{width:220.986667pt;}
.w17{width:221.626667pt;}
.w2b{width:221.826667pt;}
.w27{width:222.466667pt;}
.w24{width:230.426667pt;}
.w21{width:231.066667pt;}
.w32{width:231.706667pt;}
.w2f{width:232.346667pt;}
.w15{width:238.586667pt;}
.w12{width:238.906667pt;}
.wd{width:240.066667pt;}
.wa{width:240.386667pt;}
.w23{width:241.026667pt;}
.w20{width:241.346667pt;}
.w19{width:257.986667pt;}
.w16{width:258.306667pt;}
.w37{width:284.386667pt;}
.w34{width:284.706667pt;}
.w3d{width:287.706667pt;}
.w3b{width:288.026667pt;}
.w14{width:289.666667pt;}
.w11{width:290.306667pt;}
.w3c{width:373.053333pt;}
.w3a{width:373.373333pt;}
.w9{width:467.906667pt;}
.w1e{width:488.733333pt;}
.w1c{width:489.053333pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.x40{left:19.680000pt;}
.x3b{left:22.432000pt;}
.xd{left:26.752000pt;}
.x3d{left:29.000000pt;}
.x11{left:37.152000pt;}
.x52{left:40.200000pt;}
.x42{left:46.240000pt;}
.x23{left:47.232000pt;}
.x44{left:49.600000pt;}
.x34{left:50.600000pt;}
.x28{left:51.720000pt;}
.xe{left:52.672000pt;}
.x31{left:54.440000pt;}
.x1e{left:56.832000pt;}
.x30{left:57.800000pt;}
.x17{left:60.160000pt;}
.x26{left:61.280000pt;}
.x4d{left:62.752000pt;}
.x1{left:64.320000pt;}
.x4a{left:65.440000pt;}
.x53{left:66.760000pt;}
.x47{left:68.032000pt;}
.x29{left:69.946667pt;}
.x43{left:70.880000pt;}
.x4{left:71.999988pt;}
.x25{left:74.906667pt;}
.x37{left:77.160000pt;}
.x39{left:78.746667pt;}
.x21{left:80.000000pt;}
.x1c{left:84.680000pt;}
.x4b{left:85.626667pt;}
.x5{left:87.226667pt;}
.x4e{left:90.266667pt;}
.x4c{left:92.040000pt;}
.x15{left:96.031988pt;}
.x12{left:98.746667pt;}
.x5c{left:100.186667pt;}
.x41{left:101.160000pt;}
.x10{left:103.866667pt;}
.x19{left:104.986667pt;}
.x1b{left:106.240000pt;}
.x45{left:107.560000pt;}
.x36{left:108.506667pt;}
.x38{left:111.866667pt;}
.x57{left:113.466667pt;}
.x2b{left:115.386667pt;}
.x2a{left:116.986667pt;}
.x16{left:120.031988pt;}
.x55{left:134.266667pt;}
.x22{left:138.760000pt;}
.x2f{left:139.866667pt;}
.x58{left:143.706667pt;}
.x59{left:148.186667pt;}
.x5a{left:151.546667pt;}
.x5b{left:156.346667pt;}
.xf{left:192.066667pt;}
.x1f{left:197.306667pt;}
.x6{left:202.906667pt;}
.x2d{left:213.986667pt;}
.x3c{left:223.226667pt;}
.x3a{left:236.186655pt;}
.x9{left:253.346667pt;}
.x13{left:261.186667pt;}
.x2c{left:265.506655pt;}
.x4f{left:266.466655pt;}
.x48{left:275.266667pt;}
.x1d{left:285.026655pt;}
.x60{left:286.146655pt;}
.x54{left:287.106655pt;}
.x66{left:292.066655pt;}
.x24{left:300.066655pt;}
.x7{left:304.866667pt;}
.x1a{left:305.826667pt;}
.x35{left:306.786667pt;}
.x32{left:308.226655pt;}
.x46{left:315.746655pt;}
.x5d{left:319.106655pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.xc{left:332.066667pt;}
.x50{left:349.826667pt;}
.x62{left:396.866655pt;}
.xa{left:402.026667pt;}
.x56{left:438.493333pt;}
.x3e{left:445.693333pt;}
.x20{left:487.613333pt;}
.x49{left:507.613333pt;}
.x18{left:524.893333pt;}
.x61{left:533.853322pt;}
.x63{left:535.453322pt;}
.x33{left:537.533333pt;}
.x64{left:539.133322pt;}
.x27{left:545.053333pt;}
.x67{left:546.493322pt;}
.x2e{left:554.173333pt;}
.x51{left:555.453333pt;}
.x5e{left:574.813322pt;}
.x5f{left:575.933322pt;}
.x3f{left:601.413333pt;}
.x3{left:663.013333pt;}
.x65{left:695.013322pt;}
}




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