
    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_afae30ecf1e8f283908e4b01.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_73e5bae78ba81b91da91e4e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_d4b0af7abce08398e9bfcdb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_525bbd299daf31f705640415.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_b2af631a0ea338ee247dc1d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_613bb21245ddc7c8854228a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765137;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_4f30e4303612e7edd4f6b75f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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(0.408505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408505,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-48.000000px;}
.v3{vertical-align:-41.400000px;}
.v4{vertical-align:-39.000000px;}
.v5{vertical-align:-33.000000px;}
.v6{vertical-align:-28.200000px;}
.va{vertical-align:-23.400000px;}
.v8{vertical-align:-9.600000px;}
.v7{vertical-align:-7.800000px;}
.v9{vertical-align:-6.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:166.200000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.156000px;}
.ls8{letter-spacing:0.312000px;}
.ls1{letter-spacing:0.345600px;}
.ls11{letter-spacing:0.840000px;}
.ls9{letter-spacing:53.400000px;}
.ls5{letter-spacing:55.003200px;}
.ls4{letter-spacing:55.603200px;}
.ls6{letter-spacing:65.745600px;}
.ls7{letter-spacing:66.345600px;}
.lsb{letter-spacing:87.000000px;}
.ls10{letter-spacing:135.000000px;}
.ls12{letter-spacing:141.000000px;}
.ls3{letter-spacing:152.230800px;}
.lsf{letter-spacing:154.800000px;}
.lse{letter-spacing:159.000000px;}
.ls2{letter-spacing:174.002400px;}
.lsd{letter-spacing:398.156933px;}
.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;}
}
.ws2{word-spacing:-53.184000px;}
.ws5{word-spacing:-46.536000px;}
.ws8{word-spacing:-43.368000px;}
.ws9{word-spacing:-43.212000px;}
.ws0{word-spacing:-39.888000px;}
.wsb{word-spacing:-36.564000px;}
.ws7{word-spacing:-33.240000px;}
.ws4{word-spacing:-30.096000px;}
.wsa{word-spacing:-29.916000px;}
.wsd{word-spacing:-19.113000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-0.168000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:43.811619px;}
.wse{word-spacing:331.295078px;}
.wsf{word-spacing:352.592247px;}
._c{margin-left:-3306.564000px;}
._5{margin-left:-2.964000px;}
._0{margin-left:-1.344000px;}
._1{width:1.104000px;}
._3{width:2.592000px;}
._4{width:3.924000px;}
._e{width:6.648000px;}
._14{width:38.532000px;}
._a{width:44.352000px;}
._9{width:45.360000px;}
._10{width:47.436000px;}
._f{width:48.504000px;}
._13{width:82.824000px;}
._7{width:96.768000px;}
._8{width:98.112000px;}
._11{width:110.508000px;}
._12{width:111.852000px;}
._b{width:130.872000px;}
._2{width:580.536000px;}
._d{width:713.256000px;}
._6{width:898.212000px;}
.fc6{color:rgb(255,207,1);}
.fc5{color:rgb(255,255,204);}
.fc4{color:rgb(0,102,204);}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(126,0,33);}
.fsf{font-size:69.000000px;}
.fsb{font-size:70.200000px;}
.fs9{font-size:75.600000px;}
.fs6{font-size:78.000000px;}
.fs8{font-size:86.400000px;}
.fsc{font-size:100.800000px;}
.fse{font-size:102.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs7{font-size:132.000000px;}
.fs1{font-size:144.000000px;}
.fs4{font-size:156.000000px;}
.fsa{font-size:168.000000px;}
.fsd{font-size:186.000000px;}
.fs0{font-size:192.000000px;}
.fs5{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:10.950000px;}
.yc2{bottom:12.600000px;}
.yf3{bottom:18.750000px;}
.ybb{bottom:19.950000px;}
.y4{bottom:20.400000px;}
.ybc{bottom:21.600000px;}
.y115{bottom:25.650000px;}
.y12b{bottom:35.250000px;}
.ye8{bottom:37.800000px;}
.ye{bottom:39.900000px;}
.y48{bottom:41.700000px;}
.y54{bottom:43.050000px;}
.y36{bottom:44.700000px;}
.ybf{bottom:56.250000px;}
.yc0{bottom:57.900000px;}
.yf2{bottom:63.150000px;}
.yb9{bottom:65.250000px;}
.yba{bottom:66.900000px;}
.y3{bottom:75.600000px;}
.y16{bottom:77.400000px;}
.y12a{bottom:78.450000px;}
.y47{bottom:84.900000px;}
.ye7{bottom:85.350000px;}
.y53{bottom:86.250000px;}
.ydd{bottom:87.150000px;}
.y90{bottom:88.050000px;}
.y2a{bottom:90.450000px;}
.y106{bottom:93.750000px;}
.y35{bottom:101.250000px;}
.yd{bottom:105.300000px;}
.yf1{bottom:107.550000px;}
.y3d{bottom:109.800000px;}
.yab{bottom:110.700000px;}
.y46{bottom:128.100000px;}
.y6a{bottom:129.450000px;}
.yd0{bottom:130.650000px;}
.y52{bottom:131.400000px;}
.ydc{bottom:131.550000px;}
.y15{bottom:131.850000px;}
.ye6{bottom:133.050000px;}
.y105{bottom:136.950000px;}
.y29{bottom:137.250000px;}
.yc{bottom:141.450000px;}
.y14{bottom:144.750000px;}
.ybd{bottom:146.550000px;}
.ybe{bottom:148.200000px;}
.yf0{bottom:151.950000px;}
.yb7{bottom:155.550000px;}
.y34{bottom:157.050000px;}
.yb8{bottom:157.200000px;}
.yaa{bottom:162.300000px;}
.y129{bottom:164.850000px;}
.y3c{bottom:170.550000px;}
.y45{bottom:171.300000px;}
.y73{bottom:172.800000px;}
.y69{bottom:172.950000px;}
.y95{bottom:173.100000px;}
.ydb{bottom:174.300000px;}
.y98{bottom:177.300000px;}
.ye5{bottom:178.500000px;}
.y104{bottom:180.150000px;}
.y51{bottom:185.100000px;}
.yef{bottom:194.700000px;}
.y8b{bottom:205.350000px;}
.y10d{bottom:206.250000px;}
.y72{bottom:208.800000px;}
.y68{bottom:209.100000px;}
.ya9{bottom:213.900000px;}
.y44{bottom:214.500000px;}
.ycf{bottom:214.950000px;}
.y33{bottom:216.750000px;}
.yda{bottom:220.350000px;}
.yb6{bottom:223.950000px;}
.yfe{bottom:225.900000px;}
.ye4{bottom:226.050000px;}
.y1f{bottom:229.650000px;}
.y1d{bottom:231.000000px;}
.y3b{bottom:231.450000px;}
.y50{bottom:236.850000px;}
.yb{bottom:237.450000px;}
.y83{bottom:238.350000px;}
.yee{bottom:240.750000px;}
.y7d{bottom:242.100000px;}
.y22{bottom:244.200000px;}
.y128{bottom:251.250000px;}
.y71{bottom:252.300000px;}
.y67{bottom:252.450000px;}
.y5e{bottom:252.750000px;}
.y10c{bottom:252.900000px;}
.y1e{bottom:253.050000px;}
.ya8{bottom:253.350000px;}
.y1c{bottom:254.400000px;}
.yce{bottom:256.950000px;}
.y43{bottom:257.700000px;}
.y8a{bottom:258.150000px;}
.y114{bottom:263.100000px;}
.yf8{bottom:263.400000px;}
.ye3{bottom:263.700000px;}
.yd9{bottom:264.750000px;}
.y9f{bottom:265.350000px;}
.y103{bottom:266.550000px;}
.y21{bottom:267.600000px;}
.yb0{bottom:270.750000px;}
.yd2{bottom:271.800000px;}
.y32{bottom:273.150000px;}
.ya{bottom:273.450000px;}
.yb5{bottom:279.150000px;}
.y19{bottom:281.250000px;}
.y82{bottom:281.850000px;}
.y4f{bottom:282.000000px;}
.yfd{bottom:282.300000px;}
.yed{bottom:285.150000px;}
.y7c{bottom:285.600000px;}
.y97{bottom:287.850000px;}
.y94{bottom:292.050000px;}
.y3a{bottom:292.350000px;}
.ya7{bottom:293.550000px;}
.y70{bottom:295.800000px;}
.y66{bottom:295.950000px;}
.ycd{bottom:299.100000px;}
.y10b{bottom:299.700000px;}
.yf7{bottom:302.250000px;}
.y113{bottom:302.700000px;}
.y5d{bottom:303.150000px;}
.yd8{bottom:307.350000px;}
.y42{bottom:307.950000px;}
.y102{bottom:309.750000px;}
.ye2{bottom:311.400000px;}
.y11c{bottom:316.350000px;}
.y89{bottom:316.650000px;}
.y9e{bottom:324.150000px;}
.y81{bottom:325.350000px;}
.yaf{bottom:325.950000px;}
.y7b{bottom:329.100000px;}
.yec{bottom:329.550000px;}
.y8d{bottom:330.300000px;}
.y120{bottom:330.600000px;}
.y65{bottom:332.100000px;}
.yfc{bottom:332.700000px;}
.y4e{bottom:333.600000px;}
.y31{bottom:334.050000px;}
.yb4{bottom:334.350000px;}
.y127{bottom:337.650000px;}
.y6f{bottom:339.300000px;}
.yf6{bottom:341.100000px;}
.ycc{bottom:341.250000px;}
.yd7{bottom:341.550000px;}
.y112{bottom:342.300000px;}
.y8f{bottom:343.200000px;}
.y10a{bottom:346.500000px;}
.y101{bottom:352.950000px;}
.y39{bottom:353.100000px;}
.y5c{bottom:353.550000px;}
.y9c{bottom:353.850000px;}
.ye1{bottom:358.950000px;}
.y11b{bottom:359.550000px;}
.y7a{bottom:365.100000px;}
.y18{bottom:365.250000px;}
.y80{bottom:368.850000px;}
.y9{bottom:369.450000px;}
.y11f{bottom:373.800000px;}
.yeb{bottom:373.950000px;}
.y6e{bottom:375.300000px;}
.y64{bottom:375.600000px;}
.yd1{bottom:379.950000px;}
.y126{bottom:380.850000px;}
.yae{bottom:381.150000px;}
.y111{bottom:381.900000px;}
.y9d{bottom:382.800000px;}
.yd6{bottom:384.150000px;}
.yb3{bottom:389.550000px;}
.y109{bottom:393.300000px;}
.y93{bottom:394.050000px;}
.y4d{bottom:394.350000px;}
.y30{bottom:394.800000px;}
.y100{bottom:396.150000px;}
.y96{bottom:398.550000px;}
.ya6{bottom:401.850000px;}
.y11a{bottom:402.750000px;}
.y5b{bottom:403.950000px;}
.ye0{bottom:404.400000px;}
.y8{bottom:405.450000px;}
.y9b{bottom:408.300000px;}
.y79{bottom:408.600000px;}
.y63{bottom:411.600000px;}
.y7f{bottom:412.350000px;}
.y38{bottom:414.000000px;}
.yea{bottom:416.550000px;}
.y11e{bottom:417.000000px;}
.yd5{bottom:418.200000px;}
.y6d{bottom:418.800000px;}
.y9a{bottom:421.050000px;}
.y110{bottom:421.500000px;}
.yc8{bottom:422.250000px;}
.y125{bottom:424.050000px;}
.y24{bottom:427.050000px;}
.y88{bottom:427.950000px;}
.yfb{bottom:433.500000px;}
.yad{bottom:436.350000px;}
.y1b{bottom:437.250000px;}
.yff{bottom:439.350000px;}
.y108{bottom:440.100000px;}
.yf5{bottom:442.800000px;}
.yb2{bottom:444.750000px;}
.y119{bottom:445.950000px;}
.y11{bottom:446.400000px;}
.y17{bottom:449.250000px;}
.ycb{bottom:449.400000px;}
.y23{bottom:450.450000px;}
.y20{bottom:451.800000px;}
.y78{bottom:452.100000px;}
.ya5{bottom:453.450000px;}
.y6c{bottom:454.950000px;}
.y62{bottom:455.100000px;}
.y7e{bottom:455.850000px;}
.y13{bottom:457.800000px;}
.y2f{bottom:458.400000px;}
.y1a{bottom:460.650000px;}
.yd4{bottom:460.950000px;}
.y10f{bottom:461.100000px;}
.y124{bottom:467.250000px;}
.y4c{bottom:469.350000px;}
.y37{bottom:474.750000px;}
.y25{bottom:476.400000px;}
.y87{bottom:478.200000px;}
.y27{bottom:479.400000px;}
.yc7{bottom:482.550000px;}
.yfa{bottom:483.900000px;}
.y107{bottom:486.750000px;}
.y118{bottom:489.150000px;}
.yca{bottom:491.400000px;}
.yac{bottom:491.550000px;}
.y6b{bottom:498.300000px;}
.y61{bottom:498.600000px;}
.ydf{bottom:499.650000px;}
.yb1{bottom:499.950000px;}
.y10e{bottom:500.700000px;}
.y7{bottom:501.450000px;}
.ya4{bottom:502.950000px;}
.ye9{bottom:505.350000px;}
.y123{bottom:510.450000px;}
.y11d{bottom:511.800000px;}
.y4b{bottom:512.550000px;}
.y12{bottom:515.850000px;}
.y2e{bottom:516.000000px;}
.y26{bottom:517.650000px;}
.y84{bottom:519.900000px;}
.y3e{bottom:523.350000px;}
.y5a{bottom:528.600000px;}
.y92{bottom:530.250000px;}
.y86{bottom:531.000000px;}
.y117{bottom:532.350000px;}
.yc9{bottom:533.550000px;}
.yf9{bottom:534.150000px;}
.y6{bottom:537.450000px;}
.yc6{bottom:543.000000px;}
.ya3{bottom:543.150000px;}
.yf4{bottom:544.500000px;}
.ya0{bottom:546.750000px;}
.yde{bottom:547.200000px;}
.yd3{bottom:549.750000px;}
.y122{bottom:553.650000px;}
.y8e{bottom:558.900000px;}
.y4a{bottom:562.950000px;}
.y74{bottom:566.700000px;}
.y2d{bottom:573.600000px;}
.y116{bottom:576.750000px;}
.y28{bottom:594.900000px;}
.y121{bottom:598.050000px;}
.y41{bottom:607.650000px;}
.yc4{bottom:609.150000px;}
.ya2{bottom:616.350000px;}
.y57{bottom:628.050000px;}
.yc5{bottom:631.350000px;}
.y59{bottom:634.350000px;}
.yc3{bottom:637.200000px;}
.y60{bottom:637.950000px;}
.y77{bottom:638.850000px;}
.y91{bottom:662.400000px;}
.y2{bottom:663.150000px;}
.y40{bottom:665.250000px;}
.y2b{bottom:671.700000px;}
.ya1{bottom:673.950000px;}
.y8c{bottom:675.150000px;}
.y56{bottom:678.450000px;}
.y10{bottom:684.300000px;}
.y5{bottom:691.950000px;}
.y5f{bottom:695.550000px;}
.y76{bottom:696.450000px;}
.y85{bottom:696.600000px;}
.y1{bottom:720.600000px;}
.y3f{bottom:722.850000px;}
.y55{bottom:728.850000px;}
.yf{bottom:741.900000px;}
.y49{bottom:748.050000px;}
.y2c{bottom:748.200000px;}
.y58{bottom:749.550000px;}
.y75{bottom:754.050000px;}
.y99{bottom:756.450000px;}
.h9{height:56.786133px;}
.h1f{height:62.295410px;}
.hb{height:87.363281px;}
.h14{height:93.000000px;}
.ha{height:96.099609px;}
.h5{height:96.820312px;}
.h21{height:100.378125px;}
.h11{height:100.851562px;}
.h20{height:100.978125px;}
.h24{height:101.139844px;}
.h18{height:101.207812px;}
.h25{height:101.739844px;}
.h16{height:101.807812px;}
.h4{height:107.578125px;}
.h3{height:108.339844px;}
.hf{height:108.609375px;}
.he{height:109.209375px;}
.h1d{height:109.935937px;}
.h23{height:110.535937px;}
.h22{height:110.773828px;}
.h13{height:117.609375px;}
.h1c{height:118.335938px;}
.h1e{height:119.173828px;}
.h19{height:121.293750px;}
.hd{height:125.343750px;}
.h17{height:129.093750px;}
.h2{height:130.007812px;}
.h15{height:135.413086px;}
.h12{height:139.851562px;}
.h6{height:140.841797px;}
.h1b{height:142.075781px;}
.h10{height:150.609375px;}
.h1a{height:151.675781px;}
.hc{height:172.125000px;}
.h1{height:173.343750px;}
.h8{height:216.679688px;}
.h7{height:296.207813px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x35{left:-2.100000px;}
.x0{left:0.000000px;}
.x65{left:10.650000px;}
.x64{left:12.300000px;}
.x59{left:15.600000px;}
.x62{left:19.650000px;}
.x61{left:21.300000px;}
.x36{left:30.450000px;}
.x60{left:31.800000px;}
.x29{left:34.650000px;}
.x6a{left:42.900000px;}
.x37{left:44.700000px;}
.xe{left:53.700000px;}
.xb{left:55.800000px;}
.x46{left:56.850000px;}
.x42{left:60.750000px;}
.x5b{left:64.650000px;}
.x47{left:66.300000px;}
.x71{left:67.650000px;}
.x6{left:70.050000px;}
.x40{left:74.400000px;}
.x2f{left:78.600000px;}
.x38{left:85.800000px;}
.x2a{left:91.650000px;}
.x26{left:96.150000px;}
.x7{left:105.000000px;}
.x39{left:108.150000px;}
.x34{left:111.600000px;}
.x31{left:119.400000px;}
.x3e{left:125.550000px;}
.x74{left:127.950000px;}
.x67{left:134.700000px;}
.x4c{left:138.150000px;}
.x15{left:144.000000px;}
.x6d{left:151.500000px;}
.x18{left:160.650000px;}
.x48{left:162.750000px;}
.x3c{left:164.850000px;}
.x6b{left:166.050000px;}
.x2{left:168.150000px;}
.x2b{left:171.300000px;}
.x5c{left:172.650000px;}
.x28{left:175.500000px;}
.x66{left:177.000000px;}
.x12{left:181.500000px;}
.x63{left:186.000000px;}
.x3a{left:187.050000px;}
.x51{left:188.400000px;}
.x27{left:191.550000px;}
.x6e{left:201.750000px;}
.x6f{left:205.500000px;}
.x25{left:207.600000px;}
.x5a{left:213.450000px;}
.x2c{left:228.900000px;}
.x17{left:234.900000px;}
.x68{left:241.500000px;}
.x2d{left:250.500000px;}
.x70{left:255.750000px;}
.x23{left:259.350000px;}
.x53{left:268.500000px;}
.x4d{left:271.050000px;}
.x6c{left:274.800000px;}
.x54{left:275.850000px;}
.x52{left:281.550000px;}
.x13{left:285.600000px;}
.x19{left:292.350000px;}
.x2e{left:301.650000px;}
.x1a{left:309.300000px;}
.x11{left:314.700000px;}
.x44{left:316.500000px;}
.x1{left:328.050000px;}
.x16{left:336.150000px;}
.x32{left:359.400000px;}
.xa{left:368.100000px;}
.x3f{left:394.800000px;}
.x14{left:397.050000px;}
.x73{left:421.350000px;}
.x22{left:425.250000px;}
.x1b{left:440.700000px;}
.x50{left:446.850000px;}
.x4e{left:451.350000px;}
.x45{left:455.100000px;}
.x1c{left:458.100000px;}
.x5d{left:468.600000px;}
.x69{left:471.150000px;}
.x5e{left:479.850000px;}
.x33{left:482.100000px;}
.x9{left:485.250000px;}
.x3{left:489.000000px;}
.xf{left:510.450000px;}
.x72{left:514.650000px;}
.x4b{left:521.700000px;}
.x1d{left:538.500000px;}
.x43{left:542.250000px;}
.x3b{left:547.500000px;}
.xd{left:562.350000px;}
.x49{left:572.700000px;}
.x5f{left:589.050000px;}
.x10{left:594.300000px;}
.xc{left:595.800000px;}
.x4{left:627.900000px;}
.x30{left:631.650000px;}
.x4a{left:651.600000px;}
.x1e{left:672.150000px;}
.x1f{left:689.100000px;}
.x56{left:727.800000px;}
.x21{left:730.200000px;}
.x5{left:733.200000px;}
.x55{left:736.200000px;}
.x41{left:737.700000px;}
.x20{left:746.850000px;}
.x57{left:747.900000px;}
.x8{left:784.500000px;}
.x24{left:790.800000px;}
.x58{left:791.850000px;}
.x3d{left:813.300000px;}
.x4f{left:816.450000px;}
@media print{
.v2{vertical-align:-42.666667pt;}
.v3{vertical-align:-36.800000pt;}
.v4{vertical-align:-34.666667pt;}
.v5{vertical-align:-29.333333pt;}
.v6{vertical-align:-25.066667pt;}
.va{vertical-align:-20.800000pt;}
.v8{vertical-align:-8.533333pt;}
.v7{vertical-align:-6.933333pt;}
.v9{vertical-align:-5.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:147.733333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.138667pt;}
.ls8{letter-spacing:0.277333pt;}
.ls1{letter-spacing:0.307200pt;}
.ls11{letter-spacing:0.746667pt;}
.ls9{letter-spacing:47.466667pt;}
.ls5{letter-spacing:48.891733pt;}
.ls4{letter-spacing:49.425067pt;}
.ls6{letter-spacing:58.440533pt;}
.ls7{letter-spacing:58.973867pt;}
.lsb{letter-spacing:77.333333pt;}
.ls10{letter-spacing:120.000000pt;}
.ls12{letter-spacing:125.333333pt;}
.ls3{letter-spacing:135.316267pt;}
.lsf{letter-spacing:137.600000pt;}
.lse{letter-spacing:141.333333pt;}
.ls2{letter-spacing:154.668800pt;}
.lsd{letter-spacing:353.917274pt;}
.ws2{word-spacing:-47.274667pt;}
.ws5{word-spacing:-41.365333pt;}
.ws8{word-spacing:-38.549333pt;}
.ws9{word-spacing:-38.410667pt;}
.ws0{word-spacing:-35.456000pt;}
.wsb{word-spacing:-32.501333pt;}
.ws7{word-spacing:-29.546667pt;}
.ws4{word-spacing:-26.752000pt;}
.wsa{word-spacing:-26.592000pt;}
.wsd{word-spacing:-16.989333pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-0.149333pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:38.943661pt;}
.wse{word-spacing:294.484514pt;}
.wsf{word-spacing:313.415331pt;}
._c{margin-left:-2939.168000pt;}
._5{margin-left:-2.634667pt;}
._0{margin-left:-1.194667pt;}
._1{width:0.981333pt;}
._3{width:2.304000pt;}
._4{width:3.488000pt;}
._e{width:5.909333pt;}
._14{width:34.250667pt;}
._a{width:39.424000pt;}
._9{width:40.320000pt;}
._10{width:42.165333pt;}
._f{width:43.114667pt;}
._13{width:73.621333pt;}
._7{width:86.016000pt;}
._8{width:87.210667pt;}
._11{width:98.229333pt;}
._12{width:99.424000pt;}
._b{width:116.330667pt;}
._2{width:516.032000pt;}
._d{width:634.005333pt;}
._6{width:798.410667pt;}
.fsf{font-size:61.333333pt;}
.fsb{font-size:62.400000pt;}
.fs9{font-size:67.200000pt;}
.fs6{font-size:69.333333pt;}
.fs8{font-size:76.800000pt;}
.fsc{font-size:89.600000pt;}
.fse{font-size:90.666667pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs7{font-size:117.333333pt;}
.fs1{font-size:128.000000pt;}
.fs4{font-size:138.666667pt;}
.fsa{font-size:149.333333pt;}
.fsd{font-size:165.333333pt;}
.fs0{font-size:170.666667pt;}
.fs5{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:9.733333pt;}
.yc2{bottom:11.200000pt;}
.yf3{bottom:16.666667pt;}
.ybb{bottom:17.733333pt;}
.y4{bottom:18.133333pt;}
.ybc{bottom:19.200000pt;}
.y115{bottom:22.800000pt;}
.y12b{bottom:31.333333pt;}
.ye8{bottom:33.600000pt;}
.ye{bottom:35.466667pt;}
.y48{bottom:37.066667pt;}
.y54{bottom:38.266667pt;}
.y36{bottom:39.733333pt;}
.ybf{bottom:50.000000pt;}
.yc0{bottom:51.466667pt;}
.yf2{bottom:56.133333pt;}
.yb9{bottom:58.000000pt;}
.yba{bottom:59.466667pt;}
.y3{bottom:67.200000pt;}
.y16{bottom:68.800000pt;}
.y12a{bottom:69.733333pt;}
.y47{bottom:75.466667pt;}
.ye7{bottom:75.866667pt;}
.y53{bottom:76.666667pt;}
.ydd{bottom:77.466667pt;}
.y90{bottom:78.266667pt;}
.y2a{bottom:80.400000pt;}
.y106{bottom:83.333333pt;}
.y35{bottom:90.000000pt;}
.yd{bottom:93.600000pt;}
.yf1{bottom:95.600000pt;}
.y3d{bottom:97.600000pt;}
.yab{bottom:98.400000pt;}
.y46{bottom:113.866667pt;}
.y6a{bottom:115.066667pt;}
.yd0{bottom:116.133333pt;}
.y52{bottom:116.800000pt;}
.ydc{bottom:116.933333pt;}
.y15{bottom:117.200000pt;}
.ye6{bottom:118.266667pt;}
.y105{bottom:121.733333pt;}
.y29{bottom:122.000000pt;}
.yc{bottom:125.733333pt;}
.y14{bottom:128.666667pt;}
.ybd{bottom:130.266667pt;}
.ybe{bottom:131.733333pt;}
.yf0{bottom:135.066667pt;}
.yb7{bottom:138.266667pt;}
.y34{bottom:139.600000pt;}
.yb8{bottom:139.733333pt;}
.yaa{bottom:144.266667pt;}
.y129{bottom:146.533333pt;}
.y3c{bottom:151.600000pt;}
.y45{bottom:152.266667pt;}
.y73{bottom:153.600000pt;}
.y69{bottom:153.733333pt;}
.y95{bottom:153.866667pt;}
.ydb{bottom:154.933333pt;}
.y98{bottom:157.600000pt;}
.ye5{bottom:158.666667pt;}
.y104{bottom:160.133333pt;}
.y51{bottom:164.533333pt;}
.yef{bottom:173.066667pt;}
.y8b{bottom:182.533333pt;}
.y10d{bottom:183.333333pt;}
.y72{bottom:185.600000pt;}
.y68{bottom:185.866667pt;}
.ya9{bottom:190.133333pt;}
.y44{bottom:190.666667pt;}
.ycf{bottom:191.066667pt;}
.y33{bottom:192.666667pt;}
.yda{bottom:195.866667pt;}
.yb6{bottom:199.066667pt;}
.yfe{bottom:200.800000pt;}
.ye4{bottom:200.933333pt;}
.y1f{bottom:204.133333pt;}
.y1d{bottom:205.333333pt;}
.y3b{bottom:205.733333pt;}
.y50{bottom:210.533333pt;}
.yb{bottom:211.066667pt;}
.y83{bottom:211.866667pt;}
.yee{bottom:214.000000pt;}
.y7d{bottom:215.200000pt;}
.y22{bottom:217.066667pt;}
.y128{bottom:223.333333pt;}
.y71{bottom:224.266667pt;}
.y67{bottom:224.400000pt;}
.y5e{bottom:224.666667pt;}
.y10c{bottom:224.800000pt;}
.y1e{bottom:224.933333pt;}
.ya8{bottom:225.200000pt;}
.y1c{bottom:226.133333pt;}
.yce{bottom:228.400000pt;}
.y43{bottom:229.066667pt;}
.y8a{bottom:229.466667pt;}
.y114{bottom:233.866667pt;}
.yf8{bottom:234.133333pt;}
.ye3{bottom:234.400000pt;}
.yd9{bottom:235.333333pt;}
.y9f{bottom:235.866667pt;}
.y103{bottom:236.933333pt;}
.y21{bottom:237.866667pt;}
.yb0{bottom:240.666667pt;}
.yd2{bottom:241.600000pt;}
.y32{bottom:242.800000pt;}
.ya{bottom:243.066667pt;}
.yb5{bottom:248.133333pt;}
.y19{bottom:250.000000pt;}
.y82{bottom:250.533333pt;}
.y4f{bottom:250.666667pt;}
.yfd{bottom:250.933333pt;}
.yed{bottom:253.466667pt;}
.y7c{bottom:253.866667pt;}
.y97{bottom:255.866667pt;}
.y94{bottom:259.600000pt;}
.y3a{bottom:259.866667pt;}
.ya7{bottom:260.933333pt;}
.y70{bottom:262.933333pt;}
.y66{bottom:263.066667pt;}
.ycd{bottom:265.866667pt;}
.y10b{bottom:266.400000pt;}
.yf7{bottom:268.666667pt;}
.y113{bottom:269.066667pt;}
.y5d{bottom:269.466667pt;}
.yd8{bottom:273.200000pt;}
.y42{bottom:273.733333pt;}
.y102{bottom:275.333333pt;}
.ye2{bottom:276.800000pt;}
.y11c{bottom:281.200000pt;}
.y89{bottom:281.466667pt;}
.y9e{bottom:288.133333pt;}
.y81{bottom:289.200000pt;}
.yaf{bottom:289.733333pt;}
.y7b{bottom:292.533333pt;}
.yec{bottom:292.933333pt;}
.y8d{bottom:293.600000pt;}
.y120{bottom:293.866667pt;}
.y65{bottom:295.200000pt;}
.yfc{bottom:295.733333pt;}
.y4e{bottom:296.533333pt;}
.y31{bottom:296.933333pt;}
.yb4{bottom:297.200000pt;}
.y127{bottom:300.133333pt;}
.y6f{bottom:301.600000pt;}
.yf6{bottom:303.200000pt;}
.ycc{bottom:303.333333pt;}
.yd7{bottom:303.600000pt;}
.y112{bottom:304.266667pt;}
.y8f{bottom:305.066667pt;}
.y10a{bottom:308.000000pt;}
.y101{bottom:313.733333pt;}
.y39{bottom:313.866667pt;}
.y5c{bottom:314.266667pt;}
.y9c{bottom:314.533333pt;}
.ye1{bottom:319.066667pt;}
.y11b{bottom:319.600000pt;}
.y7a{bottom:324.533333pt;}
.y18{bottom:324.666667pt;}
.y80{bottom:327.866667pt;}
.y9{bottom:328.400000pt;}
.y11f{bottom:332.266667pt;}
.yeb{bottom:332.400000pt;}
.y6e{bottom:333.600000pt;}
.y64{bottom:333.866667pt;}
.yd1{bottom:337.733333pt;}
.y126{bottom:338.533333pt;}
.yae{bottom:338.800000pt;}
.y111{bottom:339.466667pt;}
.y9d{bottom:340.266667pt;}
.yd6{bottom:341.466667pt;}
.yb3{bottom:346.266667pt;}
.y109{bottom:349.600000pt;}
.y93{bottom:350.266667pt;}
.y4d{bottom:350.533333pt;}
.y30{bottom:350.933333pt;}
.y100{bottom:352.133333pt;}
.y96{bottom:354.266667pt;}
.ya6{bottom:357.200000pt;}
.y11a{bottom:358.000000pt;}
.y5b{bottom:359.066667pt;}
.ye0{bottom:359.466667pt;}
.y8{bottom:360.400000pt;}
.y9b{bottom:362.933333pt;}
.y79{bottom:363.200000pt;}
.y63{bottom:365.866667pt;}
.y7f{bottom:366.533333pt;}
.y38{bottom:368.000000pt;}
.yea{bottom:370.266667pt;}
.y11e{bottom:370.666667pt;}
.yd5{bottom:371.733333pt;}
.y6d{bottom:372.266667pt;}
.y9a{bottom:374.266667pt;}
.y110{bottom:374.666667pt;}
.yc8{bottom:375.333333pt;}
.y125{bottom:376.933333pt;}
.y24{bottom:379.600000pt;}
.y88{bottom:380.400000pt;}
.yfb{bottom:385.333333pt;}
.yad{bottom:387.866667pt;}
.y1b{bottom:388.666667pt;}
.yff{bottom:390.533333pt;}
.y108{bottom:391.200000pt;}
.yf5{bottom:393.600000pt;}
.yb2{bottom:395.333333pt;}
.y119{bottom:396.400000pt;}
.y11{bottom:396.800000pt;}
.y17{bottom:399.333333pt;}
.ycb{bottom:399.466667pt;}
.y23{bottom:400.400000pt;}
.y20{bottom:401.600000pt;}
.y78{bottom:401.866667pt;}
.ya5{bottom:403.066667pt;}
.y6c{bottom:404.400000pt;}
.y62{bottom:404.533333pt;}
.y7e{bottom:405.200000pt;}
.y13{bottom:406.933333pt;}
.y2f{bottom:407.466667pt;}
.y1a{bottom:409.466667pt;}
.yd4{bottom:409.733333pt;}
.y10f{bottom:409.866667pt;}
.y124{bottom:415.333333pt;}
.y4c{bottom:417.200000pt;}
.y37{bottom:422.000000pt;}
.y25{bottom:423.466667pt;}
.y87{bottom:425.066667pt;}
.y27{bottom:426.133333pt;}
.yc7{bottom:428.933333pt;}
.yfa{bottom:430.133333pt;}
.y107{bottom:432.666667pt;}
.y118{bottom:434.800000pt;}
.yca{bottom:436.800000pt;}
.yac{bottom:436.933333pt;}
.y6b{bottom:442.933333pt;}
.y61{bottom:443.200000pt;}
.ydf{bottom:444.133333pt;}
.yb1{bottom:444.400000pt;}
.y10e{bottom:445.066667pt;}
.y7{bottom:445.733333pt;}
.ya4{bottom:447.066667pt;}
.ye9{bottom:449.200000pt;}
.y123{bottom:453.733333pt;}
.y11d{bottom:454.933333pt;}
.y4b{bottom:455.600000pt;}
.y12{bottom:458.533333pt;}
.y2e{bottom:458.666667pt;}
.y26{bottom:460.133333pt;}
.y84{bottom:462.133333pt;}
.y3e{bottom:465.200000pt;}
.y5a{bottom:469.866667pt;}
.y92{bottom:471.333333pt;}
.y86{bottom:472.000000pt;}
.y117{bottom:473.200000pt;}
.yc9{bottom:474.266667pt;}
.yf9{bottom:474.800000pt;}
.y6{bottom:477.733333pt;}
.yc6{bottom:482.666667pt;}
.ya3{bottom:482.800000pt;}
.yf4{bottom:484.000000pt;}
.ya0{bottom:486.000000pt;}
.yde{bottom:486.400000pt;}
.yd3{bottom:488.666667pt;}
.y122{bottom:492.133333pt;}
.y8e{bottom:496.800000pt;}
.y4a{bottom:500.400000pt;}
.y74{bottom:503.733333pt;}
.y2d{bottom:509.866667pt;}
.y116{bottom:512.666667pt;}
.y28{bottom:528.800000pt;}
.y121{bottom:531.600000pt;}
.y41{bottom:540.133333pt;}
.yc4{bottom:541.466667pt;}
.ya2{bottom:547.866667pt;}
.y57{bottom:558.266667pt;}
.yc5{bottom:561.200000pt;}
.y59{bottom:563.866667pt;}
.yc3{bottom:566.400000pt;}
.y60{bottom:567.066667pt;}
.y77{bottom:567.866667pt;}
.y91{bottom:588.800000pt;}
.y2{bottom:589.466667pt;}
.y40{bottom:591.333333pt;}
.y2b{bottom:597.066667pt;}
.ya1{bottom:599.066667pt;}
.y8c{bottom:600.133333pt;}
.y56{bottom:603.066667pt;}
.y10{bottom:608.266667pt;}
.y5{bottom:615.066667pt;}
.y5f{bottom:618.266667pt;}
.y76{bottom:619.066667pt;}
.y85{bottom:619.200000pt;}
.y1{bottom:640.533333pt;}
.y3f{bottom:642.533333pt;}
.y55{bottom:647.866667pt;}
.yf{bottom:659.466667pt;}
.y49{bottom:664.933333pt;}
.y2c{bottom:665.066667pt;}
.y58{bottom:666.266667pt;}
.y75{bottom:670.266667pt;}
.y99{bottom:672.400000pt;}
.h9{height:50.476562pt;}
.h1f{height:55.373698pt;}
.hb{height:77.656250pt;}
.h14{height:82.666667pt;}
.ha{height:85.421875pt;}
.h5{height:86.062500pt;}
.h21{height:89.225000pt;}
.h11{height:89.645833pt;}
.h20{height:89.758333pt;}
.h24{height:89.902083pt;}
.h18{height:89.962500pt;}
.h25{height:90.435417pt;}
.h16{height:90.495833pt;}
.h4{height:95.625000pt;}
.h3{height:96.302083pt;}
.hf{height:96.541667pt;}
.he{height:97.075000pt;}
.h1d{height:97.720833pt;}
.h23{height:98.254167pt;}
.h22{height:98.465625pt;}
.h13{height:104.541667pt;}
.h1c{height:105.187500pt;}
.h1e{height:105.932292pt;}
.h19{height:107.816667pt;}
.hd{height:111.416667pt;}
.h17{height:114.750000pt;}
.h2{height:115.562500pt;}
.h15{height:120.367188pt;}
.h12{height:124.312500pt;}
.h6{height:125.192708pt;}
.h1b{height:126.289583pt;}
.h10{height:133.875000pt;}
.h1a{height:134.822917pt;}
.hc{height:153.000000pt;}
.h1{height:154.083333pt;}
.h8{height:192.604167pt;}
.h7{height:263.295833pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x35{left:-1.866667pt;}
.x0{left:0.000000pt;}
.x65{left:9.466667pt;}
.x64{left:10.933333pt;}
.x59{left:13.866667pt;}
.x62{left:17.466667pt;}
.x61{left:18.933333pt;}
.x36{left:27.066667pt;}
.x60{left:28.266667pt;}
.x29{left:30.800000pt;}
.x6a{left:38.133333pt;}
.x37{left:39.733333pt;}
.xe{left:47.733333pt;}
.xb{left:49.600000pt;}
.x46{left:50.533333pt;}
.x42{left:54.000000pt;}
.x5b{left:57.466667pt;}
.x47{left:58.933333pt;}
.x71{left:60.133333pt;}
.x6{left:62.266667pt;}
.x40{left:66.133333pt;}
.x2f{left:69.866667pt;}
.x38{left:76.266667pt;}
.x2a{left:81.466667pt;}
.x26{left:85.466667pt;}
.x7{left:93.333333pt;}
.x39{left:96.133333pt;}
.x34{left:99.200000pt;}
.x31{left:106.133333pt;}
.x3e{left:111.600000pt;}
.x74{left:113.733333pt;}
.x67{left:119.733333pt;}
.x4c{left:122.800000pt;}
.x15{left:128.000000pt;}
.x6d{left:134.666667pt;}
.x18{left:142.800000pt;}
.x48{left:144.666667pt;}
.x3c{left:146.533333pt;}
.x6b{left:147.600000pt;}
.x2{left:149.466667pt;}
.x2b{left:152.266667pt;}
.x5c{left:153.466667pt;}
.x28{left:156.000000pt;}
.x66{left:157.333333pt;}
.x12{left:161.333333pt;}
.x63{left:165.333333pt;}
.x3a{left:166.266667pt;}
.x51{left:167.466667pt;}
.x27{left:170.266667pt;}
.x6e{left:179.333333pt;}
.x6f{left:182.666667pt;}
.x25{left:184.533333pt;}
.x5a{left:189.733333pt;}
.x2c{left:203.466667pt;}
.x17{left:208.800000pt;}
.x68{left:214.666667pt;}
.x2d{left:222.666667pt;}
.x70{left:227.333333pt;}
.x23{left:230.533333pt;}
.x53{left:238.666667pt;}
.x4d{left:240.933333pt;}
.x6c{left:244.266667pt;}
.x54{left:245.200000pt;}
.x52{left:250.266667pt;}
.x13{left:253.866667pt;}
.x19{left:259.866667pt;}
.x2e{left:268.133333pt;}
.x1a{left:274.933333pt;}
.x11{left:279.733333pt;}
.x44{left:281.333333pt;}
.x1{left:291.600000pt;}
.x16{left:298.800000pt;}
.x32{left:319.466667pt;}
.xa{left:327.200000pt;}
.x3f{left:350.933333pt;}
.x14{left:352.933333pt;}
.x73{left:374.533333pt;}
.x22{left:378.000000pt;}
.x1b{left:391.733333pt;}
.x50{left:397.200000pt;}
.x4e{left:401.200000pt;}
.x45{left:404.533333pt;}
.x1c{left:407.200000pt;}
.x5d{left:416.533333pt;}
.x69{left:418.800000pt;}
.x5e{left:426.533333pt;}
.x33{left:428.533333pt;}
.x9{left:431.333333pt;}
.x3{left:434.666667pt;}
.xf{left:453.733333pt;}
.x72{left:457.466667pt;}
.x4b{left:463.733333pt;}
.x1d{left:478.666667pt;}
.x43{left:482.000000pt;}
.x3b{left:486.666667pt;}
.xd{left:499.866667pt;}
.x49{left:509.066667pt;}
.x5f{left:523.600000pt;}
.x10{left:528.266667pt;}
.xc{left:529.600000pt;}
.x4{left:558.133333pt;}
.x30{left:561.466667pt;}
.x4a{left:579.200000pt;}
.x1e{left:597.466667pt;}
.x1f{left:612.533333pt;}
.x56{left:646.933333pt;}
.x21{left:649.066667pt;}
.x5{left:651.733333pt;}
.x55{left:654.400000pt;}
.x41{left:655.733333pt;}
.x20{left:663.866667pt;}
.x57{left:664.800000pt;}
.x8{left:697.333333pt;}
.x24{left:702.933333pt;}
.x58{left:703.866667pt;}
.x3d{left:722.933333pt;}
.x4f{left:725.733333pt;}
}




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