
    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_5da14be15448d1eda1658726.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_033061964156b25f9455f2e9.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_73e4f66cbd69ad3973e58b10.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_ce95d2473e32a48962f60884.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2edf92efe04c6adf14fdeb9a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c6917c6e74bc8952ca3d75e4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26627dd2c44d4484ba9f94fe.woff')format("woff");}.ff8{font-family:ff8;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;}
.ls16{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls1a{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.lsf{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.011160px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsa{letter-spacing:0.020400px;}
.ls14{letter-spacing:0.041760px;}
.lsc{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls15{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.379600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.268160px;}
.ws5{word-spacing:-13.246800px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.215240px;}
.wsc{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.101000px;}
.wsb{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._6{margin-left:-3.607200px;}
._3{margin-left:-2.196600px;}
._0{margin-left:-1.110000px;}
._2{width:1.075824px;}
._f{width:2.182917px;}
._7{width:3.246600px;}
._8{width:4.959839px;}
._b{width:6.072000px;}
._e{width:7.214400px;}
._a{width:8.597400px;}
._9{width:9.619200px;}
._5{width:10.701600px;}
._4{width:12.064800px;}
._17{width:14.669280px;}
._2c{width:15.697656px;}
._11{width:16.713360px;}
._16{width:17.735400px;}
._18{width:18.757440px;}
._d{width:19.779600px;}
._c{width:21.447360px;}
._1f{width:23.025960px;}
._1a{width:24.408720px;}
._14{width:25.699080px;}
._15{width:26.705640px;}
._19{width:27.750720px;}
._30{width:28.941720px;}
._29{width:31.371744px;}
._1{width:32.377848px;}
._2b{width:33.633912px;}
._2e{width:45.991800px;}
._1d{width:51.041880px;}
._1c{width:52.364520px;}
._26{width:55.378200px;}
._34{width:65.049840px;}
._33{width:67.635000px;}
._31{width:68.717160px;}
._12{width:70.220160px;}
._2d{width:72.985680px;}
._27{width:75.390480px;}
._35{width:76.773240px;}
._37{width:77.915520px;}
._1b{width:79.659000px;}
._25{width:81.222120px;}
._2f{width:82.484640px;}
._24{width:98.837280px;}
._23{width:99.859320px;}
._38{width:101.181960px;}
._32{width:103.887360px;}
._20{width:107.254080px;}
._39{width:114.228000px;}
._3b{width:126.526680px;}
._28{width:135.450360px;}
._2a{width:154.087560px;}
._3a{width:163.105560px;}
._21{width:201.221640px;}
._13{width:216.265320px;}
._22{width:233.265600px;}
._3c{width:262.483920px;}
._1e{width:304.988760px;}
._40{width:306.283560px;}
._10{width:328.411800px;}
._36{width:336.732120px;}
._3f{width:453.906000px;}
._3e{width:479.757600px;}
._3d{width:1103.442480px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.830000px;}
.y30{bottom:7.920000px;}
.y124{bottom:25.380000px;}
.y32{bottom:25.470000px;}
.yc3{bottom:43.020000px;}
.yc5{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y133{bottom:112.170000px;}
.yec{bottom:112.530000px;}
.y106{bottom:114.240000px;}
.y11b{bottom:114.600000px;}
.y8d{bottom:118.650000px;}
.y174{bottom:120.450000px;}
.y58{bottom:124.500000px;}
.y132{bottom:129.720000px;}
.yeb{bottom:130.170000px;}
.y105{bottom:131.790000px;}
.yc0{bottom:132.240000px;}
.y8c{bottom:136.200000px;}
.y173{bottom:138.000000px;}
.y57{bottom:142.050000px;}
.y131{bottom:147.270000px;}
.yea{bottom:147.720000px;}
.y104{bottom:149.340000px;}
.ybf{bottom:149.790000px;}
.y8b{bottom:153.840000px;}
.y172{bottom:155.640000px;}
.y27{bottom:158.250000px;}
.y56{bottom:159.600000px;}
.y130{bottom:164.910000px;}
.ye9{bottom:165.270000px;}
.y103{bottom:166.980000px;}
.ybe{bottom:167.340000px;}
.y8a{bottom:171.390000px;}
.y26{bottom:175.800000px;}
.y171{bottom:182.190000px;}
.y12f{bottom:182.460000px;}
.ye8{bottom:182.910000px;}
.y102{bottom:184.530000px;}
.ybd{bottom:184.980000px;}
.y55{bottom:186.510000px;}
.y89{bottom:188.940000px;}
.y150{bottom:189.570000px;}
.y25{bottom:193.350000px;}
.y170{bottom:199.830000px;}
.ye7{bottom:200.460000px;}
.y101{bottom:202.170000px;}
.ybc{bottom:202.530000px;}
.y88{bottom:206.580000px;}
.y24{bottom:210.990000px;}
.y16f{bottom:217.380000px;}
.ye6{bottom:218.100000px;}
.ybb{bottom:220.170000px;}
.y87{bottom:224.130000px;}
.y14f{bottom:224.940000px;}
.y23{bottom:228.540000px;}
.y54{bottom:234.840000px;}
.ye5{bottom:235.650000px;}
.yba{bottom:237.720000px;}
.y86{bottom:241.680000px;}
.y14e{bottom:242.580000px;}
.y16e{bottom:243.930000px;}
.y22{bottom:246.090000px;}
.y53{bottom:252.390000px;}
.ye4{bottom:253.200000px;}
.yb9{bottom:255.270000px;}
.y14d{bottom:260.130000px;}
.y16d{bottom:261.570000px;}
.y21{bottom:263.730000px;}
.y52{bottom:270.030000px;}
.ye3{bottom:270.840000px;}
.yb8{bottom:272.910000px;}
.y85{bottom:277.320000px;}
.y14c{bottom:277.680000px;}
.y16c{bottom:279.120000px;}
.y20{bottom:281.280000px;}
.y51{bottom:287.580000px;}
.ye2{bottom:288.390000px;}
.yb7{bottom:290.460000px;}
.y84{bottom:294.870000px;}
.y14b{bottom:295.320000px;}
.y50{bottom:305.130000px;}
.y16b{bottom:305.760000px;}
.ye1{bottom:306.030000px;}
.yb6{bottom:308.100000px;}
.y83{bottom:312.510000px;}
.y14a{bottom:312.870000px;}
.y1f{bottom:316.920000px;}
.y4f{bottom:322.770000px;}
.y16a{bottom:323.310000px;}
.ye0{bottom:323.580000px;}
.yb5{bottom:325.650000px;}
.y82{bottom:330.060000px;}
.y149{bottom:330.510000px;}
.y1e{bottom:334.470000px;}
.y4e{bottom:340.320000px;}
.y169{bottom:340.860000px;}
.ydf{bottom:341.130000px;}
.yb4{bottom:343.200000px;}
.y81{bottom:347.610000px;}
.y148{bottom:348.060000px;}
.y1d{bottom:352.020000px;}
.y4d{bottom:357.870000px;}
.y168{bottom:358.500000px;}
.yde{bottom:358.770000px;}
.yb3{bottom:360.840000px;}
.y80{bottom:365.250000px;}
.y147{bottom:365.610000px;}
.y1c{bottom:369.660000px;}
.y4c{bottom:375.510000px;}
.y167{bottom:376.050000px;}
.ydd{bottom:376.320000px;}
.yb2{bottom:378.390000px;}
.y13c{bottom:378.840000px;}
.y7f{bottom:382.800000px;}
.y146{bottom:383.250000px;}
.y1b{bottom:387.210000px;}
.y4b{bottom:393.060000px;}
.ydc{bottom:393.870000px;}
.yb1{bottom:395.940000px;}
.y13b{bottom:396.390000px;}
.y7e{bottom:400.440000px;}
.y145{bottom:400.800000px;}
.y166{bottom:402.690000px;}
.y1a{bottom:404.850000px;}
.y4a{bottom:410.700000px;}
.y12e{bottom:411.510000px;}
.yb0{bottom:413.580000px;}
.y13a{bottom:413.940000px;}
.y7d{bottom:417.990000px;}
.y144{bottom:418.440000px;}
.y165{bottom:420.240000px;}
.y12d{bottom:429.060000px;}
.ydb{bottom:429.510000px;}
.yaf{bottom:431.130000px;}
.y11a{bottom:431.580000px;}
.y19{bottom:431.760000px;}
.y7c{bottom:435.540000px;}
.y143{bottom:435.990000px;}
.y164{bottom:437.790000px;}
.y49{bottom:446.250000px;}
.y12c{bottom:446.700000px;}
.yda{bottom:447.060000px;}
.yae{bottom:448.770000px;}
.y119{bottom:449.130000px;}
.y7b{bottom:453.180000px;}
.y142{bottom:453.540000px;}
.y48{bottom:463.800000px;}
.y12b{bottom:464.250000px;}
.yd9{bottom:464.700000px;}
.y100{bottom:466.320000px;}
.y118{bottom:466.770000px;}
.y7a{bottom:470.760000px;}
.y141{bottom:471.210000px;}
.y18{bottom:480.030000px;}
.y47{bottom:481.470000px;}
.y12a{bottom:481.830000px;}
.yd8{bottom:482.280000px;}
.yff{bottom:483.900000px;}
.yad{bottom:484.350000px;}
.y79{bottom:488.400000px;}
.y140{bottom:488.760000px;}
.y17{bottom:497.940000px;}
.y46{bottom:499.020000px;}
.y129{bottom:499.470000px;}
.yd7{bottom:499.830000px;}
.yfe{bottom:501.540000px;}
.yac{bottom:501.900000px;}
.y78{bottom:505.950000px;}
.y13f{bottom:506.400000px;}
.y163{bottom:513.060000px;}
.y45{bottom:516.660000px;}
.yd6{bottom:517.470000px;}
.yfd{bottom:519.090000px;}
.yab{bottom:519.540000px;}
.y77{bottom:523.500000px;}
.y13e{bottom:523.950000px;}
.y162{bottom:530.610000px;}
.y128{bottom:532.410000px;}
.y44{bottom:534.210000px;}
.y16{bottom:534.930000px;}
.yd5{bottom:535.020000px;}
.yfc{bottom:536.730000px;}
.yaa{bottom:537.090000px;}
.y13d{bottom:541.500000px;}
.y117{bottom:546.450000px;}
.y161{bottom:548.160000px;}
.y43{bottom:551.760000px;}
.y15{bottom:552.570000px;}
.yd4{bottom:552.660000px;}
.yfb{bottom:554.280000px;}
.ya9{bottom:554.730000px;}
.y76{bottom:559.140000px;}
.y160{bottom:565.800000px;}
.y42{bottom:569.400000px;}
.y14{bottom:570.120000px;}
.yd3{bottom:570.210000px;}
.yfa{bottom:571.830000px;}
.ya8{bottom:572.280000px;}
.y75{bottom:576.690000px;}
.y127{bottom:577.320000px;}
.y15f{bottom:583.350000px;}
.y41{bottom:586.950000px;}
.y13{bottom:587.670000px;}
.yd2{bottom:587.760000px;}
.ya7{bottom:589.830000px;}
.y74{bottom:594.330000px;}
.y116{bottom:594.690000px;}
.y15e{bottom:600.990000px;}
.y40{bottom:604.590000px;}
.y12{bottom:605.310000px;}
.yd1{bottom:605.400000px;}
.ya6{bottom:607.470000px;}
.y73{bottom:611.880000px;}
.y115{bottom:612.330000px;}
.y15d{bottom:618.540000px;}
.y3f{bottom:622.140000px;}
.y126{bottom:622.230000px;}
.y11{bottom:622.860000px;}
.yd0{bottom:622.950000px;}
.ya5{bottom:625.020000px;}
.y72{bottom:629.430000px;}
.y114{bottom:629.880000px;}
.y15c{bottom:636.090000px;}
.y10{bottom:640.500000px;}
.ycf{bottom:640.590000px;}
.ya4{bottom:642.660000px;}
.y71{bottom:647.070000px;}
.y113{bottom:647.430000px;}
.y15b{bottom:653.730000px;}
.y3e{bottom:657.690000px;}
.yf{bottom:658.050000px;}
.yce{bottom:658.140000px;}
.ya3{bottom:660.210000px;}
.y70{bottom:664.620000px;}
.y112{bottom:665.070000px;}
.y125{bottom:667.230000px;}
.y15a{bottom:671.280000px;}
.y3d{bottom:675.330000px;}
.ye{bottom:675.600000px;}
.ycd{bottom:675.690000px;}
.ya2{bottom:677.760000px;}
.y6f{bottom:682.260000px;}
.y111{bottom:682.620000px;}
.y159{bottom:688.920000px;}
.y3c{bottom:692.880000px;}
.yd{bottom:693.240000px;}
.ycc{bottom:693.330000px;}
.ya1{bottom:695.400000px;}
.y6e{bottom:699.810000px;}
.y110{bottom:700.260000px;}
.y158{bottom:706.470000px;}
.y3b{bottom:710.520000px;}
.yc{bottom:710.790000px;}
.ycb{bottom:710.880000px;}
.y123{bottom:712.140000px;}
.ya0{bottom:712.950000px;}
.y6d{bottom:717.360000px;}
.y10f{bottom:717.810000px;}
.y157{bottom:724.020000px;}
.y3a{bottom:728.070000px;}
.yb{bottom:728.430000px;}
.yca{bottom:728.520000px;}
.y9f{bottom:730.590000px;}
.y6c{bottom:735.000000px;}
.y10e{bottom:735.360000px;}
.y39{bottom:745.620000px;}
.yc9{bottom:746.070000px;}
.y9e{bottom:748.140000px;}
.y139{bottom:748.590000px;}
.y156{bottom:750.930000px;}
.y6b{bottom:752.550000px;}
.y10d{bottom:753.000000px;}
.ya{bottom:755.340000px;}
.y122{bottom:757.050000px;}
.y38{bottom:763.260000px;}
.y9d{bottom:765.690000px;}
.y138{bottom:766.140000px;}
.y6a{bottom:770.190000px;}
.y10c{bottom:770.550000px;}
.yc8{bottom:779.010000px;}
.y37{bottom:780.810000px;}
.y9c{bottom:783.330000px;}
.y137{bottom:783.690000px;}
.y69{bottom:787.740000px;}
.y10b{bottom:788.190000px;}
.y155{bottom:796.650000px;}
.y36{bottom:798.450000px;}
.y9b{bottom:800.880000px;}
.y136{bottom:801.330000px;}
.y9{bottom:803.580000px;}
.y68{bottom:805.290000px;}
.y10a{bottom:805.740000px;}
.yf9{bottom:818.520000px;}
.y135{bottom:818.880000px;}
.y109{bottom:823.290000px;}
.y35{bottom:831.390000px;}
.yf8{bottom:836.070000px;}
.y9a{bottom:836.520000px;}
.y8{bottom:839.130000px;}
.y67{bottom:840.930000px;}
.yc7{bottom:841.560000px;}
.yf7{bottom:853.620000px;}
.y99{bottom:854.070000px;}
.y66{bottom:858.480000px;}
.y121{bottom:858.930000px;}
.y154{bottom:859.110000px;}
.y134{bottom:863.340000px;}
.yf6{bottom:871.260000px;}
.y98{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.y65{bottom:876.030000px;}
.y34{bottom:876.300000px;}
.y120{bottom:876.480000px;}
.yc6{bottom:886.470000px;}
.yf5{bottom:888.810000px;}
.y97{bottom:889.260000px;}
.y17d{bottom:893.220000px;}
.y64{bottom:893.670000px;}
.y11f{bottom:894.030000px;}
.yf4{bottom:906.450000px;}
.y96{bottom:906.810000px;}
.y17c{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y63{bottom:911.220000px;}
.y11e{bottom:911.670000px;}
.y33{bottom:921.210000px;}
.y153{bottom:921.660000px;}
.yf3{bottom:924.000000px;}
.y95{bottom:924.450000px;}
.y62{bottom:928.860000px;}
.y11d{bottom:929.220000px;}
.y17b{bottom:937.410000px;}
.y61{bottom:946.410000px;}
.y11c{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.yc4{bottom:948.930000px;}
.y94{bottom:951.270000px;}
.y17a{bottom:954.960000px;}
.yf2{bottom:959.550000px;}
.y60{bottom:963.960000px;}
.y108{bottom:964.410000px;}
.y31{bottom:966.120000px;}
.y179{bottom:972.600000px;}
.yf1{bottom:977.190000px;}
.y5f{bottom:981.600000px;}
.y107{bottom:981.960000px;}
.y152{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.yf0{bottom:994.740000px;}
.y5e{bottom:999.150000px;}
.y93{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1011.060000px;}
.yc2{bottom:1011.510000px;}
.yef{bottom:1012.320000px;}
.y5d{bottom:1016.820000px;}
.y92{bottom:1017.180000px;}
.y151{bottom:1029.060000px;}
.yee{bottom:1029.960000px;}
.y5c{bottom:1034.370000px;}
.y91{bottom:1034.820000px;}
.y2d{bottom:1038.420000px;}
.y178{bottom:1043.370000px;}
.y5b{bottom:1051.920000px;}
.y90{bottom:1052.370000px;}
.yed{bottom:1056.870000px;}
.y177{bottom:1060.920000px;}
.y5a{bottom:1069.560000px;}
.y8f{bottom:1069.920000px;}
.yc1{bottom:1073.970000px;}
.y176{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.y8e{bottom:1087.560000px;}
.y175{bottom:1096.110000px;}
.y59{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h8{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:44.100000px;}
.hb{height:44.190000px;}
.ha{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.740000px;}
.h10{height:61.793886px;}
.he{height:61.860000px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:118.740000px;}
.w7{width:133.590000px;}
.w3{width:138.090000px;}
.wf{width:147.180000px;}
.wc{width:157.590000px;}
.w9{width:167.880000px;}
.w4{width:174.780000px;}
.w10{width:192.150000px;}
.w12{width:204.930000px;}
.wa{width:206.010000px;}
.we{width:207.450000px;}
.w11{width:209.190000px;}
.w5{width:216.480000px;}
.w6{width:224.100000px;}
.w8{width:245.970000px;}
.wd{width:269.670000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xb{left:188.310000px;}
.x8{left:203.070000px;}
.x5{left:207.570000px;}
.x2{left:211.079987px;}
.xe{left:216.750000px;}
.xc{left:346.620000px;}
.x6{left:383.160000px;}
.xf{left:409.620000px;}
.x9{left:449.850000px;}
.x7{left:600.360000px;}
.xd{left:617.010000px;}
.xa{left:618.450000px;}
.x10{left:619.530000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls1a{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.009920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsa{letter-spacing:0.018133pt;}
.ls14{letter-spacing:0.037120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.781867pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.793920pt;}
.ws5{word-spacing:-11.774933pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.746880pt;}
.wsc{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.645333pt;}
.wsb{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._6{margin-left:-3.206400pt;}
._3{margin-left:-1.952533pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.956288pt;}
._f{width:1.940370pt;}
._7{width:2.885867pt;}
._8{width:4.408745pt;}
._b{width:5.397333pt;}
._e{width:6.412800pt;}
._a{width:7.642134pt;}
._9{width:8.550400pt;}
._5{width:9.512534pt;}
._4{width:10.724267pt;}
._17{width:13.039360pt;}
._2c{width:13.953472pt;}
._11{width:14.856320pt;}
._16{width:15.764800pt;}
._18{width:16.673280pt;}
._d{width:17.581867pt;}
._c{width:19.064320pt;}
._1f{width:20.467520pt;}
._1a{width:21.696640pt;}
._14{width:22.843627pt;}
._15{width:23.738347pt;}
._19{width:24.667307pt;}
._30{width:25.725973pt;}
._29{width:27.885995pt;}
._1{width:28.780309pt;}
._2b{width:29.896811pt;}
._2e{width:40.881600pt;}
._1d{width:45.370560pt;}
._1c{width:46.546240pt;}
._26{width:49.225067pt;}
._34{width:57.822080pt;}
._33{width:60.120000pt;}
._31{width:61.081920pt;}
._12{width:62.417920pt;}
._2d{width:64.876160pt;}
._27{width:67.013760pt;}
._35{width:68.242880pt;}
._37{width:69.258240pt;}
._1b{width:70.808000pt;}
._25{width:72.197440pt;}
._2f{width:73.319680pt;}
._24{width:87.855360pt;}
._23{width:88.763840pt;}
._38{width:89.939520pt;}
._32{width:92.344320pt;}
._20{width:95.336960pt;}
._39{width:101.536000pt;}
._3b{width:112.468160pt;}
._28{width:120.400320pt;}
._2a{width:136.966720pt;}
._3a{width:144.982720pt;}
._21{width:178.863680pt;}
._13{width:192.235840pt;}
._22{width:207.347200pt;}
._3c{width:233.319040pt;}
._1e{width:271.101120pt;}
._40{width:272.252053pt;}
._10{width:291.921600pt;}
._36{width:299.317440pt;}
._3f{width:403.472000pt;}
._3e{width:426.451200pt;}
._3d{width:980.837760pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:6.960000pt;}
.y30{bottom:7.040000pt;}
.y124{bottom:22.560000pt;}
.y32{bottom:22.640000pt;}
.yc3{bottom:38.240000pt;}
.yc5{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y133{bottom:99.706667pt;}
.yec{bottom:100.026667pt;}
.y106{bottom:101.546667pt;}
.y11b{bottom:101.866667pt;}
.y8d{bottom:105.466667pt;}
.y174{bottom:107.066667pt;}
.y58{bottom:110.666667pt;}
.y132{bottom:115.306667pt;}
.yeb{bottom:115.706667pt;}
.y105{bottom:117.146667pt;}
.yc0{bottom:117.546667pt;}
.y8c{bottom:121.066667pt;}
.y173{bottom:122.666667pt;}
.y57{bottom:126.266667pt;}
.y131{bottom:130.906667pt;}
.yea{bottom:131.306667pt;}
.y104{bottom:132.746667pt;}
.ybf{bottom:133.146667pt;}
.y8b{bottom:136.746667pt;}
.y172{bottom:138.346667pt;}
.y27{bottom:140.666667pt;}
.y56{bottom:141.866667pt;}
.y130{bottom:146.586667pt;}
.ye9{bottom:146.906667pt;}
.y103{bottom:148.426667pt;}
.ybe{bottom:148.746667pt;}
.y8a{bottom:152.346667pt;}
.y26{bottom:156.266667pt;}
.y171{bottom:161.946667pt;}
.y12f{bottom:162.186667pt;}
.ye8{bottom:162.586667pt;}
.y102{bottom:164.026667pt;}
.ybd{bottom:164.426667pt;}
.y55{bottom:165.786667pt;}
.y89{bottom:167.946667pt;}
.y150{bottom:168.506667pt;}
.y25{bottom:171.866667pt;}
.y170{bottom:177.626667pt;}
.ye7{bottom:178.186667pt;}
.y101{bottom:179.706667pt;}
.ybc{bottom:180.026667pt;}
.y88{bottom:183.626667pt;}
.y24{bottom:187.546667pt;}
.y16f{bottom:193.226667pt;}
.ye6{bottom:193.866667pt;}
.ybb{bottom:195.706667pt;}
.y87{bottom:199.226667pt;}
.y14f{bottom:199.946667pt;}
.y23{bottom:203.146667pt;}
.y54{bottom:208.746667pt;}
.ye5{bottom:209.466667pt;}
.yba{bottom:211.306667pt;}
.y86{bottom:214.826667pt;}
.y14e{bottom:215.626667pt;}
.y16e{bottom:216.826667pt;}
.y22{bottom:218.746667pt;}
.y53{bottom:224.346667pt;}
.ye4{bottom:225.066667pt;}
.yb9{bottom:226.906667pt;}
.y14d{bottom:231.226667pt;}
.y16d{bottom:232.506667pt;}
.y21{bottom:234.426667pt;}
.y52{bottom:240.026667pt;}
.ye3{bottom:240.746667pt;}
.yb8{bottom:242.586667pt;}
.y85{bottom:246.506667pt;}
.y14c{bottom:246.826667pt;}
.y16c{bottom:248.106667pt;}
.y20{bottom:250.026667pt;}
.y51{bottom:255.626667pt;}
.ye2{bottom:256.346667pt;}
.yb7{bottom:258.186667pt;}
.y84{bottom:262.106667pt;}
.y14b{bottom:262.506667pt;}
.y50{bottom:271.226667pt;}
.y16b{bottom:271.786667pt;}
.ye1{bottom:272.026667pt;}
.yb6{bottom:273.866667pt;}
.y83{bottom:277.786667pt;}
.y14a{bottom:278.106667pt;}
.y1f{bottom:281.706667pt;}
.y4f{bottom:286.906667pt;}
.y16a{bottom:287.386667pt;}
.ye0{bottom:287.626667pt;}
.yb5{bottom:289.466667pt;}
.y82{bottom:293.386667pt;}
.y149{bottom:293.786667pt;}
.y1e{bottom:297.306667pt;}
.y4e{bottom:302.506667pt;}
.y169{bottom:302.986667pt;}
.ydf{bottom:303.226667pt;}
.yb4{bottom:305.066667pt;}
.y81{bottom:308.986667pt;}
.y148{bottom:309.386667pt;}
.y1d{bottom:312.906667pt;}
.y4d{bottom:318.106667pt;}
.y168{bottom:318.666667pt;}
.yde{bottom:318.906667pt;}
.yb3{bottom:320.746667pt;}
.y80{bottom:324.666667pt;}
.y147{bottom:324.986667pt;}
.y1c{bottom:328.586667pt;}
.y4c{bottom:333.786667pt;}
.y167{bottom:334.266667pt;}
.ydd{bottom:334.506667pt;}
.yb2{bottom:336.346667pt;}
.y13c{bottom:336.746667pt;}
.y7f{bottom:340.266667pt;}
.y146{bottom:340.666667pt;}
.y1b{bottom:344.186667pt;}
.y4b{bottom:349.386667pt;}
.ydc{bottom:350.106667pt;}
.yb1{bottom:351.946667pt;}
.y13b{bottom:352.346667pt;}
.y7e{bottom:355.946667pt;}
.y145{bottom:356.266667pt;}
.y166{bottom:357.946667pt;}
.y1a{bottom:359.866667pt;}
.y4a{bottom:365.066667pt;}
.y12e{bottom:365.786667pt;}
.yb0{bottom:367.626667pt;}
.y13a{bottom:367.946667pt;}
.y7d{bottom:371.546667pt;}
.y144{bottom:371.946667pt;}
.y165{bottom:373.546667pt;}
.y12d{bottom:381.386667pt;}
.ydb{bottom:381.786667pt;}
.yaf{bottom:383.226667pt;}
.y11a{bottom:383.626667pt;}
.y19{bottom:383.786667pt;}
.y7c{bottom:387.146667pt;}
.y143{bottom:387.546667pt;}
.y164{bottom:389.146667pt;}
.y49{bottom:396.666667pt;}
.y12c{bottom:397.066667pt;}
.yda{bottom:397.386667pt;}
.yae{bottom:398.906667pt;}
.y119{bottom:399.226667pt;}
.y7b{bottom:402.826667pt;}
.y142{bottom:403.146667pt;}
.y48{bottom:412.266667pt;}
.y12b{bottom:412.666667pt;}
.yd9{bottom:413.066667pt;}
.y100{bottom:414.506667pt;}
.y118{bottom:414.906667pt;}
.y7a{bottom:418.453333pt;}
.y141{bottom:418.853333pt;}
.y18{bottom:426.693333pt;}
.y47{bottom:427.973333pt;}
.y12a{bottom:428.293333pt;}
.yd8{bottom:428.693333pt;}
.yff{bottom:430.133333pt;}
.yad{bottom:430.533333pt;}
.y79{bottom:434.133333pt;}
.y140{bottom:434.453333pt;}
.y17{bottom:442.613333pt;}
.y46{bottom:443.573333pt;}
.y129{bottom:443.973333pt;}
.yd7{bottom:444.293333pt;}
.yfe{bottom:445.813333pt;}
.yac{bottom:446.133333pt;}
.y78{bottom:449.733333pt;}
.y13f{bottom:450.133333pt;}
.y163{bottom:456.053333pt;}
.y45{bottom:459.253333pt;}
.yd6{bottom:459.973333pt;}
.yfd{bottom:461.413333pt;}
.yab{bottom:461.813333pt;}
.y77{bottom:465.333333pt;}
.y13e{bottom:465.733333pt;}
.y162{bottom:471.653333pt;}
.y128{bottom:473.253333pt;}
.y44{bottom:474.853333pt;}
.y16{bottom:475.493333pt;}
.yd5{bottom:475.573333pt;}
.yfc{bottom:477.093333pt;}
.yaa{bottom:477.413333pt;}
.y13d{bottom:481.333333pt;}
.y117{bottom:485.733333pt;}
.y161{bottom:487.253333pt;}
.y43{bottom:490.453333pt;}
.y15{bottom:491.173333pt;}
.yd4{bottom:491.253333pt;}
.yfb{bottom:492.693333pt;}
.ya9{bottom:493.093333pt;}
.y76{bottom:497.013333pt;}
.y160{bottom:502.933333pt;}
.y42{bottom:506.133333pt;}
.y14{bottom:506.773333pt;}
.yd3{bottom:506.853333pt;}
.yfa{bottom:508.293333pt;}
.ya8{bottom:508.693333pt;}
.y75{bottom:512.613333pt;}
.y127{bottom:513.173333pt;}
.y15f{bottom:518.533333pt;}
.y41{bottom:521.733333pt;}
.y13{bottom:522.373333pt;}
.yd2{bottom:522.453333pt;}
.ya7{bottom:524.293333pt;}
.y74{bottom:528.293333pt;}
.y116{bottom:528.613333pt;}
.y15e{bottom:534.213333pt;}
.y40{bottom:537.413333pt;}
.y12{bottom:538.053333pt;}
.yd1{bottom:538.133333pt;}
.ya6{bottom:539.973333pt;}
.y73{bottom:543.893333pt;}
.y115{bottom:544.293333pt;}
.y15d{bottom:549.813333pt;}
.y3f{bottom:553.013333pt;}
.y126{bottom:553.093333pt;}
.y11{bottom:553.653333pt;}
.yd0{bottom:553.733333pt;}
.ya5{bottom:555.573333pt;}
.y72{bottom:559.493333pt;}
.y114{bottom:559.893333pt;}
.y15c{bottom:565.413333pt;}
.y10{bottom:569.333333pt;}
.ycf{bottom:569.413333pt;}
.ya4{bottom:571.253333pt;}
.y71{bottom:575.173333pt;}
.y113{bottom:575.493333pt;}
.y15b{bottom:581.093333pt;}
.y3e{bottom:584.613333pt;}
.yf{bottom:584.933333pt;}
.yce{bottom:585.013333pt;}
.ya3{bottom:586.853333pt;}
.y70{bottom:590.773333pt;}
.y112{bottom:591.173333pt;}
.y125{bottom:593.093333pt;}
.y15a{bottom:596.693333pt;}
.y3d{bottom:600.293333pt;}
.ye{bottom:600.533333pt;}
.ycd{bottom:600.613333pt;}
.ya2{bottom:602.453333pt;}
.y6f{bottom:606.453333pt;}
.y111{bottom:606.773333pt;}
.y159{bottom:612.373333pt;}
.y3c{bottom:615.893333pt;}
.yd{bottom:616.213333pt;}
.ycc{bottom:616.293333pt;}
.ya1{bottom:618.133333pt;}
.y6e{bottom:622.053333pt;}
.y110{bottom:622.453333pt;}
.y158{bottom:627.973333pt;}
.y3b{bottom:631.573333pt;}
.yc{bottom:631.813333pt;}
.ycb{bottom:631.893333pt;}
.y123{bottom:633.013333pt;}
.ya0{bottom:633.733333pt;}
.y6d{bottom:637.653333pt;}
.y10f{bottom:638.053333pt;}
.y157{bottom:643.573333pt;}
.y3a{bottom:647.173333pt;}
.yb{bottom:647.493333pt;}
.yca{bottom:647.573333pt;}
.y9f{bottom:649.413333pt;}
.y6c{bottom:653.333333pt;}
.y10e{bottom:653.653333pt;}
.y39{bottom:662.773333pt;}
.yc9{bottom:663.173333pt;}
.y9e{bottom:665.013333pt;}
.y139{bottom:665.413333pt;}
.y156{bottom:667.493333pt;}
.y6b{bottom:668.933333pt;}
.y10d{bottom:669.333333pt;}
.ya{bottom:671.413333pt;}
.y122{bottom:672.933333pt;}
.y38{bottom:678.453333pt;}
.y9d{bottom:680.613333pt;}
.y138{bottom:681.013333pt;}
.y6a{bottom:684.613333pt;}
.y10c{bottom:684.933333pt;}
.yc8{bottom:692.453333pt;}
.y37{bottom:694.053333pt;}
.y9c{bottom:696.293333pt;}
.y137{bottom:696.613333pt;}
.y69{bottom:700.213333pt;}
.y10b{bottom:700.613333pt;}
.y155{bottom:708.133333pt;}
.y36{bottom:709.733333pt;}
.y9b{bottom:711.893333pt;}
.y136{bottom:712.293333pt;}
.y9{bottom:714.293333pt;}
.y68{bottom:715.813333pt;}
.y10a{bottom:716.213333pt;}
.yf9{bottom:727.573333pt;}
.y135{bottom:727.893333pt;}
.y109{bottom:731.813333pt;}
.y35{bottom:739.013333pt;}
.yf8{bottom:743.173333pt;}
.y9a{bottom:743.573333pt;}
.y8{bottom:745.893333pt;}
.y67{bottom:747.493333pt;}
.yc7{bottom:748.053333pt;}
.yf7{bottom:758.773333pt;}
.y99{bottom:759.173333pt;}
.y66{bottom:763.093333pt;}
.y121{bottom:763.493333pt;}
.y154{bottom:763.653333pt;}
.y134{bottom:767.413333pt;}
.yf6{bottom:774.453333pt;}
.y98{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.y65{bottom:778.693333pt;}
.y34{bottom:778.933333pt;}
.y120{bottom:779.093333pt;}
.yc6{bottom:787.973333pt;}
.yf5{bottom:790.053333pt;}
.y97{bottom:790.453333pt;}
.y17d{bottom:793.973333pt;}
.y64{bottom:794.373333pt;}
.y11f{bottom:794.693333pt;}
.yf4{bottom:805.733333pt;}
.y96{bottom:806.053333pt;}
.y17c{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y63{bottom:809.973333pt;}
.y11e{bottom:810.373333pt;}
.y33{bottom:818.853333pt;}
.y153{bottom:819.253333pt;}
.yf3{bottom:821.333333pt;}
.y95{bottom:821.733333pt;}
.y62{bottom:825.653333pt;}
.y11d{bottom:825.973333pt;}
.y17b{bottom:833.253333pt;}
.y61{bottom:841.253333pt;}
.y11c{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.yc4{bottom:843.493333pt;}
.y94{bottom:845.573333pt;}
.y17a{bottom:848.853333pt;}
.yf2{bottom:852.933333pt;}
.y60{bottom:856.853333pt;}
.y108{bottom:857.253333pt;}
.y31{bottom:858.773333pt;}
.y179{bottom:864.533333pt;}
.yf1{bottom:868.613333pt;}
.y5f{bottom:872.533333pt;}
.y107{bottom:872.853333pt;}
.y152{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.yf0{bottom:884.213333pt;}
.y5e{bottom:888.133333pt;}
.y93{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:898.720000pt;}
.yc2{bottom:899.120000pt;}
.yef{bottom:899.840000pt;}
.y5d{bottom:903.840000pt;}
.y92{bottom:904.160000pt;}
.y151{bottom:914.720000pt;}
.yee{bottom:915.520000pt;}
.y5c{bottom:919.440000pt;}
.y91{bottom:919.840000pt;}
.y2d{bottom:923.040000pt;}
.y178{bottom:927.440000pt;}
.y5b{bottom:935.040000pt;}
.y90{bottom:935.440000pt;}
.yed{bottom:939.440000pt;}
.y177{bottom:943.040000pt;}
.y5a{bottom:950.720000pt;}
.y8f{bottom:951.040000pt;}
.yc1{bottom:954.640000pt;}
.y176{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.y8e{bottom:966.720000pt;}
.y175{bottom:974.320000pt;}
.y59{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:39.200000pt;}
.hb{height:39.280000pt;}
.ha{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.880000pt;}
.h10{height:54.927899pt;}
.he{height:54.986667pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:105.546667pt;}
.w7{width:118.746667pt;}
.w3{width:122.746667pt;}
.wf{width:130.826667pt;}
.wc{width:140.080000pt;}
.w9{width:149.226667pt;}
.w4{width:155.360000pt;}
.w10{width:170.800000pt;}
.w12{width:182.160000pt;}
.wa{width:183.120000pt;}
.we{width:184.400000pt;}
.w11{width:185.946667pt;}
.w5{width:192.426667pt;}
.w6{width:199.200000pt;}
.w8{width:218.640000pt;}
.wd{width:239.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xb{left:167.386667pt;}
.x8{left:180.506667pt;}
.x5{left:184.506667pt;}
.x2{left:187.626655pt;}
.xe{left:192.666667pt;}
.xc{left:308.106667pt;}
.x6{left:340.586667pt;}
.xf{left:364.106667pt;}
.x9{left:399.866667pt;}
.x7{left:533.653333pt;}
.xd{left:548.453333pt;}
.xa{left:549.733333pt;}
.x10{left:550.693333pt;}
.x3{left:711.413322pt;}
}




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