
    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_daaa3e3c83d40317d112bf90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_aac2a912037f6d9bf27d8ec1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_ed978c85a30d4b34fe203dbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_9691f846af630d3665d1a261.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_e83df726c8ad346932f6d65b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_ea42a67b6537292073b47fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_b8973a2e44122db8b7c4b178.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b55492c04c503be118c07ec6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.172800px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.131400px;}
.ls7{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws8{word-spacing:-13.538304px;}
.ws7{word-spacing:-13.505760px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:470.809680px;}
._c{margin-left:-4.371840px;}
._7{margin-left:-2.715840px;}
._0{margin-left:-1.258560px;}
._1{width:1.314720px;}
._3{width:2.848080px;}
._b{width:3.975120px;}
._4{width:5.100480px;}
._5{width:6.236640px;}
._a{width:7.412640px;}
._e{width:8.809920px;}
._9{width:10.002240px;}
._8{width:11.194560px;}
._10{width:12.585600px;}
._11{width:13.854720px;}
._d{width:15.291840px;}
._12{width:18.422400px;}
._13{width:19.607040px;}
._6{width:20.998080px;}
._f{width:22.124160px;}
._14{width:23.382720px;}
._15{width:24.442560px;}
._17{width:26.562240px;}
._16{width:32.987520px;}
._2{width:286.451760px;}
.fca{color:rgb(238,0,0);}
.fc3{color:rgb(47,84,150);}
.fc5{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc7{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fcb{color:rgb(34,34,34);}
.fc9{color:rgb(46,46,46);}
.fc8{color:rgb(31,31,31);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.240000px;}
.y2e{bottom:3.600000px;}
.y34{bottom:3.960000px;}
.y16{bottom:5.040000px;}
.yad{bottom:7.560000px;}
.yab{bottom:7.740000px;}
.y19{bottom:9.720000px;}
.y3e{bottom:9.900000px;}
.ya7{bottom:11.880000px;}
.ye4{bottom:13.680000px;}
.ya8{bottom:20.520000px;}
.y2d{bottom:22.500000px;}
.y37{bottom:22.680000px;}
.y33{bottom:24.660000px;}
.yde{bottom:33.195000px;}
.y2c{bottom:41.580000px;}
.y32{bottom:45.180000px;}
.y9{bottom:56.340000px;}
.ye5{bottom:59.220000px;}
.y2b{bottom:60.480000px;}
.y36{bottom:60.840000px;}
.y31{bottom:64.485000px;}
.ydf{bottom:70.275000px;}
.y8{bottom:71.316000px;}
.ydc{bottom:72.750000px;}
.ydb{bottom:73.470000px;}
.y2a{bottom:79.560000px;}
.yec{bottom:81.210000px;}
.y30{bottom:85.185000px;}
.yda{bottom:91.260000px;}
.y29{bottom:98.460000px;}
.ye9{bottom:101.850000px;}
.ye0{bottom:107.310000px;}
.y117{bottom:115.056000px;}
.y3b{bottom:116.136000px;}
.y28{bottom:117.360000px;}
.y9b{bottom:117.756000px;}
.yef{bottom:120.780000px;}
.yca{bottom:124.236000px;}
.yd8{bottom:126.756000px;}
.ye8{bottom:128.955000px;}
.y116{bottom:135.756000px;}
.y27{bottom:136.440000px;}
.y9a{bottom:136.656000px;}
.y3a{bottom:136.836000px;}
.y66{bottom:137.556000px;}
.yc9{bottom:143.136000px;}
.ye1{bottom:144.390000px;}
.yd7{bottom:145.656000px;}
.yee{bottom:147.930000px;}
.y26{bottom:155.340000px;}
.y99{bottom:155.730000px;}
.y115{bottom:156.450000px;}
.y39{bottom:157.530000px;}
.yc8{bottom:162.030000px;}
.yd6{bottom:164.730000px;}
.y25{bottom:174.420000px;}
.y98{bottom:174.630000px;}
.y114{bottom:176.790000px;}
.y65{bottom:177.510000px;}
.y38{bottom:178.230000px;}
.yc7{bottom:181.110000px;}
.ye2{bottom:181.470000px;}
.yd5{bottom:183.630000px;}
.yeb{bottom:184.710000px;}
.y24{bottom:193.320000px;}
.y97{bottom:193.890000px;}
.y35{bottom:194.970000px;}
.y113{bottom:195.870000px;}
.y64{bottom:196.770000px;}
.yc6{bottom:200.010000px;}
.y8d{bottom:200.730000px;}
.yd4{bottom:202.890000px;}
.y140{bottom:204.870000px;}
.ydd{bottom:209.880000px;}
.y23{bottom:212.400000px;}
.y96{bottom:214.410000px;}
.y112{bottom:214.770000px;}
.y63{bottom:215.670000px;}
.ye3{bottom:218.550000px;}
.yc5{bottom:219.090000px;}
.y8c{bottom:219.810000px;}
.y13f{bottom:223.770000px;}
.yd3{bottom:229.710000px;}
.y22{bottom:231.330000px;}
.yea{bottom:232.200000px;}
.y111{bottom:234.030000px;}
.y62{bottom:234.570000px;}
.yc4{bottom:237.990000px;}
.y8b{bottom:238.710000px;}
.y13e{bottom:242.850000px;}
.ye7{bottom:244.440000px;}
.y21{bottom:250.230000px;}
.y110{bottom:250.770000px;}
.y61{bottom:253.650000px;}
.yc3{bottom:256.890000px;}
.y8a{bottom:257.610000px;}
.y13d{bottom:261.750000px;}
.y20{bottom:269.310000px;}
.y2f{bottom:272.550000px;}
.yc2{bottom:275.970000px;}
.y89{bottom:276.690000px;}
.ye6{bottom:277.380000px;}
.y13c{bottom:280.830000px;}
.yed{bottom:286.845000px;}
.y10f{bottom:287.130000px;}
.y1f{bottom:288.210000px;}
.y60{bottom:291.630000px;}
.yc1{bottom:294.870000px;}
.y88{bottom:295.590000px;}
.y13b{bottom:299.730000px;}
.y1e{bottom:307.290000px;}
.y10e{bottom:307.650000px;}
.y5f{bottom:310.530000px;}
.yc0{bottom:313.950000px;}
.y87{bottom:314.670000px;}
.y13a{bottom:318.630000px;}
.y1d{bottom:326.190000px;}
.y10d{bottom:326.550000px;}
.y5e{bottom:329.430000px;}
.ybf{bottom:332.850000px;}
.y86{bottom:333.570000px;}
.y139{bottom:337.755000px;}
.y1c{bottom:345.090000px;}
.y10c{bottom:345.495000px;}
.y5d{bottom:348.555000px;}
.ybe{bottom:351.975000px;}
.y85{bottom:352.515000px;}
.y138{bottom:356.655000px;}
.y1b{bottom:364.170000px;}
.y10b{bottom:364.755000px;}
.y5c{bottom:367.455000px;}
.ybd{bottom:370.875000px;}
.y84{bottom:371.595000px;}
.y1a{bottom:374.475000px;}
.y137{bottom:375.735000px;}
.y10a{bottom:381.495000px;}
.y5b{bottom:386.535000px;}
.ybc{bottom:389.775000px;}
.y83{bottom:390.495000px;}
.y136{bottom:394.635000px;}
.y5a{bottom:405.435000px;}
.ybb{bottom:408.855000px;}
.y82{bottom:409.575000px;}
.y135{bottom:413.715000px;}
.y109{bottom:417.675000px;}
.yba{bottom:427.755000px;}
.y81{bottom:428.475000px;}
.y134{bottom:432.615000px;}
.y108{bottom:436.575000px;}
.y59{bottom:445.215000px;}
.yb9{bottom:446.835000px;}
.y80{bottom:447.375000px;}
.y133{bottom:451.515000px;}
.y107{bottom:455.655000px;}
.y58{bottom:464.475000px;}
.yb8{bottom:465.735000px;}
.y7f{bottom:466.455000px;}
.y132{bottom:470.595000px;}
.y106{bottom:474.555000px;}
.y57{bottom:483.375000px;}
.yb7{bottom:484.635000px;}
.y7e{bottom:485.355000px;}
.y131{bottom:489.495000px;}
.y105{bottom:493.455000px;}
.y56{bottom:502.275000px;}
.yb6{bottom:503.715000px;}
.y7d{bottom:504.435000px;}
.y130{bottom:508.575000px;}
.y104{bottom:513.255000px;}
.y55{bottom:521.355000px;}
.y7c{bottom:523.335000px;}
.y12f{bottom:527.475000px;}
.y103{bottom:528.915000px;}
.yb5{bottom:533.235000px;}
.y54{bottom:540.255000px;}
.y7b{bottom:542.235000px;}
.y12e{bottom:546.375000px;}
.yb4{bottom:550.695000px;}
.y95{bottom:553.755000px;}
.y53{bottom:559.335000px;}
.yd2{bottom:559.695000px;}
.y7a{bottom:561.315000px;}
.y102{bottom:565.095000px;}
.y12d{bottom:565.455000px;}
.y94{bottom:573.015000px;}
.yb3{bottom:577.515000px;}
.y52{bottom:578.235000px;}
.yd1{bottom:578.595000px;}
.y79{bottom:580.215000px;}
.y101{bottom:583.995000px;}
.y12c{bottom:584.355000px;}
.y93{bottom:592.275000px;}
.y51{bottom:597.135000px;}
.yd0{bottom:597.675000px;}
.y78{bottom:599.295000px;}
.y100{bottom:603.075000px;}
.y12b{bottom:603.435000px;}
.yb2{bottom:604.365000px;}
.y92{bottom:612.825000px;}
.y50{bottom:616.245000px;}
.ycf{bottom:616.605000px;}
.y77{bottom:618.225000px;}
.yff{bottom:622.005000px;}
.y12a{bottom:622.365000px;}
.yb1{bottom:631.185000px;}
.y91{bottom:631.725000px;}
.yce{bottom:635.685000px;}
.y76{bottom:637.305000px;}
.yfe{bottom:640.905000px;}
.y129{bottom:641.265000px;}
.ycd{bottom:654.585000px;}
.y4f{bottom:656.025000px;}
.y75{bottom:656.205000px;}
.yb0{bottom:657.825000px;}
.yfd{bottom:659.985000px;}
.y128{bottom:660.345000px;}
.y90{bottom:661.425000px;}
.y4e{bottom:675.105000px;}
.yfc{bottom:678.885000px;}
.y127{bottom:679.245000px;}
.y8f{bottom:681.765000px;}
.ycc{bottom:682.845000px;}
.yaf{bottom:684.645000px;}
.y4d{bottom:694.185000px;}
.yfb{bottom:697.965000px;}
.y126{bottom:698.325000px;}
.y8e{bottom:707.145000px;}
.ycb{bottom:708.405000px;}
.yd9{bottom:711.360000px;}
.yae{bottom:711.465000px;}
.y4c{bottom:713.085000px;}
.yfa{bottom:716.865000px;}
.y125{bottom:717.225000px;}
.y4b{bottom:732.165000px;}
.yf9{bottom:735.765000px;}
.y124{bottom:736.125000px;}
.yac{bottom:738.285000px;}
.y4a{bottom:751.065000px;}
.y74{bottom:751.425000px;}
.y18{bottom:753.945000px;}
.yf8{bottom:754.845000px;}
.y123{bottom:755.205000px;}
.yaa{bottom:764.925000px;}
.y73{bottom:768.165000px;}
.y49{bottom:769.965000px;}
.yf7{bottom:773.745000px;}
.y122{bottom:774.105000px;}
.y48{bottom:789.045000px;}
.y17{bottom:789.945000px;}
.ya6{bottom:791.745000px;}
.yf6{bottom:792.825000px;}
.y121{bottom:793.185000px;}
.y72{bottom:804.165000px;}
.y15{bottom:805.965000px;}
.y47{bottom:807.945000px;}
.yf5{bottom:811.725000px;}
.y120{bottom:812.085000px;}
.y71{bottom:823.065000px;}
.y46{bottom:827.025000px;}
.yf4{bottom:830.625000px;}
.y11f{bottom:830.985000px;}
.y14{bottom:831.705000px;}
.ya5{bottom:839.985000px;}
.y70{bottom:842.145000px;}
.y45{bottom:845.925000px;}
.y13{bottom:848.805000px;}
.yf3{bottom:849.705000px;}
.y11e{bottom:850.065000px;}
.y6f{bottom:861.045000px;}
.y44{bottom:864.825000px;}
.y12{bottom:866.085000px;}
.ya4{bottom:868.425000px;}
.yf2{bottom:868.605000px;}
.y11d{bottom:868.965000px;}
.y6e{bottom:880.170000px;}
.y11{bottom:883.410000px;}
.y43{bottom:883.950000px;}
.ya3{bottom:887.730000px;}
.y11c{bottom:888.090000px;}
.y6d{bottom:899.070000px;}
.y42{bottom:902.850000px;}
.y11b{bottom:903.390000px;}
.y10{bottom:905.910000px;}
.ya2{bottom:906.630000px;}
.y6c{bottom:917.970000px;}
.y41{bottom:921.930000px;}
.yf{bottom:923.190000px;}
.ya1{bottom:925.530000px;}
.ye{bottom:935.610000px;}
.y6b{bottom:937.050000px;}
.y11a{bottom:939.750000px;}
.y40{bottom:940.830000px;}
.ya0{bottom:944.610000px;}
.yd{bottom:954.510000px;}
.y6a{bottom:955.950000px;}
.y3f{bottom:959.730000px;}
.y119{bottom:960.090000px;}
.y9f{bottom:963.510000px;}
.yc{bottom:973.050000px;}
.y69{bottom:975.030000px;}
.yf1{bottom:978.810000px;}
.y118{bottom:979.350000px;}
.y9e{bottom:982.590000px;}
.yb{bottom:993.030000px;}
.y68{bottom:993.930000px;}
.y3d{bottom:996.090000px;}
.y9d{bottom:997.890000px;}
.yf0{bottom:1014.990000px;}
.ya{bottom:1023.990000px;}
.y3c{bottom:1032.450000px;}
.y67{bottom:1033.710000px;}
.y9c{bottom:1033.890000px;}
.y7{bottom:1053.690000px;}
.y6{bottom:1072.950000px;}
.y5{bottom:1092.030000px;}
.y4{bottom:1111.290000px;}
.y3{bottom:1136.850000px;}
.y2{bottom:1167.840000px;}
.y1{bottom:1193.580000px;}
.hb{height:21.600000px;}
.h16{height:25.920000px;}
.h15{height:26.100000px;}
.h17{height:26.136000px;}
.ha{height:28.115859px;}
.hc{height:32.400000px;}
.h13{height:34.560000px;}
.h14{height:42.164648px;}
.h8{height:43.215117px;}
.h2{height:46.736719px;}
.h5{height:47.901094px;}
.h4{height:50.800781px;}
.hf{height:52.066406px;}
.h9{height:53.224453px;}
.h11{height:54.596250px;}
.h19{height:59.439023px;}
.h1a{height:59.582250px;}
.h1b{height:61.189805px;}
.h12{height:65.884219px;}
.h6{height:67.824844px;}
.h7{height:76.201172px;}
.h10{height:77.580000px;}
.h3{height:81.000000px;}
.he{height:101.916000px;}
.h1c{height:110.583984px;}
.h18{height:318.960000px;}
.h1d{height:324.000000px;}
.hd{height:379.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:77.940000px;}
.w8{width:138.420000px;}
.w7{width:138.456000px;}
.w6{width:199.110000px;}
.wa{width:584.640000px;}
.w9{width:594.540000px;}
.w3{width:675.645000px;}
.w4{width:676.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x1e{left:14.760000px;}
.x20{left:16.380000px;}
.x17{left:18.540000px;}
.x1b{left:30.960000px;}
.x21{left:33.300000px;}
.x26{left:40.140000px;}
.x22{left:41.400000px;}
.x34{left:42.945000px;}
.x1c{left:45.360000px;}
.x33{left:49.245000px;}
.x25{left:53.820000px;}
.x24{left:56.340000px;}
.x2a{left:57.960000px;}
.x23{left:61.740000px;}
.x27{left:65.160000px;}
.x28{left:69.300000px;}
.x19{left:80.820000px;}
.x29{left:83.700000px;}
.x10{left:108.756000px;}
.x30{left:130.575000px;}
.x38{left:133.995000px;}
.x9{left:137.375987px;}
.x2f{left:148.320000px;}
.xa{left:150.689987px;}
.x37{left:152.820000px;}
.x39{left:162.029987px;}
.xc{left:167.789987px;}
.xe{left:172.109987px;}
.x35{left:176.325000px;}
.x2{left:179.129987px;}
.x2c{left:182.009987px;}
.x8{left:184.529987px;}
.x18{left:187.410000px;}
.xd{left:205.949987px;}
.x3{left:232.769987px;}
.x2e{left:251.489987px;}
.xf{left:259.229987px;}
.x5{left:265.349987px;}
.x16{left:271.649987px;}
.x1{left:279.254987px;}
.xb{left:283.574987px;}
.x15{left:286.094987px;}
.x31{left:298.050000px;}
.x6{left:310.034987px;}
.x13{left:331.274987px;}
.x32{left:342.105000px;}
.x4{left:373.214987px;}
.x1a{left:387.255000px;}
.x14{left:444.854987px;}
.x7{left:446.474987px;}
.x36{left:449.130000px;}
.x1d{left:526.425000px;}
.x1f{left:665.610000px;}
.x2d{left:740.129987px;}
.x2b{left:744.629987px;}
.x12{left:764.969987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.153600pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.116800pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws8{word-spacing:-12.034048pt;}
.ws7{word-spacing:-12.005120pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:418.497493pt;}
._c{margin-left:-3.886080pt;}
._7{margin-left:-2.414080pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.168640pt;}
._3{width:2.531627pt;}
._b{width:3.533440pt;}
._4{width:4.533760pt;}
._5{width:5.543680pt;}
._a{width:6.589013pt;}
._e{width:7.831040pt;}
._9{width:8.890880pt;}
._8{width:9.950720pt;}
._10{width:11.187200pt;}
._11{width:12.315307pt;}
._d{width:13.592747pt;}
._12{width:16.375467pt;}
._13{width:17.428480pt;}
._6{width:18.664960pt;}
._f{width:19.665920pt;}
._14{width:20.784640pt;}
._15{width:21.726720pt;}
._17{width:23.610880pt;}
._16{width:29.322240pt;}
._2{width:254.623787pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:2.880000pt;}
.y2e{bottom:3.200000pt;}
.y34{bottom:3.520000pt;}
.y16{bottom:4.480000pt;}
.yad{bottom:6.720000pt;}
.yab{bottom:6.880000pt;}
.y19{bottom:8.640000pt;}
.y3e{bottom:8.800000pt;}
.ya7{bottom:10.560000pt;}
.ye4{bottom:12.160000pt;}
.ya8{bottom:18.240000pt;}
.y2d{bottom:20.000000pt;}
.y37{bottom:20.160000pt;}
.y33{bottom:21.920000pt;}
.yde{bottom:29.506667pt;}
.y2c{bottom:36.960000pt;}
.y32{bottom:40.160000pt;}
.y9{bottom:50.080000pt;}
.ye5{bottom:52.640000pt;}
.y2b{bottom:53.760000pt;}
.y36{bottom:54.080000pt;}
.y31{bottom:57.320000pt;}
.ydf{bottom:62.466667pt;}
.y8{bottom:63.392000pt;}
.ydc{bottom:64.666667pt;}
.ydb{bottom:65.306667pt;}
.y2a{bottom:70.720000pt;}
.yec{bottom:72.186667pt;}
.y30{bottom:75.720000pt;}
.yda{bottom:81.120000pt;}
.y29{bottom:87.520000pt;}
.ye9{bottom:90.533333pt;}
.ye0{bottom:95.386667pt;}
.y117{bottom:102.272000pt;}
.y3b{bottom:103.232000pt;}
.y28{bottom:104.320000pt;}
.y9b{bottom:104.672000pt;}
.yef{bottom:107.360000pt;}
.yca{bottom:110.432000pt;}
.yd8{bottom:112.672000pt;}
.ye8{bottom:114.626667pt;}
.y116{bottom:120.672000pt;}
.y27{bottom:121.280000pt;}
.y9a{bottom:121.472000pt;}
.y3a{bottom:121.632000pt;}
.y66{bottom:122.272000pt;}
.yc9{bottom:127.232000pt;}
.ye1{bottom:128.346667pt;}
.yd7{bottom:129.472000pt;}
.yee{bottom:131.493333pt;}
.y26{bottom:138.080000pt;}
.y99{bottom:138.426667pt;}
.y115{bottom:139.066667pt;}
.y39{bottom:140.026667pt;}
.yc8{bottom:144.026667pt;}
.yd6{bottom:146.426667pt;}
.y25{bottom:155.040000pt;}
.y98{bottom:155.226667pt;}
.y114{bottom:157.146667pt;}
.y65{bottom:157.786667pt;}
.y38{bottom:158.426667pt;}
.yc7{bottom:160.986667pt;}
.ye2{bottom:161.306667pt;}
.yd5{bottom:163.226667pt;}
.yeb{bottom:164.186667pt;}
.y24{bottom:171.840000pt;}
.y97{bottom:172.346667pt;}
.y35{bottom:173.306667pt;}
.y113{bottom:174.106667pt;}
.y64{bottom:174.906667pt;}
.yc6{bottom:177.786667pt;}
.y8d{bottom:178.426667pt;}
.yd4{bottom:180.346667pt;}
.y140{bottom:182.106667pt;}
.ydd{bottom:186.560000pt;}
.y23{bottom:188.800000pt;}
.y96{bottom:190.586667pt;}
.y112{bottom:190.906667pt;}
.y63{bottom:191.706667pt;}
.ye3{bottom:194.266667pt;}
.yc5{bottom:194.746667pt;}
.y8c{bottom:195.386667pt;}
.y13f{bottom:198.906667pt;}
.yd3{bottom:204.186667pt;}
.y22{bottom:205.626667pt;}
.yea{bottom:206.400000pt;}
.y111{bottom:208.026667pt;}
.y62{bottom:208.506667pt;}
.yc4{bottom:211.546667pt;}
.y8b{bottom:212.186667pt;}
.y13e{bottom:215.866667pt;}
.ye7{bottom:217.280000pt;}
.y21{bottom:222.426667pt;}
.y110{bottom:222.906667pt;}
.y61{bottom:225.466667pt;}
.yc3{bottom:228.346667pt;}
.y8a{bottom:228.986667pt;}
.y13d{bottom:232.666667pt;}
.y20{bottom:239.386667pt;}
.y2f{bottom:242.266667pt;}
.yc2{bottom:245.306667pt;}
.y89{bottom:245.946667pt;}
.ye6{bottom:246.560000pt;}
.y13c{bottom:249.626667pt;}
.yed{bottom:254.973333pt;}
.y10f{bottom:255.226667pt;}
.y1f{bottom:256.186667pt;}
.y60{bottom:259.226667pt;}
.yc1{bottom:262.106667pt;}
.y88{bottom:262.746667pt;}
.y13b{bottom:266.426667pt;}
.y1e{bottom:273.146667pt;}
.y10e{bottom:273.466667pt;}
.y5f{bottom:276.026667pt;}
.yc0{bottom:279.066667pt;}
.y87{bottom:279.706667pt;}
.y13a{bottom:283.226667pt;}
.y1d{bottom:289.946667pt;}
.y10d{bottom:290.266667pt;}
.y5e{bottom:292.826667pt;}
.ybf{bottom:295.866667pt;}
.y86{bottom:296.506667pt;}
.y139{bottom:300.226667pt;}
.y1c{bottom:306.746667pt;}
.y10c{bottom:307.106667pt;}
.y5d{bottom:309.826667pt;}
.ybe{bottom:312.866667pt;}
.y85{bottom:313.346667pt;}
.y138{bottom:317.026667pt;}
.y1b{bottom:323.706667pt;}
.y10b{bottom:324.226667pt;}
.y5c{bottom:326.626667pt;}
.ybd{bottom:329.666667pt;}
.y84{bottom:330.306667pt;}
.y1a{bottom:332.866667pt;}
.y137{bottom:333.986667pt;}
.y10a{bottom:339.106667pt;}
.y5b{bottom:343.586667pt;}
.ybc{bottom:346.466667pt;}
.y83{bottom:347.106667pt;}
.y136{bottom:350.786667pt;}
.y5a{bottom:360.386667pt;}
.ybb{bottom:363.426667pt;}
.y82{bottom:364.066667pt;}
.y135{bottom:367.746667pt;}
.y109{bottom:371.266667pt;}
.yba{bottom:380.226667pt;}
.y81{bottom:380.866667pt;}
.y134{bottom:384.546667pt;}
.y108{bottom:388.066667pt;}
.y59{bottom:395.746667pt;}
.yb9{bottom:397.186667pt;}
.y80{bottom:397.666667pt;}
.y133{bottom:401.346667pt;}
.y107{bottom:405.026667pt;}
.y58{bottom:412.866667pt;}
.yb8{bottom:413.986667pt;}
.y7f{bottom:414.626667pt;}
.y132{bottom:418.306667pt;}
.y106{bottom:421.826667pt;}
.y57{bottom:429.666667pt;}
.yb7{bottom:430.786667pt;}
.y7e{bottom:431.426667pt;}
.y131{bottom:435.106667pt;}
.y105{bottom:438.626667pt;}
.y56{bottom:446.466667pt;}
.yb6{bottom:447.746667pt;}
.y7d{bottom:448.386667pt;}
.y130{bottom:452.066667pt;}
.y104{bottom:456.226667pt;}
.y55{bottom:463.426667pt;}
.y7c{bottom:465.186667pt;}
.y12f{bottom:468.866667pt;}
.y103{bottom:470.146667pt;}
.yb5{bottom:473.986667pt;}
.y54{bottom:480.226667pt;}
.y7b{bottom:481.986667pt;}
.y12e{bottom:485.666667pt;}
.yb4{bottom:489.506667pt;}
.y95{bottom:492.226667pt;}
.y53{bottom:497.186667pt;}
.yd2{bottom:497.506667pt;}
.y7a{bottom:498.946667pt;}
.y102{bottom:502.306667pt;}
.y12d{bottom:502.626667pt;}
.y94{bottom:509.346667pt;}
.yb3{bottom:513.346667pt;}
.y52{bottom:513.986667pt;}
.yd1{bottom:514.306667pt;}
.y79{bottom:515.746667pt;}
.y101{bottom:519.106667pt;}
.y12c{bottom:519.426667pt;}
.y93{bottom:526.466667pt;}
.y51{bottom:530.786667pt;}
.yd0{bottom:531.266667pt;}
.y78{bottom:532.706667pt;}
.y100{bottom:536.066667pt;}
.y12b{bottom:536.386667pt;}
.yb2{bottom:537.213333pt;}
.y92{bottom:544.733333pt;}
.y50{bottom:547.773333pt;}
.ycf{bottom:548.093333pt;}
.y77{bottom:549.533333pt;}
.yff{bottom:552.893333pt;}
.y12a{bottom:553.213333pt;}
.yb1{bottom:561.053333pt;}
.y91{bottom:561.533333pt;}
.yce{bottom:565.053333pt;}
.y76{bottom:566.493333pt;}
.yfe{bottom:569.693333pt;}
.y129{bottom:570.013333pt;}
.ycd{bottom:581.853333pt;}
.y4f{bottom:583.133333pt;}
.y75{bottom:583.293333pt;}
.yb0{bottom:584.733333pt;}
.yfd{bottom:586.653333pt;}
.y128{bottom:586.973333pt;}
.y90{bottom:587.933333pt;}
.y4e{bottom:600.093333pt;}
.yfc{bottom:603.453333pt;}
.y127{bottom:603.773333pt;}
.y8f{bottom:606.013333pt;}
.ycc{bottom:606.973333pt;}
.yaf{bottom:608.573333pt;}
.y4d{bottom:617.053333pt;}
.yfb{bottom:620.413333pt;}
.y126{bottom:620.733333pt;}
.y8e{bottom:628.573333pt;}
.ycb{bottom:629.693333pt;}
.yd9{bottom:632.320000pt;}
.yae{bottom:632.413333pt;}
.y4c{bottom:633.853333pt;}
.yfa{bottom:637.213333pt;}
.y125{bottom:637.533333pt;}
.y4b{bottom:650.813333pt;}
.yf9{bottom:654.013333pt;}
.y124{bottom:654.333333pt;}
.yac{bottom:656.253333pt;}
.y4a{bottom:667.613333pt;}
.y74{bottom:667.933333pt;}
.y18{bottom:670.173333pt;}
.yf8{bottom:670.973333pt;}
.y123{bottom:671.293333pt;}
.yaa{bottom:679.933333pt;}
.y73{bottom:682.813333pt;}
.y49{bottom:684.413333pt;}
.yf7{bottom:687.773333pt;}
.y122{bottom:688.093333pt;}
.y48{bottom:701.373333pt;}
.y17{bottom:702.173333pt;}
.ya6{bottom:703.773333pt;}
.yf6{bottom:704.733333pt;}
.y121{bottom:705.053333pt;}
.y72{bottom:714.813333pt;}
.y15{bottom:716.413333pt;}
.y47{bottom:718.173333pt;}
.yf5{bottom:721.533333pt;}
.y120{bottom:721.853333pt;}
.y71{bottom:731.613333pt;}
.y46{bottom:735.133333pt;}
.yf4{bottom:738.333333pt;}
.y11f{bottom:738.653333pt;}
.y14{bottom:739.293333pt;}
.ya5{bottom:746.653333pt;}
.y70{bottom:748.573333pt;}
.y45{bottom:751.933333pt;}
.y13{bottom:754.493333pt;}
.yf3{bottom:755.293333pt;}
.y11e{bottom:755.613333pt;}
.y6f{bottom:765.373333pt;}
.y44{bottom:768.733333pt;}
.y12{bottom:769.853333pt;}
.ya4{bottom:771.933333pt;}
.yf2{bottom:772.093333pt;}
.y11d{bottom:772.413333pt;}
.y6e{bottom:782.373333pt;}
.y11{bottom:785.253333pt;}
.y43{bottom:785.733333pt;}
.ya3{bottom:789.093333pt;}
.y11c{bottom:789.413333pt;}
.y6d{bottom:799.173333pt;}
.y42{bottom:802.533333pt;}
.y11b{bottom:803.013333pt;}
.y10{bottom:805.253333pt;}
.ya2{bottom:805.893333pt;}
.y6c{bottom:815.973333pt;}
.y41{bottom:819.493333pt;}
.yf{bottom:820.613333pt;}
.ya1{bottom:822.693333pt;}
.ye{bottom:831.653333pt;}
.y6b{bottom:832.933333pt;}
.y11a{bottom:835.333333pt;}
.y40{bottom:836.293333pt;}
.ya0{bottom:839.653333pt;}
.yd{bottom:848.453333pt;}
.y6a{bottom:849.733333pt;}
.y3f{bottom:853.093333pt;}
.y119{bottom:853.413333pt;}
.y9f{bottom:856.453333pt;}
.yc{bottom:864.933333pt;}
.y69{bottom:866.693333pt;}
.yf1{bottom:870.053333pt;}
.y118{bottom:870.533333pt;}
.y9e{bottom:873.413333pt;}
.yb{bottom:882.693333pt;}
.y68{bottom:883.493333pt;}
.y3d{bottom:885.413333pt;}
.y9d{bottom:887.013333pt;}
.yf0{bottom:902.213333pt;}
.ya{bottom:910.213333pt;}
.y3c{bottom:917.733333pt;}
.y67{bottom:918.853333pt;}
.y9c{bottom:919.013333pt;}
.y7{bottom:936.613333pt;}
.y6{bottom:953.733333pt;}
.y5{bottom:970.693333pt;}
.y4{bottom:987.813333pt;}
.y3{bottom:1010.533333pt;}
.y2{bottom:1038.080000pt;}
.y1{bottom:1060.960000pt;}
.hb{height:19.200000pt;}
.h16{height:23.040000pt;}
.h15{height:23.200000pt;}
.h17{height:23.232000pt;}
.ha{height:24.991875pt;}
.hc{height:28.800000pt;}
.h13{height:30.720000pt;}
.h14{height:37.479688pt;}
.h8{height:38.413438pt;}
.h2{height:41.543750pt;}
.h5{height:42.578750pt;}
.h4{height:45.156250pt;}
.hf{height:46.281250pt;}
.h9{height:47.310625pt;}
.h11{height:48.530000pt;}
.h19{height:52.834688pt;}
.h1a{height:52.962000pt;}
.h1b{height:54.390938pt;}
.h12{height:58.563750pt;}
.h6{height:60.288750pt;}
.h7{height:67.734375pt;}
.h10{height:68.960000pt;}
.h3{height:72.000000pt;}
.he{height:90.592000pt;}
.h1c{height:98.296875pt;}
.h18{height:283.520000pt;}
.h1d{height:288.000000pt;}
.hd{height:337.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:69.280000pt;}
.w8{width:123.040000pt;}
.w7{width:123.072000pt;}
.w6{width:176.986667pt;}
.wa{width:519.680000pt;}
.w9{width:528.480000pt;}
.w3{width:600.573333pt;}
.w4{width:601.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x1e{left:13.120000pt;}
.x20{left:14.560000pt;}
.x17{left:16.480000pt;}
.x1b{left:27.520000pt;}
.x21{left:29.600000pt;}
.x26{left:35.680000pt;}
.x22{left:36.800000pt;}
.x34{left:38.173333pt;}
.x1c{left:40.320000pt;}
.x33{left:43.773333pt;}
.x25{left:47.840000pt;}
.x24{left:50.080000pt;}
.x2a{left:51.520000pt;}
.x23{left:54.880000pt;}
.x27{left:57.920000pt;}
.x28{left:61.600000pt;}
.x19{left:71.840000pt;}
.x29{left:74.400000pt;}
.x10{left:96.672000pt;}
.x30{left:116.066667pt;}
.x38{left:119.106667pt;}
.x9{left:122.111988pt;}
.x2f{left:131.840000pt;}
.xa{left:133.946655pt;}
.x37{left:135.840000pt;}
.x39{left:144.026655pt;}
.xc{left:149.146655pt;}
.xe{left:152.986655pt;}
.x35{left:156.733333pt;}
.x2{left:159.226655pt;}
.x2c{left:161.786655pt;}
.x8{left:164.026655pt;}
.x18{left:166.586667pt;}
.xd{left:183.066655pt;}
.x3{left:206.906655pt;}
.x2e{left:223.546655pt;}
.xf{left:230.426655pt;}
.x5{left:235.866655pt;}
.x16{left:241.466655pt;}
.x1{left:248.226655pt;}
.xb{left:252.066655pt;}
.x15{left:254.306655pt;}
.x31{left:264.933333pt;}
.x6{left:275.586655pt;}
.x13{left:294.466655pt;}
.x32{left:304.093333pt;}
.x4{left:331.746655pt;}
.x1a{left:344.226667pt;}
.x14{left:395.426655pt;}
.x7{left:396.866655pt;}
.x36{left:399.226667pt;}
.x1d{left:467.933333pt;}
.x1f{left:591.653333pt;}
.x2d{left:657.893322pt;}
.x2b{left:661.893322pt;}
.x12{left:679.973322pt;}
}




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