
    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_6e7cf7e1b9299e63ce243c65.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_75f315b4b04bb38c0c47a6d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_fdd53619ccc3c11ecbd38085.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_90a330260c2e1055aaabc9c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_f566870daa37e771b91b47c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_8dc6f15fb2a8c2fc258aec74.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_7edb0d62a0d8cbfa5315e1b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_0ff4601ba71ba0042c938e3b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_030909a408e2b818b0977ced.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.828000px;}
.ls16{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.206400px;}
.ls1{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.576000px;}
.lse{letter-spacing:0.696000px;}
.ls2{letter-spacing:0.720000px;}
.ls19{letter-spacing:2.880000px;}
.ls1a{letter-spacing:6.480000px;}
.ls4{letter-spacing:11.520000px;}
.ls11{letter-spacing:16.020000px;}
.ls12{letter-spacing:19.620000px;}
.ls18{letter-spacing:23.760000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.576000px;}
.wse{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.064000px;}
.wsf{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.733600px;}
.ws11{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.229520px;}
.ws12{word-spacing:-12.186000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-5.316000px;}
._15{margin-left:-4.176000px;}
._d{margin-left:-2.880000px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._18{width:3.555360px;}
._f{width:4.608000px;}
._10{width:5.875200px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._19{width:13.003920px;}
._e{width:14.328000px;}
._9{width:16.314480px;}
._2c{width:17.334000px;}
._32{width:18.560400px;}
._5{width:19.744800px;}
._13{width:20.880000px;}
._1c{width:22.137600px;}
._11{width:24.096000px;}
._12{width:25.200000px;}
._14{width:26.756160px;}
._1b{width:27.871200px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1a{width:32.583120px;}
._2a{width:33.804000px;}
._31{width:35.208000px;}
._1f{width:36.216000px;}
._20{width:37.224000px;}
._29{width:38.870160px;}
._21{width:39.984000px;}
._17{width:41.808000px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._25{width:46.332000px;}
._39{width:47.574000px;}
._38{width:48.654000px;}
._1d{width:50.040000px;}
._1e{width:51.984000px;}
._2e{width:56.484000px;}
._2d{width:57.672000px;}
._22{width:59.184000px;}
._23{width:60.468000px;}
._34{width:65.772000px;}
._30{width:67.014000px;}
._26{width:75.168000px;}
._37{width:79.452000px;}
._36{width:80.892000px;}
._27{width:90.936000px;}
._2f{width:96.066000px;}
._24{width:122.958000px;}
._33{width:124.416000px;}
._2b{width:131.508000px;}
._28{width:140.292000px;}
._35{width:163.404000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1ab{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1aa{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1a9{bottom:-32.760000px;}
.y1a8{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.ye2{bottom:2.880000px;}
.ye9{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y17a{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.y1a7{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.yed{bottom:18.360000px;}
.ye8{bottom:18.540000px;}
.ye1{bottom:18.585000px;}
.y29{bottom:22.755000px;}
.yf3{bottom:33.840000px;}
.ye7{bottom:34.020000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y1a6{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.ye6{bottom:49.500000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.yec{bottom:64.980000px;}
.yf1{bottom:65.010000px;}
.ye5{bottom:65.160000px;}
.y1a5{bottom:65.190000px;}
.y179{bottom:72.900000px;}
.y1c{bottom:73.125000px;}
.y61{bottom:73.800000px;}
.y60{bottom:78.300000px;}
.y1a4{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yeb{bottom:80.460000px;}
.yf0{bottom:80.490000px;}
.ye4{bottom:80.640000px;}
.yc6{bottom:82.080000px;}
.y7b{bottom:91.080000px;}
.y142{bottom:92.340000px;}
.y101{bottom:95.400000px;}
.y117{bottom:95.760000px;}
.yef{bottom:96.150000px;}
.y5f{bottom:102.780000px;}
.y1a3{bottom:103.530000px;}
.y83{bottom:105.300000px;}
.y18b{bottom:107.100000px;}
.y1b{bottom:109.305000px;}
.y178{bottom:111.600000px;}
.yc5{bottom:113.040000px;}
.yb4{bottom:119.880000px;}
.y7a{bottom:122.040000px;}
.y100{bottom:126.360000px;}
.y116{bottom:126.900000px;}
.y1a2{bottom:127.110000px;}
.y5e{bottom:127.260000px;}
.y1a{bottom:127.665000px;}
.y12d{bottom:130.320000px;}
.y141{bottom:131.040000px;}
.y95{bottom:133.740000px;}
.y161{bottom:134.100000px;}
.y82{bottom:134.280000px;}
.yc4{bottom:144.216000px;}
.y19{bottom:146.025000px;}
.y5d{bottom:148.536000px;}
.y177{bottom:150.330000px;}
.y1a1{bottom:150.690000px;}
.yb3{bottom:151.050000px;}
.y81{bottom:151.590000px;}
.y140{bottom:151.770000px;}
.y79{bottom:153.210000px;}
.y160{bottom:154.830000px;}
.yd{bottom:156.090000px;}
.yff{bottom:157.530000px;}
.y115{bottom:157.890000px;}
.y12c{bottom:161.310000px;}
.y18{bottom:164.205000px;}
.y94{bottom:164.910000px;}
.y80{bottom:168.870000px;}
.y1a0{bottom:174.450000px;}
.yc3{bottom:175.170000px;}
.y15f{bottom:175.530000px;}
.yb2{bottom:182.010000px;}
.y17{bottom:182.565000px;}
.y78{bottom:184.170000px;}
.y7f{bottom:185.970000px;}
.yfe{bottom:188.490000px;}
.y114{bottom:189.030000px;}
.y13f{bottom:190.470000px;}
.y5c{bottom:191.370000px;}
.y12b{bottom:192.450000px;}
.y93{bottom:195.870000px;}
.y7e{bottom:203.250000px;}
.yc2{bottom:206.310000px;}
.y13e{bottom:211.170000px;}
.y5b{bottom:212.070000px;}
.y19f{bottom:212.790000px;}
.yb1{bottom:213.150000px;}
.y15e{bottom:214.230000px;}
.y77{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.yfd{bottom:219.630000px;}
.y113{bottom:219.990000px;}
.y7d{bottom:220.530000px;}
.y12a{bottom:223.410000px;}
.y92{bottom:226.830000px;}
.y176{bottom:227.730000px;}
.y15d{bottom:234.930000px;}
.y19e{bottom:236.370000px;}
.yc1{bottom:237.270000px;}
.y15{bottom:237.285000px;}
.y5a{bottom:241.770000px;}
.yb0{bottom:244.110000px;}
.y76{bottom:246.270000px;}
.y7c{bottom:247.530000px;}
.y13d{bottom:249.870000px;}
.yfc{bottom:250.590000px;}
.y19d{bottom:250.950000px;}
.y112{bottom:251.130000px;}
.y129{bottom:254.550000px;}
.y14{bottom:255.465000px;}
.y15c{bottom:255.630000px;}
.y91{bottom:257.970000px;}
.y59{bottom:262.470000px;}
.y175{bottom:266.430000px;}
.yc0{bottom:268.230000px;}
.y13c{bottom:270.570000px;}
.y13{bottom:273.855000px;}
.y19c{bottom:274.890000px;}
.yaf{bottom:275.250000px;}
.y75{bottom:277.230000px;}
.yfb{bottom:281.730000px;}
.y111{bottom:282.090000px;}
.y58{bottom:283.170000px;}
.y128{bottom:285.510000px;}
.y90{bottom:288.930000px;}
.y15b{bottom:294.330000px;}
.ybf{bottom:299.370000px;}
.y57{bottom:303.870000px;}
.y174{bottom:305.130000px;}
.yae{bottom:306.210000px;}
.y74{bottom:308.370000px;}
.y19b{bottom:309.135000px;}
.y13b{bottom:309.270000px;}
.yfa{bottom:312.690000px;}
.y110{bottom:313.230000px;}
.y15a{bottom:315.030000px;}
.y127{bottom:316.650000px;}
.y8f{bottom:320.070000px;}
.y19a{bottom:323.895000px;}
.y56{bottom:324.570000px;}
.y13a{bottom:329.970000px;}
.ybe{bottom:330.330000px;}
.yad{bottom:337.350000px;}
.y73{bottom:339.330000px;}
.yf9{bottom:343.830000px;}
.y10f{bottom:344.190000px;}
.y55{bottom:345.270000px;}
.y199{bottom:347.475000px;}
.y126{bottom:347.610000px;}
.y8e{bottom:351.030000px;}
.y159{bottom:353.730000px;}
.ybd{bottom:359.310000px;}
.y2a{bottom:360.210000px;}
.ydd{bottom:361.470000px;}
.y54{bottom:365.970000px;}
.yac{bottom:368.310000px;}
.y139{bottom:368.670000px;}
.y72{bottom:370.470000px;}
.y198{bottom:371.055000px;}
.yf8{bottom:374.790000px;}
.y10e{bottom:375.330000px;}
.ybc{bottom:376.590000px;}
.y125{bottom:378.750000px;}
.y8d{bottom:382.170000px;}
.y173{bottom:382.530000px;}
.y53{bottom:386.670000px;}
.y138{bottom:389.415000px;}
.ydc{bottom:392.475000px;}
.ybb{bottom:393.915000px;}
.y197{bottom:394.815000px;}
.yab{bottom:399.495000px;}
.y71{bottom:401.475000px;}
.yf7{bottom:405.975000px;}
.y10d{bottom:406.335000px;}
.y18a{bottom:406.875000px;}
.y52{bottom:407.415000px;}
.y124{bottom:409.755000px;}
.y137{bottom:410.115000px;}
.yba{bottom:411.195000px;}
.y8c{bottom:413.175000px;}
.y196{bottom:418.395000px;}
.y172{bottom:421.275000px;}
.ydb{bottom:423.615000px;}
.y51{bottom:428.115000px;}
.yb9{bottom:428.475000px;}
.yaa{bottom:430.455000px;}
.y158{bottom:431.175000px;}
.y70{bottom:432.615000px;}
.y195{bottom:432.975000px;}
.y10c{bottom:437.475000px;}
.y189{bottom:437.835000px;}
.y123{bottom:440.895000px;}
.y8b{bottom:444.315000px;}
.yb8{bottom:445.755000px;}
.yf6{bottom:445.935000px;}
.y50{bottom:448.815000px;}
.yda{bottom:454.575000px;}
.y194{bottom:456.735000px;}
.y188{bottom:457.815000px;}
.y171{bottom:459.975000px;}
.ya9{bottom:461.595000px;}
.yb7{bottom:462.855000px;}
.y6f{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y10b{bottom:468.435000px;}
.y4f{bottom:469.515000px;}
.y157{bottom:469.875000px;}
.y122{bottom:471.855000px;}
.yf5{bottom:474.195000px;}
.y8a{bottom:475.275000px;}
.yb6{bottom:480.135000px;}
.y193{bottom:480.675000px;}
.yd9{bottom:485.715000px;}
.yc{bottom:486.615000px;}
.yf4{bottom:488.055000px;}
.y156{bottom:490.575000px;}
.ya8{bottom:492.555000px;}
.y187{bottom:493.815000px;}
.y6e{bottom:494.715000px;}
.yb5{bottom:497.415000px;}
.y170{bottom:498.675000px;}
.y4e{bottom:499.395000px;}
.y10a{bottom:499.575000px;}
.yf2{bottom:500.115000px;}
.y121{bottom:502.995000px;}
.y89{bottom:504.255000px;}
.y136{bottom:508.215000px;}
.y192{bottom:514.875000px;}
.yd8{bottom:516.675000px;}
.y88{bottom:521.535000px;}
.y4d{bottom:522.435000px;}
.ya7{bottom:523.695000px;}
.y6d{bottom:525.675000px;}
.y155{bottom:529.275000px;}
.y109{bottom:530.535000px;}
.y186{bottom:533.775000px;}
.y120{bottom:533.955000px;}
.y16f{bottom:537.375000px;}
.y87{bottom:538.815000px;}
.y191{bottom:539.205000px;}
.y135{bottom:546.915000px;}
.yd7{bottom:547.815000px;}
.y154{bottom:549.975000px;}
.y25{bottom:552.420000px;}
.ya6{bottom:554.655000px;}
.y4c{bottom:555.915000px;}
.y86{bottom:556.095000px;}
.y6c{bottom:556.815000px;}
.y108{bottom:559.515000px;}
.y185{bottom:564.915000px;}
.y11f{bottom:565.095000px;}
.y85{bottom:573.375000px;}
.y190{bottom:575.205000px;}
.y16e{bottom:576.075000px;}
.y4b{bottom:576.615000px;}
.y107{bottom:576.795000px;}
.yee{bottom:578.415000px;}
.yd6{bottom:578.775000px;}
.y134{bottom:585.615000px;}
.ya5{bottom:585.795000px;}
.y6b{bottom:587.775000px;}
.y153{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.y84{bottom:590.655000px;}
.y106{bottom:594.075000px;}
.y184{bottom:595.875000px;}
.y11e{bottom:596.055000px;}
.y23{bottom:605.340000px;}
.y4a{bottom:606.315000px;}
.y152{bottom:609.375000px;}
.yd5{bottom:609.915000px;}
.y18f{bottom:609.945000px;}
.y105{bottom:611.175000px;}
.y16d{bottom:614.775000px;}
.ya{bottom:616.395000px;}
.ya4{bottom:616.755000px;}
.y6a{bottom:618.915000px;}
.y17b{bottom:619.635150px;}
.y49{bottom:627.015000px;}
.y11d{bottom:627.195000px;}
.y104{bottom:628.455000px;}
.yd4{bottom:640.905000px;}
.y33{bottom:644.685000px;}
.y133{bottom:645.045000px;}
.y103{bottom:645.765000px;}
.y18e{bottom:646.305000px;}
.y48{bottom:647.745000px;}
.ya3{bottom:647.925000px;}
.y151{bottom:648.105000px;}
.y69{bottom:649.905000px;}
.y16c{bottom:653.505000px;}
.y183{bottom:658.005000px;}
.y11c{bottom:658.185000px;}
.y102{bottom:663.045000px;}
.y132{bottom:665.745000px;}
.y47{bottom:668.445000px;}
.y150{bottom:668.805000px;}
.yd3{bottom:672.045000px;}
.ya2{bottom:678.885000px;}
.y68{bottom:681.045000px;}
.y18d{bottom:682.305000px;}
.y131{bottom:686.445000px;}
.yea{bottom:687.885000px;}
.y46{bottom:689.145000px;}
.y11b{bottom:689.325000px;}
.y14f{bottom:689.505000px;}
.y16b{bottom:692.205000px;}
.yd2{bottom:703.005000px;}
.y45{bottom:709.845000px;}
.ya1{bottom:710.025000px;}
.y67{bottom:712.005000px;}
.y18c{bottom:718.305000px;}
.y182{bottom:720.105000px;}
.y11a{bottom:720.285000px;}
.y130{bottom:725.145000px;}
.y14e{bottom:728.205000px;}
.y44{bottom:730.545000px;}
.y16a{bottom:730.905000px;}
.yd1{bottom:734.145000px;}
.ya0{bottom:740.985000px;}
.y66{bottom:743.145000px;}
.y12f{bottom:745.845000px;}
.y43{bottom:751.245000px;}
.y119{bottom:751.425000px;}
.yd0{bottom:765.105000px;}
.y14d{bottom:766.905000px;}
.y169{bottom:769.605000px;}
.y42{bottom:771.945000px;}
.y9f{bottom:772.125000px;}
.y65{bottom:774.105000px;}
.ye3{bottom:781.665000px;}
.y181{bottom:782.205000px;}
.y118{bottom:782.385000px;}
.y12e{bottom:784.545000px;}
.y14c{bottom:787.605000px;}
.y41{bottom:792.645000px;}
.ycf{bottom:794.085000px;}
.y9e{bottom:803.085000px;}
.y64{bottom:805.245000px;}
.y168{bottom:808.305000px;}
.yce{bottom:811.365000px;}
.y40{bottom:813.345000px;}
.y14b{bottom:826.305000px;}
.ycd{bottom:828.645000px;}
.y3f{bottom:834.045000px;}
.y9d{bottom:834.225000px;}
.y63{bottom:836.205000px;}
.y180{bottom:844.305000px;}
.ycc{bottom:845.925000px;}
.y14a{bottom:847.005000px;}
.ycb{bottom:863.205000px;}
.y3e{bottom:865.005000px;}
.y9c{bottom:865.185000px;}
.y62{bottom:867.345000px;}
.y17f{bottom:875.445000px;}
.ye0{bottom:875.625000px;}
.yca{bottom:880.305000px;}
.y149{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.y9b{bottom:896.370000px;}
.yc9{bottom:897.630000px;}
.y3d{bottom:898.350000px;}
.y148{bottom:906.450000px;}
.ydf{bottom:911.490000px;}
.y1ac{bottom:912.210000px;}
.yc8{bottom:914.910000px;}
.y167{bottom:924.450000px;}
.y9a{bottom:925.350000px;}
.y147{bottom:927.150000px;}
.y3b{bottom:929.490000px;}
.yc7{bottom:932.190000px;}
.y3c{bottom:936.330000px;}
.y17e{bottom:937.590000px;}
.y99{bottom:942.450000px;}
.yde{bottom:951.450000px;}
.y98{bottom:959.730000px;}
.y39{bottom:960.450000px;}
.y166{bottom:963.150000px;}
.y146{bottom:965.850000px;}
.y3a{bottom:967.290000px;}
.y17d{bottom:968.550000px;}
.y97{bottom:977.010000px;}
.y165{bottom:983.850000px;}
.y145{bottom:986.550000px;}
.y37{bottom:991.590000px;}
.y96{bottom:994.290000px;}
.y38{bottom:998.430000px;}
.y164{bottom:1004.550000px;}
.y17c{bottom:1007.250000px;}
.y36{bottom:1022.550000px;}
.y144{bottom:1025.250000px;}
.y163{bottom:1043.250000px;}
.y143{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.y162{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h5{height:24.156000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h1d{height:31.176000px;}
.h1a{height:32.273438px;}
.h17{height:34.578281px;}
.h12{height:35.261367px;}
.h23{height:43.246406px;}
.h1e{height:47.961914px;}
.h28{height:47.980898px;}
.h1b{height:48.410156px;}
.h16{height:51.609375px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h29{height:55.291992px;}
.h19{height:55.738125px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h1c{height:59.383125px;}
.h2{height:59.439023px;}
.h27{height:61.189805px;}
.h15{height:63.949219px;}
.h18{height:64.546875px;}
.h13{height:65.884219px;}
.h22{height:77.580000px;}
.h26{height:79.620469px;}
.hf{height:91.177734px;}
.h20{height:93.060000px;}
.h1f{height:93.240000px;}
.h11{height:100.656000px;}
.h21{height:108.756000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h2a{height:189.000000px;}
.hb{height:306.255000px;}
.h25{height:754.845000px;}
.h9{height:1188.900000px;}
.h24{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w6{width:88.560000px;}
.w11{width:123.480000px;}
.w12{width:184.035000px;}
.w14{width:189.930000px;}
.wf{width:198.210000px;}
.w13{width:202.890000px;}
.w16{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w15{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x33{left:7.560000px;}
.x6{left:8.676000px;}
.xc{left:10.800000px;}
.x32{left:15.120000px;}
.xe{left:22.320000px;}
.x2b{left:24.660000px;}
.x34{left:26.280000px;}
.x36{left:28.800000px;}
.x2a{left:30.060000px;}
.x35{left:32.040000px;}
.xd{left:33.120000px;}
.x18{left:37.620000px;}
.x37{left:39.414000px;}
.x2c{left:55.665000px;}
.x31{left:61.734000px;}
.x4{left:64.439987px;}
.x30{left:66.240000px;}
.x24{left:68.939987px;}
.x5{left:73.080000px;}
.x2d{left:77.445000px;}
.x19{left:82.800000px;}
.x2e{left:89.460000px;}
.x29{left:110.736000px;}
.x1a{left:113.400000px;}
.x25{left:117.575987px;}
.x16{left:133.125000px;}
.x8{left:137.385000px;}
.x28{left:142.235987px;}
.x15{left:160.410000px;}
.x10{left:163.110000px;}
.x1c{left:165.089987px;}
.x1b{left:187.245000px;}
.x3a{left:202.545000px;}
.x27{left:234.569987px;}
.x23{left:280.514987px;}
.x26{left:287.714987px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x13{left:419.760000px;}
.x11{left:439.560000px;}
.x1d{left:442.004987px;}
.x39{left:456.225000px;}
.x1{left:461.804987px;}
.x38{left:468.644987px;}
.x7{left:470.625000px;}
.x22{left:544.604987px;}
.x21{left:591.629987px;}
.x2f{left:623.670000px;}
.x1e{left:653.549987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1f{left:813.599973px;}
.x20{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls1{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.618667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls19{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:5.760000pt;}
.ls4{letter-spacing:10.240000pt;}
.ls11{letter-spacing:14.240000pt;}
.ls12{letter-spacing:17.440000pt;}
.ls18{letter-spacing:21.120000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.512000pt;}
.wse{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.168000pt;}
.wsf{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.096533pt;}
.ws11{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.759573pt;}
.ws12{word-spacing:-10.832000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.725333pt;}
._15{margin-left:-3.712000pt;}
._d{margin-left:-2.560000pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._18{width:3.160320pt;}
._f{width:4.096000pt;}
._10{width:5.222400pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._19{width:11.559040pt;}
._e{width:12.736000pt;}
._9{width:14.501760pt;}
._2c{width:15.408000pt;}
._32{width:16.498133pt;}
._5{width:17.550933pt;}
._13{width:18.560000pt;}
._1c{width:19.677867pt;}
._11{width:21.418667pt;}
._12{width:22.400000pt;}
._14{width:23.783253pt;}
._1b{width:24.774400pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1a{width:28.962773pt;}
._2a{width:30.048000pt;}
._31{width:31.296000pt;}
._1f{width:32.192000pt;}
._20{width:33.088000pt;}
._29{width:34.551253pt;}
._21{width:35.541333pt;}
._17{width:37.162667pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._25{width:41.184000pt;}
._39{width:42.288000pt;}
._38{width:43.248000pt;}
._1d{width:44.480000pt;}
._1e{width:46.208000pt;}
._2e{width:50.208000pt;}
._2d{width:51.264000pt;}
._22{width:52.608000pt;}
._23{width:53.749333pt;}
._34{width:58.464000pt;}
._30{width:59.568000pt;}
._26{width:66.816000pt;}
._37{width:70.624000pt;}
._36{width:71.904000pt;}
._27{width:80.832000pt;}
._2f{width:85.392000pt;}
._24{width:109.296000pt;}
._33{width:110.592000pt;}
._2b{width:116.896000pt;}
._28{width:124.704000pt;}
._35{width:145.248000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1ab{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1aa{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1a9{bottom:-29.120000pt;}
.y1a8{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.ye2{bottom:2.560000pt;}
.ye9{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y17a{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.y1a7{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.yed{bottom:16.320000pt;}
.ye8{bottom:16.480000pt;}
.ye1{bottom:16.520000pt;}
.y29{bottom:20.226667pt;}
.yf3{bottom:30.080000pt;}
.ye7{bottom:30.240000pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y1a6{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.ye6{bottom:44.000000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.yec{bottom:57.760000pt;}
.yf1{bottom:57.786667pt;}
.ye5{bottom:57.920000pt;}
.y1a5{bottom:57.946667pt;}
.y179{bottom:64.800000pt;}
.y1c{bottom:65.000000pt;}
.y61{bottom:65.600000pt;}
.y60{bottom:69.600000pt;}
.y1a4{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yeb{bottom:71.520000pt;}
.yf0{bottom:71.546667pt;}
.ye4{bottom:71.680000pt;}
.yc6{bottom:72.960000pt;}
.y7b{bottom:80.960000pt;}
.y142{bottom:82.080000pt;}
.y101{bottom:84.800000pt;}
.y117{bottom:85.120000pt;}
.yef{bottom:85.466667pt;}
.y5f{bottom:91.360000pt;}
.y1a3{bottom:92.026667pt;}
.y83{bottom:93.600000pt;}
.y18b{bottom:95.200000pt;}
.y1b{bottom:97.160000pt;}
.y178{bottom:99.200000pt;}
.yc5{bottom:100.480000pt;}
.yb4{bottom:106.560000pt;}
.y7a{bottom:108.480000pt;}
.y100{bottom:112.320000pt;}
.y116{bottom:112.800000pt;}
.y1a2{bottom:112.986667pt;}
.y5e{bottom:113.120000pt;}
.y1a{bottom:113.480000pt;}
.y12d{bottom:115.840000pt;}
.y141{bottom:116.480000pt;}
.y95{bottom:118.880000pt;}
.y161{bottom:119.200000pt;}
.y82{bottom:119.360000pt;}
.yc4{bottom:128.192000pt;}
.y19{bottom:129.800000pt;}
.y5d{bottom:132.032000pt;}
.y177{bottom:133.626667pt;}
.y1a1{bottom:133.946667pt;}
.yb3{bottom:134.266667pt;}
.y81{bottom:134.746667pt;}
.y140{bottom:134.906667pt;}
.y79{bottom:136.186667pt;}
.y160{bottom:137.626667pt;}
.yd{bottom:138.746667pt;}
.yff{bottom:140.026667pt;}
.y115{bottom:140.346667pt;}
.y12c{bottom:143.386667pt;}
.y18{bottom:145.960000pt;}
.y94{bottom:146.586667pt;}
.y80{bottom:150.106667pt;}
.y1a0{bottom:155.066667pt;}
.yc3{bottom:155.706667pt;}
.y15f{bottom:156.026667pt;}
.yb2{bottom:161.786667pt;}
.y17{bottom:162.280000pt;}
.y78{bottom:163.706667pt;}
.y7f{bottom:165.306667pt;}
.yfe{bottom:167.546667pt;}
.y114{bottom:168.026667pt;}
.y13f{bottom:169.306667pt;}
.y5c{bottom:170.106667pt;}
.y12b{bottom:171.066667pt;}
.y93{bottom:174.106667pt;}
.y7e{bottom:180.666667pt;}
.yc2{bottom:183.386667pt;}
.y13e{bottom:187.706667pt;}
.y5b{bottom:188.506667pt;}
.y19f{bottom:189.146667pt;}
.yb1{bottom:189.466667pt;}
.y15e{bottom:190.426667pt;}
.y77{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.yfd{bottom:195.226667pt;}
.y113{bottom:195.546667pt;}
.y7d{bottom:196.026667pt;}
.y12a{bottom:198.586667pt;}
.y92{bottom:201.626667pt;}
.y176{bottom:202.426667pt;}
.y15d{bottom:208.826667pt;}
.y19e{bottom:210.106667pt;}
.yc1{bottom:210.906667pt;}
.y15{bottom:210.920000pt;}
.y5a{bottom:214.906667pt;}
.yb0{bottom:216.986667pt;}
.y76{bottom:218.906667pt;}
.y7c{bottom:220.026667pt;}
.y13d{bottom:222.106667pt;}
.yfc{bottom:222.746667pt;}
.y19d{bottom:223.066667pt;}
.y112{bottom:223.226667pt;}
.y129{bottom:226.266667pt;}
.y14{bottom:227.080000pt;}
.y15c{bottom:227.226667pt;}
.y91{bottom:229.306667pt;}
.y59{bottom:233.306667pt;}
.y175{bottom:236.826667pt;}
.yc0{bottom:238.426667pt;}
.y13c{bottom:240.506667pt;}
.y13{bottom:243.426667pt;}
.y19c{bottom:244.346667pt;}
.yaf{bottom:244.666667pt;}
.y75{bottom:246.426667pt;}
.yfb{bottom:250.426667pt;}
.y111{bottom:250.746667pt;}
.y58{bottom:251.706667pt;}
.y128{bottom:253.786667pt;}
.y90{bottom:256.826667pt;}
.y15b{bottom:261.626667pt;}
.ybf{bottom:266.106667pt;}
.y57{bottom:270.106667pt;}
.y174{bottom:271.226667pt;}
.yae{bottom:272.186667pt;}
.y74{bottom:274.106667pt;}
.y19b{bottom:274.786667pt;}
.y13b{bottom:274.906667pt;}
.yfa{bottom:277.946667pt;}
.y110{bottom:278.426667pt;}
.y15a{bottom:280.026667pt;}
.y127{bottom:281.466667pt;}
.y8f{bottom:284.506667pt;}
.y19a{bottom:287.906667pt;}
.y56{bottom:288.506667pt;}
.y13a{bottom:293.306667pt;}
.ybe{bottom:293.626667pt;}
.yad{bottom:299.866667pt;}
.y73{bottom:301.626667pt;}
.yf9{bottom:305.626667pt;}
.y10f{bottom:305.946667pt;}
.y55{bottom:306.906667pt;}
.y199{bottom:308.866667pt;}
.y126{bottom:308.986667pt;}
.y8e{bottom:312.026667pt;}
.y159{bottom:314.426667pt;}
.ybd{bottom:319.386667pt;}
.y2a{bottom:320.186667pt;}
.ydd{bottom:321.306667pt;}
.y54{bottom:325.306667pt;}
.yac{bottom:327.386667pt;}
.y139{bottom:327.706667pt;}
.y72{bottom:329.306667pt;}
.y198{bottom:329.826667pt;}
.yf8{bottom:333.146667pt;}
.y10e{bottom:333.626667pt;}
.ybc{bottom:334.746667pt;}
.y125{bottom:336.666667pt;}
.y8d{bottom:339.706667pt;}
.y173{bottom:340.026667pt;}
.y53{bottom:343.706667pt;}
.y138{bottom:346.146667pt;}
.ydc{bottom:348.866667pt;}
.ybb{bottom:350.146667pt;}
.y197{bottom:350.946667pt;}
.yab{bottom:355.106667pt;}
.y71{bottom:356.866667pt;}
.yf7{bottom:360.866667pt;}
.y10d{bottom:361.186667pt;}
.y18a{bottom:361.666667pt;}
.y52{bottom:362.146667pt;}
.y124{bottom:364.226667pt;}
.y137{bottom:364.546667pt;}
.yba{bottom:365.506667pt;}
.y8c{bottom:367.266667pt;}
.y196{bottom:371.906667pt;}
.y172{bottom:374.466667pt;}
.ydb{bottom:376.546667pt;}
.y51{bottom:380.546667pt;}
.yb9{bottom:380.866667pt;}
.yaa{bottom:382.626667pt;}
.y158{bottom:383.266667pt;}
.y70{bottom:384.546667pt;}
.y195{bottom:384.866667pt;}
.y10c{bottom:388.866667pt;}
.y189{bottom:389.186667pt;}
.y123{bottom:391.906667pt;}
.y8b{bottom:394.946667pt;}
.yb8{bottom:396.226667pt;}
.yf6{bottom:396.386667pt;}
.y50{bottom:398.946667pt;}
.yda{bottom:404.066667pt;}
.y194{bottom:405.986667pt;}
.y188{bottom:406.946667pt;}
.y171{bottom:408.866667pt;}
.ya9{bottom:410.306667pt;}
.yb7{bottom:411.426667pt;}
.y6f{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y10b{bottom:416.386667pt;}
.y4f{bottom:417.346667pt;}
.y157{bottom:417.666667pt;}
.y122{bottom:419.426667pt;}
.yf5{bottom:421.506667pt;}
.y8a{bottom:422.466667pt;}
.yb6{bottom:426.786667pt;}
.y193{bottom:427.266667pt;}
.yd9{bottom:431.746667pt;}
.yc{bottom:432.546667pt;}
.yf4{bottom:433.826667pt;}
.y156{bottom:436.066667pt;}
.ya8{bottom:437.826667pt;}
.y187{bottom:438.946667pt;}
.y6e{bottom:439.746667pt;}
.yb5{bottom:442.146667pt;}
.y170{bottom:443.266667pt;}
.y4e{bottom:443.906667pt;}
.y10a{bottom:444.066667pt;}
.yf2{bottom:444.546667pt;}
.y121{bottom:447.106667pt;}
.y89{bottom:448.226667pt;}
.y136{bottom:451.746667pt;}
.y192{bottom:457.666667pt;}
.yd8{bottom:459.266667pt;}
.y88{bottom:463.586667pt;}
.y4d{bottom:464.386667pt;}
.ya7{bottom:465.506667pt;}
.y6d{bottom:467.266667pt;}
.y155{bottom:470.466667pt;}
.y109{bottom:471.586667pt;}
.y186{bottom:474.466667pt;}
.y120{bottom:474.626667pt;}
.y16f{bottom:477.666667pt;}
.y87{bottom:478.946667pt;}
.y191{bottom:479.293333pt;}
.y135{bottom:486.146667pt;}
.yd7{bottom:486.946667pt;}
.y154{bottom:488.866667pt;}
.y25{bottom:491.040000pt;}
.ya6{bottom:493.026667pt;}
.y4c{bottom:494.146667pt;}
.y86{bottom:494.306667pt;}
.y6c{bottom:494.946667pt;}
.y108{bottom:497.346667pt;}
.y185{bottom:502.146667pt;}
.y11f{bottom:502.306667pt;}
.y85{bottom:509.666667pt;}
.y190{bottom:511.293333pt;}
.y16e{bottom:512.066667pt;}
.y4b{bottom:512.546667pt;}
.y107{bottom:512.706667pt;}
.yee{bottom:514.146667pt;}
.yd6{bottom:514.466667pt;}
.y134{bottom:520.546667pt;}
.ya5{bottom:520.706667pt;}
.y6b{bottom:522.466667pt;}
.y153{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.y84{bottom:525.026667pt;}
.y106{bottom:528.066667pt;}
.y184{bottom:529.666667pt;}
.y11e{bottom:529.826667pt;}
.y23{bottom:538.080000pt;}
.y4a{bottom:538.946667pt;}
.y152{bottom:541.666667pt;}
.yd5{bottom:542.146667pt;}
.y18f{bottom:542.173333pt;}
.y105{bottom:543.266667pt;}
.y16d{bottom:546.466667pt;}
.ya{bottom:547.906667pt;}
.ya4{bottom:548.226667pt;}
.y6a{bottom:550.146667pt;}
.y17b{bottom:550.786800pt;}
.y49{bottom:557.346667pt;}
.y11d{bottom:557.506667pt;}
.y104{bottom:558.626667pt;}
.yd4{bottom:569.693333pt;}
.y33{bottom:573.053333pt;}
.y133{bottom:573.373333pt;}
.y103{bottom:574.013333pt;}
.y18e{bottom:574.493333pt;}
.y48{bottom:575.773333pt;}
.ya3{bottom:575.933333pt;}
.y151{bottom:576.093333pt;}
.y69{bottom:577.693333pt;}
.y16c{bottom:580.893333pt;}
.y183{bottom:584.893333pt;}
.y11c{bottom:585.053333pt;}
.y102{bottom:589.373333pt;}
.y132{bottom:591.773333pt;}
.y47{bottom:594.173333pt;}
.y150{bottom:594.493333pt;}
.yd3{bottom:597.373333pt;}
.ya2{bottom:603.453333pt;}
.y68{bottom:605.373333pt;}
.y18d{bottom:606.493333pt;}
.y131{bottom:610.173333pt;}
.yea{bottom:611.453333pt;}
.y46{bottom:612.573333pt;}
.y11b{bottom:612.733333pt;}
.y14f{bottom:612.893333pt;}
.y16b{bottom:615.293333pt;}
.yd2{bottom:624.893333pt;}
.y45{bottom:630.973333pt;}
.ya1{bottom:631.133333pt;}
.y67{bottom:632.893333pt;}
.y18c{bottom:638.493333pt;}
.y182{bottom:640.093333pt;}
.y11a{bottom:640.253333pt;}
.y130{bottom:644.573333pt;}
.y14e{bottom:647.293333pt;}
.y44{bottom:649.373333pt;}
.y16a{bottom:649.693333pt;}
.yd1{bottom:652.573333pt;}
.ya0{bottom:658.653333pt;}
.y66{bottom:660.573333pt;}
.y12f{bottom:662.973333pt;}
.y43{bottom:667.773333pt;}
.y119{bottom:667.933333pt;}
.yd0{bottom:680.093333pt;}
.y14d{bottom:681.693333pt;}
.y169{bottom:684.093333pt;}
.y42{bottom:686.173333pt;}
.y9f{bottom:686.333333pt;}
.y65{bottom:688.093333pt;}
.ye3{bottom:694.813333pt;}
.y181{bottom:695.293333pt;}
.y118{bottom:695.453333pt;}
.y12e{bottom:697.373333pt;}
.y14c{bottom:700.093333pt;}
.y41{bottom:704.573333pt;}
.ycf{bottom:705.853333pt;}
.y9e{bottom:713.853333pt;}
.y64{bottom:715.773333pt;}
.y168{bottom:718.493333pt;}
.yce{bottom:721.213333pt;}
.y40{bottom:722.973333pt;}
.y14b{bottom:734.493333pt;}
.ycd{bottom:736.573333pt;}
.y3f{bottom:741.373333pt;}
.y9d{bottom:741.533333pt;}
.y63{bottom:743.293333pt;}
.y180{bottom:750.493333pt;}
.ycc{bottom:751.933333pt;}
.y14a{bottom:752.893333pt;}
.ycb{bottom:767.293333pt;}
.y3e{bottom:768.893333pt;}
.y9c{bottom:769.053333pt;}
.y62{bottom:770.973333pt;}
.y17f{bottom:778.173333pt;}
.ye0{bottom:778.333333pt;}
.yca{bottom:782.493333pt;}
.y149{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.y9b{bottom:796.773333pt;}
.yc9{bottom:797.893333pt;}
.y3d{bottom:798.533333pt;}
.y148{bottom:805.733333pt;}
.ydf{bottom:810.213333pt;}
.y1ac{bottom:810.853333pt;}
.yc8{bottom:813.253333pt;}
.y167{bottom:821.733333pt;}
.y9a{bottom:822.533333pt;}
.y147{bottom:824.133333pt;}
.y3b{bottom:826.213333pt;}
.yc7{bottom:828.613333pt;}
.y3c{bottom:832.293333pt;}
.y17e{bottom:833.413333pt;}
.y99{bottom:837.733333pt;}
.yde{bottom:845.733333pt;}
.y98{bottom:853.093333pt;}
.y39{bottom:853.733333pt;}
.y166{bottom:856.133333pt;}
.y146{bottom:858.533333pt;}
.y3a{bottom:859.813333pt;}
.y17d{bottom:860.933333pt;}
.y97{bottom:868.453333pt;}
.y165{bottom:874.533333pt;}
.y145{bottom:876.933333pt;}
.y37{bottom:881.413333pt;}
.y96{bottom:883.813333pt;}
.y38{bottom:887.493333pt;}
.y164{bottom:892.933333pt;}
.y17c{bottom:895.333333pt;}
.y36{bottom:908.933333pt;}
.y144{bottom:911.333333pt;}
.y163{bottom:927.333333pt;}
.y143{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.y162{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h5{height:21.472000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h1d{height:27.712000pt;}
.h1a{height:28.687500pt;}
.h17{height:30.736250pt;}
.h12{height:31.343437pt;}
.h23{height:38.441250pt;}
.h1e{height:42.632812pt;}
.h28{height:42.649687pt;}
.h1b{height:43.031250pt;}
.h16{height:45.875000pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h29{height:49.148438pt;}
.h19{height:49.545000pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h1c{height:52.785000pt;}
.h2{height:52.834688pt;}
.h27{height:54.390938pt;}
.h15{height:56.843750pt;}
.h18{height:57.375000pt;}
.h13{height:58.563750pt;}
.h22{height:68.960000pt;}
.h26{height:70.773750pt;}
.hf{height:81.046875pt;}
.h20{height:82.720000pt;}
.h1f{height:82.880000pt;}
.h11{height:89.472000pt;}
.h21{height:96.672000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h2a{height:168.000000pt;}
.hb{height:272.226667pt;}
.h25{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h24{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w6{width:78.720000pt;}
.w11{width:109.760000pt;}
.w12{width:163.586667pt;}
.w14{width:168.826667pt;}
.wf{width:176.186667pt;}
.w13{width:180.346667pt;}
.w16{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w15{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x33{left:6.720000pt;}
.x6{left:7.712000pt;}
.xc{left:9.600000pt;}
.x32{left:13.440000pt;}
.xe{left:19.840000pt;}
.x2b{left:21.920000pt;}
.x34{left:23.360000pt;}
.x36{left:25.600000pt;}
.x2a{left:26.720000pt;}
.x35{left:28.480000pt;}
.xd{left:29.440000pt;}
.x18{left:33.440000pt;}
.x37{left:35.034667pt;}
.x2c{left:49.480000pt;}
.x31{left:54.874667pt;}
.x4{left:57.279988pt;}
.x30{left:58.880000pt;}
.x24{left:61.279988pt;}
.x5{left:64.960000pt;}
.x2d{left:68.840000pt;}
.x19{left:73.600000pt;}
.x2e{left:79.520000pt;}
.x29{left:98.432000pt;}
.x1a{left:100.800000pt;}
.x25{left:104.511988pt;}
.x16{left:118.333333pt;}
.x8{left:122.120000pt;}
.x28{left:126.431988pt;}
.x15{left:142.586667pt;}
.x10{left:144.986667pt;}
.x1c{left:146.746655pt;}
.x1b{left:166.440000pt;}
.x3a{left:180.040000pt;}
.x27{left:208.506655pt;}
.x23{left:249.346655pt;}
.x26{left:255.746655pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x13{left:373.120000pt;}
.x11{left:390.720000pt;}
.x1d{left:392.893322pt;}
.x39{left:405.533333pt;}
.x1{left:410.493322pt;}
.x38{left:416.573322pt;}
.x7{left:418.333333pt;}
.x22{left:484.093322pt;}
.x21{left:525.893322pt;}
.x2f{left:554.373333pt;}
.x1e{left:580.933322pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1f{left:723.199976pt;}
.x20{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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