
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d7a966aa5dedb02c2254224.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc5acba6fee08918b22d0469.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ce8ec634623b3184c89b70dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9d5729a7e9f300596290314.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_712d605a5068731957904116.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_41ada8e2520e98e4b80284f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0803aab620858f33e7ffa48f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.370200px;}
.ls9{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.052560px;}
.ls15{letter-spacing:-0.038880px;}
.ls1b{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.lsb{letter-spacing:0.063600px;}
.ls6{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.169200px;}
.lsc{letter-spacing:0.209400px;}
.ls3{letter-spacing:0.211680px;}
.ls16{letter-spacing:0.319680px;}
.ls18{letter-spacing:0.328800px;}
.ls14{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls4{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.732960px;}
.ls11{letter-spacing:1.080000px;}
.ls1c{letter-spacing:47.466720px;}
.ls10{letter-spacing:64.026720px;}
.ls1a{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsd{word-spacing:-13.504200px;}
.ws10{word-spacing:-13.476000px;}
.ws13{word-spacing:-13.466880px;}
.ws5{word-spacing:-13.356600px;}
.ws14{word-spacing:-13.316400px;}
.ws3{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.111200px;}
.wse{word-spacing:-13.108320px;}
.ws11{word-spacing:-13.094640px;}
.wsf{word-spacing:-13.093920px;}
.wsc{word-spacing:-13.026000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._14{margin-left:-3.917764px;}
._f{margin-left:-2.749199px;}
._0{margin-left:-1.159200px;}
._1{width:1.110000px;}
._6{width:2.258400px;}
._a{width:3.274321px;}
._9{width:4.515120px;}
._12{width:5.593319px;}
._15{width:7.205281px;}
._b{width:8.332200px;}
._c{width:9.464283px;}
._11{width:10.995601px;}
._13{width:12.063118px;}
._d{width:14.286107px;}
._2{width:15.584484px;}
._3{width:16.827756px;}
._e{width:18.346200px;}
._2f{width:20.104800px;}
._10{width:21.214800px;}
._7{width:22.350001px;}
._8{width:23.402637px;}
._2d{width:25.935840px;}
._21{width:27.609120px;}
._1e{width:29.939760px;}
._3b{width:31.194720px;}
._1b{width:32.987520px;}
._16{width:34.208160px;}
._5{width:38.394437px;}
._4{width:39.508813px;}
._3d{width:41.259840px;}
._3c{width:42.728400px;}
._1f{width:49.387200px;}
._32{width:54.919440px;}
._18{width:56.532960px;}
._25{width:58.803840px;}
._20{width:59.904960px;}
._39{width:63.012480px;}
._3a{width:64.046160px;}
._27{width:65.437200px;}
._1a{width:69.978960px;}
._33{width:76.552560px;}
._37{width:78.335280px;}
._34{width:79.719840px;}
._2b{width:109.958400px;}
._26{width:112.050000px;}
._19{width:117.129600px;}
._1c{width:123.762960px;}
._2e{width:126.750960px;}
._2a{width:130.993920px;}
._30{width:134.460000px;}
._17{width:139.001760px;}
._31{width:153.702720px;}
._29{width:167.592480px;}
._22{width:178.742160px;}
._35{width:187.518480px;}
._28{width:190.813680px;}
._1d{width:209.279520px;}
._24{width:213.163920px;}
._23{width:226.968480px;}
._2c{width:228.163680px;}
._36{width:259.563120px;}
._38{width:291.449520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:7.740000px;}
.y86{bottom:7.920000px;}
.y8c{bottom:25.380000px;}
.y85{bottom:25.560000px;}
.y88{bottom:43.020000px;}
.y89{bottom:43.200000px;}
.y8b{bottom:60.660000px;}
.y90{bottom:60.690000px;}
.y2{bottom:73.296000px;}
.y29{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y7c{bottom:118.656000px;}
.ye1{bottom:119.196000px;}
.y14a{bottom:126.576000px;}
.y18e{bottom:134.136000px;}
.yb9{bottom:135.216000px;}
.y7b{bottom:136.296000px;}
.ye0{bottom:136.656000px;}
.y174{bottom:139.536000px;}
.y106{bottom:139.716000px;}
.y4f{bottom:139.896000px;}
.yec{bottom:146.916000px;}
.y18d{bottom:151.770000px;}
.yca{bottom:152.310000px;}
.yb8{bottom:152.670000px;}
.y27{bottom:153.030000px;}
.y7a{bottom:153.930000px;}
.y173{bottom:157.170000px;}
.y4e{bottom:157.350000px;}
.y139{bottom:158.610000px;}
.y149{bottom:158.790000px;}
.y9f{bottom:162.210000px;}
.yb7{bottom:170.310000px;}
.y26{bottom:170.490000px;}
.y79{bottom:171.390000px;}
.ydf{bottom:172.290000px;}
.y4d{bottom:174.990000px;}
.y138{bottom:176.250000px;}
.y18c{bottom:178.230000px;}
.yc9{bottom:178.770000px;}
.yeb{bottom:178.950000px;}
.y9e{bottom:179.850000px;}
.y172{bottom:183.630000px;}
.y105{bottom:183.810000px;}
.y25{bottom:188.130000px;}
.yde{bottom:189.930000px;}
.y4c{bottom:192.630000px;}
.y137{bottom:193.890000px;}
.y18b{bottom:195.870000px;}
.y9d{bottom:197.310000px;}
.y78{bottom:198.030000px;}
.y171{bottom:201.270000px;}
.y24{bottom:205.770000px;}
.ydd{bottom:207.570000px;}
.y136{bottom:211.350000px;}
.y18a{bottom:213.510000px;}
.yc8{bottom:214.410000px;}
.y9c{bottom:214.950000px;}
.y170{bottom:218.910000px;}
.y4b{bottom:219.270000px;}
.y104{bottom:219.450000px;}
.yb6{bottom:223.410000px;}
.ydc{bottom:225.030000px;}
.yc7{bottom:232.050000px;}
.y9b{bottom:232.590000px;}
.y77{bottom:233.490000px;}
.y103{bottom:237.090000px;}
.y135{bottom:237.990000px;}
.y189{bottom:239.970000px;}
.yb5{bottom:241.050000px;}
.y23{bottom:241.230000px;}
.ydb{bottom:242.670000px;}
.y16f{bottom:245.370000px;}
.y11a{bottom:249.510000px;}
.yc6{bottom:249.690000px;}
.y9a{bottom:250.050000px;}
.y76{bottom:251.130000px;}
.y102{bottom:254.550000px;}
.y188{bottom:257.610000px;}
.yb4{bottom:258.690000px;}
.y22{bottom:258.870000px;}
.yda{bottom:260.310000px;}
.y16e{bottom:263.010000px;}
.y119{bottom:267.150000px;}
.yc5{bottom:267.330000px;}
.y4a{bottom:267.690000px;}
.y75{bottom:268.770000px;}
.y101{bottom:272.190000px;}
.y134{bottom:273.450000px;}
.yb3{bottom:276.330000px;}
.y21{bottom:276.510000px;}
.yd9{bottom:277.770000px;}
.y16d{bottom:280.650000px;}
.y187{bottom:284.070000px;}
.yc4{bottom:284.790000px;}
.y99{bottom:285.330000px;}
.y74{bottom:286.410000px;}
.y100{bottom:289.830000px;}
.y133{bottom:291.090000px;}
.yb2{bottom:293.790000px;}
.y20{bottom:294.150000px;}
.y49{bottom:299.910000px;}
.y186{bottom:301.710000px;}
.yc3{bottom:302.430000px;}
.y98{bottom:302.790000px;}
.y73{bottom:303.870000px;}
.yd8{bottom:304.410000px;}
.y16c{bottom:307.110000px;}
.y132{bottom:308.775000px;}
.yb1{bottom:311.475000px;}
.y1f{bottom:311.655000px;}
.yff{bottom:316.515000px;}
.y185{bottom:319.395000px;}
.yc2{bottom:320.115000px;}
.y72{bottom:321.555000px;}
.y16b{bottom:324.795000px;}
.y131{bottom:326.415000px;}
.y118{bottom:328.935000px;}
.y1e{bottom:329.295000px;}
.y97{bottom:329.475000px;}
.yb0{bottom:337.935000px;}
.y71{bottom:339.195000px;}
.yd7{bottom:339.915000px;}
.y16a{bottom:342.435000px;}
.y130{bottom:343.875000px;}
.y184{bottom:346.035000px;}
.yc1{bottom:346.575000px;}
.y1d{bottom:346.935000px;}
.y70{bottom:356.835000px;}
.yd6{bottom:357.555000px;}
.y12f{bottom:361.515000px;}
.y117{bottom:361.875000px;}
.y96{bottom:362.055000px;}
.yfe{bottom:362.415000px;}
.y183{bottom:363.675000px;}
.y1c{bottom:364.395000px;}
.y169{bottom:369.075000px;}
.yaf{bottom:373.575000px;}
.y6f{bottom:374.295000px;}
.yd5{bottom:375.195000px;}
.yc0{bottom:379.155000px;}
.y182{bottom:381.135000px;}
.y168{bottom:386.715000px;}
.y1b{bottom:391.215000px;}
.yd4{bottom:392.835000px;}
.y12e{bottom:396.615000px;}
.y95{bottom:397.695000px;}
.y167{bottom:404.175000px;}
.y116{bottom:406.875000px;}
.yfd{bottom:407.235000px;}
.y181{bottom:407.775000px;}
.yae{bottom:408.855000px;}
.y6e{bottom:409.935000px;}
.yd3{bottom:410.295000px;}
.ybf{bottom:414.795000px;}
.y94{bottom:415.335000px;}
.y12d{bottom:423.255000px;}
.y180{bottom:425.415000px;}
.y6d{bottom:427.575000px;}
.y166{bottom:430.995000px;}
.y93{bottom:432.795000px;}
.yad{bottom:435.315000px;}
.yd2{bottom:437.115000px;}
.y1a{bottom:439.635000px;}
.y17f{bottom:442.875000px;}
.y6c{bottom:445.035000px;}
.ybe{bottom:446.835000px;}
.y92{bottom:450.435000px;}
.y115{bottom:451.695000px;}
.yfc{bottom:452.235000px;}
.y19{bottom:457.455000px;}
.y12c{bottom:458.895000px;}
.y6b{bottom:462.675000px;}
.yac{bottom:467.895000px;}
.y17e{bottom:469.515000px;}
.y12b{bottom:476.535000px;}
.y91{bottom:477.255000px;}
.y165{bottom:479.415000px;}
.y6a{bottom:480.315000px;}
.yd1{bottom:485.535000px;}
.y17d{bottom:487.155000px;}
.y12a{bottom:493.995000px;}
.y18{bottom:494.535000px;}
.y114{bottom:496.695000px;}
.yfb{bottom:497.055000px;}
.y69{bottom:497.775000px;}
.yab{bottom:503.535000px;}
.y17c{bottom:504.615000px;}
.y164{bottom:506.235000px;}
.y129{bottom:511.635000px;}
.y17{bottom:512.175000px;}
.y68{bottom:515.415000px;}
.yd0{bottom:517.575000px;}
.y48{bottom:519.375000px;}
.y8f{bottom:522.975000px;}
.y128{bottom:529.275000px;}
.y16{bottom:529.815000px;}
.yea{bottom:531.255000px;}
.y67{bottom:533.055000px;}
.yaa{bottom:535.575000px;}
.y47{bottom:537.015000px;}
.y148{bottom:540.255000px;}
.y113{bottom:541.695000px;}
.yfa{bottom:542.055000px;}
.y163{bottom:543.315000px;}
.y15{bottom:547.275000px;}
.ye9{bottom:548.895000px;}
.y66{bottom:550.695000px;}
.y46{bottom:554.475000px;}
.y127{bottom:555.915000px;}
.y147{bottom:557.895000px;}
.y14{bottom:564.915000px;}
.y17b{bottom:566.355000px;}
.ye8{bottom:566.535000px;}
.y162{bottom:570.135000px;}
.y45{bottom:572.115000px;}
.y146{bottom:575.355000px;}
.y65{bottom:577.155000px;}
.y13{bottom:582.555000px;}
.ye7{bottom:584.025000px;}
.y112{bottom:586.545000px;}
.yf9{bottom:586.905000px;}
.y44{bottom:589.785000px;}
.y145{bottom:593.025000px;}
.y12{bottom:600.045000px;}
.ye6{bottom:601.665000px;}
.y8d{bottom:603.105000px;}
.y126{bottom:604.365000px;}
.y43{bottom:607.245000px;}
.y144{bottom:610.665000px;}
.y64{bottom:612.825000px;}
.y11{bottom:617.685000px;}
.ye5{bottom:619.305000px;}
.y125{bottom:622.005000px;}
.y42{bottom:624.885000px;}
.y143{bottom:628.305000px;}
.y63{bottom:630.465000px;}
.y111{bottom:631.545000px;}
.yf8{bottom:631.905000px;}
.y161{bottom:634.065000px;}
.y10{bottom:635.325000px;}
.y17a{bottom:637.125000px;}
.y124{bottom:639.645000px;}
.y41{bottom:642.525000px;}
.ye4{bottom:645.765000px;}
.y62{bottom:647.925000px;}
.yf{bottom:652.785000px;}
.y179{bottom:654.765000px;}
.y123{bottom:657.105000px;}
.y40{bottom:660.165000px;}
.y61{bottom:665.565000px;}
.ye{bottom:670.425000px;}
.y160{bottom:671.145000px;}
.y178{bottom:672.405000px;}
.y122{bottom:674.745000px;}
.y110{bottom:676.365000px;}
.yf7{bottom:676.905000px;}
.y3f{bottom:677.625000px;}
.ye3{bottom:681.405000px;}
.y60{bottom:683.205000px;}
.yd{bottom:688.065000px;}
.y177{bottom:690.045000px;}
.y121{bottom:692.385000px;}
.y3e{bottom:695.265000px;}
.y15f{bottom:698.145000px;}
.y142{bottom:699.045000px;}
.yc{bottom:705.705000px;}
.y5f{bottom:709.665000px;}
.y120{bottom:710.025000px;}
.y141{bottom:716.505000px;}
.ye2{bottom:716.865000px;}
.y11f{bottom:727.485000px;}
.y8a{bottom:728.025000px;}
.y3d{bottom:730.725000px;}
.yb{bottom:732.345000px;}
.y140{bottom:734.145000px;}
.y15e{bottom:735.225000px;}
.y10f{bottom:742.605000px;}
.yf6{bottom:743.145000px;}
.y11e{bottom:745.125000px;}
.y5e{bottom:745.305000px;}
.y3c{bottom:749.085000px;}
.y13f{bottom:751.785000px;}
.y5d{bottom:762.945000px;}
.y3b{bottom:767.625000px;}
.y13e{bottom:769.245000px;}
.y11d{bottom:771.585000px;}
.y10e{bottom:778.245000px;}
.yf5{bottom:778.605000px;}
.y5c{bottom:780.585000px;}
.ya{bottom:780.765000px;}
.y15d{bottom:783.645000px;}
.y3a{bottom:786.165000px;}
.y13d{bottom:786.885000px;}
.y10d{bottom:795.885000px;}
.yf4{bottom:796.245000px;}
.y5b{bottom:798.045000px;}
.y15c{bottom:801.285000px;}
.y39{bottom:803.625000px;}
.y13c{bottom:804.525000px;}
.y11c{bottom:807.225000px;}
.y87{bottom:808.125000px;}
.y10c{bottom:813.525000px;}
.yf3{bottom:813.885000px;}
.y9{bottom:816.585000px;}
.y15b{bottom:818.925000px;}
.y176{bottom:822.525000px;}
.y5a{bottom:824.685000px;}
.y13b{bottom:830.985000px;}
.y10b{bottom:831.165000px;}
.yf2{bottom:831.525000px;}
.y15a{bottom:836.565000px;}
.y11b{bottom:839.445000px;}
.y38{bottom:839.985000px;}
.y175{bottom:840.165000px;}
.y10a{bottom:848.625000px;}
.yf1{bottom:849.165000px;}
.y8{bottom:852.585000px;}
.y159{bottom:854.025000px;}
.y59{bottom:860.190000px;}
.ybd{bottom:866.670000px;}
.y84{bottom:870.630000px;}
.y158{bottom:871.710000px;}
.y109{bottom:875.310000px;}
.y37{bottom:875.670000px;}
.y58{bottom:877.830000px;}
.ybc{bottom:884.310000px;}
.y7{bottom:888.630000px;}
.y157{bottom:889.350000px;}
.y36{bottom:893.310000px;}
.y57{bottom:895.470000px;}
.ybb{bottom:901.950000px;}
.y156{bottom:906.810000px;}
.y108{bottom:910.770000px;}
.y35{bottom:910.950000px;}
.y56{bottom:913.110000px;}
.yba{bottom:919.410000px;}
.yf0{bottom:919.770000px;}
.y155{bottom:924.450000px;}
.y6{bottom:924.630000px;}
.y34{bottom:928.410000px;}
.y83{bottom:937.050000px;}
.ycf{bottom:937.410000px;}
.y55{bottom:939.570000px;}
.y33{bottom:946.050000px;}
.yce{bottom:955.050000px;}
.ya9{bottom:955.410000px;}
.y154{bottom:959.910000px;}
.y5{bottom:962.970000px;}
.y107{bottom:963.690000px;}
.y82{bottom:972.510000px;}
.ycd{bottom:972.690000px;}
.ya8{bottom:973.050000px;}
.y54{bottom:975.210000px;}
.y153{bottom:977.550000px;}
.y32{bottom:981.510000px;}
.y4{bottom:987.630000px;}
.y81{bottom:990.150000px;}
.ya7{bottom:990.690000px;}
.y53{bottom:992.850000px;}
.y152{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y80{bottom:1007.790000px;}
.ya6{bottom:1008.150000px;}
.y52{bottom:1010.310000px;}
.y3{bottom:1012.290000px;}
.y151{bottom:1012.830000px;}
.y30{bottom:1016.790000px;}
.y7f{bottom:1025.430000px;}
.ya5{bottom:1025.790000px;}
.y51{bottom:1027.950000px;}
.y150{bottom:1030.470000px;}
.y2f{bottom:1034.430000px;}
.y7e{bottom:1043.070000px;}
.ya4{bottom:1043.430000px;}
.y14f{bottom:1047.930000px;}
.y13a{bottom:1051.890000px;}
.y2e{bottom:1052.070000px;}
.yef{bottom:1052.430000px;}
.y50{bottom:1054.590000px;}
.y7d{bottom:1060.530000px;}
.y18f{bottom:1060.890000px;}
.ya3{bottom:1061.070000px;}
.y14e{bottom:1065.570000px;}
.y2d{bottom:1069.530000px;}
.yee{bottom:1070.070000px;}
.ya2{bottom:1078.530000px;}
.y14d{bottom:1083.210000px;}
.y2c{bottom:1087.170000px;}
.yed{bottom:1087.530000px;}
.ya1{bottom:1096.170000px;}
.y14c{bottom:1100.670000px;}
.ycc{bottom:1105.170000px;}
.ya0{bottom:1113.810000px;}
.y2b{bottom:1122.630000px;}
.ycb{bottom:1122.810000px;}
.y14b{bottom:1127.490000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h3{height:39.468516px;}
.h12{height:44.100000px;}
.h13{height:44.136000px;}
.hd{height:44.280000px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.hc{height:59.614102px;}
.h9{height:61.423863px;}
.h10{height:61.740000px;}
.he{height:61.776000px;}
.hb{height:62.211094px;}
.ha{height:68.956875px;}
.h4{height:73.298672px;}
.hf{height:79.380000px;}
.h11{height:79.416000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:115.956000px;}
.w4{width:140.256000px;}
.w6{width:149.796000px;}
.wb{width:152.310000px;}
.w7{width:172.650000px;}
.w5{width:174.270000px;}
.wa{width:196.050000px;}
.w8{width:199.695000px;}
.w9{width:205.590000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.x1d{left:111.275987px;}
.x5{left:122.075987px;}
.x7{left:162.389987px;}
.x9{left:185.430000px;}
.x1c{left:196.049987px;}
.x2{left:202.709987px;}
.x13{left:255.089987px;}
.x1a{left:259.229987px;}
.x16{left:269.175000px;}
.xe{left:275.114987px;}
.x15{left:306.254987px;}
.x10{left:319.034987px;}
.x11{left:324.614987px;}
.xa{left:326.415000px;}
.x17{left:475.485000px;}
.xb{left:501.405000px;}
.xc{left:651.930000px;}
.x18{left:672.270000px;}
.x19{left:708.809987px;}
.x1b{left:764.969987px;}
.x12{left:768.209987px;}
.x14{left:771.809987px;}
.xf{left:772.889987px;}
.x3{left:791.969987px;}
.xd{left:799.889987px;}
.x6{left:822.419987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.046720pt;}
.ls15{letter-spacing:-0.034560pt;}
.ls1b{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.lsb{letter-spacing:0.056533pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.150400pt;}
.lsc{letter-spacing:0.186133pt;}
.ls3{letter-spacing:0.188160pt;}
.ls16{letter-spacing:0.284160pt;}
.ls18{letter-spacing:0.292267pt;}
.ls14{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls4{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.651520pt;}
.ls11{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:42.192640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls1a{letter-spacing:72.272640pt;}
.wsa{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.003733pt;}
.ws10{word-spacing:-11.978667pt;}
.ws13{word-spacing:-11.970560pt;}
.ws5{word-spacing:-11.872533pt;}
.ws14{word-spacing:-11.836800pt;}
.ws3{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.654400pt;}
.wse{word-spacing:-11.651840pt;}
.ws11{word-spacing:-11.639680pt;}
.wsf{word-spacing:-11.639040pt;}
.wsc{word-spacing:-11.578667pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._14{margin-left:-3.482457pt;}
._f{margin-left:-2.443732pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.986667pt;}
._6{width:2.007467pt;}
._a{width:2.910508pt;}
._9{width:4.013440pt;}
._12{width:4.971839pt;}
._15{width:6.404694pt;}
._b{width:7.406400pt;}
._c{width:8.412696pt;}
._11{width:9.773868pt;}
._13{width:10.722772pt;}
._d{width:12.698762pt;}
._2{width:13.852875pt;}
._3{width:14.958005pt;}
._e{width:16.307734pt;}
._2f{width:17.870933pt;}
._10{width:18.857600pt;}
._7{width:19.866668pt;}
._8{width:20.802344pt;}
._2d{width:23.054080pt;}
._21{width:24.541440pt;}
._1e{width:26.613120pt;}
._3b{width:27.728640pt;}
._1b{width:29.322240pt;}
._16{width:30.407253pt;}
._5{width:34.128388pt;}
._4{width:35.118945pt;}
._3d{width:36.675413pt;}
._3c{width:37.980800pt;}
._1f{width:43.899733pt;}
._32{width:48.817280pt;}
._18{width:50.251520pt;}
._25{width:52.270080pt;}
._20{width:53.248853pt;}
._39{width:56.011093pt;}
._3a{width:56.929920pt;}
._27{width:58.166400pt;}
._1a{width:62.203520pt;}
._33{width:68.046720pt;}
._37{width:69.631360pt;}
._34{width:70.862080pt;}
._2b{width:97.740800pt;}
._26{width:99.600000pt;}
._19{width:104.115200pt;}
._1c{width:110.011520pt;}
._2e{width:112.667520pt;}
._2a{width:116.439040pt;}
._30{width:119.520000pt;}
._17{width:123.557120pt;}
._31{width:136.624640pt;}
._29{width:148.971093pt;}
._22{width:158.881920pt;}
._35{width:166.683093pt;}
._28{width:169.612160pt;}
._1d{width:186.026240pt;}
._24{width:189.479040pt;}
._23{width:201.749760pt;}
._2c{width:202.812160pt;}
._36{width:230.722773pt;}
._38{width:259.066240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:6.880000pt;}
.y86{bottom:7.040000pt;}
.y8c{bottom:22.560000pt;}
.y85{bottom:22.720000pt;}
.y88{bottom:38.240000pt;}
.y89{bottom:38.400000pt;}
.y8b{bottom:53.920000pt;}
.y90{bottom:53.946667pt;}
.y2{bottom:65.152000pt;}
.y29{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y7c{bottom:105.472000pt;}
.ye1{bottom:105.952000pt;}
.y14a{bottom:112.512000pt;}
.y18e{bottom:119.232000pt;}
.yb9{bottom:120.192000pt;}
.y7b{bottom:121.152000pt;}
.ye0{bottom:121.472000pt;}
.y174{bottom:124.032000pt;}
.y106{bottom:124.192000pt;}
.y4f{bottom:124.352000pt;}
.yec{bottom:130.592000pt;}
.y18d{bottom:134.906667pt;}
.yca{bottom:135.386667pt;}
.yb8{bottom:135.706667pt;}
.y27{bottom:136.026667pt;}
.y7a{bottom:136.826667pt;}
.y173{bottom:139.706667pt;}
.y4e{bottom:139.866667pt;}
.y139{bottom:140.986667pt;}
.y149{bottom:141.146667pt;}
.y9f{bottom:144.186667pt;}
.yb7{bottom:151.386667pt;}
.y26{bottom:151.546667pt;}
.y79{bottom:152.346667pt;}
.ydf{bottom:153.146667pt;}
.y4d{bottom:155.546667pt;}
.y138{bottom:156.666667pt;}
.y18c{bottom:158.426667pt;}
.yc9{bottom:158.906667pt;}
.yeb{bottom:159.066667pt;}
.y9e{bottom:159.866667pt;}
.y172{bottom:163.226667pt;}
.y105{bottom:163.386667pt;}
.y25{bottom:167.226667pt;}
.yde{bottom:168.826667pt;}
.y4c{bottom:171.226667pt;}
.y137{bottom:172.346667pt;}
.y18b{bottom:174.106667pt;}
.y9d{bottom:175.386667pt;}
.y78{bottom:176.026667pt;}
.y171{bottom:178.906667pt;}
.y24{bottom:182.906667pt;}
.ydd{bottom:184.506667pt;}
.y136{bottom:187.866667pt;}
.y18a{bottom:189.786667pt;}
.yc8{bottom:190.586667pt;}
.y9c{bottom:191.066667pt;}
.y170{bottom:194.586667pt;}
.y4b{bottom:194.906667pt;}
.y104{bottom:195.066667pt;}
.yb6{bottom:198.586667pt;}
.ydc{bottom:200.026667pt;}
.yc7{bottom:206.266667pt;}
.y9b{bottom:206.746667pt;}
.y77{bottom:207.546667pt;}
.y103{bottom:210.746667pt;}
.y135{bottom:211.546667pt;}
.y189{bottom:213.306667pt;}
.yb5{bottom:214.266667pt;}
.y23{bottom:214.426667pt;}
.ydb{bottom:215.706667pt;}
.y16f{bottom:218.106667pt;}
.y11a{bottom:221.786667pt;}
.yc6{bottom:221.946667pt;}
.y9a{bottom:222.266667pt;}
.y76{bottom:223.226667pt;}
.y102{bottom:226.266667pt;}
.y188{bottom:228.986667pt;}
.yb4{bottom:229.946667pt;}
.y22{bottom:230.106667pt;}
.yda{bottom:231.386667pt;}
.y16e{bottom:233.786667pt;}
.y119{bottom:237.466667pt;}
.yc5{bottom:237.626667pt;}
.y4a{bottom:237.946667pt;}
.y75{bottom:238.906667pt;}
.y101{bottom:241.946667pt;}
.y134{bottom:243.066667pt;}
.yb3{bottom:245.626667pt;}
.y21{bottom:245.786667pt;}
.yd9{bottom:246.906667pt;}
.y16d{bottom:249.466667pt;}
.y187{bottom:252.506667pt;}
.yc4{bottom:253.146667pt;}
.y99{bottom:253.626667pt;}
.y74{bottom:254.586667pt;}
.y100{bottom:257.626667pt;}
.y133{bottom:258.746667pt;}
.yb2{bottom:261.146667pt;}
.y20{bottom:261.466667pt;}
.y49{bottom:266.586667pt;}
.y186{bottom:268.186667pt;}
.yc3{bottom:268.826667pt;}
.y98{bottom:269.146667pt;}
.y73{bottom:270.106667pt;}
.yd8{bottom:270.586667pt;}
.y16c{bottom:272.986667pt;}
.y132{bottom:274.466667pt;}
.yb1{bottom:276.866667pt;}
.y1f{bottom:277.026667pt;}
.yff{bottom:281.346667pt;}
.y185{bottom:283.906667pt;}
.yc2{bottom:284.546667pt;}
.y72{bottom:285.826667pt;}
.y16b{bottom:288.706667pt;}
.y131{bottom:290.146667pt;}
.y118{bottom:292.386667pt;}
.y1e{bottom:292.706667pt;}
.y97{bottom:292.866667pt;}
.yb0{bottom:300.386667pt;}
.y71{bottom:301.506667pt;}
.yd7{bottom:302.146667pt;}
.y16a{bottom:304.386667pt;}
.y130{bottom:305.666667pt;}
.y184{bottom:307.586667pt;}
.yc1{bottom:308.066667pt;}
.y1d{bottom:308.386667pt;}
.y70{bottom:317.186667pt;}
.yd6{bottom:317.826667pt;}
.y12f{bottom:321.346667pt;}
.y117{bottom:321.666667pt;}
.y96{bottom:321.826667pt;}
.yfe{bottom:322.146667pt;}
.y183{bottom:323.266667pt;}
.y1c{bottom:323.906667pt;}
.y169{bottom:328.066667pt;}
.yaf{bottom:332.066667pt;}
.y6f{bottom:332.706667pt;}
.yd5{bottom:333.506667pt;}
.yc0{bottom:337.026667pt;}
.y182{bottom:338.786667pt;}
.y168{bottom:343.746667pt;}
.y1b{bottom:347.746667pt;}
.yd4{bottom:349.186667pt;}
.y12e{bottom:352.546667pt;}
.y95{bottom:353.506667pt;}
.y167{bottom:359.266667pt;}
.y116{bottom:361.666667pt;}
.yfd{bottom:361.986667pt;}
.y181{bottom:362.466667pt;}
.yae{bottom:363.426667pt;}
.y6e{bottom:364.386667pt;}
.yd3{bottom:364.706667pt;}
.ybf{bottom:368.706667pt;}
.y94{bottom:369.186667pt;}
.y12d{bottom:376.226667pt;}
.y180{bottom:378.146667pt;}
.y6d{bottom:380.066667pt;}
.y166{bottom:383.106667pt;}
.y93{bottom:384.706667pt;}
.yad{bottom:386.946667pt;}
.yd2{bottom:388.546667pt;}
.y1a{bottom:390.786667pt;}
.y17f{bottom:393.666667pt;}
.y6c{bottom:395.586667pt;}
.ybe{bottom:397.186667pt;}
.y92{bottom:400.386667pt;}
.y115{bottom:401.506667pt;}
.yfc{bottom:401.986667pt;}
.y19{bottom:406.626667pt;}
.y12c{bottom:407.906667pt;}
.y6b{bottom:411.266667pt;}
.yac{bottom:415.906667pt;}
.y17e{bottom:417.346667pt;}
.y12b{bottom:423.586667pt;}
.y91{bottom:424.226667pt;}
.y165{bottom:426.146667pt;}
.y6a{bottom:426.946667pt;}
.yd1{bottom:431.586667pt;}
.y17d{bottom:433.026667pt;}
.y12a{bottom:439.106667pt;}
.y18{bottom:439.586667pt;}
.y114{bottom:441.506667pt;}
.yfb{bottom:441.826667pt;}
.y69{bottom:442.466667pt;}
.yab{bottom:447.586667pt;}
.y17c{bottom:448.546667pt;}
.y164{bottom:449.986667pt;}
.y129{bottom:454.786667pt;}
.y17{bottom:455.266667pt;}
.y68{bottom:458.146667pt;}
.yd0{bottom:460.066667pt;}
.y48{bottom:461.666667pt;}
.y8f{bottom:464.866667pt;}
.y128{bottom:470.466667pt;}
.y16{bottom:470.946667pt;}
.yea{bottom:472.226667pt;}
.y67{bottom:473.826667pt;}
.yaa{bottom:476.066667pt;}
.y47{bottom:477.346667pt;}
.y148{bottom:480.226667pt;}
.y113{bottom:481.506667pt;}
.yfa{bottom:481.826667pt;}
.y163{bottom:482.946667pt;}
.y15{bottom:486.466667pt;}
.ye9{bottom:487.906667pt;}
.y66{bottom:489.506667pt;}
.y46{bottom:492.866667pt;}
.y127{bottom:494.146667pt;}
.y147{bottom:495.906667pt;}
.y14{bottom:502.146667pt;}
.y17b{bottom:503.426667pt;}
.ye8{bottom:503.586667pt;}
.y162{bottom:506.786667pt;}
.y45{bottom:508.546667pt;}
.y146{bottom:511.426667pt;}
.y65{bottom:513.026667pt;}
.y13{bottom:517.826667pt;}
.ye7{bottom:519.133333pt;}
.y112{bottom:521.373333pt;}
.yf9{bottom:521.693333pt;}
.y44{bottom:524.253333pt;}
.y145{bottom:527.133333pt;}
.y12{bottom:533.373333pt;}
.ye6{bottom:534.813333pt;}
.y8d{bottom:536.093333pt;}
.y126{bottom:537.213333pt;}
.y43{bottom:539.773333pt;}
.y144{bottom:542.813333pt;}
.y64{bottom:544.733333pt;}
.y11{bottom:549.053333pt;}
.ye5{bottom:550.493333pt;}
.y125{bottom:552.893333pt;}
.y42{bottom:555.453333pt;}
.y143{bottom:558.493333pt;}
.y63{bottom:560.413333pt;}
.y111{bottom:561.373333pt;}
.yf8{bottom:561.693333pt;}
.y161{bottom:563.613333pt;}
.y10{bottom:564.733333pt;}
.y17a{bottom:566.333333pt;}
.y124{bottom:568.573333pt;}
.y41{bottom:571.133333pt;}
.ye4{bottom:574.013333pt;}
.y62{bottom:575.933333pt;}
.yf{bottom:580.253333pt;}
.y179{bottom:582.013333pt;}
.y123{bottom:584.093333pt;}
.y40{bottom:586.813333pt;}
.y61{bottom:591.613333pt;}
.ye{bottom:595.933333pt;}
.y160{bottom:596.573333pt;}
.y178{bottom:597.693333pt;}
.y122{bottom:599.773333pt;}
.y110{bottom:601.213333pt;}
.yf7{bottom:601.693333pt;}
.y3f{bottom:602.333333pt;}
.ye3{bottom:605.693333pt;}
.y60{bottom:607.293333pt;}
.yd{bottom:611.613333pt;}
.y177{bottom:613.373333pt;}
.y121{bottom:615.453333pt;}
.y3e{bottom:618.013333pt;}
.y15f{bottom:620.573333pt;}
.y142{bottom:621.373333pt;}
.yc{bottom:627.293333pt;}
.y5f{bottom:630.813333pt;}
.y120{bottom:631.133333pt;}
.y141{bottom:636.893333pt;}
.ye2{bottom:637.213333pt;}
.y11f{bottom:646.653333pt;}
.y8a{bottom:647.133333pt;}
.y3d{bottom:649.533333pt;}
.yb{bottom:650.973333pt;}
.y140{bottom:652.573333pt;}
.y15e{bottom:653.533333pt;}
.y10f{bottom:660.093333pt;}
.yf6{bottom:660.573333pt;}
.y11e{bottom:662.333333pt;}
.y5e{bottom:662.493333pt;}
.y3c{bottom:665.853333pt;}
.y13f{bottom:668.253333pt;}
.y5d{bottom:678.173333pt;}
.y3b{bottom:682.333333pt;}
.y13e{bottom:683.773333pt;}
.y11d{bottom:685.853333pt;}
.y10e{bottom:691.773333pt;}
.yf5{bottom:692.093333pt;}
.y5c{bottom:693.853333pt;}
.ya{bottom:694.013333pt;}
.y15d{bottom:696.573333pt;}
.y3a{bottom:698.813333pt;}
.y13d{bottom:699.453333pt;}
.y10d{bottom:707.453333pt;}
.yf4{bottom:707.773333pt;}
.y5b{bottom:709.373333pt;}
.y15c{bottom:712.253333pt;}
.y39{bottom:714.333333pt;}
.y13c{bottom:715.133333pt;}
.y11c{bottom:717.533333pt;}
.y87{bottom:718.333333pt;}
.y10c{bottom:723.133333pt;}
.yf3{bottom:723.453333pt;}
.y9{bottom:725.853333pt;}
.y15b{bottom:727.933333pt;}
.y176{bottom:731.133333pt;}
.y5a{bottom:733.053333pt;}
.y13b{bottom:738.653333pt;}
.y10b{bottom:738.813333pt;}
.yf2{bottom:739.133333pt;}
.y15a{bottom:743.613333pt;}
.y11b{bottom:746.173333pt;}
.y38{bottom:746.653333pt;}
.y175{bottom:746.813333pt;}
.y10a{bottom:754.333333pt;}
.yf1{bottom:754.813333pt;}
.y8{bottom:757.853333pt;}
.y159{bottom:759.133333pt;}
.y59{bottom:764.613333pt;}
.ybd{bottom:770.373333pt;}
.y84{bottom:773.893333pt;}
.y158{bottom:774.853333pt;}
.y109{bottom:778.053333pt;}
.y37{bottom:778.373333pt;}
.y58{bottom:780.293333pt;}
.ybc{bottom:786.053333pt;}
.y7{bottom:789.893333pt;}
.y157{bottom:790.533333pt;}
.y36{bottom:794.053333pt;}
.y57{bottom:795.973333pt;}
.ybb{bottom:801.733333pt;}
.y156{bottom:806.053333pt;}
.y108{bottom:809.573333pt;}
.y35{bottom:809.733333pt;}
.y56{bottom:811.653333pt;}
.yba{bottom:817.253333pt;}
.yf0{bottom:817.573333pt;}
.y155{bottom:821.733333pt;}
.y6{bottom:821.893333pt;}
.y34{bottom:825.253333pt;}
.y83{bottom:832.933333pt;}
.ycf{bottom:833.253333pt;}
.y55{bottom:835.173333pt;}
.y33{bottom:840.933333pt;}
.yce{bottom:848.933333pt;}
.ya9{bottom:849.253333pt;}
.y154{bottom:853.253333pt;}
.y5{bottom:855.973333pt;}
.y107{bottom:856.613333pt;}
.y82{bottom:864.453333pt;}
.ycd{bottom:864.613333pt;}
.ya8{bottom:864.933333pt;}
.y54{bottom:866.853333pt;}
.y153{bottom:868.933333pt;}
.y32{bottom:872.453333pt;}
.y4{bottom:877.893333pt;}
.y81{bottom:880.133333pt;}
.ya7{bottom:880.613333pt;}
.y53{bottom:882.533333pt;}
.y152{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y80{bottom:895.813333pt;}
.ya6{bottom:896.133333pt;}
.y52{bottom:898.053333pt;}
.y3{bottom:899.813333pt;}
.y151{bottom:900.293333pt;}
.y30{bottom:903.813333pt;}
.y7f{bottom:911.493333pt;}
.ya5{bottom:911.813333pt;}
.y51{bottom:913.733333pt;}
.y150{bottom:915.973333pt;}
.y2f{bottom:919.493333pt;}
.y7e{bottom:927.173333pt;}
.ya4{bottom:927.493333pt;}
.y14f{bottom:931.493333pt;}
.y13a{bottom:935.013333pt;}
.y2e{bottom:935.173333pt;}
.yef{bottom:935.493333pt;}
.y50{bottom:937.413333pt;}
.y7d{bottom:942.693333pt;}
.y18f{bottom:943.013333pt;}
.ya3{bottom:943.173333pt;}
.y14e{bottom:947.173333pt;}
.y2d{bottom:950.693333pt;}
.yee{bottom:951.173333pt;}
.ya2{bottom:958.693333pt;}
.y14d{bottom:962.853333pt;}
.y2c{bottom:966.373333pt;}
.yed{bottom:966.693333pt;}
.ya1{bottom:974.373333pt;}
.y14c{bottom:978.373333pt;}
.ycc{bottom:982.373333pt;}
.ya0{bottom:990.053333pt;}
.y2b{bottom:997.893333pt;}
.ycb{bottom:998.053333pt;}
.y14b{bottom:1002.213333pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h3{height:35.083125pt;}
.h12{height:39.200000pt;}
.h13{height:39.232000pt;}
.hd{height:39.360000pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.hc{height:52.990313pt;}
.h9{height:54.598989pt;}
.h10{height:54.880000pt;}
.he{height:54.912000pt;}
.hb{height:55.298750pt;}
.ha{height:61.295000pt;}
.h4{height:65.154375pt;}
.hf{height:70.560000pt;}
.h11{height:70.592000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:103.072000pt;}
.w4{width:124.672000pt;}
.w6{width:133.152000pt;}
.wb{width:135.386667pt;}
.w7{width:153.466667pt;}
.w5{width:154.906667pt;}
.wa{width:174.266667pt;}
.w8{width:177.506667pt;}
.w9{width:182.746667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.x1d{left:98.911988pt;}
.x5{left:108.511988pt;}
.x7{left:144.346655pt;}
.x9{left:164.826667pt;}
.x1c{left:174.266655pt;}
.x2{left:180.186655pt;}
.x13{left:226.746655pt;}
.x1a{left:230.426655pt;}
.x16{left:239.266667pt;}
.xe{left:244.546655pt;}
.x15{left:272.226655pt;}
.x10{left:283.586655pt;}
.x11{left:288.546655pt;}
.xa{left:290.146667pt;}
.x17{left:422.653333pt;}
.xb{left:445.693333pt;}
.xc{left:579.493333pt;}
.x18{left:597.573333pt;}
.x19{left:630.053322pt;}
.x1b{left:679.973322pt;}
.x12{left:682.853322pt;}
.x14{left:686.053322pt;}
.xf{left:687.013322pt;}
.x3{left:703.973322pt;}
.xd{left:711.013322pt;}
.x6{left:731.039988pt;}
}




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