
    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_e3a8100749235efbc69b43d8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b6b4671e5b2abf7fa0ac667.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae05fb0d677e07a4702a658c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_739b8450a09f11bee5cde5c5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7d5c152020c0e6326b7ad08e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_05bdf234a7351973f8d26f6c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_ed4695fb4d97a172363cb75e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37c518460397bb428ef8839f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.056641;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_32c68ccc0e64fccc152b8f80.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls1d{letter-spacing:-4.560000px;}
.ls27{letter-spacing:-1.626000px;}
.ls25{letter-spacing:-0.672000px;}
.ls10{letter-spacing:-0.391800px;}
.ls1c{letter-spacing:-0.368400px;}
.ls16{letter-spacing:-0.318000px;}
.ls13{letter-spacing:-0.299400px;}
.ls1f{letter-spacing:-0.243600px;}
.ls1a{letter-spacing:-0.186600px;}
.ls23{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.135000px;}
.ls31{letter-spacing:-0.125400px;}
.ls11{letter-spacing:-0.121200px;}
.ls12{letter-spacing:-0.092400px;}
.lsc{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls2c{letter-spacing:-0.038880px;}
.ls1e{letter-spacing:-0.023400px;}
.ls20{letter-spacing:-0.023040px;}
.ls29{letter-spacing:-0.018360px;}
.ls2a{letter-spacing:-0.014760px;}
.ls2b{letter-spacing:-0.011160px;}
.lse{letter-spacing:-0.008400px;}
.ls26{letter-spacing:-0.008280px;}
.lsa{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.045360px;}
.ls19{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.049200px;}
.ls5{letter-spacing:0.051840px;}
.ls14{letter-spacing:0.060600px;}
.ls17{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.114120px;}
.ls24{letter-spacing:0.116400px;}
.ls21{letter-spacing:0.119400px;}
.lsb{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.173400px;}
.ls2f{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls9{letter-spacing:2.253600px;}
.ls30{letter-spacing:47.726640px;}
.ls18{letter-spacing:63.566640px;}
.ls8{letter-spacing:80.344800px;}
.ls2e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws20{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws1e{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.345800px;}
.ws16{word-spacing:-13.342800px;}
.ws8{word-spacing:-13.275600px;}
.wsf{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws18{word-spacing:-13.218120px;}
.ws1c{word-spacing:-13.215240px;}
.ws1b{word-spacing:-13.211640px;}
.ws1a{word-spacing:-13.208040px;}
.ws11{word-spacing:-13.203000px;}
.ws1d{word-spacing:-13.187520px;}
.ws9{word-spacing:-13.162800px;}
.ws1f{word-spacing:-13.101000px;}
.ws15{word-spacing:-13.047600px;}
.wsc{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.wsa{word-spacing:-12.908400px;}
.wse{word-spacing:-12.858000px;}
.ws17{word-spacing:-12.554400px;}
.ws19{word-spacing:-11.600400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:-8.666400px;}
.ws7{word-spacing:-8.614200px;}
.ws13{word-spacing:-8.530560px;}
.ws5{word-spacing:-8.461200px;}
.ws6{word-spacing:-8.254200px;}
.wsb{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._6{margin-left:-5.025120px;}
._9{margin-left:-3.726600px;}
._5{margin-left:-2.433000px;}
._0{margin-left:-1.110000px;}
._3{width:1.057501px;}
._7{width:2.064060px;}
._4{width:3.126000px;}
._2{width:4.981524px;}
._1{width:6.568320px;}
._a{width:7.755480px;}
._b{width:9.318600px;}
._11{width:14.969880px;}
._c{width:16.255320px;}
._e{width:18.096480px;}
._14{width:19.839600px;}
._15{width:21.372480px;}
._f{width:22.436880px;}
._8{width:23.608200px;}
._21{width:24.760560px;}
._20{width:25.911720px;}
._18{width:28.015920px;}
._19{width:29.098080px;}
._17{width:33.935520px;}
._16{width:35.470800px;}
._10{width:41.723280px;}
._13{width:44.789400px;}
._22{width:54.528840px;}
._23{width:55.971720px;}
._1a{width:72.745200px;}
._1b{width:73.887480px;}
._12{width:76.532760px;}
._1c{width:93.005640px;}
._1d{width:94.104840px;}
._d{width:102.588480px;}
._1e{width:113.266080px;}
._1f{width:114.829200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y92{bottom:7.830000px;}
.y9d{bottom:7.860000px;}
.y95{bottom:7.920000px;}
.y91{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ybe{bottom:118.110000px;}
.y71{bottom:125.310000px;}
.y24{bottom:128.100000px;}
.y4d{bottom:133.230000px;}
.ybd{bottom:135.660000px;}
.y98{bottom:140.160000px;}
.y125{bottom:143.490000px;}
.y23{bottom:146.550000px;}
.y70{bottom:160.950000px;}
.yd9{bottom:161.040000px;}
.y124{bottom:161.130000px;}
.ybc{bottom:162.300000px;}
.y22{bottom:164.910000px;}
.y97{bottom:167.520000px;}
.y4c{bottom:168.780000px;}
.y6f{bottom:178.500000px;}
.y21{bottom:183.360000px;}
.y123{bottom:187.680000px;}
.y96{bottom:194.880000px;}
.y6e{bottom:196.050000px;}
.yd8{bottom:196.590000px;}
.ybb{bottom:197.850000px;}
.y20{bottom:201.810000px;}
.y4b{bottom:204.330000px;}
.y122{bottom:205.320000px;}
.yfb{bottom:217.920000px;}
.y1f{bottom:219.360000px;}
.yd7{bottom:220.530000px;}
.y94{bottom:222.150000px;}
.y6d{bottom:222.690000px;}
.y121{bottom:222.870000px;}
.yba{bottom:224.400000px;}
.y4a{bottom:239.970000px;}
.y120{bottom:240.420000px;}
.yd6{bottom:247.890000px;}
.y93{bottom:249.510000px;}
.yfa{bottom:253.470000px;}
.y1e{bottom:255.810000px;}
.y49{bottom:257.520000px;}
.y6c{bottom:258.240000px;}
.yb9{bottom:260.040000px;}
.y11f{bottom:267.060000px;}
.yf9{bottom:271.020000px;}
.y1d{bottom:273.360000px;}
.y48{bottom:275.160000px;}
.yd5{bottom:275.250000px;}
.y90{bottom:276.870000px;}
.yb8{bottom:277.590000px;}
.y11e{bottom:284.610000px;}
.y47{bottom:292.710000px;}
.y6b{bottom:293.880000px;}
.y1c{bottom:299.910000px;}
.y11d{bottom:302.250000px;}
.yd4{bottom:302.520000px;}
.yf8{bottom:306.660000px;}
.yb7{bottom:313.230000px;}
.y46{bottom:319.260000px;}
.yf7{bottom:324.210000px;}
.y11c{bottom:328.800000px;}
.y6a{bottom:329.430000px;}
.y1b{bottom:332.580000px;}
.y8f{bottom:343.110000px;}
.y11b{bottom:346.350000px;}
.yb6{bottom:348.780000px;}
.y45{bottom:354.900000px;}
.yf6{bottom:359.760000px;}
.y11a{bottom:363.990000px;}
.yef{bottom:364.620000px;}
.y69{bottom:364.980000px;}
.yb5{bottom:366.330000px;}
.y1a{bottom:368.130000px;}
.yd3{bottom:368.850000px;}
.y44{bottom:372.450000px;}
.y8e{bottom:375.690000px;}
.yee{bottom:378.750000px;}
.y119{bottom:381.540000px;}
.y68{bottom:382.620000px;}
.yb4{bottom:383.970000px;}
.y19{bottom:385.770000px;}
.yed{bottom:390.900000px;}
.y8d{bottom:393.240000px;}
.yf5{bottom:395.400000px;}
.y67{bottom:400.170000px;}
.yd2{bottom:404.400000px;}
.y43{bottom:408.090000px;}
.yb3{bottom:410.520000px;}
.y8c{bottom:411.690000px;}
.y18{bottom:412.590000px;}
.y66{bottom:417.810000px;}
.yec{bottom:418.260000px;}
.yd1{bottom:422.040000px;}
.y118{bottom:425.730000px;}
.y8b{bottom:429.240000px;}
.yf4{bottom:430.950000px;}
.y117{bottom:443.280000px;}
.y42{bottom:443.640000px;}
.y65{bottom:444.360000px;}
.yeb{bottom:445.530000px;}
.yb2{bottom:446.160000px;}
.yd0{bottom:448.590000px;}
.y8a{bottom:456.690000px;}
.yf3{bottom:457.860000px;}
.y17{bottom:460.920000px;}
.y41{bottom:461.190000px;}
.yea{bottom:472.920000px;}
.y16{bottom:478.500000px;}
.y40{bottom:478.860000px;}
.y64{bottom:479.940000px;}
.yb1{bottom:481.740000px;}
.ycf{bottom:484.260000px;}
.y116{bottom:487.500000px;}
.y89{bottom:489.750000px;}
.y15{bottom:496.140000px;}
.y63{bottom:497.580000px;}
.y88{bottom:499.830000px;}
.ye9{bottom:500.280000px;}
.yce{bottom:501.810000px;}
.y115{bottom:505.050000px;}
.y3f{bottom:505.410000px;}
.yf2{bottom:506.220000px;}
.y14{bottom:513.690000px;}
.yb0{bottom:517.290000px;}
.y114{bottom:522.690000px;}
.ye8{bottom:527.640000px;}
.y62{bottom:533.130000px;}
.y87{bottom:535.740000px;}
.ycd{bottom:537.360000px;}
.y3e{bottom:537.990000px;}
.yf1{bottom:538.440000px;}
.y13{bottom:540.600000px;}
.y113{bottom:549.240000px;}
.yaf{bottom:552.930000px;}
.ye7{bottom:554.910000px;}
.ycc{bottom:564.000000px;}
.y112{bottom:566.880000px;}
.y61{bottom:568.770000px;}
.yae{bottom:570.480000px;}
.y86{bottom:571.290000px;}
.y3d{bottom:573.630000px;}
.ye6{bottom:582.270000px;}
.y111{bottom:584.430000px;}
.y60{bottom:586.320000px;}
.yad{bottom:588.120000px;}
.y12{bottom:589.200000px;}
.ycb{bottom:599.550000px;}
.y3c{bottom:600.180000px;}
.y5f{bottom:603.870000px;}
.yac{bottom:605.670000px;}
.y85{bottom:606.930000px;}
.ye5{bottom:609.630000px;}
.y110{bottom:610.980000px;}
.yca{bottom:617.190000px;}
.y84{bottom:624.480000px;}
.y11{bottom:626.190000px;}
.y10f{bottom:628.620000px;}
.y5e{bottom:630.510000px;}
.yab{bottom:632.220000px;}
.y3b{bottom:635.730000px;}
.ye4{bottom:636.990000px;}
.y10{bottom:643.830000px;}
.y83{bottom:651.120000px;}
.yc9{bottom:652.740000px;}
.y10e{bottom:655.170000px;}
.yf{bottom:661.380000px;}
.y3a{bottom:662.370000px;}
.ye3{bottom:664.260000px;}
.y5d{bottom:666.060000px;}
.yaa{bottom:667.860000px;}
.y10d{bottom:672.810000px;}
.ye{bottom:679.020000px;}
.y82{bottom:686.670000px;}
.yc8{bottom:688.290000px;}
.y10c{bottom:690.360000px;}
.ye2{bottom:691.620000px;}
.yd{bottom:696.570000px;}
.y39{bottom:697.920000px;}
.y5c{bottom:698.640000px;}
.ya9{bottom:703.410000px;}
.y81{bottom:704.220000px;}
.yc7{bottom:705.930000px;}
.yc{bottom:714.120000px;}
.y10b{bottom:716.910000px;}
.ye1{bottom:718.980000px;}
.yc6{bottom:723.480000px;}
.y38{bottom:724.560000px;}
.y5b{bottom:734.280000px;}
.y10a{bottom:734.550000px;}
.ya8{bottom:739.050000px;}
.y80{bottom:739.860000px;}
.yb{bottom:741.120000px;}
.ye0{bottom:746.250000px;}
.yc5{bottom:750.030000px;}
.y5a{bottom:751.830000px;}
.y109{bottom:752.100000px;}
.ya7{bottom:756.600000px;}
.y37{bottom:760.110000px;}
.ydf{bottom:773.610000px;}
.ya6{bottom:774.150000px;}
.y7f{bottom:775.410000px;}
.y108{bottom:778.740000px;}
.yc4{bottom:785.670000px;}
.y36{bottom:786.660000px;}
.ya{bottom:787.830000px;}
.y59{bottom:788.280000px;}
.y7e{bottom:792.960000px;}
.y107{bottom:796.290000px;}
.ya5{bottom:800.790000px;}
.yde{bottom:800.970000px;}
.y58{bottom:805.830000px;}
.y7d{bottom:810.600000px;}
.y132{bottom:813.930000px;}
.y35{bottom:819.240000px;}
.yc3{bottom:821.220000px;}
.y106{bottom:823.200000px;}
.y9{bottom:823.380000px;}
.ydd{bottom:828.330000px;}
.y131{bottom:831.480000px;}
.y57{bottom:832.380000px;}
.ya4{bottom:836.340000px;}
.y7c{bottom:837.150000px;}
.yf0{bottom:841.020000px;}
.ya3{bottom:853.890000px;}
.y34{bottom:854.790000px;}
.ydc{bottom:855.600000px;}
.yc2{bottom:856.860000px;}
.y130{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y56{bottom:867.930000px;}
.y105{bottom:871.440000px;}
.y7b{bottom:872.790000px;}
.y33{bottom:873.240000px;}
.y12f{bottom:875.670000px;}
.ya2{bottom:880.530000px;}
.y7a{bottom:890.340000px;}
.y32{bottom:890.790000px;}
.yc1{bottom:892.410000px;}
.y12e{bottom:893.220000px;}
.y104{bottom:898.350000px;}
.y7{bottom:898.980000px;}
.y55{bottom:900.600000px;}
.ydb{bottom:904.380000px;}
.y31{bottom:909.240000px;}
.yc0{bottom:909.960000px;}
.ya1{bottom:915.360000px;}
.y6{bottom:916.980000px;}
.y12d{bottom:919.860000px;}
.y79{bottom:925.890000px;}
.y30{bottom:926.790000px;}
.ya0{bottom:927.600000px;}
.y103{bottom:935.430000px;}
.y54{bottom:936.150000px;}
.y12c{bottom:937.410000px;}
.yda{bottom:939.930000px;}
.y78{bottom:943.530000px;}
.ybf{bottom:945.150000px;}
.y5{bottom:949.290000px;}
.y102{bottom:952.980000px;}
.y9f{bottom:954.870000px;}
.y12b{bottom:954.960000px;}
.y2f{bottom:963.240000px;}
.y77{bottom:970.080000px;}
.y53{bottom:971.790000px;}
.y101{bottom:979.890000px;}
.y2e{bottom:980.880000px;}
.y12a{bottom:981.600000px;}
.y9e{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y2d{bottom:998.430000px;}
.y129{bottom:999.150000px;}
.y76{bottom:1005.630000px;}
.y52{bottom:1007.340000px;}
.y9c{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2c{bottom:1016.100000px;}
.y128{bottom:1016.820000px;}
.y100{bottom:1017.270000px;}
.y75{bottom:1024.110000px;}
.y127{bottom:1034.370000px;}
.y9b{bottom:1036.890000px;}
.y51{bottom:1042.920000px;}
.y2b{bottom:1048.590000px;}
.y74{bottom:1051.560000px;}
.y126{bottom:1060.920000px;}
.y9a{bottom:1064.250000px;}
.yff{bottom:1065.510000px;}
.y2a{bottom:1067.040000px;}
.y50{bottom:1078.560000px;}
.yfe{bottom:1083.150000px;}
.y29{bottom:1085.400000px;}
.y73{bottom:1087.110000px;}
.y99{bottom:1091.610000px;}
.y4f{bottom:1096.110000px;}
.yfd{bottom:1100.700000px;}
.y28{bottom:1103.850000px;}
.y4e{bottom:1113.750000px;}
.y72{bottom:1122.750000px;}
.yfc{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.580000px;}
.hf{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.hd{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h13{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:91.222383px;}
.hb{height:96.262383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:37.260000px;}
.w8{width:37.710000px;}
.w11{width:48.060000px;}
.w3{width:52.290000px;}
.w12{width:87.390000px;}
.wb{width:91.920000px;}
.wa{width:117.120000px;}
.wf{width:119.160000px;}
.w4{width:122.340000px;}
.w15{width:136.530000px;}
.w7{width:137.700000px;}
.wd{width:141.330000px;}
.w10{width:156.060000px;}
.w9{width:159.210000px;}
.we{width:160.650000px;}
.w13{width:164.550000px;}
.w6{width:185.340000px;}
.wc{width:201.060000px;}
.w5{width:255.060000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x1e{left:77.579987px;}
.x2{left:95.040000px;}
.x11{left:107.280000px;}
.x23{left:111.239987px;}
.x3{left:122.040000px;}
.x4{left:192.719987px;}
.x12{left:199.920000px;}
.x19{left:208.290000px;}
.x10{left:230.159987px;}
.x6{left:243.299987px;}
.x9{left:244.830000px;}
.x1a{left:257.070000px;}
.xc{left:288.840000px;}
.x16{left:290.460000px;}
.xe{left:327.360000px;}
.x17{left:328.890000px;}
.x21{left:338.069987px;}
.x1b{left:345.180000px;}
.x1f{left:370.739987px;}
.x13{left:401.700000px;}
.x7{left:483.149987px;}
.x18{left:485.760000px;}
.xf{left:487.290000px;}
.xa{left:500.700000px;}
.x1c{left:510.450000px;}
.x14{left:543.840000px;}
.x1d{left:548.430000px;}
.xb{left:686.760000px;}
.x15{left:705.300000px;}
.x20{left:712.139987px;}
.x22{left:730.139987px;}
.x5{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls1d{letter-spacing:-4.053333pt;}
.ls27{letter-spacing:-1.445333pt;}
.ls25{letter-spacing:-0.597333pt;}
.ls10{letter-spacing:-0.348267pt;}
.ls1c{letter-spacing:-0.327467pt;}
.ls16{letter-spacing:-0.282667pt;}
.ls13{letter-spacing:-0.266133pt;}
.ls1f{letter-spacing:-0.216533pt;}
.ls1a{letter-spacing:-0.165867pt;}
.ls23{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.120000pt;}
.ls31{letter-spacing:-0.111467pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls12{letter-spacing:-0.082133pt;}
.lsc{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls2c{letter-spacing:-0.034560pt;}
.ls1e{letter-spacing:-0.020800pt;}
.ls20{letter-spacing:-0.020480pt;}
.ls29{letter-spacing:-0.016320pt;}
.ls2a{letter-spacing:-0.013120pt;}
.ls2b{letter-spacing:-0.009920pt;}
.lse{letter-spacing:-0.007467pt;}
.ls26{letter-spacing:-0.007360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.040320pt;}
.ls19{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.043733pt;}
.ls5{letter-spacing:0.046080pt;}
.ls14{letter-spacing:0.053867pt;}
.ls17{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.101440pt;}
.ls24{letter-spacing:0.103467pt;}
.ls21{letter-spacing:0.106133pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.154133pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls9{letter-spacing:2.003200pt;}
.ls30{letter-spacing:42.423680pt;}
.ls18{letter-spacing:56.503680pt;}
.ls8{letter-spacing:71.417600pt;}
.ls2e{letter-spacing:71.863680pt;}
.ws20{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws1e{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.862933pt;}
.ws16{word-spacing:-11.860267pt;}
.ws8{word-spacing:-11.800533pt;}
.wsf{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws18{word-spacing:-11.749440pt;}
.ws1c{word-spacing:-11.746880pt;}
.ws1b{word-spacing:-11.743680pt;}
.ws1a{word-spacing:-11.740480pt;}
.ws11{word-spacing:-11.736000pt;}
.ws1d{word-spacing:-11.722240pt;}
.ws9{word-spacing:-11.700267pt;}
.ws1f{word-spacing:-11.645333pt;}
.ws15{word-spacing:-11.597867pt;}
.wsc{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.wsa{word-spacing:-11.474133pt;}
.wse{word-spacing:-11.429333pt;}
.ws17{word-spacing:-11.159467pt;}
.ws19{word-spacing:-10.311467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:-7.703467pt;}
.ws7{word-spacing:-7.657067pt;}
.ws13{word-spacing:-7.582720pt;}
.ws5{word-spacing:-7.521067pt;}
.ws6{word-spacing:-7.337067pt;}
.wsb{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._6{margin-left:-4.466773pt;}
._9{margin-left:-3.312533pt;}
._5{margin-left:-2.162666pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.940001pt;}
._7{width:1.834720pt;}
._4{width:2.778666pt;}
._2{width:4.428021pt;}
._1{width:5.838507pt;}
._a{width:6.893760pt;}
._b{width:8.283200pt;}
._11{width:13.306560pt;}
._c{width:14.449173pt;}
._e{width:16.085760pt;}
._14{width:17.635200pt;}
._15{width:18.997760pt;}
._f{width:19.943893pt;}
._8{width:20.985067pt;}
._21{width:22.009387pt;}
._20{width:23.032640pt;}
._18{width:24.903040pt;}
._19{width:25.864960pt;}
._17{width:30.164907pt;}
._16{width:31.529600pt;}
._10{width:37.087360pt;}
._13{width:39.812800pt;}
._22{width:48.470080pt;}
._23{width:49.752640pt;}
._1a{width:64.662400pt;}
._1b{width:65.677760pt;}
._12{width:68.029120pt;}
._1c{width:82.671680pt;}
._1d{width:83.648747pt;}
._d{width:91.189760pt;}
._1e{width:100.680960pt;}
._1f{width:102.070400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:6.960000pt;}
.y9d{bottom:6.986667pt;}
.y95{bottom:7.040000pt;}
.y91{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ybe{bottom:104.986667pt;}
.y71{bottom:111.386667pt;}
.y24{bottom:113.866667pt;}
.y4d{bottom:118.426667pt;}
.ybd{bottom:120.586667pt;}
.y98{bottom:124.586667pt;}
.y125{bottom:127.546667pt;}
.y23{bottom:130.266667pt;}
.y70{bottom:143.066667pt;}
.yd9{bottom:143.146667pt;}
.y124{bottom:143.226667pt;}
.ybc{bottom:144.266667pt;}
.y22{bottom:146.586667pt;}
.y97{bottom:148.906667pt;}
.y4c{bottom:150.026667pt;}
.y6f{bottom:158.666667pt;}
.y21{bottom:162.986667pt;}
.y123{bottom:166.826667pt;}
.y96{bottom:173.226667pt;}
.y6e{bottom:174.266667pt;}
.yd8{bottom:174.746667pt;}
.ybb{bottom:175.866667pt;}
.y20{bottom:179.386667pt;}
.y4b{bottom:181.626667pt;}
.y122{bottom:182.506667pt;}
.yfb{bottom:193.706667pt;}
.y1f{bottom:194.986667pt;}
.yd7{bottom:196.026667pt;}
.y94{bottom:197.466667pt;}
.y6d{bottom:197.946667pt;}
.y121{bottom:198.106667pt;}
.yba{bottom:199.466667pt;}
.y4a{bottom:213.306667pt;}
.y120{bottom:213.706667pt;}
.yd6{bottom:220.346667pt;}
.y93{bottom:221.786667pt;}
.yfa{bottom:225.306667pt;}
.y1e{bottom:227.386667pt;}
.y49{bottom:228.906667pt;}
.y6c{bottom:229.546667pt;}
.yb9{bottom:231.146667pt;}
.y11f{bottom:237.386667pt;}
.yf9{bottom:240.906667pt;}
.y1d{bottom:242.986667pt;}
.y48{bottom:244.586667pt;}
.yd5{bottom:244.666667pt;}
.y90{bottom:246.106667pt;}
.yb8{bottom:246.746667pt;}
.y11e{bottom:252.986667pt;}
.y47{bottom:260.186667pt;}
.y6b{bottom:261.226667pt;}
.y1c{bottom:266.586667pt;}
.y11d{bottom:268.666667pt;}
.yd4{bottom:268.906667pt;}
.yf8{bottom:272.586667pt;}
.yb7{bottom:278.426667pt;}
.y46{bottom:283.786667pt;}
.yf7{bottom:288.186667pt;}
.y11c{bottom:292.266667pt;}
.y6a{bottom:292.826667pt;}
.y1b{bottom:295.626667pt;}
.y8f{bottom:304.986667pt;}
.y11b{bottom:307.866667pt;}
.yb6{bottom:310.026667pt;}
.y45{bottom:315.466667pt;}
.yf6{bottom:319.786667pt;}
.y11a{bottom:323.546667pt;}
.yef{bottom:324.106667pt;}
.y69{bottom:324.426667pt;}
.yb5{bottom:325.626667pt;}
.y1a{bottom:327.226667pt;}
.yd3{bottom:327.866667pt;}
.y44{bottom:331.066667pt;}
.y8e{bottom:333.946667pt;}
.yee{bottom:336.666667pt;}
.y119{bottom:339.146667pt;}
.y68{bottom:340.106667pt;}
.yb4{bottom:341.306667pt;}
.y19{bottom:342.906667pt;}
.yed{bottom:347.466667pt;}
.y8d{bottom:349.546667pt;}
.yf5{bottom:351.466667pt;}
.y67{bottom:355.706667pt;}
.yd2{bottom:359.466667pt;}
.y43{bottom:362.746667pt;}
.yb3{bottom:364.906667pt;}
.y8c{bottom:365.946667pt;}
.y18{bottom:366.746667pt;}
.y66{bottom:371.386667pt;}
.yec{bottom:371.786667pt;}
.yd1{bottom:375.146667pt;}
.y118{bottom:378.426667pt;}
.y8b{bottom:381.546667pt;}
.yf4{bottom:383.066667pt;}
.y117{bottom:394.026667pt;}
.y42{bottom:394.346667pt;}
.y65{bottom:394.986667pt;}
.yeb{bottom:396.026667pt;}
.yb2{bottom:396.586667pt;}
.yd0{bottom:398.746667pt;}
.y8a{bottom:405.946667pt;}
.yf3{bottom:406.986667pt;}
.y17{bottom:409.706667pt;}
.y41{bottom:409.946667pt;}
.yea{bottom:420.373333pt;}
.y16{bottom:425.333333pt;}
.y40{bottom:425.653333pt;}
.y64{bottom:426.613333pt;}
.yb1{bottom:428.213333pt;}
.ycf{bottom:430.453333pt;}
.y116{bottom:433.333333pt;}
.y89{bottom:435.333333pt;}
.y15{bottom:441.013333pt;}
.y63{bottom:442.293333pt;}
.y88{bottom:444.293333pt;}
.ye9{bottom:444.693333pt;}
.yce{bottom:446.053333pt;}
.y115{bottom:448.933333pt;}
.y3f{bottom:449.253333pt;}
.yf2{bottom:449.973333pt;}
.y14{bottom:456.613333pt;}
.yb0{bottom:459.813333pt;}
.y114{bottom:464.613333pt;}
.ye8{bottom:469.013333pt;}
.y62{bottom:473.893333pt;}
.y87{bottom:476.213333pt;}
.ycd{bottom:477.653333pt;}
.y3e{bottom:478.213333pt;}
.yf1{bottom:478.613333pt;}
.y13{bottom:480.533333pt;}
.y113{bottom:488.213333pt;}
.yaf{bottom:491.493333pt;}
.ye7{bottom:493.253333pt;}
.ycc{bottom:501.333333pt;}
.y112{bottom:503.893333pt;}
.y61{bottom:505.573333pt;}
.yae{bottom:507.093333pt;}
.y86{bottom:507.813333pt;}
.y3d{bottom:509.893333pt;}
.ye6{bottom:517.573333pt;}
.y111{bottom:519.493333pt;}
.y60{bottom:521.173333pt;}
.yad{bottom:522.773333pt;}
.y12{bottom:523.733333pt;}
.ycb{bottom:532.933333pt;}
.y3c{bottom:533.493333pt;}
.y5f{bottom:536.773333pt;}
.yac{bottom:538.373333pt;}
.y85{bottom:539.493333pt;}
.ye5{bottom:541.893333pt;}
.y110{bottom:543.093333pt;}
.yca{bottom:548.613333pt;}
.y84{bottom:555.093333pt;}
.y11{bottom:556.613333pt;}
.y10f{bottom:558.773333pt;}
.y5e{bottom:560.453333pt;}
.yab{bottom:561.973333pt;}
.y3b{bottom:565.093333pt;}
.ye4{bottom:566.213333pt;}
.y10{bottom:572.293333pt;}
.y83{bottom:578.773333pt;}
.yc9{bottom:580.213333pt;}
.y10e{bottom:582.373333pt;}
.yf{bottom:587.893333pt;}
.y3a{bottom:588.773333pt;}
.ye3{bottom:590.453333pt;}
.y5d{bottom:592.053333pt;}
.yaa{bottom:593.653333pt;}
.y10d{bottom:598.053333pt;}
.ye{bottom:603.573333pt;}
.y82{bottom:610.373333pt;}
.yc8{bottom:611.813333pt;}
.y10c{bottom:613.653333pt;}
.ye2{bottom:614.773333pt;}
.yd{bottom:619.173333pt;}
.y39{bottom:620.373333pt;}
.y5c{bottom:621.013333pt;}
.ya9{bottom:625.253333pt;}
.y81{bottom:625.973333pt;}
.yc7{bottom:627.493333pt;}
.yc{bottom:634.773333pt;}
.y10b{bottom:637.253333pt;}
.ye1{bottom:639.093333pt;}
.yc6{bottom:643.093333pt;}
.y38{bottom:644.053333pt;}
.y5b{bottom:652.693333pt;}
.y10a{bottom:652.933333pt;}
.ya8{bottom:656.933333pt;}
.y80{bottom:657.653333pt;}
.yb{bottom:658.773333pt;}
.ye0{bottom:663.333333pt;}
.yc5{bottom:666.693333pt;}
.y5a{bottom:668.293333pt;}
.y109{bottom:668.533333pt;}
.ya7{bottom:672.533333pt;}
.y37{bottom:675.653333pt;}
.ydf{bottom:687.653333pt;}
.ya6{bottom:688.133333pt;}
.y7f{bottom:689.253333pt;}
.y108{bottom:692.213333pt;}
.yc4{bottom:698.373333pt;}
.y36{bottom:699.253333pt;}
.ya{bottom:700.293333pt;}
.y59{bottom:700.693333pt;}
.y7e{bottom:704.853333pt;}
.y107{bottom:707.813333pt;}
.ya5{bottom:711.813333pt;}
.yde{bottom:711.973333pt;}
.y58{bottom:716.293333pt;}
.y7d{bottom:720.533333pt;}
.y132{bottom:723.493333pt;}
.y35{bottom:728.213333pt;}
.yc3{bottom:729.973333pt;}
.y106{bottom:731.733333pt;}
.y9{bottom:731.893333pt;}
.ydd{bottom:736.293333pt;}
.y131{bottom:739.093333pt;}
.y57{bottom:739.893333pt;}
.ya4{bottom:743.413333pt;}
.y7c{bottom:744.133333pt;}
.yf0{bottom:747.573333pt;}
.ya3{bottom:759.013333pt;}
.y34{bottom:759.813333pt;}
.ydc{bottom:760.533333pt;}
.yc2{bottom:761.653333pt;}
.y130{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y56{bottom:771.493333pt;}
.y105{bottom:774.613333pt;}
.y7b{bottom:775.813333pt;}
.y33{bottom:776.213333pt;}
.y12f{bottom:778.373333pt;}
.ya2{bottom:782.693333pt;}
.y7a{bottom:791.413333pt;}
.y32{bottom:791.813333pt;}
.yc1{bottom:793.253333pt;}
.y12e{bottom:793.973333pt;}
.y104{bottom:798.533333pt;}
.y7{bottom:799.093333pt;}
.y55{bottom:800.533333pt;}
.ydb{bottom:803.893333pt;}
.y31{bottom:808.213333pt;}
.yc0{bottom:808.853333pt;}
.ya1{bottom:813.653333pt;}
.y6{bottom:815.093333pt;}
.y12d{bottom:817.653333pt;}
.y79{bottom:823.013333pt;}
.y30{bottom:823.813333pt;}
.ya0{bottom:824.533333pt;}
.y103{bottom:831.493333pt;}
.y54{bottom:832.133333pt;}
.y12c{bottom:833.253333pt;}
.yda{bottom:835.493333pt;}
.y78{bottom:838.693333pt;}
.ybf{bottom:840.133333pt;}
.y5{bottom:843.813333pt;}
.y102{bottom:847.093333pt;}
.y9f{bottom:848.773333pt;}
.y12b{bottom:848.853333pt;}
.y2f{bottom:856.213333pt;}
.y77{bottom:862.293333pt;}
.y53{bottom:863.813333pt;}
.y101{bottom:871.013333pt;}
.y2e{bottom:871.893333pt;}
.y12a{bottom:872.533333pt;}
.y9e{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y2d{bottom:887.493333pt;}
.y129{bottom:888.133333pt;}
.y76{bottom:893.893333pt;}
.y52{bottom:895.413333pt;}
.y9c{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2c{bottom:903.200000pt;}
.y128{bottom:903.840000pt;}
.y100{bottom:904.240000pt;}
.y75{bottom:910.320000pt;}
.y127{bottom:919.440000pt;}
.y9b{bottom:921.680000pt;}
.y51{bottom:927.040000pt;}
.y2b{bottom:932.080000pt;}
.y74{bottom:934.720000pt;}
.y126{bottom:943.040000pt;}
.y9a{bottom:946.000000pt;}
.yff{bottom:947.120000pt;}
.y2a{bottom:948.480000pt;}
.y50{bottom:958.720000pt;}
.yfe{bottom:962.800000pt;}
.y29{bottom:964.800000pt;}
.y73{bottom:966.320000pt;}
.y99{bottom:970.320000pt;}
.y4f{bottom:974.320000pt;}
.yfd{bottom:978.400000pt;}
.y28{bottom:981.200000pt;}
.y4e{bottom:990.000000pt;}
.y72{bottom:998.000000pt;}
.yfc{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.626667pt;}
.hf{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.hd{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h13{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:81.086562pt;}
.hb{height:85.566563pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:33.120000pt;}
.w8{width:33.520000pt;}
.w11{width:42.720000pt;}
.w3{width:46.480000pt;}
.w12{width:77.680000pt;}
.wb{width:81.706667pt;}
.wa{width:104.106667pt;}
.wf{width:105.920000pt;}
.w4{width:108.746667pt;}
.w15{width:121.360000pt;}
.w7{width:122.400000pt;}
.wd{width:125.626667pt;}
.w10{width:138.720000pt;}
.w9{width:141.520000pt;}
.we{width:142.800000pt;}
.w13{width:146.266667pt;}
.w6{width:164.746667pt;}
.wc{width:178.720000pt;}
.w5{width:226.720000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1e{left:68.959988pt;}
.x2{left:84.480000pt;}
.x11{left:95.360000pt;}
.x23{left:98.879988pt;}
.x3{left:108.480000pt;}
.x4{left:171.306655pt;}
.x12{left:177.706667pt;}
.x19{left:185.146667pt;}
.x10{left:204.586655pt;}
.x6{left:216.266655pt;}
.x9{left:217.626667pt;}
.x1a{left:228.506667pt;}
.xc{left:256.746667pt;}
.x16{left:258.186667pt;}
.xe{left:290.986667pt;}
.x17{left:292.346667pt;}
.x21{left:300.506655pt;}
.x1b{left:306.826667pt;}
.x1f{left:329.546655pt;}
.x13{left:357.066667pt;}
.x7{left:429.466655pt;}
.x18{left:431.786667pt;}
.xf{left:433.146667pt;}
.xa{left:445.066667pt;}
.x1c{left:453.733333pt;}
.x14{left:483.413333pt;}
.x1d{left:487.493333pt;}
.xb{left:610.453333pt;}
.x15{left:626.933333pt;}
.x20{left:633.013322pt;}
.x22{left:649.013322pt;}
.x5{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  