
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_32a35581577719f6164655c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_c261183e10b250a3ce5e3810.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_dc788c781b0eba4b89951e09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_b374f4f262293d211e38a584.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_a5462d529b2c92d109fc13e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_ae5f8859d7d1dc6e8de6838a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927734;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_cfa1a9e63744a1b2a630944e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959473;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_83a79aa359b1b1d5c709a9b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995117;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_2292ea5e2d0fbce035e127e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.205800px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.013440px;}
.lsb{letter-spacing:0.052560px;}
.ls2{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.157800px;}
.lse{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.239040px;}
.lsf{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.482400px;}
.ls8{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.880000px;}
.ls6{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-84.240000px;}
.ws0{word-spacing:-72.000000px;}
.wsb{word-spacing:-59.917800px;}
.ws1{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.527000px;}
.wsc{word-spacing:-14.992560px;}
.wsa{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.907600px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-5.022000px;}
._11{margin-left:-3.888000px;}
._b{margin-left:-2.862000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._9{width:4.752000px;}
._8{width:6.480000px;}
._a{width:7.920000px;}
._e{width:9.552000px;}
._f{width:10.960320px;}
._19{width:12.090000px;}
._16{width:13.104000px;}
._12{width:14.364000px;}
._d{width:15.786000px;}
._c{width:16.920000px;}
._1f{width:18.107280px;}
._13{width:19.224000px;}
._17{width:20.364000px;}
._7{width:21.456000px;}
._6{width:22.464000px;}
._1e{width:23.904000px;}
._1a{width:24.912000px;}
._1b{width:26.028000px;}
._15{width:27.072000px;}
._14{width:28.224000px;}
._1d{width:30.042000px;}
._1c{width:31.248000px;}
._34{width:32.274000px;}
._33{width:33.624000px;}
._20{width:39.800160px;}
._32{width:42.608880px;}
._2c{width:44.162640px;}
._28{width:45.656640px;}
._2e{width:51.632640px;}
._35{width:52.992000px;}
._21{width:54.023040px;}
._24{width:56.652480px;}
._2f{width:58.266000px;}
._2b{width:62.987040px;}
._2a{width:65.736000px;}
._38{width:74.928000px;}
._27{width:79.241760px;}
._22{width:80.496720px;}
._2d{width:81.512640px;}
._36{width:83.016000px;}
._37{width:84.558720px;}
._29{width:91.313280px;}
._26{width:104.161680px;}
._23{width:125.735040px;}
._39{width:148.392000px;}
._25{width:151.969680px;}
._30{width:209.638080px;}
._31{width:237.605760px;}
._5{width:470.916000px;}
._10{width:1261.794240px;}
._4{width:1433.832000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y36{bottom:1.800000px;}
.ydd{bottom:3.960000px;}
.ye6{bottom:3.990000px;}
.yf3{bottom:4.005000px;}
.y152{bottom:5.220000px;}
.y38{bottom:8.100000px;}
.y10a{bottom:16.740000px;}
.y107{bottom:16.920000px;}
.y137{bottom:20.700000px;}
.y133{bottom:20.880000px;}
.y135{bottom:20.910000px;}
.y153{bottom:20.925000px;}
.y151{bottom:22.185000px;}
.y34{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y37{bottom:67.680000px;}
.y35{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y33{bottom:122.580000px;}
.y16f{bottom:136.620000px;}
.y3{bottom:137.520000px;}
.y181{bottom:138.420000px;}
.y11e{bottom:139.680000px;}
.y68{bottom:140.580000px;}
.yff{bottom:150.120000px;}
.y99{bottom:150.840000px;}
.ybf{bottom:153.030000px;}
.y11d{bottom:157.350000px;}
.y180{bottom:158.610000px;}
.y67{bottom:160.950000px;}
.y149{bottom:161.670000px;}
.y30{bottom:167.790000px;}
.yfe{bottom:170.310000px;}
.y16e{bottom:170.670000px;}
.y98{bottom:171.030000px;}
.ybe{bottom:173.370000px;}
.y11c{bottom:174.990000px;}
.y17f{bottom:178.950000px;}
.y66{bottom:181.110000px;}
.yfd{bottom:190.650000px;}
.y148{bottom:190.830000px;}
.y97{bottom:191.370000px;}
.y11b{bottom:192.630000px;}
.ybd{bottom:193.530000px;}
.y17e{bottom:199.110000px;}
.y2f{bottom:199.650000px;}
.y65{bottom:201.450000px;}
.y19a{bottom:202.530000px;}
.y16d{bottom:205.230000px;}
.yfc{bottom:210.810000px;}
.y96{bottom:211.530000px;}
.ybc{bottom:213.870000px;}
.y17d{bottom:219.450000px;}
.y147{bottom:220.170000px;}
.y64{bottom:221.610000px;}
.y199{bottom:222.870000px;}
.y11a{bottom:223.770000px;}
.y2e{bottom:228.810000px;}
.yfb{bottom:231.150000px;}
.y95{bottom:231.870000px;}
.ybb{bottom:234.030000px;}
.y16c{bottom:239.610000px;}
.y146{bottom:240.510000px;}
.y63{bottom:241.950000px;}
.y198{bottom:243.030000px;}
.y2d{bottom:249.150000px;}
.yfa{bottom:251.310000px;}
.y94{bottom:252.030000px;}
.y119{bottom:253.110000px;}
.yba{bottom:254.370000px;}
.y17c{bottom:259.950000px;}
.y145{bottom:260.670000px;}
.y62{bottom:262.110000px;}
.y2c{bottom:269.490000px;}
.yf9{bottom:271.650000px;}
.y197{bottom:272.190000px;}
.y93{bottom:272.370000px;}
.y16b{bottom:274.170000px;}
.yd3{bottom:274.530000px;}
.y17b{bottom:280.110000px;}
.y144{bottom:281.010000px;}
.y118{bottom:282.270000px;}
.y61{bottom:282.450000px;}
.yb9{bottom:283.530000px;}
.yf8{bottom:291.810000px;}
.y92{bottom:292.530000px;}
.yd2{bottom:294.870000px;}
.y2b{bottom:298.650000px;}
.y17a{bottom:300.450000px;}
.y60{bottom:302.610000px;}
.y187{bottom:303.690000px;}
.y16a{bottom:308.730000px;}
.y143{bottom:310.170000px;}
.ya1{bottom:311.610000px;}
.yf7{bottom:312.150000px;}
.yb8{bottom:312.690000px;}
.y91{bottom:312.870000px;}
.yd1{bottom:315.030000px;}
.y179{bottom:320.610000px;}
.y5f{bottom:322.950000px;}
.y169{bottom:326.370000px;}
.y2a{bottom:327.810000px;}
.yf6{bottom:332.310000px;}
.y90{bottom:333.030000px;}
.yd0{bottom:335.370000px;}
.y142{bottom:339.330000px;}
.y178{bottom:340.950000px;}
.ya0{bottom:341.670000px;}
.y196{bottom:342.030000px;}
.ycd{bottom:343.110000px;}
.y29{bottom:348.150000px;}
.y5e{bottom:352.110000px;}
.yf5{bottom:352.650000px;}
.y8f{bottom:353.370000px;}
.y141{bottom:359.670000px;}
.y168{bottom:360.750000px;}
.y177{bottom:361.110000px;}
.y195{bottom:362.370000px;}
.ycc{bottom:363.450000px;}
.ycf{bottom:364.530000px;}
.y117{bottom:372.270000px;}
.y8e{bottom:373.530000px;}
.y28{bottom:377.310000px;}
.y140{bottom:380.010000px;}
.y5d{bottom:381.270000px;}
.y176{bottom:381.450000px;}
.yf4{bottom:381.810000px;}
.y194{bottom:382.530000px;}
.ycb{bottom:383.610000px;}
.yce{bottom:393.690000px;}
.y8d{bottom:393.870000px;}
.y167{bottom:395.310000px;}
.yf2{bottom:398.190000px;}
.y13f{bottom:400.170000px;}
.y5c{bottom:401.655000px;}
.y9f{bottom:402.735000px;}
.yca{bottom:403.995000px;}
.y27{bottom:406.695000px;}
.y193{bottom:411.735000px;}
.y8c{bottom:414.075000px;}
.yf1{bottom:415.875000px;}
.y1b3{bottom:416.235000px;}
.y13e{bottom:420.555000px;}
.y5b{bottom:421.995000px;}
.y9e{bottom:423.075000px;}
.yc9{bottom:424.155000px;}
.y26{bottom:427.035000px;}
.y166{bottom:429.915000px;}
.y192{bottom:432.075000px;}
.yf0{bottom:433.515000px;}
.yb7{bottom:434.415000px;}
.y13d{bottom:440.715000px;}
.y5a{bottom:442.155000px;}
.y8b{bottom:443.235000px;}
.y9d{bottom:443.415000px;}
.yc8{bottom:444.495000px;}
.y1b2{bottom:445.575000px;}
.y25{bottom:447.195000px;}
.y165{bottom:447.555000px;}
.yef{bottom:450.975000px;}
.yb6{bottom:454.575000px;}
.y13c{bottom:461.055000px;}
.y191{bottom:462.135000px;}
.y59{bottom:462.495000px;}
.y8a{bottom:463.575000px;}
.yc7{bottom:464.655000px;}
.y1b1{bottom:465.915000px;}
.y24{bottom:467.535000px;}
.yee{bottom:468.615000px;}
.yb5{bottom:474.915000px;}
.y13b{bottom:481.215000px;}
.y58{bottom:482.655000px;}
.y89{bottom:483.915000px;}
.yc6{bottom:484.995000px;}
.yed{bottom:486.255000px;}
.y23{bottom:487.695000px;}
.y190{bottom:493.815000px;}
.yb4{bottom:495.075000px;}
.y164{bottom:495.615000px;}
.y57{bottom:502.995000px;}
.yec{bottom:503.895000px;}
.y88{bottom:504.075000px;}
.yc5{bottom:505.155000px;}
.y22{bottom:508.035000px;}
.y13a{bottom:510.375000px;}
.yb3{bottom:515.415000px;}
.yeb{bottom:521.535000px;}
.y56{bottom:523.155000px;}
.y87{bottom:524.415000px;}
.y163{bottom:524.775000px;}
.y139{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.yc4{bottom:535.215000px;}
.yb2{bottom:535.575000px;}
.y116{bottom:543.495000px;}
.y86{bottom:544.575000px;}
.y20{bottom:548.535000px;}
.y55{bottom:552.315000px;}
.yea{bottom:552.855000px;}
.y162{bottom:554.115000px;}
.yb1{bottom:555.915000px;}
.y138{bottom:561.315000px;}
.y115{bottom:563.655000px;}
.y1b0{bottom:564.735000px;}
.y85{bottom:564.915000px;}
.yc3{bottom:567.075000px;}
.y1f{bottom:568.695000px;}
.y161{bottom:574.455000px;}
.yb0{bottom:576.075000px;}
.y54{bottom:581.655000px;}
.ye9{bottom:582.015000px;}
.y114{bottom:583.995000px;}
.y84{bottom:585.075000px;}
.y1e{bottom:589.035000px;}
.y160{bottom:594.615000px;}
.y136{bottom:595.875000px;}
.yc2{bottom:596.235000px;}
.yaf{bottom:596.415000px;}
.y53{bottom:601.995000px;}
.y113{bottom:604.155000px;}
.y83{bottom:605.415000px;}
.y1d{bottom:609.195000px;}
.ye8{bottom:611.355000px;}
.y1af{bottom:614.235000px;}
.y15f{bottom:614.955000px;}
.yae{bottom:616.575000px;}
.y52{bottom:622.155000px;}
.y112{bottom:624.495000px;}
.y82{bottom:625.575000px;}
.y1c{bottom:629.535000px;}
.y134{bottom:630.255000px;}
.ye7{bottom:631.695000px;}
.yad{bottom:636.915000px;}
.y51{bottom:642.495000px;}
.y1ae{bottom:643.575000px;}
.y15e{bottom:644.115000px;}
.y111{bottom:644.655000px;}
.y81{bottom:645.915000px;}
.ye5{bottom:647.895000px;}
.y1b{bottom:649.725000px;}
.yac{bottom:657.105000px;}
.y50{bottom:662.685000px;}
.y1ad{bottom:663.945000px;}
.y132{bottom:664.845000px;}
.y110{bottom:665.025000px;}
.ye4{bottom:665.565000px;}
.y80{bottom:666.105000px;}
.y1a{bottom:670.065000px;}
.y15d{bottom:673.305000px;}
.yab{bottom:677.445000px;}
.y4f{bottom:683.025000px;}
.ye3{bottom:683.205000px;}
.y10f{bottom:685.185000px;}
.y186{bottom:686.265000px;}
.y7f{bottom:686.445000px;}
.y19{bottom:690.225000px;}
.y1ac{bottom:693.105000px;}
.y15c{bottom:693.645000px;}
.yaa{bottom:697.605000px;}
.ye2{bottom:700.845000px;}
.y4e{bottom:703.185000px;}
.y10e{bottom:705.525000px;}
.y7e{bottom:706.605000px;}
.y18{bottom:710.565000px;}
.y131{bottom:712.905000px;}
.y1ab{bottom:713.445000px;}
.y15b{bottom:713.985000px;}
.y185{bottom:715.605000px;}
.ya9{bottom:717.945000px;}
.ye1{bottom:718.485000px;}
.y4d{bottom:723.525000px;}
.y175{bottom:725.685000px;}
.y7d{bottom:726.945000px;}
.y17{bottom:730.725000px;}
.y1aa{bottom:733.605000px;}
.y15a{bottom:734.145000px;}
.y10d{bottom:734.685000px;}
.y184{bottom:735.945000px;}
.ye0{bottom:736.125000px;}
.yc1{bottom:738.105000px;}
.y130{bottom:742.245000px;}
.y4c{bottom:743.685000px;}
.y174{bottom:746.025000px;}
.y7c{bottom:747.105000px;}
.y16{bottom:751.065000px;}
.ydf{bottom:753.765000px;}
.y159{bottom:754.485000px;}
.y183{bottom:756.105000px;}
.y1a9{bottom:762.765000px;}
.y10c{bottom:763.845000px;}
.y4b{bottom:764.025000px;}
.y173{bottom:766.185000px;}
.yc0{bottom:767.265000px;}
.y7b{bottom:767.445000px;}
.y15{bottom:771.225000px;}
.yde{bottom:771.405000px;}
.y158{bottom:774.645000px;}
.ya8{bottom:776.265000px;}
.y182{bottom:776.445000px;}
.y10b{bottom:780.405000px;}
.y1a8{bottom:783.105000px;}
.y4a{bottom:784.185000px;}
.y172{bottom:786.525000px;}
.y7a{bottom:787.605000px;}
.ydc{bottom:789.045000px;}
.y14{bottom:791.565000px;}
.y157{bottom:794.985000px;}
.ya7{bottom:796.605000px;}
.y109{bottom:798.045000px;}
.y12f{bottom:800.745000px;}
.y1a7{bottom:803.445000px;}
.y49{bottom:804.525000px;}
.y18f{bottom:806.685000px;}
.y79{bottom:807.945000px;}
.y13{bottom:811.725000px;}
.y156{bottom:815.145000px;}
.y108{bottom:815.505000px;}
.y171{bottom:816.585000px;}
.ya6{bottom:816.945000px;}
.ydb{bottom:820.185000px;}
.y12e{bottom:821.085000px;}
.y48{bottom:824.685000px;}
.y18e{bottom:827.025000px;}
.y78{bottom:828.105000px;}
.y12{bottom:832.065000px;}
.y1a6{bottom:832.605000px;}
.y106{bottom:833.145000px;}
.y155{bottom:835.485000px;}
.ya5{bottom:837.105000px;}
.y12d{bottom:841.245000px;}
.y47{bottom:845.025000px;}
.y18d{bottom:847.185000px;}
.y170{bottom:848.265000px;}
.y77{bottom:848.445000px;}
.yda{bottom:849.345000px;}
.y105{bottom:850.785000px;}
.y11{bottom:852.225000px;}
.y1a5{bottom:852.945000px;}
.ya4{bottom:857.445000px;}
.y12c{bottom:861.585000px;}
.y154{bottom:864.645000px;}
.y46{bottom:865.185000px;}
.y18c{bottom:867.525000px;}
.y76{bottom:868.605000px;}
.y1a4{bottom:873.105000px;}
.ya3{bottom:877.605000px;}
.yd9{bottom:878.685000px;}
.y150{bottom:881.025000px;}
.y12b{bottom:881.745000px;}
.y104{bottom:882.105000px;}
.y10{bottom:882.285000px;}
.y45{bottom:885.525000px;}
.y18b{bottom:887.685000px;}
.y9c{bottom:888.945000px;}
.y75{bottom:897.810000px;}
.ya2{bottom:897.990000px;}
.yd8{bottom:899.070000px;}
.y12a{bottom:902.130000px;}
.y1a3{bottom:902.310000px;}
.y44{bottom:905.730000px;}
.y9b{bottom:909.150000px;}
.y103{bottom:911.310000px;}
.yf{bottom:914.010000px;}
.y14f{bottom:916.890000px;}
.y18a{bottom:917.790000px;}
.y74{bottom:918.150000px;}
.yd7{bottom:919.230000px;}
.y129{bottom:922.290000px;}
.y1a2{bottom:922.650000px;}
.y43{bottom:926.070000px;}
.y9a{bottom:929.490000px;}
.y73{bottom:938.490000px;}
.y102{bottom:940.650000px;}
.y128{bottom:942.630000px;}
.ye{bottom:943.350000px;}
.y42{bottom:946.230000px;}
.yd6{bottom:948.390000px;}
.y189{bottom:949.650000px;}
.y14e{bottom:951.450000px;}
.y1a1{bottom:951.810000px;}
.y72{bottom:958.650000px;}
.y101{bottom:960.990000px;}
.y127{bottom:962.790000px;}
.yd{bottom:963.690000px;}
.y41{bottom:966.570000px;}
.y1a0{bottom:972.150000px;}
.yd5{bottom:978.630000px;}
.y188{bottom:978.810000px;}
.y71{bottom:978.990000px;}
.y100{bottom:981.150000px;}
.y126{bottom:983.130000px;}
.yc{bottom:984.030000px;}
.y14d{bottom:985.830000px;}
.y40{bottom:986.730000px;}
.y70{bottom:999.150000px;}
.y19f{bottom:1001.310000px;}
.y125{bottom:1003.290000px;}
.y14c{bottom:1003.470000px;}
.y3f{bottom:1007.070000px;}
.yd4{bottom:1010.310000px;}
.y6f{bottom:1019.490000px;}
.y19e{bottom:1021.650000px;}
.y124{bottom:1023.630000px;}
.yb{bottom:1024.530000px;}
.y3e{bottom:1027.230000px;}
.y14b{bottom:1038.030000px;}
.y6e{bottom:1039.650000px;}
.y19d{bottom:1041.990000px;}
.y123{bottom:1043.790000px;}
.y3d{bottom:1047.570000px;}
.ya{bottom:1051.530000px;}
.y6d{bottom:1059.990000px;}
.y3c{bottom:1067.730000px;}
.y19c{bottom:1071.150000px;}
.y14a{bottom:1072.590000px;}
.y122{bottom:1072.950000px;}
.y6c{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y3b{bottom:1088.070000px;}
.y19b{bottom:1091.490000px;}
.y6b{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y121{bottom:1102.290000px;}
.y3a{bottom:1108.230000px;}
.y6a{bottom:1120.650000px;}
.y120{bottom:1122.630000px;}
.y39{bottom:1138.290000px;}
.y11f{bottom:1138.830000px;}
.y69{bottom:1140.990000px;}
.y32{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y31{bottom:1196.280000px;}
.h11{height:16.740000px;}
.h14{height:16.776000px;}
.h12{height:16.920000px;}
.h13{height:16.956000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h15{height:33.660000px;}
.h1a{height:33.696000px;}
.h17{height:33.840000px;}
.h16{height:33.876000px;}
.h18{height:35.136000px;}
.h3{height:36.571289px;}
.hb{height:41.610234px;}
.hc{height:47.796328px;}
.h8{height:48.761719px;}
.h4{height:50.132812px;}
.h19{height:50.364141px;}
.h7{height:53.332031px;}
.h9{height:57.051211px;}
.h10{height:58.655391px;}
.ha{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:45.180000px;}
.w3{width:49.536000px;}
.w1e{width:54.180000px;}
.w18{width:56.700000px;}
.wb{width:59.436000px;}
.w19{width:59.580000px;}
.wf{width:60.120000px;}
.we{width:75.960000px;}
.wc{width:79.380000px;}
.w23{width:83.520000px;}
.w1d{width:85.536000px;}
.w22{width:90.936000px;}
.w12{width:91.116000px;}
.w17{width:99.396000px;}
.w16{width:101.736000px;}
.wd{width:102.276000px;}
.w26{width:108.000000px;}
.w21{width:109.620000px;}
.w27{width:118.116000px;}
.w14{width:131.040000px;}
.w9{width:140.760000px;}
.w8{width:141.336000px;}
.w15{width:142.380000px;}
.w1c{width:144.720000px;}
.w11{width:150.690000px;}
.w13{width:151.410000px;}
.w10{width:151.560000px;}
.w20{width:161.310000px;}
.w7{width:167.790000px;}
.w1b{width:170.850000px;}
.w25{width:178.770000px;}
.w6{width:180.750000px;}
.w1a{width:215.310000px;}
.w1f{width:220.710000px;}
.w24{width:230.610000px;}
.w28{width:271.650000px;}
.wa{width:297.930000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xc{left:10.800000px;}
.x3{left:106.415987px;}
.x21{left:117.035987px;}
.x11{left:125.675987px;}
.x27{left:133.775987px;}
.x4{left:146.915987px;}
.x37{left:148.895987px;}
.x13{left:153.030000px;}
.x31{left:155.189987px;}
.xa{left:180.209987px;}
.x17{left:184.349987px;}
.x2b{left:194.789987px;}
.x1d{left:205.589987px;}
.x5{left:219.809987px;}
.x7{left:244.469987px;}
.x22{left:250.230000px;}
.x1e{left:259.410000px;}
.x2d{left:269.175000px;}
.x28{left:278.715000px;}
.x32{left:286.635000px;}
.x6{left:314.534987px;}
.x14{left:334.515000px;}
.x2c{left:340.454987px;}
.x23{left:352.695000px;}
.xe{left:367.454987px;}
.x8{left:372.854987px;}
.x2e{left:379.515000px;}
.xf{left:387.254987px;}
.xd{left:390.134987px;}
.x33{left:395.355000px;}
.x35{left:397.334987px;}
.x36{left:402.014987px;}
.x18{left:405.975000px;}
.x9{left:409.394987px;}
.x1f{left:410.835000px;}
.x10{left:413.714987px;}
.x29{left:424.155000px;}
.x1{left:446.504987px;}
.x24{left:452.805000px;}
.x19{left:466.125000px;}
.x2f{left:471.165000px;}
.x15{left:503.205000px;}
.x25{left:510.225000px;}
.x34{left:514.365000px;}
.x1a{left:546.225000px;}
.x30{left:555.405000px;}
.x2a{left:565.305000px;}
.x26{left:570.705000px;}
.x16{left:645.270000px;}
.x1b{left:649.230000px;}
.x20{left:654.990000px;}
.x1c{left:725.910000px;}
.x2{left:786.749987px;}
.xb{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.182933pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011947pt;}
.lsb{letter-spacing:0.046720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.140267pt;}
.lse{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.212480pt;}
.lsf{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.428800pt;}
.ls8{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls1{letter-spacing:2.560000pt;}
.ls6{letter-spacing:1272.085333pt;}
.wse{word-spacing:-74.880000pt;}
.ws0{word-spacing:-64.000000pt;}
.wsb{word-spacing:-53.260267pt;}
.ws1{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.690667pt;}
.wsc{word-spacing:-13.326720pt;}
.wsa{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.251200pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-4.464000pt;}
._11{margin-left:-3.456000pt;}
._b{margin-left:-2.544000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._9{width:4.224000pt;}
._8{width:5.760000pt;}
._a{width:7.040000pt;}
._e{width:8.490667pt;}
._f{width:9.742507pt;}
._19{width:10.746667pt;}
._16{width:11.648000pt;}
._12{width:12.768000pt;}
._d{width:14.032000pt;}
._c{width:15.040000pt;}
._1f{width:16.095360pt;}
._13{width:17.088000pt;}
._17{width:18.101333pt;}
._7{width:19.072000pt;}
._6{width:19.968000pt;}
._1e{width:21.248000pt;}
._1a{width:22.144000pt;}
._1b{width:23.136000pt;}
._15{width:24.064000pt;}
._14{width:25.088000pt;}
._1d{width:26.704000pt;}
._1c{width:27.776000pt;}
._34{width:28.688000pt;}
._33{width:29.888000pt;}
._20{width:35.377920pt;}
._32{width:37.874560pt;}
._2c{width:39.255680pt;}
._28{width:40.583680pt;}
._2e{width:45.895680pt;}
._35{width:47.104000pt;}
._21{width:48.020480pt;}
._24{width:50.357760pt;}
._2f{width:51.792000pt;}
._2b{width:55.988480pt;}
._2a{width:58.432000pt;}
._38{width:66.602667pt;}
._27{width:70.437120pt;}
._22{width:71.552640pt;}
._2d{width:72.455680pt;}
._36{width:73.792000pt;}
._37{width:75.163307pt;}
._29{width:81.167360pt;}
._26{width:92.588160pt;}
._23{width:111.764480pt;}
._39{width:131.904000pt;}
._25{width:135.084160pt;}
._30{width:186.344960pt;}
._31{width:211.205120pt;}
._5{width:418.592000pt;}
._10{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:1.600000pt;}
.ydd{bottom:3.520000pt;}
.ye6{bottom:3.546667pt;}
.yf3{bottom:3.560000pt;}
.y152{bottom:4.640000pt;}
.y38{bottom:7.200000pt;}
.y10a{bottom:14.880000pt;}
.y107{bottom:15.040000pt;}
.y137{bottom:18.400000pt;}
.y133{bottom:18.560000pt;}
.y135{bottom:18.586667pt;}
.y153{bottom:18.600000pt;}
.y151{bottom:19.720000pt;}
.y34{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y37{bottom:60.160000pt;}
.y35{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y33{bottom:108.960000pt;}
.y16f{bottom:121.440000pt;}
.y3{bottom:122.240000pt;}
.y181{bottom:123.040000pt;}
.y11e{bottom:124.160000pt;}
.y68{bottom:124.960000pt;}
.yff{bottom:133.440000pt;}
.y99{bottom:134.080000pt;}
.ybf{bottom:136.026667pt;}
.y11d{bottom:139.866667pt;}
.y180{bottom:140.986667pt;}
.y67{bottom:143.066667pt;}
.y149{bottom:143.706667pt;}
.y30{bottom:149.146667pt;}
.yfe{bottom:151.386667pt;}
.y16e{bottom:151.706667pt;}
.y98{bottom:152.026667pt;}
.ybe{bottom:154.106667pt;}
.y11c{bottom:155.546667pt;}
.y17f{bottom:159.066667pt;}
.y66{bottom:160.986667pt;}
.yfd{bottom:169.466667pt;}
.y148{bottom:169.626667pt;}
.y97{bottom:170.106667pt;}
.y11b{bottom:171.226667pt;}
.ybd{bottom:172.026667pt;}
.y17e{bottom:176.986667pt;}
.y2f{bottom:177.466667pt;}
.y65{bottom:179.066667pt;}
.y19a{bottom:180.026667pt;}
.y16d{bottom:182.426667pt;}
.yfc{bottom:187.386667pt;}
.y96{bottom:188.026667pt;}
.ybc{bottom:190.106667pt;}
.y17d{bottom:195.066667pt;}
.y147{bottom:195.706667pt;}
.y64{bottom:196.986667pt;}
.y199{bottom:198.106667pt;}
.y11a{bottom:198.906667pt;}
.y2e{bottom:203.386667pt;}
.yfb{bottom:205.466667pt;}
.y95{bottom:206.106667pt;}
.ybb{bottom:208.026667pt;}
.y16c{bottom:212.986667pt;}
.y146{bottom:213.786667pt;}
.y63{bottom:215.066667pt;}
.y198{bottom:216.026667pt;}
.y2d{bottom:221.466667pt;}
.yfa{bottom:223.386667pt;}
.y94{bottom:224.026667pt;}
.y119{bottom:224.986667pt;}
.yba{bottom:226.106667pt;}
.y17c{bottom:231.066667pt;}
.y145{bottom:231.706667pt;}
.y62{bottom:232.986667pt;}
.y2c{bottom:239.546667pt;}
.yf9{bottom:241.466667pt;}
.y197{bottom:241.946667pt;}
.y93{bottom:242.106667pt;}
.y16b{bottom:243.706667pt;}
.yd3{bottom:244.026667pt;}
.y17b{bottom:248.986667pt;}
.y144{bottom:249.786667pt;}
.y118{bottom:250.906667pt;}
.y61{bottom:251.066667pt;}
.yb9{bottom:252.026667pt;}
.yf8{bottom:259.386667pt;}
.y92{bottom:260.026667pt;}
.yd2{bottom:262.106667pt;}
.y2b{bottom:265.466667pt;}
.y17a{bottom:267.066667pt;}
.y60{bottom:268.986667pt;}
.y187{bottom:269.946667pt;}
.y16a{bottom:274.426667pt;}
.y143{bottom:275.706667pt;}
.ya1{bottom:276.986667pt;}
.yf7{bottom:277.466667pt;}
.yb8{bottom:277.946667pt;}
.y91{bottom:278.106667pt;}
.yd1{bottom:280.026667pt;}
.y179{bottom:284.986667pt;}
.y5f{bottom:287.066667pt;}
.y169{bottom:290.106667pt;}
.y2a{bottom:291.386667pt;}
.yf6{bottom:295.386667pt;}
.y90{bottom:296.026667pt;}
.yd0{bottom:298.106667pt;}
.y142{bottom:301.626667pt;}
.y178{bottom:303.066667pt;}
.ya0{bottom:303.706667pt;}
.y196{bottom:304.026667pt;}
.ycd{bottom:304.986667pt;}
.y29{bottom:309.466667pt;}
.y5e{bottom:312.986667pt;}
.yf5{bottom:313.466667pt;}
.y8f{bottom:314.106667pt;}
.y141{bottom:319.706667pt;}
.y168{bottom:320.666667pt;}
.y177{bottom:320.986667pt;}
.y195{bottom:322.106667pt;}
.ycc{bottom:323.066667pt;}
.ycf{bottom:324.026667pt;}
.y117{bottom:330.906667pt;}
.y8e{bottom:332.026667pt;}
.y28{bottom:335.386667pt;}
.y140{bottom:337.786667pt;}
.y5d{bottom:338.906667pt;}
.y176{bottom:339.066667pt;}
.yf4{bottom:339.386667pt;}
.y194{bottom:340.026667pt;}
.ycb{bottom:340.986667pt;}
.yce{bottom:349.946667pt;}
.y8d{bottom:350.106667pt;}
.y167{bottom:351.386667pt;}
.yf2{bottom:353.946667pt;}
.y13f{bottom:355.706667pt;}
.y5c{bottom:357.026667pt;}
.y9f{bottom:357.986667pt;}
.yca{bottom:359.106667pt;}
.y27{bottom:361.506667pt;}
.y193{bottom:365.986667pt;}
.y8c{bottom:368.066667pt;}
.yf1{bottom:369.666667pt;}
.y1b3{bottom:369.986667pt;}
.y13e{bottom:373.826667pt;}
.y5b{bottom:375.106667pt;}
.y9e{bottom:376.066667pt;}
.yc9{bottom:377.026667pt;}
.y26{bottom:379.586667pt;}
.y166{bottom:382.146667pt;}
.y192{bottom:384.066667pt;}
.yf0{bottom:385.346667pt;}
.yb7{bottom:386.146667pt;}
.y13d{bottom:391.746667pt;}
.y5a{bottom:393.026667pt;}
.y8b{bottom:393.986667pt;}
.y9d{bottom:394.146667pt;}
.yc8{bottom:395.106667pt;}
.y1b2{bottom:396.066667pt;}
.y25{bottom:397.506667pt;}
.y165{bottom:397.826667pt;}
.yef{bottom:400.866667pt;}
.yb6{bottom:404.066667pt;}
.y13c{bottom:409.826667pt;}
.y191{bottom:410.786667pt;}
.y59{bottom:411.106667pt;}
.y8a{bottom:412.066667pt;}
.yc7{bottom:413.026667pt;}
.y1b1{bottom:414.146667pt;}
.y24{bottom:415.586667pt;}
.yee{bottom:416.546667pt;}
.yb5{bottom:422.146667pt;}
.y13b{bottom:427.746667pt;}
.y58{bottom:429.026667pt;}
.y89{bottom:430.146667pt;}
.yc6{bottom:431.106667pt;}
.yed{bottom:432.226667pt;}
.y23{bottom:433.506667pt;}
.y190{bottom:438.946667pt;}
.yb4{bottom:440.066667pt;}
.y164{bottom:440.546667pt;}
.y57{bottom:447.106667pt;}
.yec{bottom:447.906667pt;}
.y88{bottom:448.066667pt;}
.yc5{bottom:449.026667pt;}
.y22{bottom:451.586667pt;}
.y13a{bottom:453.666667pt;}
.yb3{bottom:458.146667pt;}
.yeb{bottom:463.586667pt;}
.y56{bottom:465.026667pt;}
.y87{bottom:466.146667pt;}
.y163{bottom:466.466667pt;}
.y139{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.yc4{bottom:475.746667pt;}
.yb2{bottom:476.066667pt;}
.y116{bottom:483.106667pt;}
.y86{bottom:484.066667pt;}
.y20{bottom:487.586667pt;}
.y55{bottom:490.946667pt;}
.yea{bottom:491.426667pt;}
.y162{bottom:492.546667pt;}
.yb1{bottom:494.146667pt;}
.y138{bottom:498.946667pt;}
.y115{bottom:501.026667pt;}
.y1b0{bottom:501.986667pt;}
.y85{bottom:502.146667pt;}
.yc3{bottom:504.066667pt;}
.y1f{bottom:505.506667pt;}
.y161{bottom:510.626667pt;}
.yb0{bottom:512.066667pt;}
.y54{bottom:517.026667pt;}
.ye9{bottom:517.346667pt;}
.y114{bottom:519.106667pt;}
.y84{bottom:520.066667pt;}
.y1e{bottom:523.586667pt;}
.y160{bottom:528.546667pt;}
.y136{bottom:529.666667pt;}
.yc2{bottom:529.986667pt;}
.yaf{bottom:530.146667pt;}
.y53{bottom:535.106667pt;}
.y113{bottom:537.026667pt;}
.y83{bottom:538.146667pt;}
.y1d{bottom:541.506667pt;}
.ye8{bottom:543.426667pt;}
.y1af{bottom:545.986667pt;}
.y15f{bottom:546.626667pt;}
.yae{bottom:548.066667pt;}
.y52{bottom:553.026667pt;}
.y112{bottom:555.106667pt;}
.y82{bottom:556.066667pt;}
.y1c{bottom:559.586667pt;}
.y134{bottom:560.226667pt;}
.ye7{bottom:561.506667pt;}
.yad{bottom:566.146667pt;}
.y51{bottom:571.106667pt;}
.y1ae{bottom:572.066667pt;}
.y15e{bottom:572.546667pt;}
.y111{bottom:573.026667pt;}
.y81{bottom:574.146667pt;}
.ye5{bottom:575.906667pt;}
.y1b{bottom:577.533333pt;}
.yac{bottom:584.093333pt;}
.y50{bottom:589.053333pt;}
.y1ad{bottom:590.173333pt;}
.y132{bottom:590.973333pt;}
.y110{bottom:591.133333pt;}
.ye4{bottom:591.613333pt;}
.y80{bottom:592.093333pt;}
.y1a{bottom:595.613333pt;}
.y15d{bottom:598.493333pt;}
.yab{bottom:602.173333pt;}
.y4f{bottom:607.133333pt;}
.ye3{bottom:607.293333pt;}
.y10f{bottom:609.053333pt;}
.y186{bottom:610.013333pt;}
.y7f{bottom:610.173333pt;}
.y19{bottom:613.533333pt;}
.y1ac{bottom:616.093333pt;}
.y15c{bottom:616.573333pt;}
.yaa{bottom:620.093333pt;}
.ye2{bottom:622.973333pt;}
.y4e{bottom:625.053333pt;}
.y10e{bottom:627.133333pt;}
.y7e{bottom:628.093333pt;}
.y18{bottom:631.613333pt;}
.y131{bottom:633.693333pt;}
.y1ab{bottom:634.173333pt;}
.y15b{bottom:634.653333pt;}
.y185{bottom:636.093333pt;}
.ya9{bottom:638.173333pt;}
.ye1{bottom:638.653333pt;}
.y4d{bottom:643.133333pt;}
.y175{bottom:645.053333pt;}
.y7d{bottom:646.173333pt;}
.y17{bottom:649.533333pt;}
.y1aa{bottom:652.093333pt;}
.y15a{bottom:652.573333pt;}
.y10d{bottom:653.053333pt;}
.y184{bottom:654.173333pt;}
.ye0{bottom:654.333333pt;}
.yc1{bottom:656.093333pt;}
.y130{bottom:659.773333pt;}
.y4c{bottom:661.053333pt;}
.y174{bottom:663.133333pt;}
.y7c{bottom:664.093333pt;}
.y16{bottom:667.613333pt;}
.ydf{bottom:670.013333pt;}
.y159{bottom:670.653333pt;}
.y183{bottom:672.093333pt;}
.y1a9{bottom:678.013333pt;}
.y10c{bottom:678.973333pt;}
.y4b{bottom:679.133333pt;}
.y173{bottom:681.053333pt;}
.yc0{bottom:682.013333pt;}
.y7b{bottom:682.173333pt;}
.y15{bottom:685.533333pt;}
.yde{bottom:685.693333pt;}
.y158{bottom:688.573333pt;}
.ya8{bottom:690.013333pt;}
.y182{bottom:690.173333pt;}
.y10b{bottom:693.693333pt;}
.y1a8{bottom:696.093333pt;}
.y4a{bottom:697.053333pt;}
.y172{bottom:699.133333pt;}
.y7a{bottom:700.093333pt;}
.ydc{bottom:701.373333pt;}
.y14{bottom:703.613333pt;}
.y157{bottom:706.653333pt;}
.ya7{bottom:708.093333pt;}
.y109{bottom:709.373333pt;}
.y12f{bottom:711.773333pt;}
.y1a7{bottom:714.173333pt;}
.y49{bottom:715.133333pt;}
.y18f{bottom:717.053333pt;}
.y79{bottom:718.173333pt;}
.y13{bottom:721.533333pt;}
.y156{bottom:724.573333pt;}
.y108{bottom:724.893333pt;}
.y171{bottom:725.853333pt;}
.ya6{bottom:726.173333pt;}
.ydb{bottom:729.053333pt;}
.y12e{bottom:729.853333pt;}
.y48{bottom:733.053333pt;}
.y18e{bottom:735.133333pt;}
.y78{bottom:736.093333pt;}
.y12{bottom:739.613333pt;}
.y1a6{bottom:740.093333pt;}
.y106{bottom:740.573333pt;}
.y155{bottom:742.653333pt;}
.ya5{bottom:744.093333pt;}
.y12d{bottom:747.773333pt;}
.y47{bottom:751.133333pt;}
.y18d{bottom:753.053333pt;}
.y170{bottom:754.013333pt;}
.y77{bottom:754.173333pt;}
.yda{bottom:754.973333pt;}
.y105{bottom:756.253333pt;}
.y11{bottom:757.533333pt;}
.y1a5{bottom:758.173333pt;}
.ya4{bottom:762.173333pt;}
.y12c{bottom:765.853333pt;}
.y154{bottom:768.573333pt;}
.y46{bottom:769.053333pt;}
.y18c{bottom:771.133333pt;}
.y76{bottom:772.093333pt;}
.y1a4{bottom:776.093333pt;}
.ya3{bottom:780.093333pt;}
.yd9{bottom:781.053333pt;}
.y150{bottom:783.133333pt;}
.y12b{bottom:783.773333pt;}
.y104{bottom:784.093333pt;}
.y10{bottom:784.253333pt;}
.y45{bottom:787.133333pt;}
.y18b{bottom:789.053333pt;}
.y9c{bottom:790.173333pt;}
.y75{bottom:798.053333pt;}
.ya2{bottom:798.213333pt;}
.yd8{bottom:799.173333pt;}
.y12a{bottom:801.893333pt;}
.y1a3{bottom:802.053333pt;}
.y44{bottom:805.093333pt;}
.y9b{bottom:808.133333pt;}
.y103{bottom:810.053333pt;}
.yf{bottom:812.453333pt;}
.y14f{bottom:815.013333pt;}
.y18a{bottom:815.813333pt;}
.y74{bottom:816.133333pt;}
.yd7{bottom:817.093333pt;}
.y129{bottom:819.813333pt;}
.y1a2{bottom:820.133333pt;}
.y43{bottom:823.173333pt;}
.y9a{bottom:826.213333pt;}
.y73{bottom:834.213333pt;}
.y102{bottom:836.133333pt;}
.y128{bottom:837.893333pt;}
.ye{bottom:838.533333pt;}
.y42{bottom:841.093333pt;}
.yd6{bottom:843.013333pt;}
.y189{bottom:844.133333pt;}
.y14e{bottom:845.733333pt;}
.y1a1{bottom:846.053333pt;}
.y72{bottom:852.133333pt;}
.y101{bottom:854.213333pt;}
.y127{bottom:855.813333pt;}
.yd{bottom:856.613333pt;}
.y41{bottom:859.173333pt;}
.y1a0{bottom:864.133333pt;}
.yd5{bottom:869.893333pt;}
.y188{bottom:870.053333pt;}
.y71{bottom:870.213333pt;}
.y100{bottom:872.133333pt;}
.y126{bottom:873.893333pt;}
.yc{bottom:874.693333pt;}
.y14d{bottom:876.293333pt;}
.y40{bottom:877.093333pt;}
.y70{bottom:888.133333pt;}
.y19f{bottom:890.053333pt;}
.y125{bottom:891.813333pt;}
.y14c{bottom:891.973333pt;}
.y3f{bottom:895.173333pt;}
.yd4{bottom:898.053333pt;}
.y6f{bottom:906.213333pt;}
.y19e{bottom:908.133333pt;}
.y124{bottom:909.893333pt;}
.yb{bottom:910.693333pt;}
.y3e{bottom:913.093333pt;}
.y14b{bottom:922.693333pt;}
.y6e{bottom:924.133333pt;}
.y19d{bottom:926.213333pt;}
.y123{bottom:927.813333pt;}
.y3d{bottom:931.173333pt;}
.ya{bottom:934.693333pt;}
.y6d{bottom:942.213333pt;}
.y3c{bottom:949.093333pt;}
.y19c{bottom:952.133333pt;}
.y14a{bottom:953.413333pt;}
.y122{bottom:953.733333pt;}
.y6c{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y3b{bottom:967.173333pt;}
.y19b{bottom:970.213333pt;}
.y6b{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y121{bottom:979.813333pt;}
.y3a{bottom:985.093333pt;}
.y6a{bottom:996.133333pt;}
.y120{bottom:997.893333pt;}
.y39{bottom:1011.813333pt;}
.y11f{bottom:1012.293333pt;}
.y69{bottom:1014.213333pt;}
.y32{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y31{bottom:1063.360000pt;}
.h11{height:14.880000pt;}
.h14{height:14.912000pt;}
.h12{height:15.040000pt;}
.h13{height:15.072000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h15{height:29.920000pt;}
.h1a{height:29.952000pt;}
.h17{height:30.080000pt;}
.h16{height:30.112000pt;}
.h18{height:31.232000pt;}
.h3{height:32.507812pt;}
.hb{height:36.986875pt;}
.hc{height:42.485625pt;}
.h8{height:43.343750pt;}
.h4{height:44.562500pt;}
.h19{height:44.768125pt;}
.h7{height:47.406250pt;}
.h9{height:50.712187pt;}
.h10{height:52.138125pt;}
.ha{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:40.160000pt;}
.w3{width:44.032000pt;}
.w1e{width:48.160000pt;}
.w18{width:50.400000pt;}
.wb{width:52.832000pt;}
.w19{width:52.960000pt;}
.wf{width:53.440000pt;}
.we{width:67.520000pt;}
.wc{width:70.560000pt;}
.w23{width:74.240000pt;}
.w1d{width:76.032000pt;}
.w22{width:80.832000pt;}
.w12{width:80.992000pt;}
.w17{width:88.352000pt;}
.w16{width:90.432000pt;}
.wd{width:90.912000pt;}
.w26{width:96.000000pt;}
.w21{width:97.440000pt;}
.w27{width:104.992000pt;}
.w14{width:116.480000pt;}
.w9{width:125.120000pt;}
.w8{width:125.632000pt;}
.w15{width:126.560000pt;}
.w1c{width:128.640000pt;}
.w11{width:133.946667pt;}
.w13{width:134.586667pt;}
.w10{width:134.720000pt;}
.w20{width:143.386667pt;}
.w7{width:149.146667pt;}
.w1b{width:151.866667pt;}
.w25{width:158.906667pt;}
.w6{width:160.666667pt;}
.w1a{width:191.386667pt;}
.w1f{width:196.186667pt;}
.w24{width:204.986667pt;}
.w28{width:241.466667pt;}
.wa{width:264.826667pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xc{left:9.600000pt;}
.x3{left:94.591988pt;}
.x21{left:104.031988pt;}
.x11{left:111.711988pt;}
.x27{left:118.911988pt;}
.x4{left:130.591988pt;}
.x37{left:132.351988pt;}
.x13{left:136.026667pt;}
.x31{left:137.946655pt;}
.xa{left:160.186655pt;}
.x17{left:163.866655pt;}
.x2b{left:173.146655pt;}
.x1d{left:182.746655pt;}
.x5{left:195.386655pt;}
.x7{left:217.306655pt;}
.x22{left:222.426667pt;}
.x1e{left:230.586667pt;}
.x2d{left:239.266667pt;}
.x28{left:247.746667pt;}
.x32{left:254.786667pt;}
.x6{left:279.586655pt;}
.x14{left:297.346667pt;}
.x2c{left:302.626655pt;}
.x23{left:313.506667pt;}
.xe{left:326.626655pt;}
.x8{left:331.426655pt;}
.x2e{left:337.346667pt;}
.xf{left:344.226655pt;}
.xd{left:346.786655pt;}
.x33{left:351.426667pt;}
.x35{left:353.186655pt;}
.x36{left:357.346655pt;}
.x18{left:360.866667pt;}
.x9{left:363.906655pt;}
.x1f{left:365.186667pt;}
.x10{left:367.746655pt;}
.x29{left:377.026667pt;}
.x1{left:396.893322pt;}
.x24{left:402.493333pt;}
.x19{left:414.333333pt;}
.x2f{left:418.813333pt;}
.x15{left:447.293333pt;}
.x25{left:453.533333pt;}
.x34{left:457.213333pt;}
.x1a{left:485.533333pt;}
.x30{left:493.693333pt;}
.x2a{left:502.493333pt;}
.x26{left:507.293333pt;}
.x16{left:573.573333pt;}
.x1b{left:577.093333pt;}
.x20{left:582.213333pt;}
.x1c{left:645.253333pt;}
.x2{left:699.333322pt;}
.xb{left:701.413333pt;}
}




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