
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_27e0854d08fbb2702eb059e3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_de1a72095d920ab08ecba177.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5712f05ecd5da19ed21a4078.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsd{letter-spacing:-0.180000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.139800px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:11.580000px;}
.lsb{letter-spacing:16.406640px;}
.ls4{letter-spacing:36.926640px;}
.ls3{letter-spacing:41.148000px;}
.ls9{letter-spacing:46.286640px;}
.ls8{letter-spacing:63.566640px;}
.lsa{letter-spacing:63.686640px;}
.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;}
}
.ws6{word-spacing:-60.120000px;}
.ws8{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.850000px;}
.ws5{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws2{word-spacing:-10.530000px;}
.ws4{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.124400px;}
._e{width:2.271600px;}
._a{width:3.366720px;}
._5{width:4.809600px;}
._9{width:6.012000px;}
._8{width:7.034040px;}
._b{width:8.092560px;}
._c{width:9.138240px;}
._19{width:10.160280px;}
._d{width:11.482920px;}
._6{width:12.565080px;}
._7{width:13.647240px;}
._15{width:16.713360px;}
._13{width:17.735400px;}
._1a{width:18.937800px;}
._16{width:20.019960px;}
._f{width:21.042000px;}
._20{width:22.184280px;}
._14{width:23.206320px;}
._17{width:24.709320px;}
._27{width:25.851600px;}
._2b{width:26.933760px;}
._1f{width:27.955800px;}
._10{width:29.646000px;}
._1b{width:31.375800px;}
._2a{width:32.538600px;}
._11{width:34.074000px;}
._18{width:35.725320px;}
._2c{width:36.853560px;}
._1c{width:38.476800px;}
._25{width:39.558960px;}
._1d{width:40.941720px;}
._1e{width:42.023880px;}
._24{width:43.466760px;}
._12{width:46.656000px;}
._26{width:51.763320px;}
._29{width:62.224200px;}
._28{width:63.366480px;}
._2d{width:73.274040px;}
._2{width:130.455480px;}
._22{width:175.074480px;}
._21{width:176.220000px;}
._23{width:232.843320px;}
._1{width:341.548680px;}
._4{width:740.405040px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y12b{bottom:0.090000px;}
.y129{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3e{bottom:2.970000px;}
.y15{bottom:3.240000px;}
.y37{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y3d{bottom:18.450000px;}
.y35{bottom:19.350000px;}
.y2c{bottom:20.430000px;}
.y40{bottom:23.850000px;}
.y127{bottom:30.240000px;}
.y3c{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.820000px;}
.y2b{bottom:37.710000px;}
.y130{bottom:44.010000px;}
.y126{bottom:44.100000px;}
.y3b{bottom:49.500000px;}
.y33{bottom:51.330000px;}
.y2a{bottom:54.990000px;}
.y12f{bottom:57.780000px;}
.y125{bottom:57.870000px;}
.y3{bottom:58.140000px;}
.y3a{bottom:65.070000px;}
.y32{bottom:66.900000px;}
.y12e{bottom:71.640000px;}
.y29{bottom:72.180000px;}
.y39{bottom:80.550000px;}
.y31{bottom:82.380000px;}
.y12d{bottom:85.440000px;}
.y28{bottom:89.460000px;}
.y30{bottom:97.950000px;}
.y12c{bottom:99.210000px;}
.y27{bottom:106.740000px;}
.y2f{bottom:113.430000px;}
.ye2{bottom:117.540000px;}
.y10f{bottom:118.620000px;}
.y122{bottom:119.610000px;}
.yc9{bottom:120.780000px;}
.ya0{bottom:121.860000px;}
.y26{bottom:123.930000px;}
.y7c{bottom:124.020000px;}
.y49{bottom:124.200000px;}
.y3f{bottom:127.170000px;}
.y2e{bottom:129.000000px;}
.ye1{bottom:134.730000px;}
.y10e{bottom:135.810000px;}
.y121{bottom:136.890000px;}
.yc8{bottom:137.970000px;}
.y9f{bottom:139.050000px;}
.y25{bottom:141.210000px;}
.y48{bottom:141.390000px;}
.ye0{bottom:152.010000px;}
.y10d{bottom:153.090000px;}
.y120{bottom:154.170000px;}
.yc7{bottom:155.250000px;}
.y9e{bottom:156.360000px;}
.y24{bottom:158.490000px;}
.y7b{bottom:158.520000px;}
.y47{bottom:158.700000px;}
.ydf{bottom:169.320000px;}
.y10c{bottom:170.400000px;}
.y11f{bottom:171.390000px;}
.yc6{bottom:172.560000px;}
.y9d{bottom:173.640000px;}
.y23{bottom:175.680000px;}
.y7a{bottom:175.800000px;}
.y46{bottom:175.980000px;}
.yde{bottom:186.510000px;}
.y10b{bottom:187.590000px;}
.y11e{bottom:188.670000px;}
.yc5{bottom:189.750000px;}
.y9c{bottom:190.830000px;}
.y22{bottom:192.960000px;}
.y79{bottom:192.990000px;}
.y45{bottom:193.170000px;}
.ydd{bottom:203.790000px;}
.y10a{bottom:204.870000px;}
.y11d{bottom:205.860000px;}
.yc4{bottom:207.030000px;}
.y9b{bottom:208.110000px;}
.y21{bottom:210.240000px;}
.y78{bottom:210.270000px;}
.y44{bottom:210.450000px;}
.ydc{bottom:221.070000px;}
.y109{bottom:222.150000px;}
.y11c{bottom:223.140000px;}
.yc3{bottom:224.310000px;}
.y9a{bottom:225.390000px;}
.y20{bottom:227.430000px;}
.y77{bottom:227.460000px;}
.y43{bottom:227.730000px;}
.ydb{bottom:238.260000px;}
.y108{bottom:239.340000px;}
.y11b{bottom:240.420000px;}
.yc2{bottom:241.500000px;}
.y99{bottom:242.580000px;}
.y1f{bottom:244.710000px;}
.y76{bottom:244.740000px;}
.y42{bottom:244.920000px;}
.yda{bottom:255.540000px;}
.y107{bottom:256.620000px;}
.y11a{bottom:257.610000px;}
.yc1{bottom:258.780000px;}
.y98{bottom:259.860000px;}
.y41{bottom:261.840000px;}
.y1e{bottom:261.990000px;}
.y75{bottom:262.020000px;}
.yd9{bottom:272.820000px;}
.y106{bottom:273.900000px;}
.y119{bottom:274.890000px;}
.y16{bottom:275.250000px;}
.yc0{bottom:276.060000px;}
.y97{bottom:277.140000px;}
.y1d{bottom:279.180000px;}
.y74{bottom:279.210000px;}
.yd8{bottom:290.010000px;}
.y105{bottom:291.090000px;}
.y118{bottom:292.170000px;}
.ybf{bottom:293.250000px;}
.y96{bottom:294.330000px;}
.y1c{bottom:296.460000px;}
.y73{bottom:296.490000px;}
.yd7{bottom:307.290000px;}
.y104{bottom:308.370000px;}
.y117{bottom:309.360000px;}
.ybe{bottom:310.530000px;}
.y95{bottom:311.610000px;}
.y1b{bottom:313.770000px;}
.yd6{bottom:325.650000px;}
.y116{bottom:326.640000px;}
.ybd{bottom:327.720000px;}
.y94{bottom:328.800000px;}
.y1a{bottom:330.960000px;}
.yd5{bottom:342.840000px;}
.y115{bottom:343.920000px;}
.ybc{bottom:345.000000px;}
.y93{bottom:346.080000px;}
.y19{bottom:348.240000px;}
.yd4{bottom:360.120000px;}
.y114{bottom:361.110000px;}
.ybb{bottom:362.280000px;}
.y92{bottom:363.360000px;}
.y18{bottom:365.430000px;}
.y72{bottom:365.520000px;}
.yd3{bottom:377.400000px;}
.y113{bottom:378.390000px;}
.yba{bottom:379.470000px;}
.y91{bottom:380.550000px;}
.y17{bottom:382.710000px;}
.yd2{bottom:394.590000px;}
.y112{bottom:395.670000px;}
.yb9{bottom:396.750000px;}
.y90{bottom:397.830000px;}
.y71{bottom:399.990000px;}
.y103{bottom:411.870000px;}
.y111{bottom:412.860000px;}
.yd1{bottom:412.950000px;}
.yb8{bottom:414.030000px;}
.y8f{bottom:415.110000px;}
.y38{bottom:415.740000px;}
.y70{bottom:417.270000px;}
.y102{bottom:429.060000px;}
.yd0{bottom:430.140000px;}
.yb7{bottom:431.220000px;}
.y8e{bottom:432.300000px;}
.y6f{bottom:434.460000px;}
.y101{bottom:446.340000px;}
.ycf{bottom:447.420000px;}
.yb6{bottom:448.500000px;}
.y8d{bottom:449.580000px;}
.y6e{bottom:451.740000px;}
.y100{bottom:463.620000px;}
.y110{bottom:464.610000px;}
.yce{bottom:464.700000px;}
.yb5{bottom:465.780000px;}
.y8c{bottom:466.860000px;}
.y6d{bottom:469.020000px;}
.yff{bottom:480.810000px;}
.ycd{bottom:481.890000px;}
.yb4{bottom:482.970000px;}
.y8b{bottom:484.050000px;}
.y6c{bottom:486.210000px;}
.y12a{bottom:496.650000px;}
.yfe{bottom:498.090000px;}
.yb3{bottom:500.250000px;}
.y8a{bottom:501.330000px;}
.y6b{bottom:503.490000px;}
.y36{bottom:509.610000px;}
.yfd{bottom:515.370000px;}
.yb2{bottom:517.530000px;}
.y89{bottom:518.610000px;}
.y6a{bottom:520.770000px;}
.y2d{bottom:530.400000px;}
.yfc{bottom:532.560000px;}
.yb1{bottom:534.720000px;}
.y88{bottom:535.800000px;}
.y69{bottom:537.960000px;}
.yfb{bottom:549.840000px;}
.yb0{bottom:552.000000px;}
.y87{bottom:553.080000px;}
.y68{bottom:555.240000px;}
.yfa{bottom:567.120000px;}
.yaf{bottom:569.280000px;}
.y86{bottom:570.360000px;}
.y67{bottom:572.430000px;}
.yf9{bottom:584.340000px;}
.yae{bottom:586.500000px;}
.y85{bottom:587.580000px;}
.y66{bottom:589.740000px;}
.yf8{bottom:601.620000px;}
.yad{bottom:603.780000px;}
.y84{bottom:604.860000px;}
.y65{bottom:607.020000px;}
.y128{bottom:607.830000px;}
.yf7{bottom:618.900000px;}
.yac{bottom:621.060000px;}
.y83{bottom:622.140000px;}
.y124{bottom:622.320000px;}
.y64{bottom:624.210000px;}
.yf6{bottom:636.090000px;}
.yab{bottom:638.250000px;}
.y82{bottom:640.410000px;}
.y63{bottom:641.490000px;}
.yf5{bottom:653.370000px;}
.yaa{bottom:655.530000px;}
.ycc{bottom:656.610000px;}
.y81{bottom:657.690000px;}
.y62{bottom:658.770000px;}
.yf4{bottom:670.650000px;}
.y14{bottom:672.720000px;}
.ya9{bottom:673.800000px;}
.y80{bottom:674.880000px;}
.y61{bottom:675.960000px;}
.yf3{bottom:687.840000px;}
.ya8{bottom:691.080000px;}
.y123{bottom:692.070000px;}
.y7f{bottom:692.160000px;}
.y60{bottom:693.240000px;}
.yf2{bottom:705.120000px;}
.y13{bottom:707.280000px;}
.ya7{bottom:708.360000px;}
.y7e{bottom:709.440000px;}
.y5f{bottom:710.520000px;}
.yf1{bottom:722.400000px;}
.ya6{bottom:725.550000px;}
.y7d{bottom:726.630000px;}
.y12{bottom:727.170000px;}
.y5e{bottom:727.710000px;}
.yf0{bottom:739.590000px;}
.ycb{bottom:742.830000px;}
.ya5{bottom:743.910000px;}
.y5d{bottom:744.990000px;}
.yef{bottom:756.870000px;}
.y11{bottom:760.830000px;}
.ya4{bottom:761.190000px;}
.y5c{bottom:762.270000px;}
.yee{bottom:775.140000px;}
.y10{bottom:778.110000px;}
.ya3{bottom:778.380000px;}
.y5b{bottom:779.460000px;}
.yf{bottom:790.530000px;}
.yed{bottom:793.500000px;}
.ya2{bottom:795.660000px;}
.y5a{bottom:796.740000px;}
.yec{bottom:810.780000px;}
.ye{bottom:811.050000px;}
.ya1{bottom:812.940000px;}
.y59{bottom:814.020000px;}
.yeb{bottom:827.970000px;}
.yca{bottom:830.130000px;}
.y58{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.yea{bottom:845.250000px;}
.y57{bottom:848.490000px;}
.ye9{bottom:862.530000px;}
.y56{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.ye8{bottom:880.800000px;}
.y55{bottom:882.960000px;}
.ye7{bottom:899.160000px;}
.y54{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.ye6{bottom:916.440000px;}
.y53{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.ye5{bottom:933.630000px;}
.y52{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.ye4{bottom:950.910000px;}
.y51{bottom:951.990000px;}
.ye3{bottom:968.100000px;}
.y50{bottom:969.180000px;}
.y4f{bottom:986.460000px;}
.y4e{bottom:1003.770000px;}
.y4d{bottom:1020.960000px;}
.y4c{bottom:1038.240000px;}
.y4b{bottom:1055.520000px;}
.y4a{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.770000px;}
.h1c{height:13.860000px;}
.h11{height:17.280000px;}
.h16{height:20.070000px;}
.hd{height:25.136719px;}
.he{height:27.147656px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h1d{height:33.782520px;}
.h18{height:37.705078px;}
.h19{height:38.100586px;}
.h6{height:39.082324px;}
.h14{height:39.999023px;}
.h4{height:41.978320px;}
.h10{height:42.418652px;}
.h1b{height:43.769004px;}
.h15{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hc{height:53.838457px;}
.hb{height:67.819043px;}
.h1e{height:69.030000px;}
.hf{height:75.410156px;}
.ha{height:76.201172px;}
.h17{height:93.150000px;}
.h20{height:110.370000px;}
.h1a{height:139.770000px;}
.h13{height:141.600000px;}
.h7{height:153.930000px;}
.h12{height:396.750000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w8{width:80.730000px;}
.w6{width:220.350000px;}
.w9{width:247.710000px;}
.w7{width:329.160000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x11{left:20.160000px;}
.x15{left:27.630000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x16{left:65.429986px;}
.x20{left:80.010000px;}
.x9{left:82.349986px;}
.x1d{left:86.759986px;}
.x19{left:88.199986px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.xa{left:139.769986px;}
.xc{left:268.499986px;}
.xd{left:278.129986px;}
.xe{left:294.779986px;}
.x1c{left:452.729986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x18{left:478.229986px;}
.x1a{left:479.759986px;}
.x1e{left:505.319986px;}
.x1b{left:506.759986px;}
.x1f{left:513.780000px;}
.x21{left:595.230000px;}
.x10{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.124267pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:10.293333pt;}
.lsb{letter-spacing:14.583680pt;}
.ls4{letter-spacing:32.823680pt;}
.ls3{letter-spacing:36.576000pt;}
.ls9{letter-spacing:41.143680pt;}
.ls8{letter-spacing:56.503680pt;}
.lsa{letter-spacing:56.610347pt;}
.ws6{word-spacing:-53.440000pt;}
.ws8{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.200000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.999467pt;}
._e{width:2.019200pt;}
._a{width:2.992640pt;}
._5{width:4.275200pt;}
._9{width:5.344000pt;}
._8{width:6.252480pt;}
._b{width:7.193387pt;}
._c{width:8.122880pt;}
._19{width:9.031360pt;}
._d{width:10.207040pt;}
._6{width:11.168960pt;}
._7{width:12.130880pt;}
._15{width:14.856320pt;}
._13{width:15.764800pt;}
._1a{width:16.833600pt;}
._16{width:17.795520pt;}
._f{width:18.704000pt;}
._20{width:19.719360pt;}
._14{width:20.627840pt;}
._17{width:21.963840pt;}
._27{width:22.979200pt;}
._2b{width:23.941120pt;}
._1f{width:24.849600pt;}
._10{width:26.352000pt;}
._1b{width:27.889600pt;}
._2a{width:28.923200pt;}
._11{width:30.288000pt;}
._18{width:31.755840pt;}
._2c{width:32.758720pt;}
._1c{width:34.201600pt;}
._25{width:35.163520pt;}
._1d{width:36.392640pt;}
._1e{width:37.354560pt;}
._24{width:38.637120pt;}
._12{width:41.472000pt;}
._26{width:46.011840pt;}
._29{width:55.310400pt;}
._28{width:56.325760pt;}
._2d{width:65.132480pt;}
._2{width:115.960427pt;}
._22{width:155.621760pt;}
._21{width:156.640000pt;}
._23{width:206.971840pt;}
._1{width:303.598827pt;}
._4{width:658.137813pt;}
.fs3{font-size:26.560000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:0.080000pt;}
.y129{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3e{bottom:2.640000pt;}
.y15{bottom:2.880000pt;}
.y37{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y3d{bottom:16.400000pt;}
.y35{bottom:17.200000pt;}
.y2c{bottom:18.160000pt;}
.y40{bottom:21.200000pt;}
.y127{bottom:26.880000pt;}
.y3c{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.840000pt;}
.y2b{bottom:33.520000pt;}
.y130{bottom:39.120000pt;}
.y126{bottom:39.200000pt;}
.y3b{bottom:44.000000pt;}
.y33{bottom:45.626667pt;}
.y2a{bottom:48.880000pt;}
.y12f{bottom:51.360000pt;}
.y125{bottom:51.440000pt;}
.y3{bottom:51.680000pt;}
.y3a{bottom:57.840000pt;}
.y32{bottom:59.466667pt;}
.y12e{bottom:63.680000pt;}
.y29{bottom:64.160000pt;}
.y39{bottom:71.600000pt;}
.y31{bottom:73.226667pt;}
.y12d{bottom:75.946667pt;}
.y28{bottom:79.520000pt;}
.y30{bottom:87.066667pt;}
.y12c{bottom:88.186667pt;}
.y27{bottom:94.880000pt;}
.y2f{bottom:100.826667pt;}
.ye2{bottom:104.480000pt;}
.y10f{bottom:105.440000pt;}
.y122{bottom:106.320000pt;}
.yc9{bottom:107.360000pt;}
.ya0{bottom:108.320000pt;}
.y26{bottom:110.160000pt;}
.y7c{bottom:110.240000pt;}
.y49{bottom:110.400000pt;}
.y3f{bottom:113.040000pt;}
.y2e{bottom:114.666667pt;}
.ye1{bottom:119.760000pt;}
.y10e{bottom:120.720000pt;}
.y121{bottom:121.680000pt;}
.yc8{bottom:122.640000pt;}
.y9f{bottom:123.600000pt;}
.y25{bottom:125.520000pt;}
.y48{bottom:125.680000pt;}
.ye0{bottom:135.120000pt;}
.y10d{bottom:136.080000pt;}
.y120{bottom:137.040000pt;}
.yc7{bottom:138.000000pt;}
.y9e{bottom:138.986667pt;}
.y24{bottom:140.880000pt;}
.y7b{bottom:140.906667pt;}
.y47{bottom:141.066667pt;}
.ydf{bottom:150.506667pt;}
.y10c{bottom:151.466667pt;}
.y11f{bottom:152.346667pt;}
.yc6{bottom:153.386667pt;}
.y9d{bottom:154.346667pt;}
.y23{bottom:156.160000pt;}
.y7a{bottom:156.266667pt;}
.y46{bottom:156.426667pt;}
.yde{bottom:165.786667pt;}
.y10b{bottom:166.746667pt;}
.y11e{bottom:167.706667pt;}
.yc5{bottom:168.666667pt;}
.y9c{bottom:169.626667pt;}
.y22{bottom:171.520000pt;}
.y79{bottom:171.546667pt;}
.y45{bottom:171.706667pt;}
.ydd{bottom:181.146667pt;}
.y10a{bottom:182.106667pt;}
.y11d{bottom:182.986667pt;}
.yc4{bottom:184.026667pt;}
.y9b{bottom:184.986667pt;}
.y21{bottom:186.880000pt;}
.y78{bottom:186.906667pt;}
.y44{bottom:187.066667pt;}
.ydc{bottom:196.506667pt;}
.y109{bottom:197.466667pt;}
.y11c{bottom:198.346667pt;}
.yc3{bottom:199.386667pt;}
.y9a{bottom:200.346667pt;}
.y20{bottom:202.160000pt;}
.y77{bottom:202.186667pt;}
.y43{bottom:202.426667pt;}
.ydb{bottom:211.786667pt;}
.y108{bottom:212.746667pt;}
.y11b{bottom:213.706667pt;}
.yc2{bottom:214.666667pt;}
.y99{bottom:215.626667pt;}
.y1f{bottom:217.520000pt;}
.y76{bottom:217.546667pt;}
.y42{bottom:217.706667pt;}
.yda{bottom:227.146667pt;}
.y107{bottom:228.106667pt;}
.y11a{bottom:228.986667pt;}
.yc1{bottom:230.026667pt;}
.y98{bottom:230.986667pt;}
.y41{bottom:232.746667pt;}
.y1e{bottom:232.880000pt;}
.y75{bottom:232.906667pt;}
.yd9{bottom:242.506667pt;}
.y106{bottom:243.466667pt;}
.y119{bottom:244.346667pt;}
.y16{bottom:244.666667pt;}
.yc0{bottom:245.386667pt;}
.y97{bottom:246.346667pt;}
.y1d{bottom:248.160000pt;}
.y74{bottom:248.186667pt;}
.yd8{bottom:257.786667pt;}
.y105{bottom:258.746667pt;}
.y118{bottom:259.706667pt;}
.ybf{bottom:260.666667pt;}
.y96{bottom:261.626667pt;}
.y1c{bottom:263.520000pt;}
.y73{bottom:263.546667pt;}
.yd7{bottom:273.146667pt;}
.y104{bottom:274.106667pt;}
.y117{bottom:274.986667pt;}
.ybe{bottom:276.026667pt;}
.y95{bottom:276.986667pt;}
.y1b{bottom:278.906667pt;}
.yd6{bottom:289.466667pt;}
.y116{bottom:290.346667pt;}
.ybd{bottom:291.306667pt;}
.y94{bottom:292.266667pt;}
.y1a{bottom:294.186667pt;}
.yd5{bottom:304.746667pt;}
.y115{bottom:305.706667pt;}
.ybc{bottom:306.666667pt;}
.y93{bottom:307.626667pt;}
.y19{bottom:309.546667pt;}
.yd4{bottom:320.106667pt;}
.y114{bottom:320.986667pt;}
.ybb{bottom:322.026667pt;}
.y92{bottom:322.986667pt;}
.y18{bottom:324.826667pt;}
.y72{bottom:324.906667pt;}
.yd3{bottom:335.466667pt;}
.y113{bottom:336.346667pt;}
.yba{bottom:337.306667pt;}
.y91{bottom:338.266667pt;}
.y17{bottom:340.186667pt;}
.yd2{bottom:350.746667pt;}
.y112{bottom:351.706667pt;}
.yb9{bottom:352.666667pt;}
.y90{bottom:353.626667pt;}
.y71{bottom:355.546667pt;}
.y103{bottom:366.106667pt;}
.y111{bottom:366.986667pt;}
.yd1{bottom:367.066667pt;}
.yb8{bottom:368.026667pt;}
.y8f{bottom:368.986667pt;}
.y38{bottom:369.546667pt;}
.y70{bottom:370.906667pt;}
.y102{bottom:381.386667pt;}
.yd0{bottom:382.346667pt;}
.yb7{bottom:383.306667pt;}
.y8e{bottom:384.266667pt;}
.y6f{bottom:386.186667pt;}
.y101{bottom:396.746667pt;}
.ycf{bottom:397.706667pt;}
.yb6{bottom:398.666667pt;}
.y8d{bottom:399.626667pt;}
.y6e{bottom:401.546667pt;}
.y100{bottom:412.106667pt;}
.y110{bottom:412.986667pt;}
.yce{bottom:413.066667pt;}
.yb5{bottom:414.026667pt;}
.y8c{bottom:414.986667pt;}
.y6d{bottom:416.906667pt;}
.yff{bottom:427.386667pt;}
.ycd{bottom:428.346667pt;}
.yb4{bottom:429.306667pt;}
.y8b{bottom:430.266667pt;}
.y6c{bottom:432.186667pt;}
.y12a{bottom:441.466667pt;}
.yfe{bottom:442.746667pt;}
.yb3{bottom:444.666667pt;}
.y8a{bottom:445.626667pt;}
.y6b{bottom:447.546667pt;}
.y36{bottom:452.986667pt;}
.yfd{bottom:458.106667pt;}
.yb2{bottom:460.026667pt;}
.y89{bottom:460.986667pt;}
.y6a{bottom:462.906667pt;}
.y2d{bottom:471.466667pt;}
.yfc{bottom:473.386667pt;}
.yb1{bottom:475.306667pt;}
.y88{bottom:476.266667pt;}
.y69{bottom:478.186667pt;}
.yfb{bottom:488.746667pt;}
.yb0{bottom:490.666667pt;}
.y87{bottom:491.626667pt;}
.y68{bottom:493.546667pt;}
.yfa{bottom:504.106667pt;}
.yaf{bottom:506.026667pt;}
.y86{bottom:506.986667pt;}
.y67{bottom:508.826667pt;}
.yf9{bottom:519.413333pt;}
.yae{bottom:521.333333pt;}
.y85{bottom:522.293333pt;}
.y66{bottom:524.213333pt;}
.yf8{bottom:534.773333pt;}
.yad{bottom:536.693333pt;}
.y84{bottom:537.653333pt;}
.y65{bottom:539.573333pt;}
.y128{bottom:540.293333pt;}
.yf7{bottom:550.133333pt;}
.yac{bottom:552.053333pt;}
.y83{bottom:553.013333pt;}
.y124{bottom:553.173333pt;}
.y64{bottom:554.853333pt;}
.yf6{bottom:565.413333pt;}
.yab{bottom:567.333333pt;}
.y82{bottom:569.253333pt;}
.y63{bottom:570.213333pt;}
.yf5{bottom:580.773333pt;}
.yaa{bottom:582.693333pt;}
.ycc{bottom:583.653333pt;}
.y81{bottom:584.613333pt;}
.y62{bottom:585.573333pt;}
.yf4{bottom:596.133333pt;}
.y14{bottom:597.973333pt;}
.ya9{bottom:598.933333pt;}
.y80{bottom:599.893333pt;}
.y61{bottom:600.853333pt;}
.yf3{bottom:611.413333pt;}
.ya8{bottom:614.293333pt;}
.y123{bottom:615.173333pt;}
.y7f{bottom:615.253333pt;}
.y60{bottom:616.213333pt;}
.yf2{bottom:626.773333pt;}
.y13{bottom:628.693333pt;}
.ya7{bottom:629.653333pt;}
.y7e{bottom:630.613333pt;}
.y5f{bottom:631.573333pt;}
.yf1{bottom:642.133333pt;}
.ya6{bottom:644.933333pt;}
.y7d{bottom:645.893333pt;}
.y12{bottom:646.373333pt;}
.y5e{bottom:646.853333pt;}
.yf0{bottom:657.413333pt;}
.ycb{bottom:660.293333pt;}
.ya5{bottom:661.253333pt;}
.y5d{bottom:662.213333pt;}
.yef{bottom:672.773333pt;}
.y11{bottom:676.293333pt;}
.ya4{bottom:676.613333pt;}
.y5c{bottom:677.573333pt;}
.yee{bottom:689.013333pt;}
.y10{bottom:691.653333pt;}
.ya3{bottom:691.893333pt;}
.y5b{bottom:692.853333pt;}
.yf{bottom:702.693333pt;}
.yed{bottom:705.333333pt;}
.ya2{bottom:707.253333pt;}
.y5a{bottom:708.213333pt;}
.yec{bottom:720.693333pt;}
.ye{bottom:720.933333pt;}
.ya1{bottom:722.613333pt;}
.y59{bottom:723.573333pt;}
.yeb{bottom:735.973333pt;}
.yca{bottom:737.893333pt;}
.y58{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.yea{bottom:751.333333pt;}
.y57{bottom:754.213333pt;}
.ye9{bottom:766.693333pt;}
.y56{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.ye8{bottom:782.933333pt;}
.y55{bottom:784.853333pt;}
.ye7{bottom:799.253333pt;}
.y54{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.ye6{bottom:814.613333pt;}
.y53{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.ye5{bottom:829.893333pt;}
.y52{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.ye4{bottom:845.253333pt;}
.y51{bottom:846.213333pt;}
.ye3{bottom:860.533333pt;}
.y50{bottom:861.493333pt;}
.y4f{bottom:876.853333pt;}
.y4e{bottom:892.240000pt;}
.y4d{bottom:907.520000pt;}
.y4c{bottom:922.880000pt;}
.y4b{bottom:938.240000pt;}
.y4a{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.240000pt;}
.h1c{height:12.320000pt;}
.h11{height:15.360000pt;}
.h16{height:17.840000pt;}
.hd{height:22.343750pt;}
.he{height:24.131250pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h1d{height:30.028906pt;}
.h18{height:33.515625pt;}
.h19{height:33.867188pt;}
.h6{height:34.739844pt;}
.h14{height:35.554688pt;}
.h4{height:37.314062pt;}
.h10{height:37.705469pt;}
.h1b{height:38.905781pt;}
.h15{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hc{height:47.856406pt;}
.hb{height:60.283594pt;}
.h1e{height:61.360000pt;}
.hf{height:67.031250pt;}
.ha{height:67.734375pt;}
.h17{height:82.800000pt;}
.h20{height:98.106667pt;}
.h1a{height:124.240000pt;}
.h13{height:125.866667pt;}
.h7{height:136.826667pt;}
.h12{height:352.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w8{width:71.760000pt;}
.w6{width:195.866667pt;}
.w9{width:220.186667pt;}
.w7{width:292.586667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x11{left:17.920000pt;}
.x15{left:24.560000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x16{left:58.159988pt;}
.x20{left:71.120000pt;}
.x9{left:73.199988pt;}
.x1d{left:77.119988pt;}
.x19{left:78.399988pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.xa{left:124.239988pt;}
.xc{left:238.666655pt;}
.xd{left:247.226655pt;}
.xe{left:262.026655pt;}
.x1c{left:402.426655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x18{left:425.093321pt;}
.x1a{left:426.453321pt;}
.x1e{left:449.173321pt;}
.x1b{left:450.453321pt;}
.x1f{left:456.693333pt;}
.x21{left:529.093333pt;}
.x10{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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