
    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_b8c327195112a0643c21cae7.woff')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_86d7e306101b8d12c627d4dc.woff')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_55db013a262665f1d73ee26f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f175331e0242bc451094e6be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_15506b4793e1a872c0ed8e6b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_240fc3ae9ec59a7e37e13698.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_97ae6a18eac1af97eca41ff3.woff')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_cd38492ccca0a874214eec6f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60db30b99ebefb86e9c99e2b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d1fcee46e72103db624b993.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls14{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.178800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls1a{letter-spacing:-0.125400px;}
.ls15{letter-spacing:-0.124200px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.048960px;}
.ls9{letter-spacing:-0.015000px;}
.ls11{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.041760px;}
.lsd{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls18{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws16{word-spacing:-13.425600px;}
.ws11{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.268160px;}
.ws15{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws3{word-spacing:-13.211400px;}
.wse{word-spacing:-13.177440px;}
.ws10{word-spacing:-13.102200px;}
.ws13{word-spacing:-13.101000px;}
.ws14{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.047600px;}
.ws9{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._2{margin-left:-3.370080px;}
._3{margin-left:-2.182074px;}
._0{margin-left:-1.110000px;}
._1{width:1.013208px;}
._6{width:2.886000px;}
._7{width:4.125358px;}
._8{width:5.187317px;}
._d{width:6.582786px;}
._c{width:8.173080px;}
._b{width:9.251280px;}
._4{width:10.581000px;}
._5{width:11.921875px;}
._9{width:15.210600px;}
._a{width:16.312318px;}
._11{width:17.464156px;}
._e{width:18.877680px;}
._f{width:20.243280px;}
._12{width:21.763440px;}
._1c{width:22.845600px;}
._1d{width:23.867640px;}
._10{width:26.031960px;}
._20{width:27.835560px;}
._1e{width:29.579040px;}
._1f{width:30.781440px;}
._37{width:33.426720px;}
._39{width:35.110080px;}
._1a{width:36.432720px;}
._3b{width:37.514880px;}
._3a{width:38.536920px;}
._17{width:44.789400px;}
._2c{width:48.035880px;}
._19{width:51.823440px;}
._2d{width:54.108000px;}
._13{width:55.310400px;}
._32{width:64.208160px;}
._26{width:70.280280px;}
._29{width:71.783280px;}
._35{width:77.675040px;}
._31{width:95.831280px;}
._18{width:97.093800px;}
._34{width:102.624840px;}
._22{width:105.690960px;}
._16{width:116.933400px;}
._23{width:121.322160px;}
._2a{width:123.486480px;}
._24{width:126.853200px;}
._2b{width:139.779000px;}
._1b{width:145.370160px;}
._21{width:154.267920px;}
._28{width:155.891160px;}
._15{width:160.219800px;}
._38{width:185.710680px;}
._2f{width:191.753280px;}
._14{width:193.285800px;}
._33{width:197.854920px;}
._27{width:211.802760px;}
._25{width:226.472040px;}
._30{width:241.622280px;}
._2e{width:270.900720px;}
._36{width:286.952760px;}
._3c{width:695.588400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:7.830000px;}
.y95{bottom:7.920000px;}
.y8c{bottom:25.380000px;}
.y8f{bottom:25.470000px;}
.y128{bottom:25.500000px;}
.y8b{bottom:43.020000px;}
.y127{bottom:43.050000px;}
.y12d{bottom:43.110000px;}
.y131{bottom:57.690000px;}
.y137{bottom:60.570000px;}
.yd8{bottom:60.660000px;}
.y126{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y130{bottom:76.050000px;}
.yda{bottom:78.210000px;}
.y123{bottom:78.240000px;}
.y12f{bottom:94.410000px;}
.y136{bottom:95.760000px;}
.y122{bottom:95.790000px;}
.y12c{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y125{bottom:111.900000px;}
.y179{bottom:112.530000px;}
.y12e{bottom:112.680000px;}
.y135{bottom:113.310000px;}
.y12b{bottom:113.400000px;}
.y121{bottom:113.430000px;}
.y138{bottom:113.790000px;}
.ycd{bottom:116.580000px;}
.y113{bottom:116.940000px;}
.y7a{bottom:118.560000px;}
.yed{bottom:125.220000px;}
.y132{bottom:128.640000px;}
.y178{bottom:130.170000px;}
.y124{bottom:130.260000px;}
.y15e{bottom:130.530000px;}
.y134{bottom:130.950000px;}
.y120{bottom:130.980000px;}
.y12a{bottom:131.040000px;}
.y9e{bottom:131.250000px;}
.y28{bottom:131.520000px;}
.ycc{bottom:134.130000px;}
.y112{bottom:134.580000px;}
.y79{bottom:136.200000px;}
.yec{bottom:142.770000px;}
.y177{bottom:147.720000px;}
.y15d{bottom:148.170000px;}
.y133{bottom:148.500000px;}
.y11f{bottom:148.530000px;}
.y9d{bottom:148.800000px;}
.y27{bottom:149.070000px;}
.ycb{bottom:151.680000px;}
.y111{bottom:152.130000px;}
.y78{bottom:153.750000px;}
.y176{bottom:165.270000px;}
.y15c{bottom:165.720000px;}
.y9c{bottom:166.350000px;}
.y110{bottom:169.680000px;}
.y77{bottom:171.300000px;}
.yca{bottom:178.320000px;}
.yeb{bottom:178.410000px;}
.y175{bottom:182.910000px;}
.y15b{bottom:183.270000px;}
.y59{bottom:183.450000px;}
.y9b{bottom:183.990000px;}
.y26{bottom:184.620000px;}
.y76{bottom:188.940000px;}
.yea{bottom:195.960000px;}
.y10f{bottom:196.320000px;}
.y174{bottom:200.460000px;}
.y15a{bottom:200.910000px;}
.y9a{bottom:201.540000px;}
.y25{bottom:202.260000px;}
.y75{bottom:206.490000px;}
.ye9{bottom:213.600000px;}
.yc9{bottom:213.870000px;}
.y173{bottom:218.100000px;}
.y58{bottom:218.910000px;}
.y99{bottom:219.180000px;}
.y24{bottom:219.810000px;}
.y74{bottom:224.130000px;}
.ye8{bottom:231.150000px;}
.yc8{bottom:231.510000px;}
.y10e{bottom:231.870000px;}
.y172{bottom:235.650000px;}
.y57{bottom:236.460000px;}
.y23{bottom:237.450000px;}
.y73{bottom:241.680000px;}
.y98{bottom:246.090000px;}
.ye7{bottom:248.700000px;}
.yc7{bottom:249.060000px;}
.y10d{bottom:249.510000px;}
.y56{bottom:254.100000px;}
.y22{bottom:255.000000px;}
.y72{bottom:259.230000px;}
.y171{bottom:262.560000px;}
.ye6{bottom:266.340000px;}
.yc6{bottom:266.610000px;}
.y10c{bottom:267.060000px;}
.y55{bottom:271.650000px;}
.y21{bottom:272.550000px;}
.y71{bottom:276.870000px;}
.yc5{bottom:284.250000px;}
.y10b{bottom:284.610000px;}
.y19c{bottom:286.680000px;}
.y54{bottom:289.200000px;}
.y20{bottom:290.190000px;}
.y97{bottom:291.720000px;}
.ye5{bottom:292.890000px;}
.y129{bottom:296.580000px;}
.yc4{bottom:301.800000px;}
.y10a{bottom:302.250000px;}
.y19b{bottom:304.230000px;}
.y53{bottom:306.840000px;}
.y170{bottom:310.800000px;}
.y70{bottom:312.420000px;}
.yc3{bottom:319.440000px;}
.y109{bottom:319.800000px;}
.y52{bottom:324.390000px;}
.y1f{bottom:325.740000px;}
.ye4{bottom:328.440000px;}
.y6f{bottom:330.060000px;}
.y19a{bottom:330.780000px;}
.y96{bottom:336.630000px;}
.y159{bottom:341.940000px;}
.y1e{bottom:343.380000px;}
.y16f{bottom:345.990000px;}
.ye3{bottom:346.080000px;}
.y6e{bottom:347.610000px;}
.y199{bottom:348.420000px;}
.yc2{bottom:354.990000px;}
.y108{bottom:355.440000px;}
.y51{bottom:359.940000px;}
.y1d{bottom:360.930000px;}
.y16e{bottom:363.540000px;}
.ye2{bottom:363.630000px;}
.y6d{bottom:365.160000px;}
.yc1{bottom:372.540000px;}
.y107{bottom:372.990000px;}
.y198{bottom:374.970000px;}
.y50{bottom:377.580000px;}
.y1c{bottom:378.480000px;}
.y16d{bottom:381.180000px;}
.ye1{bottom:381.270000px;}
.y6c{bottom:382.800000px;}
.yc0{bottom:390.180000px;}
.y106{bottom:390.540000px;}
.y197{bottom:392.610000px;}
.y4f{bottom:395.130000px;}
.y1b{bottom:396.120000px;}
.y16c{bottom:398.730000px;}
.ye0{bottom:398.820000px;}
.y94{bottom:399.090000px;}
.y6b{bottom:400.350000px;}
.ybf{bottom:407.730000px;}
.y105{bottom:408.180000px;}
.y4e{bottom:412.770000px;}
.y1a{bottom:413.670000px;}
.ydf{bottom:416.370000px;}
.y6a{bottom:417.990000px;}
.y196{bottom:419.160000px;}
.ybe{bottom:425.370000px;}
.y104{bottom:425.730000px;}
.y4d{bottom:430.320000px;}
.y19{bottom:431.310000px;}
.yde{bottom:434.010000px;}
.y16b{bottom:434.370000px;}
.y69{bottom:435.540000px;}
.y195{bottom:436.710000px;}
.ybd{bottom:442.920000px;}
.y103{bottom:443.370000px;}
.y93{bottom:444.090000px;}
.y11e{bottom:447.060000px;}
.y4c{bottom:447.870000px;}
.y16a{bottom:451.920000px;}
.y68{bottom:453.090000px;}
.y18{bottom:458.220000px;}
.ybc{bottom:460.470000px;}
.ydd{bottom:460.920000px;}
.y194{bottom:463.350000px;}
.y158{bottom:465.510000px;}
.y169{bottom:469.470000px;}
.y67{bottom:470.760000px;}
.y193{bottom:480.930000px;}
.y4b{bottom:483.540000px;}
.ybb{bottom:487.140000px;}
.y92{bottom:489.030000px;}
.y157{bottom:492.090000px;}
.y102{bottom:496.500000px;}
.y66{bottom:497.310000px;}
.y192{bottom:498.480000px;}
.y4a{bottom:501.090000px;}
.y168{bottom:504.690000px;}
.ydc{bottom:506.580000px;}
.y17{bottom:506.760000px;}
.y101{bottom:514.140000px;}
.y49{bottom:518.730000px;}
.y167{bottom:522.330000px;}
.yba{bottom:522.690000px;}
.y191{bottom:525.120000px;}
.y156{bottom:527.730000px;}
.y100{bottom:531.690000px;}
.y65{bottom:532.950000px;}
.y91{bottom:533.940000px;}
.y48{bottom:536.280000px;}
.y166{bottom:539.880000px;}
.yb9{bottom:540.330000px;}
.y190{bottom:542.670000px;}
.y16{bottom:543.840000px;}
.y155{bottom:545.280000px;}
.yff{bottom:549.330000px;}
.y64{bottom:550.500000px;}
.y47{bottom:553.830000px;}
.yb8{bottom:557.880000px;}
.y15{bottom:561.390000px;}
.y154{bottom:562.830000px;}
.yfe{bottom:566.880000px;}
.y63{bottom:568.050000px;}
.y18f{bottom:569.310000px;}
.y46{bottom:571.470000px;}
.yb7{bottom:575.430000px;}
.y90{bottom:578.850000px;}
.y14{bottom:579.030000px;}
.y153{bottom:580.470000px;}
.yfd{bottom:584.430000px;}
.y62{bottom:585.690000px;}
.ydb{bottom:586.680000px;}
.y18e{bottom:586.860000px;}
.yb6{bottom:593.070000px;}
.y13{bottom:596.580000px;}
.y152{bottom:598.020000px;}
.yfc{bottom:602.070000px;}
.y61{bottom:603.240000px;}
.y45{bottom:607.020000px;}
.yb5{bottom:610.620000px;}
.y18d{bottom:613.410000px;}
.y12{bottom:614.130000px;}
.y11d{bottom:615.120000px;}
.y151{bottom:615.660000px;}
.y60{bottom:620.790000px;}
.y8e{bottom:623.760000px;}
.y44{bottom:624.660000px;}
.yb4{bottom:628.260000px;}
.y18c{bottom:631.050000px;}
.y11{bottom:631.770000px;}
.y150{bottom:633.210000px;}
.yfb{bottom:637.620000px;}
.y5f{bottom:638.430000px;}
.y43{bottom:642.210000px;}
.y165{bottom:645.810000px;}
.y18b{bottom:648.600000px;}
.y10{bottom:649.320000px;}
.yfa{bottom:655.260000px;}
.y5e{bottom:655.980000px;}
.y42{bottom:659.760000px;}
.y164{bottom:663.360000px;}
.yb3{bottom:663.810000px;}
.yd9{bottom:666.780000px;}
.yf{bottom:666.960000px;}
.y14f{bottom:668.760000px;}
.yf9{bottom:672.810000px;}
.y5d{bottom:673.620000px;}
.y18a{bottom:675.240000px;}
.y41{bottom:677.400000px;}
.yb2{bottom:681.360000px;}
.ye{bottom:684.510000px;}
.y8a{bottom:686.310000px;}
.y14e{bottom:686.400000px;}
.y163{bottom:690.000000px;}
.yf8{bottom:690.360000px;}
.y189{bottom:692.790000px;}
.y40{bottom:694.950000px;}
.yb1{bottom:699.000000px;}
.y5c{bottom:700.530000px;}
.yd{bottom:702.060000px;}
.y14d{bottom:703.950000px;}
.yf7{bottom:708.000000px;}
.y188{bottom:710.340000px;}
.y3f{bottom:712.590000px;}
.yb0{bottom:716.550000px;}
.yc{bottom:719.700000px;}
.y14c{bottom:721.590000px;}
.yf6{bottom:725.550000px;}
.y187{bottom:727.980000px;}
.yaf{bottom:734.190000px;}
.y11c{bottom:734.550000px;}
.yb{bottom:737.250000px;}
.y14b{bottom:739.140000px;}
.yf5{bottom:743.190000px;}
.y3e{bottom:748.140000px;}
.y5b{bottom:748.770000px;}
.yae{bottom:751.740000px;}
.y11b{bottom:752.190000px;}
.y186{bottom:754.530000px;}
.ya{bottom:754.890000px;}
.y14a{bottom:756.690000px;}
.y162{bottom:760.740000px;}
.yd7{bottom:764.430000px;}
.y3d{bottom:765.690000px;}
.yf4{bottom:769.740000px;}
.y89{bottom:770.190000px;}
.y185{bottom:772.170000px;}
.y149{bottom:774.330000px;}
.yad{bottom:778.290000px;}
.y5a{bottom:780.990000px;}
.y9{bottom:781.800000px;}
.y3c{bottom:783.330000px;}
.y11a{bottom:787.290000px;}
.y184{bottom:789.720000px;}
.y161{bottom:795.930000px;}
.y3b{bottom:800.880000px;}
.y119{bottom:804.930000px;}
.yf3{bottom:805.290000px;}
.y88{bottom:805.740000px;}
.y148{bottom:809.880000px;}
.y160{bottom:813.480000px;}
.yac{bottom:813.930000px;}
.y183{bottom:816.270000px;}
.y3a{bottom:818.520000px;}
.y118{bottom:822.480000px;}
.yf2{bottom:822.930000px;}
.y87{bottom:823.290000px;}
.y147{bottom:827.520000px;}
.y8{bottom:830.040000px;}
.yab{bottom:831.480000px;}
.y182{bottom:833.910000px;}
.y39{bottom:836.070000px;}
.y117{bottom:840.030000px;}
.yf1{bottom:840.480000px;}
.y86{bottom:840.930000px;}
.yd6{bottom:844.530000px;}
.y146{bottom:845.070000px;}
.yaa{bottom:849.030000px;}
.y181{bottom:851.460000px;}
.y38{bottom:853.620000px;}
.yf0{bottom:858.030000px;}
.y85{bottom:858.480000px;}
.y145{bottom:862.620000px;}
.y7{bottom:865.860000px;}
.ya9{bottom:866.670000px;}
.yef{bottom:875.670000px;}
.y84{bottom:876.030000px;}
.y180{bottom:878.100000px;}
.y144{bottom:880.260000px;}
.ya8{bottom:884.220000px;}
.y37{bottom:889.260000px;}
.yee{bottom:893.220000px;}
.y83{bottom:893.670000px;}
.y17f{bottom:895.650000px;}
.y143{bottom:897.810000px;}
.y6{bottom:901.860000px;}
.y36{bottom:906.810000px;}
.yd5{bottom:910.860000px;}
.y82{bottom:911.220000px;}
.ya7{bottom:919.410000px;}
.y17e{bottom:922.560000px;}
.y35{bottom:924.450000px;}
.y116{bottom:928.410000px;}
.y81{bottom:928.860000px;}
.y15f{bottom:936.960000px;}
.y5{bottom:937.860000px;}
.y34{bottom:942.000000px;}
.y115{bottom:945.960000px;}
.y80{bottom:946.410000px;}
.ya6{bottom:954.960000px;}
.y33{bottom:959.550000px;}
.y142{bottom:960.000000px;}
.y114{bottom:963.600000px;}
.yd4{bottom:963.960000px;}
.y17d{bottom:970.800000px;}
.ya5{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y32{bottom:977.190000px;}
.y141{bottom:977.550000px;}
.yd3{bottom:981.600000px;}
.y7f{bottom:981.960000px;}
.y17c{bottom:988.440000px;}
.ya4{bottom:990.150000px;}
.y31{bottom:994.740000px;}
.y140{bottom:995.190000px;}
.yd2{bottom:999.150000px;}
.y7e{bottom:999.600000px;}
.y17b{bottom:1005.990000px;}
.ya3{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y13f{bottom:1012.770000px;}
.yd1{bottom:1016.820000px;}
.y7d{bottom:1017.180000px;}
.y30{bottom:1021.680000px;}
.ya2{bottom:1025.370000px;}
.y13e{bottom:1030.320000px;}
.y17a{bottom:1032.930000px;}
.yd0{bottom:1034.370000px;}
.y7c{bottom:1034.820000px;}
.ya1{bottom:1042.920000px;}
.y13d{bottom:1047.960000px;}
.ycf{bottom:1051.920000px;}
.y7b{bottom:1052.370000px;}
.ya0{bottom:1060.560000px;}
.y13c{bottom:1065.510000px;}
.yce{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y13b{bottom:1083.150000px;}
.y9f{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y13a{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y139{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:44.130000px;}
.he{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h16{height:55.521914px;}
.h5{height:55.779258px;}
.h13{height:59.797090px;}
.h9{height:60.960938px;}
.hd{height:61.740000px;}
.hb{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.h10{height:79.380000px;}
.h11{height:96.930000px;}
.h14{height:149.760000px;}
.h15{height:167.220000px;}
.h12{height:167.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:90.720000px;}
.w9{width:98.400000px;}
.we{width:111.000000px;}
.w12{width:111.240000px;}
.wf{width:112.770000px;}
.wc{width:116.640000px;}
.w7{width:125.730000px;}
.w13{width:127.080000px;}
.wa{width:136.710000px;}
.w3{width:143.310000px;}
.w10{width:144.090000px;}
.w11{width:145.740000px;}
.w5{width:148.080000px;}
.w4{width:151.560000px;}
.wd{width:151.830000px;}
.wb{width:157.800000px;}
.w6{width:184.050000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:111.239987px;}
.xb{left:160.200000px;}
.x5{left:181.199987px;}
.x2{left:202.799987px;}
.x7{left:212.790000px;}
.xc{left:259.320000px;}
.x10{left:294.060000px;}
.x8{left:365.070000px;}
.xd{left:396.750000px;}
.x11{left:438.870000px;}
.x14{left:446.609987px;}
.x9{left:513.870000px;}
.xe{left:555.270000px;}
.x12{left:585.330000px;}
.xf{left:672.630000px;}
.x13{left:697.380000px;}
.xa{left:698.730000px;}
.x3{left:792.059987px;}
.x4{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls1a{letter-spacing:-0.111467pt;}
.ls15{letter-spacing:-0.110400pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.043520pt;}
.ls9{letter-spacing:-0.013333pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.037120pt;}
.lsd{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws16{word-spacing:-11.933867pt;}
.ws11{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.793920pt;}
.ws15{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws3{word-spacing:-11.743467pt;}
.wse{word-spacing:-11.713280pt;}
.ws10{word-spacing:-11.646400pt;}
.ws13{word-spacing:-11.645333pt;}
.ws14{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.597867pt;}
.ws9{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._2{margin-left:-2.995627pt;}
._3{margin-left:-1.939622pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.900629pt;}
._6{width:2.565334pt;}
._7{width:3.666985pt;}
._8{width:4.610948pt;}
._d{width:5.851365pt;}
._c{width:7.264960pt;}
._b{width:8.223360pt;}
._4{width:9.405333pt;}
._5{width:10.597222pt;}
._9{width:13.520534pt;}
._a{width:14.499838pt;}
._11{width:15.523694pt;}
._e{width:16.780160pt;}
._f{width:17.994027pt;}
._12{width:19.345280pt;}
._1c{width:20.307200pt;}
._1d{width:21.215680pt;}
._10{width:23.139520pt;}
._20{width:24.742720pt;}
._1e{width:26.292480pt;}
._1f{width:27.361280pt;}
._37{width:29.712640pt;}
._39{width:31.208960pt;}
._1a{width:32.384640pt;}
._3b{width:33.346560pt;}
._3a{width:34.255040pt;}
._17{width:39.812800pt;}
._2c{width:42.698560pt;}
._19{width:46.065280pt;}
._2d{width:48.096000pt;}
._13{width:49.164800pt;}
._32{width:57.073920pt;}
._26{width:62.471360pt;}
._29{width:63.807360pt;}
._35{width:69.044480pt;}
._31{width:85.183360pt;}
._18{width:86.305600pt;}
._34{width:91.222080pt;}
._22{width:93.947520pt;}
._16{width:103.940800pt;}
._23{width:107.841920pt;}
._2a{width:109.765760pt;}
._24{width:112.758400pt;}
._2b{width:124.248000pt;}
._1b{width:129.217920pt;}
._21{width:137.127040pt;}
._28{width:138.569920pt;}
._15{width:142.417600pt;}
._38{width:165.076160pt;}
._2f{width:170.447360pt;}
._14{width:171.809600pt;}
._33{width:175.871040pt;}
._27{width:188.269120pt;}
._25{width:201.308480pt;}
._30{width:214.775360pt;}
._2e{width:240.800640pt;}
._36{width:255.069120pt;}
._3c{width:618.300800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:6.960000pt;}
.y95{bottom:7.040000pt;}
.y8c{bottom:22.560000pt;}
.y8f{bottom:22.640000pt;}
.y128{bottom:22.666667pt;}
.y8b{bottom:38.240000pt;}
.y127{bottom:38.266667pt;}
.y12d{bottom:38.320000pt;}
.y131{bottom:51.280000pt;}
.y137{bottom:53.840000pt;}
.yd8{bottom:53.920000pt;}
.y126{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y130{bottom:67.600000pt;}
.yda{bottom:69.520000pt;}
.y123{bottom:69.546667pt;}
.y12f{bottom:83.920000pt;}
.y136{bottom:85.120000pt;}
.y122{bottom:85.146667pt;}
.y12c{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y125{bottom:99.466667pt;}
.y179{bottom:100.026667pt;}
.y12e{bottom:100.160000pt;}
.y135{bottom:100.720000pt;}
.y12b{bottom:100.800000pt;}
.y121{bottom:100.826667pt;}
.y138{bottom:101.146667pt;}
.ycd{bottom:103.626667pt;}
.y113{bottom:103.946667pt;}
.y7a{bottom:105.386667pt;}
.yed{bottom:111.306667pt;}
.y132{bottom:114.346667pt;}
.y178{bottom:115.706667pt;}
.y124{bottom:115.786667pt;}
.y15e{bottom:116.026667pt;}
.y134{bottom:116.400000pt;}
.y120{bottom:116.426667pt;}
.y12a{bottom:116.480000pt;}
.y9e{bottom:116.666667pt;}
.y28{bottom:116.906667pt;}
.ycc{bottom:119.226667pt;}
.y112{bottom:119.626667pt;}
.y79{bottom:121.066667pt;}
.yec{bottom:126.906667pt;}
.y177{bottom:131.306667pt;}
.y15d{bottom:131.706667pt;}
.y133{bottom:132.000000pt;}
.y11f{bottom:132.026667pt;}
.y9d{bottom:132.266667pt;}
.y27{bottom:132.506667pt;}
.ycb{bottom:134.826667pt;}
.y111{bottom:135.226667pt;}
.y78{bottom:136.666667pt;}
.y176{bottom:146.906667pt;}
.y15c{bottom:147.306667pt;}
.y9c{bottom:147.866667pt;}
.y110{bottom:150.826667pt;}
.y77{bottom:152.266667pt;}
.yca{bottom:158.506667pt;}
.yeb{bottom:158.586667pt;}
.y175{bottom:162.586667pt;}
.y15b{bottom:162.906667pt;}
.y59{bottom:163.066667pt;}
.y9b{bottom:163.546667pt;}
.y26{bottom:164.106667pt;}
.y76{bottom:167.946667pt;}
.yea{bottom:174.186667pt;}
.y10f{bottom:174.506667pt;}
.y174{bottom:178.186667pt;}
.y15a{bottom:178.586667pt;}
.y9a{bottom:179.146667pt;}
.y25{bottom:179.786667pt;}
.y75{bottom:183.546667pt;}
.ye9{bottom:189.866667pt;}
.yc9{bottom:190.106667pt;}
.y173{bottom:193.866667pt;}
.y58{bottom:194.586667pt;}
.y99{bottom:194.826667pt;}
.y24{bottom:195.386667pt;}
.y74{bottom:199.226667pt;}
.ye8{bottom:205.466667pt;}
.yc8{bottom:205.786667pt;}
.y10e{bottom:206.106667pt;}
.y172{bottom:209.466667pt;}
.y57{bottom:210.186667pt;}
.y23{bottom:211.066667pt;}
.y73{bottom:214.826667pt;}
.y98{bottom:218.746667pt;}
.ye7{bottom:221.066667pt;}
.yc7{bottom:221.386667pt;}
.y10d{bottom:221.786667pt;}
.y56{bottom:225.866667pt;}
.y22{bottom:226.666667pt;}
.y72{bottom:230.426667pt;}
.y171{bottom:233.386667pt;}
.ye6{bottom:236.746667pt;}
.yc6{bottom:236.986667pt;}
.y10c{bottom:237.386667pt;}
.y55{bottom:241.466667pt;}
.y21{bottom:242.266667pt;}
.y71{bottom:246.106667pt;}
.yc5{bottom:252.666667pt;}
.y10b{bottom:252.986667pt;}
.y19c{bottom:254.826667pt;}
.y54{bottom:257.066667pt;}
.y20{bottom:257.946667pt;}
.y97{bottom:259.306667pt;}
.ye5{bottom:260.346667pt;}
.y129{bottom:263.626667pt;}
.yc4{bottom:268.266667pt;}
.y10a{bottom:268.666667pt;}
.y19b{bottom:270.426667pt;}
.y53{bottom:272.746667pt;}
.y170{bottom:276.266667pt;}
.y70{bottom:277.706667pt;}
.yc3{bottom:283.946667pt;}
.y109{bottom:284.266667pt;}
.y52{bottom:288.346667pt;}
.y1f{bottom:289.546667pt;}
.ye4{bottom:291.946667pt;}
.y6f{bottom:293.386667pt;}
.y19a{bottom:294.026667pt;}
.y96{bottom:299.226667pt;}
.y159{bottom:303.946667pt;}
.y1e{bottom:305.226667pt;}
.y16f{bottom:307.546667pt;}
.ye3{bottom:307.626667pt;}
.y6e{bottom:308.986667pt;}
.y199{bottom:309.706667pt;}
.yc2{bottom:315.546667pt;}
.y108{bottom:315.946667pt;}
.y51{bottom:319.946667pt;}
.y1d{bottom:320.826667pt;}
.y16e{bottom:323.146667pt;}
.ye2{bottom:323.226667pt;}
.y6d{bottom:324.586667pt;}
.yc1{bottom:331.146667pt;}
.y107{bottom:331.546667pt;}
.y198{bottom:333.306667pt;}
.y50{bottom:335.626667pt;}
.y1c{bottom:336.426667pt;}
.y16d{bottom:338.826667pt;}
.ye1{bottom:338.906667pt;}
.y6c{bottom:340.266667pt;}
.yc0{bottom:346.826667pt;}
.y106{bottom:347.146667pt;}
.y197{bottom:348.986667pt;}
.y4f{bottom:351.226667pt;}
.y1b{bottom:352.106667pt;}
.y16c{bottom:354.426667pt;}
.ye0{bottom:354.506667pt;}
.y94{bottom:354.746667pt;}
.y6b{bottom:355.866667pt;}
.ybf{bottom:362.426667pt;}
.y105{bottom:362.826667pt;}
.y4e{bottom:366.906667pt;}
.y1a{bottom:367.706667pt;}
.ydf{bottom:370.106667pt;}
.y6a{bottom:371.546667pt;}
.y196{bottom:372.586667pt;}
.ybe{bottom:378.106667pt;}
.y104{bottom:378.426667pt;}
.y4d{bottom:382.506667pt;}
.y19{bottom:383.386667pt;}
.yde{bottom:385.786667pt;}
.y16b{bottom:386.106667pt;}
.y69{bottom:387.146667pt;}
.y195{bottom:388.186667pt;}
.ybd{bottom:393.706667pt;}
.y103{bottom:394.106667pt;}
.y93{bottom:394.746667pt;}
.y11e{bottom:397.386667pt;}
.y4c{bottom:398.106667pt;}
.y16a{bottom:401.706667pt;}
.y68{bottom:402.746667pt;}
.y18{bottom:407.306667pt;}
.ybc{bottom:409.306667pt;}
.ydd{bottom:409.706667pt;}
.y194{bottom:411.866667pt;}
.y158{bottom:413.786667pt;}
.y169{bottom:417.306667pt;}
.y67{bottom:418.453333pt;}
.y193{bottom:427.493333pt;}
.y4b{bottom:429.813333pt;}
.ybb{bottom:433.013333pt;}
.y92{bottom:434.693333pt;}
.y157{bottom:437.413333pt;}
.y102{bottom:441.333333pt;}
.y66{bottom:442.053333pt;}
.y192{bottom:443.093333pt;}
.y4a{bottom:445.413333pt;}
.y168{bottom:448.613333pt;}
.ydc{bottom:450.293333pt;}
.y17{bottom:450.453333pt;}
.y101{bottom:457.013333pt;}
.y49{bottom:461.093333pt;}
.y167{bottom:464.293333pt;}
.yba{bottom:464.613333pt;}
.y191{bottom:466.773333pt;}
.y156{bottom:469.093333pt;}
.y100{bottom:472.613333pt;}
.y65{bottom:473.733333pt;}
.y91{bottom:474.613333pt;}
.y48{bottom:476.693333pt;}
.y166{bottom:479.893333pt;}
.yb9{bottom:480.293333pt;}
.y190{bottom:482.373333pt;}
.y16{bottom:483.413333pt;}
.y155{bottom:484.693333pt;}
.yff{bottom:488.293333pt;}
.y64{bottom:489.333333pt;}
.y47{bottom:492.293333pt;}
.yb8{bottom:495.893333pt;}
.y15{bottom:499.013333pt;}
.y154{bottom:500.293333pt;}
.yfe{bottom:503.893333pt;}
.y63{bottom:504.933333pt;}
.y18f{bottom:506.053333pt;}
.y46{bottom:507.973333pt;}
.yb7{bottom:511.493333pt;}
.y90{bottom:514.533333pt;}
.y14{bottom:514.693333pt;}
.y153{bottom:515.973333pt;}
.yfd{bottom:519.493333pt;}
.y62{bottom:520.613333pt;}
.ydb{bottom:521.493333pt;}
.y18e{bottom:521.653333pt;}
.yb6{bottom:527.173333pt;}
.y13{bottom:530.293333pt;}
.y152{bottom:531.573333pt;}
.yfc{bottom:535.173333pt;}
.y61{bottom:536.213333pt;}
.y45{bottom:539.573333pt;}
.yb5{bottom:542.773333pt;}
.y18d{bottom:545.253333pt;}
.y12{bottom:545.893333pt;}
.y11d{bottom:546.773333pt;}
.y151{bottom:547.253333pt;}
.y60{bottom:551.813333pt;}
.y8e{bottom:554.453333pt;}
.y44{bottom:555.253333pt;}
.yb4{bottom:558.453333pt;}
.y18c{bottom:560.933333pt;}
.y11{bottom:561.573333pt;}
.y150{bottom:562.853333pt;}
.yfb{bottom:566.773333pt;}
.y5f{bottom:567.493333pt;}
.y43{bottom:570.853333pt;}
.y165{bottom:574.053333pt;}
.y18b{bottom:576.533333pt;}
.y10{bottom:577.173333pt;}
.yfa{bottom:582.453333pt;}
.y5e{bottom:583.093333pt;}
.y42{bottom:586.453333pt;}
.y164{bottom:589.653333pt;}
.yb3{bottom:590.053333pt;}
.yd9{bottom:592.693333pt;}
.yf{bottom:592.853333pt;}
.y14f{bottom:594.453333pt;}
.yf9{bottom:598.053333pt;}
.y5d{bottom:598.773333pt;}
.y18a{bottom:600.213333pt;}
.y41{bottom:602.133333pt;}
.yb2{bottom:605.653333pt;}
.ye{bottom:608.453333pt;}
.y8a{bottom:610.053333pt;}
.y14e{bottom:610.133333pt;}
.y163{bottom:613.333333pt;}
.yf8{bottom:613.653333pt;}
.y189{bottom:615.813333pt;}
.y40{bottom:617.733333pt;}
.yb1{bottom:621.333333pt;}
.y5c{bottom:622.693333pt;}
.yd{bottom:624.053333pt;}
.y14d{bottom:625.733333pt;}
.yf7{bottom:629.333333pt;}
.y188{bottom:631.413333pt;}
.y3f{bottom:633.413333pt;}
.yb0{bottom:636.933333pt;}
.yc{bottom:639.733333pt;}
.y14c{bottom:641.413333pt;}
.yf6{bottom:644.933333pt;}
.y187{bottom:647.093333pt;}
.yaf{bottom:652.613333pt;}
.y11c{bottom:652.933333pt;}
.yb{bottom:655.333333pt;}
.y14b{bottom:657.013333pt;}
.yf5{bottom:660.613333pt;}
.y3e{bottom:665.013333pt;}
.y5b{bottom:665.573333pt;}
.yae{bottom:668.213333pt;}
.y11b{bottom:668.613333pt;}
.y186{bottom:670.693333pt;}
.ya{bottom:671.013333pt;}
.y14a{bottom:672.613333pt;}
.y162{bottom:676.213333pt;}
.yd7{bottom:679.493333pt;}
.y3d{bottom:680.613333pt;}
.yf4{bottom:684.213333pt;}
.y89{bottom:684.613333pt;}
.y185{bottom:686.373333pt;}
.y149{bottom:688.293333pt;}
.yad{bottom:691.813333pt;}
.y5a{bottom:694.213333pt;}
.y9{bottom:694.933333pt;}
.y3c{bottom:696.293333pt;}
.y11a{bottom:699.813333pt;}
.y184{bottom:701.973333pt;}
.y161{bottom:707.493333pt;}
.y3b{bottom:711.893333pt;}
.y119{bottom:715.493333pt;}
.yf3{bottom:715.813333pt;}
.y88{bottom:716.213333pt;}
.y148{bottom:719.893333pt;}
.y160{bottom:723.093333pt;}
.yac{bottom:723.493333pt;}
.y183{bottom:725.573333pt;}
.y3a{bottom:727.573333pt;}
.y118{bottom:731.093333pt;}
.yf2{bottom:731.493333pt;}
.y87{bottom:731.813333pt;}
.y147{bottom:735.573333pt;}
.y8{bottom:737.813333pt;}
.yab{bottom:739.093333pt;}
.y182{bottom:741.253333pt;}
.y39{bottom:743.173333pt;}
.y117{bottom:746.693333pt;}
.yf1{bottom:747.093333pt;}
.y86{bottom:747.493333pt;}
.yd6{bottom:750.693333pt;}
.y146{bottom:751.173333pt;}
.yaa{bottom:754.693333pt;}
.y181{bottom:756.853333pt;}
.y38{bottom:758.773333pt;}
.yf0{bottom:762.693333pt;}
.y85{bottom:763.093333pt;}
.y145{bottom:766.773333pt;}
.y7{bottom:769.653333pt;}
.ya9{bottom:770.373333pt;}
.yef{bottom:778.373333pt;}
.y84{bottom:778.693333pt;}
.y180{bottom:780.533333pt;}
.y144{bottom:782.453333pt;}
.ya8{bottom:785.973333pt;}
.y37{bottom:790.453333pt;}
.yee{bottom:793.973333pt;}
.y83{bottom:794.373333pt;}
.y17f{bottom:796.133333pt;}
.y143{bottom:798.053333pt;}
.y6{bottom:801.653333pt;}
.y36{bottom:806.053333pt;}
.yd5{bottom:809.653333pt;}
.y82{bottom:809.973333pt;}
.ya7{bottom:817.253333pt;}
.y17e{bottom:820.053333pt;}
.y35{bottom:821.733333pt;}
.y116{bottom:825.253333pt;}
.y81{bottom:825.653333pt;}
.y15f{bottom:832.853333pt;}
.y5{bottom:833.653333pt;}
.y34{bottom:837.333333pt;}
.y115{bottom:840.853333pt;}
.y80{bottom:841.253333pt;}
.ya6{bottom:848.853333pt;}
.y33{bottom:852.933333pt;}
.y142{bottom:853.333333pt;}
.y114{bottom:856.533333pt;}
.yd4{bottom:856.853333pt;}
.y17d{bottom:862.933333pt;}
.ya5{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y32{bottom:868.613333pt;}
.y141{bottom:868.933333pt;}
.yd3{bottom:872.533333pt;}
.y7f{bottom:872.853333pt;}
.y17c{bottom:878.613333pt;}
.ya4{bottom:880.133333pt;}
.y31{bottom:884.213333pt;}
.y140{bottom:884.613333pt;}
.yd2{bottom:888.133333pt;}
.y7e{bottom:888.533333pt;}
.y17b{bottom:894.213333pt;}
.ya3{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y13f{bottom:900.240000pt;}
.yd1{bottom:903.840000pt;}
.y7d{bottom:904.160000pt;}
.y30{bottom:908.160000pt;}
.ya2{bottom:911.440000pt;}
.y13e{bottom:915.840000pt;}
.y17a{bottom:918.160000pt;}
.yd0{bottom:919.440000pt;}
.y7c{bottom:919.840000pt;}
.ya1{bottom:927.040000pt;}
.y13d{bottom:931.520000pt;}
.ycf{bottom:935.040000pt;}
.y7b{bottom:935.440000pt;}
.ya0{bottom:942.720000pt;}
.y13c{bottom:947.120000pt;}
.yce{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y13b{bottom:962.800000pt;}
.y9f{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y13a{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y139{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:39.226667pt;}
.he{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h16{height:49.352812pt;}
.h5{height:49.581562pt;}
.h13{height:53.152969pt;}
.h9{height:54.187500pt;}
.hd{height:54.880000pt;}
.hb{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.h10{height:70.560000pt;}
.h11{height:86.160000pt;}
.h14{height:133.120000pt;}
.h15{height:148.640000pt;}
.h12{height:148.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:80.640000pt;}
.w9{width:87.466667pt;}
.we{width:98.666667pt;}
.w12{width:98.880000pt;}
.wf{width:100.240000pt;}
.wc{width:103.680000pt;}
.w7{width:111.760000pt;}
.w13{width:112.960000pt;}
.wa{width:121.520000pt;}
.w3{width:127.386667pt;}
.w10{width:128.080000pt;}
.w11{width:129.546667pt;}
.w5{width:131.626667pt;}
.w4{width:134.720000pt;}
.wd{width:134.960000pt;}
.wb{width:140.266667pt;}
.w6{width:163.600000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:98.879988pt;}
.xb{left:142.400000pt;}
.x5{left:161.066655pt;}
.x2{left:180.266655pt;}
.x7{left:189.146667pt;}
.xc{left:230.506667pt;}
.x10{left:261.386667pt;}
.x8{left:324.506667pt;}
.xd{left:352.666667pt;}
.x11{left:390.106667pt;}
.x14{left:396.986655pt;}
.x9{left:456.773333pt;}
.xe{left:493.573333pt;}
.x12{left:520.293333pt;}
.xf{left:597.893333pt;}
.x13{left:619.893333pt;}
.xa{left:621.093333pt;}
.x3{left:704.053322pt;}
.x4{left:711.013322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  