
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_abfde3511fa088231ea437de.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d39a84408989d481cb5b6b3a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14d34227d3d235722e1df7ab.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_d758ffcb643d6d85012f62a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_feca22618ad1b5684eff1553.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_fcf7b0f8d99944390863ed1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a0cbf79ea332e5dee33de79f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.044000px;}
.ls18{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.948000px;}
.lsb{letter-spacing:-0.544800px;}
.ls13{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.303000px;}
.ls1b{letter-spacing:-0.240600px;}
.ls9{letter-spacing:-0.226200px;}
.ls1f{letter-spacing:-0.214800px;}
.lsc{letter-spacing:-0.115800px;}
.ls20{letter-spacing:-0.078000px;}
.ls14{letter-spacing:-0.069600px;}
.ls11{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.023760px;}
.ls22{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.218400px;}
.ls6{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288600px;}
.ls16{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.393600px;}
.ls19{letter-spacing:0.479520px;}
.lsa{letter-spacing:0.493800px;}
.ls1d{letter-spacing:0.533400px;}
.ls3{letter-spacing:0.617760px;}
.ls1c{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls25{letter-spacing:12.186720px;}
.ls23{letter-spacing:19.386720px;}
.ls24{letter-spacing:42.570720px;}
.ls21{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-14.039160px;}
.ws9{word-spacing:-13.899360px;}
.wse{word-spacing:-13.862760px;}
.wsa{word-spacing:-13.724160px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.427760px;}
.ws7{word-spacing:-13.389960px;}
.wsf{word-spacing:-13.290960px;}
.wsc{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1454.976240px;}
._2{margin-left:-1333.157760px;}
._3{margin-left:-948.700800px;}
._5{margin-left:-585.756960px;}
._7{margin-left:-4.380480px;}
._6{margin-left:-3.312000px;}
._c{margin-left:-2.274240px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:3.351600px;}
._b{width:4.482000px;}
._f{width:5.497440px;}
._10{width:6.514320px;}
._d{width:7.808640px;}
._e{width:8.964000px;}
._11{width:10.019760px;}
._12{width:11.234880px;}
._13{width:12.350400px;}
._15{width:15.418080px;}
._14{width:16.673040px;}
._16{width:18.884160px;}
._1d{width:20.198880px;}
._24{width:22.270560px;}
._23{width:23.306400px;}
._27{width:26.652960px;}
._2b{width:28.286400px;}
._1f{width:31.075200px;}
._1e{width:35.377920px;}
._1c{width:41.210160px;}
._25{width:42.254640px;}
._8{width:44.153040px;}
._9{width:45.161280px;}
._20{width:46.271520px;}
._29{width:50.019120px;}
._22{width:51.333840px;}
._1b{width:67.898400px;}
._26{width:90.835200px;}
._21{width:96.264720px;}
._19{width:98.094240px;}
._1a{width:101.655360px;}
._2a{width:115.836240px;}
._28{width:172.168560px;}
._17{width:182.638800px;}
._18{width:202.861920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs8{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.960000px;}
.y88{bottom:3.990000px;}
.y98{bottom:6.480000px;}
.y96{bottom:6.660000px;}
.y9a{bottom:27.720000px;}
.yf2{bottom:27.750000px;}
.y132{bottom:34.770000px;}
.yba{bottom:48.780000px;}
.yf1{bottom:48.810000px;}
.ye7{bottom:48.825000px;}
.y6{bottom:61.380000px;}
.yf9{bottom:69.840000px;}
.yf0{bottom:69.870000px;}
.ye6{bottom:69.885000px;}
.yf4{bottom:87.480000px;}
.y31{bottom:90.720000px;}
.yf8{bottom:90.900000px;}
.yef{bottom:90.930000px;}
.ye5{bottom:90.945000px;}
.y125{bottom:91.440000px;}
.ya1{bottom:96.120000px;}
.y130{bottom:104.220000px;}
.yf3{bottom:108.540000px;}
.y30{bottom:111.780000px;}
.yf7{bottom:111.960000px;}
.yee{bottom:111.990000px;}
.ye4{bottom:112.005000px;}
.y124{bottom:112.500000px;}
.ya0{bottom:117.180000px;}
.y8a{bottom:117.540000px;}
.y62{bottom:119.340000px;}
.y131{bottom:121.320000px;}
.y12f{bottom:125.280000px;}
.ye9{bottom:129.600000px;}
.y89{bottom:131.940000px;}
.y2f{bottom:132.660000px;}
.yf6{bottom:133.020000px;}
.yed{bottom:133.050000px;}
.ye3{bottom:133.065000px;}
.y123{bottom:133.560000px;}
.y9f{bottom:138.240000px;}
.y61{bottom:140.400000px;}
.y12e{bottom:146.340000px;}
.y87{bottom:151.020000px;}
.yd1{bottom:151.560000px;}
.y2e{bottom:153.750000px;}
.yec{bottom:154.110000px;}
.ye2{bottom:154.125000px;}
.y122{bottom:154.650000px;}
.y9e{bottom:159.330000px;}
.y60{bottom:161.490000px;}
.y12d{bottom:167.430000px;}
.y86{bottom:170.130000px;}
.yd0{bottom:172.650000px;}
.y2d{bottom:174.810000px;}
.yeb{bottom:174.990000px;}
.ye1{bottom:175.185000px;}
.y121{bottom:175.710000px;}
.y9d{bottom:180.390000px;}
.y5f{bottom:182.550000px;}
.y85{bottom:188.490000px;}
.ycf{bottom:193.710000px;}
.y2c{bottom:195.870000px;}
.yea{bottom:196.050000px;}
.ye0{bottom:196.245000px;}
.y120{bottom:196.770000px;}
.y9c{bottom:201.450000px;}
.y5e{bottom:203.610000px;}
.y84{bottom:206.670000px;}
.y12c{bottom:209.550000px;}
.yce{bottom:214.770000px;}
.y2b{bottom:216.930000px;}
.ydf{bottom:217.305000px;}
.y11f{bottom:217.830000px;}
.y9b{bottom:222.510000px;}
.y5d{bottom:224.670000px;}
.y83{bottom:225.030000px;}
.y12b{bottom:230.610000px;}
.ycd{bottom:235.830000px;}
.y2a{bottom:237.990000px;}
.y11e{bottom:238.890000px;}
.y82{bottom:243.390000px;}
.y5c{bottom:245.730000px;}
.y12a{bottom:251.670000px;}
.ycc{bottom:256.890000px;}
.y29{bottom:259.050000px;}
.y11d{bottom:259.950000px;}
.y81{bottom:261.570000px;}
.y99{bottom:264.630000px;}
.y5b{bottom:266.790000px;}
.y129{bottom:272.730000px;}
.ycb{bottom:277.950000px;}
.y80{bottom:279.930000px;}
.y28{bottom:280.110000px;}
.y11c{bottom:281.010000px;}
.y128{bottom:293.790000px;}
.y5a{bottom:296.850000px;}
.y7f{bottom:298.290000px;}
.yca{bottom:299.010000px;}
.y27{bottom:301.170000px;}
.y11b{bottom:302.070000px;}
.y97{bottom:306.750000px;}
.yc9{bottom:313.410000px;}
.y127{bottom:314.850000px;}
.y7e{bottom:316.650000px;}
.y59{bottom:317.910000px;}
.y26{bottom:322.230000px;}
.y11a{bottom:323.130000px;}
.y95{bottom:328.530000px;}
.yc8{bottom:334.470000px;}
.y7d{bottom:334.830000px;}
.y126{bottom:335.910000px;}
.y58{bottom:338.970000px;}
.ye8{bottom:340.050000px;}
.y25{bottom:343.290000px;}
.y119{bottom:344.190000px;}
.y7c{bottom:353.190000px;}
.y94{bottom:356.970000px;}
.y57{bottom:360.030000px;}
.yde{bottom:361.110000px;}
.yc7{bottom:362.190000px;}
.y24{bottom:364.350000px;}
.y118{bottom:365.250000px;}
.y7b{bottom:371.550000px;}
.y93{bottom:378.030000px;}
.y56{bottom:381.090000px;}
.yc6{bottom:383.250000px;}
.y23{bottom:385.410000px;}
.y117{bottom:386.310000px;}
.y7a{bottom:389.730000px;}
.y92{bottom:399.090000px;}
.y55{bottom:402.195000px;}
.yc5{bottom:404.355000px;}
.y22{bottom:406.515000px;}
.y116{bottom:407.415000px;}
.y79{bottom:408.135000px;}
.y91{bottom:420.195000px;}
.y54{bottom:423.255000px;}
.yc4{bottom:425.415000px;}
.y78{bottom:426.495000px;}
.y21{bottom:427.575000px;}
.y115{bottom:428.475000px;}
.y90{bottom:441.255000px;}
.y53{bottom:444.315000px;}
.y76{bottom:445.575000px;}
.yc3{bottom:446.475000px;}
.y20{bottom:448.635000px;}
.y114{bottom:449.535000px;}
.y8f{bottom:462.315000px;}
.yc2{bottom:467.535000px;}
.y1f{bottom:469.695000px;}
.y113{bottom:470.595000px;}
.y75{bottom:471.315000px;}
.y52{bottom:474.375000px;}
.y8e{bottom:483.375000px;}
.yc1{bottom:488.595000px;}
.y1e{bottom:490.755000px;}
.y112{bottom:491.655000px;}
.y74{bottom:492.375000px;}
.y51{bottom:495.435000px;}
.yc0{bottom:502.995000px;}
.y8d{bottom:504.435000px;}
.y1d{bottom:511.815000px;}
.y111{bottom:512.715000px;}
.y73{bottom:513.435000px;}
.y50{bottom:516.495000px;}
.ybd{bottom:524.775000px;}
.y8c{bottom:525.495000px;}
.y1c{bottom:532.875000px;}
.y110{bottom:533.775000px;}
.y72{bottom:534.495000px;}
.y4f{bottom:537.555000px;}
.ybf{bottom:545.835000px;}
.y8b{bottom:546.555000px;}
.y1b{bottom:553.935000px;}
.y10f{bottom:554.655000px;}
.y71{bottom:555.555000px;}
.ybe{bottom:566.895000px;}
.y4e{bottom:567.615000px;}
.y10e{bottom:575.715000px;}
.y70{bottom:576.615000px;}
.y1a{bottom:577.515000px;}
.yb9{bottom:587.955000px;}
.y4d{bottom:588.675000px;}
.ydd{bottom:592.815000px;}
.y10d{bottom:596.775000px;}
.y6f{bottom:597.675000px;}
.y19{bottom:607.395000px;}
.ybc{bottom:609.015000px;}
.y4c{bottom:609.735000px;}
.y10c{bottom:617.835000px;}
.y6e{bottom:618.735000px;}
.ydc{bottom:621.255000px;}
.y18{bottom:628.455000px;}
.ybb{bottom:630.075000px;}
.y4b{bottom:630.795000px;}
.y10b{bottom:638.895000px;}
.y6d{bottom:639.795000px;}
.ydb{bottom:642.315000px;}
.y17{bottom:649.545000px;}
.y4a{bottom:651.885000px;}
.y10a{bottom:659.985000px;}
.y6c{bottom:660.885000px;}
.yda{bottom:663.405000px;}
.y16{bottom:670.605000px;}
.y49{bottom:672.945000px;}
.yb8{bottom:680.325000px;}
.y109{bottom:681.045000px;}
.y6b{bottom:681.945000px;}
.yd9{bottom:684.465000px;}
.y15{bottom:691.665000px;}
.y48{bottom:694.005000px;}
.yb7{bottom:701.385000px;}
.y108{bottom:702.105000px;}
.y6a{bottom:703.005000px;}
.yd8{bottom:705.525000px;}
.y14{bottom:712.725000px;}
.y47{bottom:715.065000px;}
.yb6{bottom:722.445000px;}
.y107{bottom:723.165000px;}
.y69{bottom:724.065000px;}
.yd7{bottom:726.585000px;}
.y13{bottom:733.785000px;}
.y46{bottom:736.125000px;}
.yb5{bottom:743.505000px;}
.y106{bottom:744.225000px;}
.y68{bottom:745.125000px;}
.yd6{bottom:747.645000px;}
.y12{bottom:754.845000px;}
.y45{bottom:757.005000px;}
.yb4{bottom:764.565000px;}
.y105{bottom:765.285000px;}
.y67{bottom:766.005000px;}
.yd5{bottom:768.705000px;}
.y11{bottom:775.905000px;}
.y44{bottom:778.065000px;}
.yb3{bottom:785.625000px;}
.y104{bottom:786.345000px;}
.y66{bottom:787.065000px;}
.yd4{bottom:789.765000px;}
.y10{bottom:796.785000px;}
.y43{bottom:799.125000px;}
.yb2{bottom:806.685000px;}
.y103{bottom:807.405000px;}
.y65{bottom:808.125000px;}
.yd3{bottom:810.825000px;}
.yf{bottom:818.025000px;}
.y42{bottom:820.185000px;}
.yb1{bottom:827.745000px;}
.yd2{bottom:827.925000px;}
.y102{bottom:828.465000px;}
.y64{bottom:829.185000px;}
.ye{bottom:841.245000px;}
.yb0{bottom:848.805000px;}
.y101{bottom:849.525000px;}
.y63{bottom:850.245000px;}
.yd{bottom:867.525000px;}
.yaf{bottom:869.865000px;}
.y100{bottom:870.585000px;}
.y41{bottom:871.305000px;}
.yc{bottom:888.585000px;}
.yae{bottom:890.925000px;}
.yff{bottom:891.645000px;}
.y40{bottom:892.365000px;}
.yb{bottom:905.370000px;}
.yad{bottom:912.030000px;}
.yfe{bottom:912.750000px;}
.y3f{bottom:913.470000px;}
.ya{bottom:927.690000px;}
.yac{bottom:933.090000px;}
.yfd{bottom:933.810000px;}
.y3e{bottom:934.530000px;}
.y9{bottom:952.890000px;}
.yab{bottom:954.150000px;}
.yfc{bottom:954.870000px;}
.y3d{bottom:955.590000px;}
.yaa{bottom:975.210000px;}
.yfb{bottom:975.930000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.ya9{bottom:996.270000px;}
.yfa{bottom:996.990000px;}
.y3b{bottom:997.710000px;}
.yf5{bottom:1012.110000px;}
.ya8{bottom:1017.330000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.ya7{bottom:1038.390000px;}
.y39{bottom:1039.830000px;}
.ya6{bottom:1059.450000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.ya5{bottom:1073.850000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.ya4{bottom:1095.630000px;}
.y36{bottom:1103.010000px;}
.ya3{bottom:1117.410000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.ya2{bottom:1138.470000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h19{height:2.864531px;}
.he{height:18.180000px;}
.hc{height:18.360000px;}
.hd{height:18.396000px;}
.h10{height:20.880000px;}
.hf{height:21.060000px;}
.h12{height:21.096000px;}
.h8{height:38.671172px;}
.h11{height:42.120000px;}
.hb{height:45.578672px;}
.h9{height:48.088125px;}
.h2{height:56.146289px;}
.ha{height:59.439023px;}
.h6{height:61.189805px;}
.h14{height:63.180000px;}
.h13{height:63.216000px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h18{height:84.276000px;}
.h5{height:98.051133px;}
.h17{height:147.456000px;}
.h16{height:210.450000px;}
.h15{height:231.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:25.560000px;}
.w12{width:28.980000px;}
.wd{width:34.200000px;}
.w3{width:47.736000px;}
.wf{width:51.840000px;}
.w5{width:66.096000px;}
.wa{width:72.936000px;}
.w6{width:79.380000px;}
.wb{width:85.860000px;}
.wc{width:102.456000px;}
.w11{width:106.596000px;}
.w7{width:109.116000px;}
.w15{width:140.796000px;}
.we{width:178.230000px;}
.w19{width:210.810000px;}
.w13{width:222.870000px;}
.w18{width:241.455000px;}
.w10{width:264.270000px;}
.w17{width:267.510000px;}
.w16{width:276.195000px;}
.w9{width:476.175000px;}
.w4{width:482.835000px;}
.w1a{width:581.010000px;}
.w8{width:785.160000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x5{left:13.500000px;}
.x17{left:18.900000px;}
.x1a{left:34.200000px;}
.x1c{left:35.496000px;}
.x1b{left:39.465000px;}
.x1d{left:42.336000px;}
.x1{left:53.999987px;}
.x20{left:66.779987px;}
.x3{left:70.199987px;}
.x4{left:74.339987px;}
.x2{left:75.599987px;}
.x1e{left:80.999987px;}
.x21{left:93.815987px;}
.x6{left:101.736000px;}
.x1f{left:108.035987px;}
.x10{left:184.170000px;}
.x22{left:190.110000px;}
.x23{left:264.810000px;}
.x11{left:290.775000px;}
.x16{left:294.194987px;}
.xd{left:314.535000px;}
.x12{left:319.755000px;}
.x18{left:330.195000px;}
.xe{left:348.735000px;}
.xf{left:526.965000px;}
.x13{left:542.625000px;}
.x14{left:568.185000px;}
.xb{left:577.905000px;}
.x7{left:584.565000px;}
.x19{left:597.705000px;}
.x8{left:650.670000px;}
.x15{left:668.129987px;}
.x9{left:730.050000px;}
.xc{left:736.710000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.928000pt;}
.ls18{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.842667pt;}
.lsb{letter-spacing:-0.484267pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.269333pt;}
.ls1b{letter-spacing:-0.213867pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1f{letter-spacing:-0.190933pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls20{letter-spacing:-0.069333pt;}
.ls14{letter-spacing:-0.061867pt;}
.ls11{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.021120pt;}
.ls22{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.194133pt;}
.ls6{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256533pt;}
.ls16{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.349867pt;}
.ls19{letter-spacing:0.426240pt;}
.lsa{letter-spacing:0.438933pt;}
.ls1d{letter-spacing:0.474133pt;}
.ls3{letter-spacing:0.549120pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls25{letter-spacing:10.832640pt;}
.ls23{letter-spacing:17.232640pt;}
.ls24{letter-spacing:37.840640pt;}
.ls21{letter-spacing:40.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.479253pt;}
.ws9{word-spacing:-12.354987pt;}
.wse{word-spacing:-12.322453pt;}
.wsa{word-spacing:-12.199253pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.935787pt;}
.ws7{word-spacing:-11.902187pt;}
.wsf{word-spacing:-11.814187pt;}
.wsc{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1293.312213pt;}
._2{margin-left:-1185.029120pt;}
._3{margin-left:-843.289600pt;}
._5{margin-left:-520.672853pt;}
._7{margin-left:-3.893760pt;}
._6{margin-left:-2.944000pt;}
._c{margin-left:-2.021547pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.979200pt;}
._b{width:3.984000pt;}
._f{width:4.886613pt;}
._10{width:5.790507pt;}
._d{width:6.941013pt;}
._e{width:7.968000pt;}
._11{width:8.906453pt;}
._12{width:9.986560pt;}
._13{width:10.978133pt;}
._15{width:13.704960pt;}
._14{width:14.820480pt;}
._16{width:16.785920pt;}
._1d{width:17.954560pt;}
._24{width:19.796053pt;}
._23{width:20.716800pt;}
._27{width:23.691520pt;}
._2b{width:25.143467pt;}
._1f{width:27.622400pt;}
._1e{width:31.447040pt;}
._1c{width:36.631253pt;}
._25{width:37.559680pt;}
._8{width:39.247147pt;}
._9{width:40.143360pt;}
._20{width:41.130240pt;}
._29{width:44.461440pt;}
._22{width:45.630080pt;}
._1b{width:60.354133pt;}
._26{width:80.742400pt;}
._21{width:85.568640pt;}
._19{width:87.194880pt;}
._1a{width:90.360320pt;}
._2a{width:102.965547pt;}
._28{width:153.038720pt;}
._17{width:162.345600pt;}
._18{width:180.321707pt;}
.fs8{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:3.520000pt;}
.y88{bottom:3.546667pt;}
.y98{bottom:5.760000pt;}
.y96{bottom:5.920000pt;}
.y9a{bottom:24.640000pt;}
.yf2{bottom:24.666667pt;}
.y132{bottom:30.906667pt;}
.yba{bottom:43.360000pt;}
.yf1{bottom:43.386667pt;}
.ye7{bottom:43.400000pt;}
.y6{bottom:54.560000pt;}
.yf9{bottom:62.080000pt;}
.yf0{bottom:62.106667pt;}
.ye6{bottom:62.120000pt;}
.yf4{bottom:77.760000pt;}
.y31{bottom:80.640000pt;}
.yf8{bottom:80.800000pt;}
.yef{bottom:80.826667pt;}
.ye5{bottom:80.840000pt;}
.y125{bottom:81.280000pt;}
.ya1{bottom:85.440000pt;}
.y130{bottom:92.640000pt;}
.yf3{bottom:96.480000pt;}
.y30{bottom:99.360000pt;}
.yf7{bottom:99.520000pt;}
.yee{bottom:99.546667pt;}
.ye4{bottom:99.560000pt;}
.y124{bottom:100.000000pt;}
.ya0{bottom:104.160000pt;}
.y8a{bottom:104.480000pt;}
.y62{bottom:106.080000pt;}
.y131{bottom:107.840000pt;}
.y12f{bottom:111.360000pt;}
.ye9{bottom:115.200000pt;}
.y89{bottom:117.280000pt;}
.y2f{bottom:117.920000pt;}
.yf6{bottom:118.240000pt;}
.yed{bottom:118.266667pt;}
.ye3{bottom:118.280000pt;}
.y123{bottom:118.720000pt;}
.y9f{bottom:122.880000pt;}
.y61{bottom:124.800000pt;}
.y12e{bottom:130.080000pt;}
.y87{bottom:134.240000pt;}
.yd1{bottom:134.720000pt;}
.y2e{bottom:136.666667pt;}
.yec{bottom:136.986667pt;}
.ye2{bottom:137.000000pt;}
.y122{bottom:137.466667pt;}
.y9e{bottom:141.626667pt;}
.y60{bottom:143.546667pt;}
.y12d{bottom:148.826667pt;}
.y86{bottom:151.226667pt;}
.yd0{bottom:153.466667pt;}
.y2d{bottom:155.386667pt;}
.yeb{bottom:155.546667pt;}
.ye1{bottom:155.720000pt;}
.y121{bottom:156.186667pt;}
.y9d{bottom:160.346667pt;}
.y5f{bottom:162.266667pt;}
.y85{bottom:167.546667pt;}
.ycf{bottom:172.186667pt;}
.y2c{bottom:174.106667pt;}
.yea{bottom:174.266667pt;}
.ye0{bottom:174.440000pt;}
.y120{bottom:174.906667pt;}
.y9c{bottom:179.066667pt;}
.y5e{bottom:180.986667pt;}
.y84{bottom:183.706667pt;}
.y12c{bottom:186.266667pt;}
.yce{bottom:190.906667pt;}
.y2b{bottom:192.826667pt;}
.ydf{bottom:193.160000pt;}
.y11f{bottom:193.626667pt;}
.y9b{bottom:197.786667pt;}
.y5d{bottom:199.706667pt;}
.y83{bottom:200.026667pt;}
.y12b{bottom:204.986667pt;}
.ycd{bottom:209.626667pt;}
.y2a{bottom:211.546667pt;}
.y11e{bottom:212.346667pt;}
.y82{bottom:216.346667pt;}
.y5c{bottom:218.426667pt;}
.y12a{bottom:223.706667pt;}
.ycc{bottom:228.346667pt;}
.y29{bottom:230.266667pt;}
.y11d{bottom:231.066667pt;}
.y81{bottom:232.506667pt;}
.y99{bottom:235.226667pt;}
.y5b{bottom:237.146667pt;}
.y129{bottom:242.426667pt;}
.ycb{bottom:247.066667pt;}
.y80{bottom:248.826667pt;}
.y28{bottom:248.986667pt;}
.y11c{bottom:249.786667pt;}
.y128{bottom:261.146667pt;}
.y5a{bottom:263.866667pt;}
.y7f{bottom:265.146667pt;}
.yca{bottom:265.786667pt;}
.y27{bottom:267.706667pt;}
.y11b{bottom:268.506667pt;}
.y97{bottom:272.666667pt;}
.yc9{bottom:278.586667pt;}
.y127{bottom:279.866667pt;}
.y7e{bottom:281.466667pt;}
.y59{bottom:282.586667pt;}
.y26{bottom:286.426667pt;}
.y11a{bottom:287.226667pt;}
.y95{bottom:292.026667pt;}
.yc8{bottom:297.306667pt;}
.y7d{bottom:297.626667pt;}
.y126{bottom:298.586667pt;}
.y58{bottom:301.306667pt;}
.ye8{bottom:302.266667pt;}
.y25{bottom:305.146667pt;}
.y119{bottom:305.946667pt;}
.y7c{bottom:313.946667pt;}
.y94{bottom:317.306667pt;}
.y57{bottom:320.026667pt;}
.yde{bottom:320.986667pt;}
.yc7{bottom:321.946667pt;}
.y24{bottom:323.866667pt;}
.y118{bottom:324.666667pt;}
.y7b{bottom:330.266667pt;}
.y93{bottom:336.026667pt;}
.y56{bottom:338.746667pt;}
.yc6{bottom:340.666667pt;}
.y23{bottom:342.586667pt;}
.y117{bottom:343.386667pt;}
.y7a{bottom:346.426667pt;}
.y92{bottom:354.746667pt;}
.y55{bottom:357.506667pt;}
.yc5{bottom:359.426667pt;}
.y22{bottom:361.346667pt;}
.y116{bottom:362.146667pt;}
.y79{bottom:362.786667pt;}
.y91{bottom:373.506667pt;}
.y54{bottom:376.226667pt;}
.yc4{bottom:378.146667pt;}
.y78{bottom:379.106667pt;}
.y21{bottom:380.066667pt;}
.y115{bottom:380.866667pt;}
.y90{bottom:392.226667pt;}
.y53{bottom:394.946667pt;}
.y76{bottom:396.066667pt;}
.yc3{bottom:396.866667pt;}
.y20{bottom:398.786667pt;}
.y114{bottom:399.586667pt;}
.y8f{bottom:410.946667pt;}
.yc2{bottom:415.586667pt;}
.y1f{bottom:417.506667pt;}
.y113{bottom:418.306667pt;}
.y75{bottom:418.946667pt;}
.y52{bottom:421.666667pt;}
.y8e{bottom:429.666667pt;}
.yc1{bottom:434.306667pt;}
.y1e{bottom:436.226667pt;}
.y112{bottom:437.026667pt;}
.y74{bottom:437.666667pt;}
.y51{bottom:440.386667pt;}
.yc0{bottom:447.106667pt;}
.y8d{bottom:448.386667pt;}
.y1d{bottom:454.946667pt;}
.y111{bottom:455.746667pt;}
.y73{bottom:456.386667pt;}
.y50{bottom:459.106667pt;}
.ybd{bottom:466.466667pt;}
.y8c{bottom:467.106667pt;}
.y1c{bottom:473.666667pt;}
.y110{bottom:474.466667pt;}
.y72{bottom:475.106667pt;}
.y4f{bottom:477.826667pt;}
.ybf{bottom:485.186667pt;}
.y8b{bottom:485.826667pt;}
.y1b{bottom:492.386667pt;}
.y10f{bottom:493.026667pt;}
.y71{bottom:493.826667pt;}
.ybe{bottom:503.906667pt;}
.y4e{bottom:504.546667pt;}
.y10e{bottom:511.746667pt;}
.y70{bottom:512.546667pt;}
.y1a{bottom:513.346667pt;}
.yb9{bottom:522.626667pt;}
.y4d{bottom:523.266667pt;}
.ydd{bottom:526.946667pt;}
.y10d{bottom:530.466667pt;}
.y6f{bottom:531.266667pt;}
.y19{bottom:539.906667pt;}
.ybc{bottom:541.346667pt;}
.y4c{bottom:541.986667pt;}
.y10c{bottom:549.186667pt;}
.y6e{bottom:549.986667pt;}
.ydc{bottom:552.226667pt;}
.y18{bottom:558.626667pt;}
.ybb{bottom:560.066667pt;}
.y4b{bottom:560.706667pt;}
.y10b{bottom:567.906667pt;}
.y6d{bottom:568.706667pt;}
.ydb{bottom:570.946667pt;}
.y17{bottom:577.373333pt;}
.y4a{bottom:579.453333pt;}
.y10a{bottom:586.653333pt;}
.y6c{bottom:587.453333pt;}
.yda{bottom:589.693333pt;}
.y16{bottom:596.093333pt;}
.y49{bottom:598.173333pt;}
.yb8{bottom:604.733333pt;}
.y109{bottom:605.373333pt;}
.y6b{bottom:606.173333pt;}
.yd9{bottom:608.413333pt;}
.y15{bottom:614.813333pt;}
.y48{bottom:616.893333pt;}
.yb7{bottom:623.453333pt;}
.y108{bottom:624.093333pt;}
.y6a{bottom:624.893333pt;}
.yd8{bottom:627.133333pt;}
.y14{bottom:633.533333pt;}
.y47{bottom:635.613333pt;}
.yb6{bottom:642.173333pt;}
.y107{bottom:642.813333pt;}
.y69{bottom:643.613333pt;}
.yd7{bottom:645.853333pt;}
.y13{bottom:652.253333pt;}
.y46{bottom:654.333333pt;}
.yb5{bottom:660.893333pt;}
.y106{bottom:661.533333pt;}
.y68{bottom:662.333333pt;}
.yd6{bottom:664.573333pt;}
.y12{bottom:670.973333pt;}
.y45{bottom:672.893333pt;}
.yb4{bottom:679.613333pt;}
.y105{bottom:680.253333pt;}
.y67{bottom:680.893333pt;}
.yd5{bottom:683.293333pt;}
.y11{bottom:689.693333pt;}
.y44{bottom:691.613333pt;}
.yb3{bottom:698.333333pt;}
.y104{bottom:698.973333pt;}
.y66{bottom:699.613333pt;}
.yd4{bottom:702.013333pt;}
.y10{bottom:708.253333pt;}
.y43{bottom:710.333333pt;}
.yb2{bottom:717.053333pt;}
.y103{bottom:717.693333pt;}
.y65{bottom:718.333333pt;}
.yd3{bottom:720.733333pt;}
.yf{bottom:727.133333pt;}
.y42{bottom:729.053333pt;}
.yb1{bottom:735.773333pt;}
.yd2{bottom:735.933333pt;}
.y102{bottom:736.413333pt;}
.y64{bottom:737.053333pt;}
.ye{bottom:747.773333pt;}
.yb0{bottom:754.493333pt;}
.y101{bottom:755.133333pt;}
.y63{bottom:755.773333pt;}
.yd{bottom:771.133333pt;}
.yaf{bottom:773.213333pt;}
.y100{bottom:773.853333pt;}
.y41{bottom:774.493333pt;}
.yc{bottom:789.853333pt;}
.yae{bottom:791.933333pt;}
.yff{bottom:792.573333pt;}
.y40{bottom:793.213333pt;}
.yb{bottom:804.773333pt;}
.yad{bottom:810.693333pt;}
.yfe{bottom:811.333333pt;}
.y3f{bottom:811.973333pt;}
.ya{bottom:824.613333pt;}
.yac{bottom:829.413333pt;}
.yfd{bottom:830.053333pt;}
.y3e{bottom:830.693333pt;}
.y9{bottom:847.013333pt;}
.yab{bottom:848.133333pt;}
.yfc{bottom:848.773333pt;}
.y3d{bottom:849.413333pt;}
.yaa{bottom:866.853333pt;}
.yfb{bottom:867.493333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.ya9{bottom:885.573333pt;}
.yfa{bottom:886.213333pt;}
.y3b{bottom:886.853333pt;}
.yf5{bottom:899.653333pt;}
.ya8{bottom:904.293333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.ya7{bottom:923.013333pt;}
.y39{bottom:924.293333pt;}
.ya6{bottom:941.733333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.ya5{bottom:954.533333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.ya4{bottom:973.893333pt;}
.y36{bottom:980.453333pt;}
.ya3{bottom:993.253333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.ya2{bottom:1011.973333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h19{height:2.546250pt;}
.he{height:16.160000pt;}
.hc{height:16.320000pt;}
.hd{height:16.352000pt;}
.h10{height:18.560000pt;}
.hf{height:18.720000pt;}
.h12{height:18.752000pt;}
.h8{height:34.374375pt;}
.h11{height:37.440000pt;}
.hb{height:40.514375pt;}
.h9{height:42.745000pt;}
.h2{height:49.907812pt;}
.ha{height:52.834688pt;}
.h6{height:54.390938pt;}
.h14{height:56.160000pt;}
.h13{height:56.192000pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h18{height:74.912000pt;}
.h5{height:87.156562pt;}
.h17{height:131.072000pt;}
.h16{height:187.066667pt;}
.h15{height:205.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:22.720000pt;}
.w12{width:25.760000pt;}
.wd{width:30.400000pt;}
.w3{width:42.432000pt;}
.wf{width:46.080000pt;}
.w5{width:58.752000pt;}
.wa{width:64.832000pt;}
.w6{width:70.560000pt;}
.wb{width:76.320000pt;}
.wc{width:91.072000pt;}
.w11{width:94.752000pt;}
.w7{width:96.992000pt;}
.w15{width:125.152000pt;}
.we{width:158.426667pt;}
.w19{width:187.386667pt;}
.w13{width:198.106667pt;}
.w18{width:214.626667pt;}
.w10{width:234.906667pt;}
.w17{width:237.786667pt;}
.w16{width:245.506667pt;}
.w9{width:423.266667pt;}
.w4{width:429.186667pt;}
.w1a{width:516.453333pt;}
.w8{width:697.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x5{left:12.000000pt;}
.x17{left:16.800000pt;}
.x1a{left:30.400000pt;}
.x1c{left:31.552000pt;}
.x1b{left:35.080000pt;}
.x1d{left:37.632000pt;}
.x1{left:47.999988pt;}
.x20{left:59.359988pt;}
.x3{left:62.399988pt;}
.x4{left:66.079988pt;}
.x2{left:67.199988pt;}
.x1e{left:71.999988pt;}
.x21{left:83.391988pt;}
.x6{left:90.432000pt;}
.x1f{left:96.031988pt;}
.x10{left:163.706667pt;}
.x22{left:168.986667pt;}
.x23{left:235.386667pt;}
.x11{left:258.466667pt;}
.x16{left:261.506655pt;}
.xd{left:279.586667pt;}
.x12{left:284.226667pt;}
.x18{left:293.506667pt;}
.xe{left:309.986667pt;}
.xf{left:468.413333pt;}
.x13{left:482.333333pt;}
.x14{left:505.053333pt;}
.xb{left:513.693333pt;}
.x7{left:519.613333pt;}
.x19{left:531.293333pt;}
.x8{left:578.373333pt;}
.x15{left:593.893322pt;}
.x9{left:648.933333pt;}
.xc{left:654.853333pt;}
}




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