
    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_44ab2ef4ff2bc355e74aa6bc.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_68544c95cae17017838bd197.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_d4628a2b730edbce9b356320.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_c1c59eae1430182cb5b10c50.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_1f989ccecf800f971a8049d4.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_37cb290c434eb6b7afe33b07.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_092fadfcad700c011189233d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a68d4c523f460501285cd37.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_90e85a53cbd4247fc1eb36c5.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_db1bd5e819f3ec7462c59076.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4ce257b0fff9851e6ba0da57.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls2b{letter-spacing:-0.363000px;}
.ls7{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.260400px;}
.ls2a{letter-spacing:-0.255000px;}
.ls26{letter-spacing:-0.143400px;}
.ls30{letter-spacing:-0.107400px;}
.ls1e{letter-spacing:-0.050400px;}
.lsc{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls24{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.060480px;}
.ls4{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.187200px;}
.ls1c{letter-spacing:0.195000px;}
.ls2f{letter-spacing:0.209400px;}
.lse{letter-spacing:0.211680px;}
.ls28{letter-spacing:0.226800px;}
.ls18{letter-spacing:0.234720px;}
.ls15{letter-spacing:0.285600px;}
.ls1a{letter-spacing:0.319680px;}
.ls21{letter-spacing:0.332640px;}
.ls29{letter-spacing:0.349200px;}
.ls2{letter-spacing:0.351360px;}
.ls9{letter-spacing:0.357000px;}
.ls1d{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385800px;}
.ls1f{letter-spacing:0.466560px;}
.ls1b{letter-spacing:0.598800px;}
.ls1{letter-spacing:0.624960px;}
.ls10{letter-spacing:0.666720px;}
.ls2c{letter-spacing:0.684000px;}
.ls8{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.732000px;}
.ls19{letter-spacing:0.753120px;}
.ls23{letter-spacing:0.853920px;}
.ls20{letter-spacing:1.052640px;}
.ls17{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.972800px;}
.lsf{letter-spacing:2.692800px;}
.ls13{letter-spacing:10.612800px;}
.ls22{letter-spacing:29.308800px;}
.ls2e{letter-spacing:47.466720px;}
.ls11{letter-spacing:64.026720px;}
.ls2d{letter-spacing:81.450720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws11{word-spacing:-18.000000px;}
.wsd{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.wsf{word-spacing:-13.746000px;}
.ws5{word-spacing:-13.504200px;}
.ws16{word-spacing:-13.496400px;}
.wse{word-spacing:-13.432800px;}
.ws15{word-spacing:-13.374000px;}
.ws1a{word-spacing:-13.356600px;}
.ws10{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.111200px;}
.ws19{word-spacing:-13.039800px;}
.ws12{word-spacing:-13.003800px;}
.ws6{word-spacing:-12.886800px;}
.ws14{word-spacing:-10.612800px;}
.ws18{word-spacing:-10.357800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws13{word-spacing:-8.553600px;}
.ws17{word-spacing:-6.652800px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:2.408040px;}
._f{margin-left:-4.415040px;}
._10{margin-left:-3.364441px;}
._2{margin-left:-2.347200px;}
._0{margin-left:-1.159200px;}
._3{width:1.228200px;}
._6{width:2.410558px;}
._5{width:3.789597px;}
._b{width:5.307976px;}
._8{width:6.584025px;}
._7{width:7.708801px;}
._a{width:9.126834px;}
._9{width:10.440600px;}
._4{width:12.052800px;}
._c{width:14.163000px;}
._e{width:15.189136px;}
._d{width:16.536116px;}
._17{width:17.550120px;}
._11{width:18.577440px;}
._12{width:24.919920px;}
._16{width:26.164080px;}
._15{width:28.565280px;}
._1{width:30.747600px;}
._14{width:104.161680px;}
._13{width:119.998080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:7.740000px;}
.y9a{bottom:7.920000px;}
.y9e{bottom:7.965000px;}
.yaf{bottom:25.380000px;}
.yb3{bottom:25.560000px;}
.yb1{bottom:43.020000px;}
.yad{bottom:52.740000px;}
.y2{bottom:73.260000px;}
.y28{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.yab{bottom:120.780000px;}
.yca{bottom:123.660000px;}
.yfb{bottom:131.220000px;}
.y121{bottom:132.660000px;}
.y143{bottom:133.560000px;}
.y84{bottom:137.160000px;}
.yaa{bottom:138.420000px;}
.yc9{bottom:141.120000px;}
.y56{bottom:145.080000px;}
.yfa{bottom:148.860000px;}
.y120{bottom:150.300000px;}
.y142{bottom:151.200000px;}
.y83{bottom:155.520000px;}
.ya9{bottom:155.880000px;}
.yc8{bottom:158.760000px;}
.y55{bottom:162.750000px;}
.yf9{bottom:166.530000px;}
.ya8{bottom:173.550000px;}
.y82{bottom:174.090000px;}
.yc7{bottom:176.430000px;}
.y26{bottom:176.790000px;}
.y11f{bottom:176.970000px;}
.y141{bottom:177.870000px;}
.y54{bottom:180.390000px;}
.yf8{bottom:184.170000px;}
.ya7{bottom:191.190000px;}
.y81{bottom:192.450000px;}
.yc6{bottom:193.890000px;}
.y25{bottom:194.430000px;}
.y11e{bottom:194.610000px;}
.y140{bottom:195.510000px;}
.y53{bottom:198.030000px;}
.yf7{bottom:201.630000px;}
.ya6{bottom:208.650000px;}
.y80{bottom:210.810000px;}
.yc5{bottom:211.530000px;}
.y24{bottom:211.890000px;}
.y11d{bottom:221.070000px;}
.y13f{bottom:221.970000px;}
.y52{bottom:224.490000px;}
.ya5{bottom:226.290000px;}
.y7f{bottom:229.170000px;}
.y23{bottom:229.530000px;}
.yf6{bottom:237.270000px;}
.y11c{bottom:238.710000px;}
.y13e{bottom:239.610000px;}
.y22{bottom:247.170000px;}
.ya4{bottom:252.930000px;}
.yf5{bottom:254.910000px;}
.y51{bottom:260.130000px;}
.yc4{bottom:264.090000px;}
.y21{bottom:264.630000px;}
.y11b{bottom:265.350000px;}
.y7e{bottom:265.710000px;}
.y13d{bottom:266.070000px;}
.yf4{bottom:272.370000px;}
.y50{bottom:277.770000px;}
.yc3{bottom:278.130000px;}
.y11a{bottom:282.990000px;}
.y7d{bottom:283.350000px;}
.y13c{bottom:283.710000px;}
.ya3{bottom:285.510000px;}
.yf3{bottom:290.010000px;}
.yc2{bottom:292.170000px;}
.y4f{bottom:295.230000px;}
.y20{bottom:300.270000px;}
.y119{bottom:300.450000px;}
.y13b{bottom:301.350000px;}
.yc1{bottom:306.210000px;}
.yf2{bottom:307.650000px;}
.y4e{bottom:312.870000px;}
.y1f{bottom:317.910000px;}
.yc0{bottom:318.270000px;}
.ya2{bottom:318.450000px;}
.y7c{bottom:318.990000px;}
.yf1{bottom:325.110000px;}
.y118{bottom:327.090000px;}
.y13a{bottom:327.990000px;}
.y4d{bottom:330.510000px;}
.y1e{bottom:335.370000px;}
.y7b{bottom:336.630000px;}
.yf0{bottom:342.750000px;}
.y117{bottom:344.730000px;}
.ybf{bottom:345.630000px;}
.ya1{bottom:345.810000px;}
.y4c{bottom:347.970000px;}
.yef{bottom:360.390000px;}
.y1d{bottom:362.190000px;}
.y139{bottom:363.090000px;}
.y116{bottom:371.190000px;}
.y7a{bottom:372.090000px;}
.ybe{bottom:372.990000px;}
.y9f{bottom:373.170000px;}
.y4b{bottom:374.610000px;}
.yee{bottom:378.030000px;}
.y79{bottom:389.730000px;}
.yed{bottom:395.490000px;}
.y115{bottom:397.830000px;}
.y9d{bottom:400.350000px;}
.y78{bottom:407.415000px;}
.y4a{bottom:410.295000px;}
.y1c{bottom:411.015000px;}
.yec{bottom:413.175000px;}
.y114{bottom:415.515000px;}
.y77{bottom:424.875000px;}
.y9c{bottom:427.755000px;}
.y49{bottom:427.935000px;}
.yeb{bottom:430.815000px;}
.y113{bottom:441.975000px;}
.y76{bottom:442.515000px;}
.y48{bottom:445.395000px;}
.y1b{bottom:447.915000px;}
.yea{bottom:448.275000px;}
.y138{bottom:451.515000px;}
.y9b{bottom:455.115000px;}
.y112{bottom:459.615000px;}
.y75{bottom:460.155000px;}
.y1a{bottom:465.555000px;}
.ye9{bottom:465.915000px;}
.y137{bottom:469.155000px;}
.y47{bottom:472.035000px;}
.y111{bottom:477.255000px;}
.y99{bottom:482.475000px;}
.y19{bottom:483.195000px;}
.ye8{bottom:483.555000px;}
.y74{bottom:486.615000px;}
.ybd{bottom:499.935000px;}
.y18{bottom:500.835000px;}
.ye7{bottom:501.015000px;}
.y110{bottom:503.715000px;}
.y46{bottom:507.495000px;}
.y136{bottom:513.255000px;}
.y17{bottom:518.295000px;}
.y10f{bottom:521.355000px;}
.y73{bottom:522.255000px;}
.y45{bottom:525.135000px;}
.y135{bottom:530.895000px;}
.y98{bottom:531.255000px;}
.y16{bottom:535.935000px;}
.ye6{bottom:536.655000px;}
.y10e{bottom:538.995000px;}
.y72{bottom:539.895000px;}
.y44{bottom:542.775000px;}
.y15{bottom:553.575000px;}
.ye5{bottom:554.295000px;}
.y71{bottom:557.355000px;}
.y43{bottom:560.415000px;}
.y10d{bottom:565.455000px;}
.ybc{bottom:566.175000px;}
.y97{bottom:566.715000px;}
.y14{bottom:571.035000px;}
.ye4{bottom:571.935000px;}
.y70{bottom:574.995000px;}
.y42{bottom:577.875000px;}
.y10c{bottom:583.095000px;}
.y96{bottom:584.355000px;}
.y13{bottom:588.675000px;}
.ye3{bottom:589.395000px;}
.y6f{bottom:592.635000px;}
.ybb{bottom:592.815000px;}
.y134{bottom:601.635000px;}
.y95{bottom:601.995000px;}
.y12{bottom:606.315000px;}
.ye2{bottom:607.035000px;}
.y10b{bottom:609.735000px;}
.y6e{bottom:610.275000px;}
.y41{bottom:613.515000px;}
.y133{bottom:619.275000px;}
.y11{bottom:623.955000px;}
.ye1{bottom:624.675000px;}
.y6d{bottom:627.735000px;}
.y94{bottom:628.455000px;}
.yba{bottom:628.995000px;}
.y40{bottom:631.155000px;}
.y10a{bottom:636.375000px;}
.y132{bottom:636.735000px;}
.y10{bottom:641.415000px;}
.ye0{bottom:642.135000px;}
.y6c{bottom:645.375000px;}
.yb9{bottom:648.435000px;}
.y3f{bottom:648.795000px;}
.y109{bottom:654.045000px;}
.yf{bottom:659.085000px;}
.ydf{bottom:659.805000px;}
.yb8{bottom:662.505000px;}
.y131{bottom:663.405000px;}
.y93{bottom:666.825000px;}
.y6b{bottom:671.865000px;}
.y3e{bottom:675.285000px;}
.ye{bottom:676.725000px;}
.yde{bottom:677.445000px;}
.y108{bottom:680.685000px;}
.y130{bottom:681.045000px;}
.yb7{bottom:688.785000px;}
.ydd{bottom:694.905000px;}
.y12f{bottom:698.505000px;}
.yd{bottom:703.365000px;}
.y6a{bottom:707.505000px;}
.y3d{bottom:711.105000px;}
.ydc{bottom:712.545000px;}
.y92{bottom:715.245000px;}
.y12e{bottom:716.145000px;}
.y69{bottom:725.145000px;}
.y107{bottom:729.285000px;}
.ydb{bottom:730.185000px;}
.y91{bottom:732.885000px;}
.yb6{bottom:733.605000px;}
.y12d{bottom:742.605000px;}
.y68{bottom:742.785000px;}
.y106{bottom:747.285000px;}
.yda{bottom:747.645000px;}
.yc{bottom:751.785000px;}
.y3c{bottom:759.345000px;}
.y90{bottom:759.525000px;}
.y67{bottom:760.245000px;}
.y14e{bottom:769.245000px;}
.y105{bottom:774.465000px;}
.y3b{bottom:777.705000px;}
.y66{bottom:777.885000px;}
.yb5{bottom:778.605000px;}
.yd9{bottom:783.285000px;}
.y12c{bottom:786.885000px;}
.yb{bottom:787.425000px;}
.y8f{bottom:794.985000px;}
.y65{bottom:795.525000px;}
.y14d{bottom:795.885000px;}
.yd8{bottom:800.925000px;}
.y12b{bottom:804.525000px;}
.y3a{bottom:805.245000px;}
.y104{bottom:811.365000px;}
.y8e{bottom:812.625000px;}
.y64{bottom:813.165000px;}
.y14c{bottom:813.525000px;}
.yd7{bottom:818.565000px;}
.ya{bottom:823.245000px;}
.yb4{bottom:823.425000px;}
.y63{bottom:830.625000px;}
.y12a{bottom:830.985000px;}
.yd6{bottom:836.025000px;}
.y103{bottom:838.365000px;}
.y8d{bottom:839.265000px;}
.y14b{bottom:839.985000px;}
.y39{bottom:840.885000px;}
.y62{bottom:848.265000px;}
.y129{bottom:848.625000px;}
.yd5{bottom:853.665000px;}
.y14a{bottom:857.625000px;}
.y38{bottom:858.525000px;}
.y9{bottom:859.245000px;}
.yb2{bottom:868.425000px;}
.y61{bottom:874.725000px;}
.y128{bottom:875.265000px;}
.y102{bottom:875.625000px;}
.y37{bottom:876.165000px;}
.y8{bottom:881.025000px;}
.yd4{bottom:889.125000px;}
.y8c{bottom:892.365000px;}
.y127{bottom:892.905000px;}
.y36{bottom:893.625000px;}
.y7{bottom:895.245000px;}
.y149{bottom:901.770000px;}
.yd3{bottom:906.810000px;}
.y8b{bottom:910.050000px;}
.y60{bottom:910.410000px;}
.y35{bottom:911.310000px;}
.yb0{bottom:913.470000px;}
.y6{bottom:917.070000px;}
.y126{bottom:919.410000px;}
.y101{bottom:923.910000px;}
.yd2{bottom:924.450000px;}
.y5f{bottom:928.050000px;}
.y148{bottom:928.410000px;}
.y34{bottom:928.950000px;}
.y8a{bottom:936.510000px;}
.y125{bottom:937.050000px;}
.y100{bottom:941.550000px;}
.yd1{bottom:942.090000px;}
.y5e{bottom:945.690000px;}
.y147{bottom:946.050000px;}
.y33{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yff{bottom:959.190000px;}
.yd0{bottom:959.550000px;}
.y5d{bottom:963.150000px;}
.y124{bottom:963.510000px;}
.y32{bottom:964.050000px;}
.y89{bottom:972.150000px;}
.y146{bottom:972.510000px;}
.yac{bottom:975.930000px;}
.yfe{bottom:976.830000px;}
.ycf{bottom:977.190000px;}
.y123{bottom:981.150000px;}
.y31{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.y5c{bottom:989.790000px;}
.y145{bottom:990.150000px;}
.yfd{bottom:994.470000px;}
.yce{bottom:994.830000px;}
.y30{bottom:999.150000px;}
.y88{bottom:1007.430000px;}
.y122{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.ycd{bottom:1012.470000px;}
.y2f{bottom:1016.790000px;}
.yae{bottom:1020.750000px;}
.yfc{bottom:1021.110000px;}
.y5b{bottom:1025.430000px;}
.y87{bottom:1033.890000px;}
.y2e{bottom:1034.430000px;}
.ycc{bottom:1039.110000px;}
.y5a{bottom:1043.070000px;}
.y2d{bottom:1052.070000px;}
.y144{bottom:1060.890000px;}
.y2c{bottom:1069.530000px;}
.y59{bottom:1078.530000px;}
.y86{bottom:1087.170000px;}
.ycb{bottom:1087.530000px;}
.y58{bottom:1096.170000px;}
.y2b{bottom:1105.170000px;}
.y57{bottom:1113.810000px;}
.y85{bottom:1122.630000px;}
.y2a{bottom:1122.810000px;}
.y29{bottom:1140.270000px;}
.y27{bottom:1194.300000px;}
.h11{height:26.460000px;}
.hf{height:26.640000px;}
.h10{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.h17{height:40.843828px;}
.h13{height:44.100000px;}
.h15{height:44.136000px;}
.h16{height:44.280000px;}
.h7{height:50.597578px;}
.h5{height:56.084062px;}
.hc{height:59.614102px;}
.h8{height:60.960938px;}
.ha{height:61.423863px;}
.h14{height:61.740000px;}
.h9{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:71.324297px;}
.h12{height:71.460000px;}
.hd{height:74.004654px;}
.he{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:77.436000px;}
.w11{width:95.040000px;}
.w13{width:95.760000px;}
.w10{width:97.056000px;}
.w12{width:98.136000px;}
.wb{width:101.736000px;}
.wf{width:102.420000px;}
.we{width:102.456000px;}
.w8{width:104.976000px;}
.w6{width:105.516000px;}
.wc{width:108.900000px;}
.w9{width:109.980000px;}
.wa{width:110.016000px;}
.w5{width:146.916000px;}
.wd{width:160.230000px;}
.w4{width:221.610000px;}
.w7{width:649.545000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:3.960000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:70.739987px;}
.x1b{left:73.799987px;}
.x1c{left:78.119987px;}
.x10{left:79.739987px;}
.x1a{left:87.875987px;}
.x4{left:95.075987px;}
.x11{left:100.115987px;}
.x1e{left:111.275987px;}
.x9{left:174.990000px;}
.x2{left:192.449987px;}
.x5{left:222.870000px;}
.x14{left:229.710000px;}
.x1d{left:239.609987px;}
.xa{left:280.695000px;}
.x7{left:301.035000px;}
.x15{left:332.895000px;}
.xb{left:391.575000px;}
.x12{left:413.174987px;}
.x16{left:436.035000px;}
.xc{left:502.305000px;}
.x8{left:523.545000px;}
.x17{left:533.805000px;}
.xd{left:613.005000px;}
.x18{left:629.745000px;}
.xe{left:715.650000px;}
.x19{left:728.790000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls2b{letter-spacing:-0.322667pt;}
.ls7{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.231467pt;}
.ls2a{letter-spacing:-0.226667pt;}
.ls26{letter-spacing:-0.127467pt;}
.ls30{letter-spacing:-0.095467pt;}
.ls1e{letter-spacing:-0.044800pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls24{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.053760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.166400pt;}
.ls1c{letter-spacing:0.173333pt;}
.ls2f{letter-spacing:0.186133pt;}
.lse{letter-spacing:0.188160pt;}
.ls28{letter-spacing:0.201600pt;}
.ls18{letter-spacing:0.208640pt;}
.ls15{letter-spacing:0.253867pt;}
.ls1a{letter-spacing:0.284160pt;}
.ls21{letter-spacing:0.295680pt;}
.ls29{letter-spacing:0.310400pt;}
.ls2{letter-spacing:0.312320pt;}
.ls9{letter-spacing:0.317333pt;}
.ls1d{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls1f{letter-spacing:0.414720pt;}
.ls1b{letter-spacing:0.532267pt;}
.ls1{letter-spacing:0.555520pt;}
.ls10{letter-spacing:0.592640pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls8{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.650667pt;}
.ls19{letter-spacing:0.669440pt;}
.ls23{letter-spacing:0.759040pt;}
.ls20{letter-spacing:0.935680pt;}
.ls17{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.753600pt;}
.lsf{letter-spacing:2.393600pt;}
.ls13{letter-spacing:9.433600pt;}
.ls22{letter-spacing:26.052267pt;}
.ls2e{letter-spacing:42.192640pt;}
.ls11{letter-spacing:56.912640pt;}
.ls2d{letter-spacing:72.400640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws11{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.218667pt;}
.ws5{word-spacing:-12.003733pt;}
.ws16{word-spacing:-11.996800pt;}
.wse{word-spacing:-11.940267pt;}
.ws15{word-spacing:-11.888000pt;}
.ws1a{word-spacing:-11.872533pt;}
.ws10{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.654400pt;}
.ws19{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.558933pt;}
.ws6{word-spacing:-11.454933pt;}
.ws14{word-spacing:-9.433600pt;}
.ws18{word-spacing:-9.206933pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws13{word-spacing:-7.603200pt;}
.ws17{word-spacing:-5.913600pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:2.140480pt;}
._f{margin-left:-3.924480pt;}
._10{margin-left:-2.990615pt;}
._2{margin-left:-2.086400pt;}
._0{margin-left:-1.030400pt;}
._3{width:1.091734pt;}
._6{width:2.142718pt;}
._5{width:3.368531pt;}
._b{width:4.718201pt;}
._8{width:5.852467pt;}
._7{width:6.852268pt;}
._a{width:8.112741pt;}
._9{width:9.280534pt;}
._4{width:10.713600pt;}
._c{width:12.589334pt;}
._e{width:13.501455pt;}
._d{width:14.698769pt;}
._17{width:15.600106pt;}
._11{width:16.513280pt;}
._12{width:22.151040pt;}
._16{width:23.256960pt;}
._15{width:25.391360pt;}
._1{width:27.331200pt;}
._14{width:92.588160pt;}
._13{width:106.664960pt;}
.fs9{font-size:26.880000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:6.880000pt;}
.y9a{bottom:7.040000pt;}
.y9e{bottom:7.080000pt;}
.yaf{bottom:22.560000pt;}
.yb3{bottom:22.720000pt;}
.yb1{bottom:38.240000pt;}
.yad{bottom:46.880000pt;}
.y2{bottom:65.120000pt;}
.y28{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.yab{bottom:107.360000pt;}
.yca{bottom:109.920000pt;}
.yfb{bottom:116.640000pt;}
.y121{bottom:117.920000pt;}
.y143{bottom:118.720000pt;}
.y84{bottom:121.920000pt;}
.yaa{bottom:123.040000pt;}
.yc9{bottom:125.440000pt;}
.y56{bottom:128.960000pt;}
.yfa{bottom:132.320000pt;}
.y120{bottom:133.600000pt;}
.y142{bottom:134.400000pt;}
.y83{bottom:138.240000pt;}
.ya9{bottom:138.560000pt;}
.yc8{bottom:141.120000pt;}
.y55{bottom:144.666667pt;}
.yf9{bottom:148.026667pt;}
.ya8{bottom:154.266667pt;}
.y82{bottom:154.746667pt;}
.yc7{bottom:156.826667pt;}
.y26{bottom:157.146667pt;}
.y11f{bottom:157.306667pt;}
.y141{bottom:158.106667pt;}
.y54{bottom:160.346667pt;}
.yf8{bottom:163.706667pt;}
.ya7{bottom:169.946667pt;}
.y81{bottom:171.066667pt;}
.yc6{bottom:172.346667pt;}
.y25{bottom:172.826667pt;}
.y11e{bottom:172.986667pt;}
.y140{bottom:173.786667pt;}
.y53{bottom:176.026667pt;}
.yf7{bottom:179.226667pt;}
.ya6{bottom:185.466667pt;}
.y80{bottom:187.386667pt;}
.yc5{bottom:188.026667pt;}
.y24{bottom:188.346667pt;}
.y11d{bottom:196.506667pt;}
.y13f{bottom:197.306667pt;}
.y52{bottom:199.546667pt;}
.ya5{bottom:201.146667pt;}
.y7f{bottom:203.706667pt;}
.y23{bottom:204.026667pt;}
.yf6{bottom:210.906667pt;}
.y11c{bottom:212.186667pt;}
.y13e{bottom:212.986667pt;}
.y22{bottom:219.706667pt;}
.ya4{bottom:224.826667pt;}
.yf5{bottom:226.586667pt;}
.y51{bottom:231.226667pt;}
.yc4{bottom:234.746667pt;}
.y21{bottom:235.226667pt;}
.y11b{bottom:235.866667pt;}
.y7e{bottom:236.186667pt;}
.y13d{bottom:236.506667pt;}
.yf4{bottom:242.106667pt;}
.y50{bottom:246.906667pt;}
.yc3{bottom:247.226667pt;}
.y11a{bottom:251.546667pt;}
.y7d{bottom:251.866667pt;}
.y13c{bottom:252.186667pt;}
.ya3{bottom:253.786667pt;}
.yf3{bottom:257.786667pt;}
.yc2{bottom:259.706667pt;}
.y4f{bottom:262.426667pt;}
.y20{bottom:266.906667pt;}
.y119{bottom:267.066667pt;}
.y13b{bottom:267.866667pt;}
.yc1{bottom:272.186667pt;}
.yf2{bottom:273.466667pt;}
.y4e{bottom:278.106667pt;}
.y1f{bottom:282.586667pt;}
.yc0{bottom:282.906667pt;}
.ya2{bottom:283.066667pt;}
.y7c{bottom:283.546667pt;}
.yf1{bottom:288.986667pt;}
.y118{bottom:290.746667pt;}
.y13a{bottom:291.546667pt;}
.y4d{bottom:293.786667pt;}
.y1e{bottom:298.106667pt;}
.y7b{bottom:299.226667pt;}
.yf0{bottom:304.666667pt;}
.y117{bottom:306.426667pt;}
.ybf{bottom:307.226667pt;}
.ya1{bottom:307.386667pt;}
.y4c{bottom:309.306667pt;}
.yef{bottom:320.346667pt;}
.y1d{bottom:321.946667pt;}
.y139{bottom:322.746667pt;}
.y116{bottom:329.946667pt;}
.y7a{bottom:330.746667pt;}
.ybe{bottom:331.546667pt;}
.y9f{bottom:331.706667pt;}
.y4b{bottom:332.986667pt;}
.yee{bottom:336.026667pt;}
.y79{bottom:346.426667pt;}
.yed{bottom:351.546667pt;}
.y115{bottom:353.626667pt;}
.y9d{bottom:355.866667pt;}
.y78{bottom:362.146667pt;}
.y4a{bottom:364.706667pt;}
.y1c{bottom:365.346667pt;}
.yec{bottom:367.266667pt;}
.y114{bottom:369.346667pt;}
.y77{bottom:377.666667pt;}
.y9c{bottom:380.226667pt;}
.y49{bottom:380.386667pt;}
.yeb{bottom:382.946667pt;}
.y113{bottom:392.866667pt;}
.y76{bottom:393.346667pt;}
.y48{bottom:395.906667pt;}
.y1b{bottom:398.146667pt;}
.yea{bottom:398.466667pt;}
.y138{bottom:401.346667pt;}
.y9b{bottom:404.546667pt;}
.y112{bottom:408.546667pt;}
.y75{bottom:409.026667pt;}
.y1a{bottom:413.826667pt;}
.ye9{bottom:414.146667pt;}
.y137{bottom:417.026667pt;}
.y47{bottom:419.586667pt;}
.y111{bottom:424.226667pt;}
.y99{bottom:428.866667pt;}
.y19{bottom:429.506667pt;}
.ye8{bottom:429.826667pt;}
.y74{bottom:432.546667pt;}
.ybd{bottom:444.386667pt;}
.y18{bottom:445.186667pt;}
.ye7{bottom:445.346667pt;}
.y110{bottom:447.746667pt;}
.y46{bottom:451.106667pt;}
.y136{bottom:456.226667pt;}
.y17{bottom:460.706667pt;}
.y10f{bottom:463.426667pt;}
.y73{bottom:464.226667pt;}
.y45{bottom:466.786667pt;}
.y135{bottom:471.906667pt;}
.y98{bottom:472.226667pt;}
.y16{bottom:476.386667pt;}
.ye6{bottom:477.026667pt;}
.y10e{bottom:479.106667pt;}
.y72{bottom:479.906667pt;}
.y44{bottom:482.466667pt;}
.y15{bottom:492.066667pt;}
.ye5{bottom:492.706667pt;}
.y71{bottom:495.426667pt;}
.y43{bottom:498.146667pt;}
.y10d{bottom:502.626667pt;}
.ybc{bottom:503.266667pt;}
.y97{bottom:503.746667pt;}
.y14{bottom:507.586667pt;}
.ye4{bottom:508.386667pt;}
.y70{bottom:511.106667pt;}
.y42{bottom:513.666667pt;}
.y10c{bottom:518.306667pt;}
.y96{bottom:519.426667pt;}
.y13{bottom:523.266667pt;}
.ye3{bottom:523.906667pt;}
.y6f{bottom:526.786667pt;}
.ybb{bottom:526.946667pt;}
.y134{bottom:534.786667pt;}
.y95{bottom:535.106667pt;}
.y12{bottom:538.946667pt;}
.ye2{bottom:539.586667pt;}
.y10b{bottom:541.986667pt;}
.y6e{bottom:542.466667pt;}
.y41{bottom:545.346667pt;}
.y133{bottom:550.466667pt;}
.y11{bottom:554.626667pt;}
.ye1{bottom:555.266667pt;}
.y6d{bottom:557.986667pt;}
.y94{bottom:558.626667pt;}
.yba{bottom:559.106667pt;}
.y40{bottom:561.026667pt;}
.y10a{bottom:565.666667pt;}
.y132{bottom:565.986667pt;}
.y10{bottom:570.146667pt;}
.ye0{bottom:570.786667pt;}
.y6c{bottom:573.666667pt;}
.yb9{bottom:576.386667pt;}
.y3f{bottom:576.706667pt;}
.y109{bottom:581.373333pt;}
.yf{bottom:585.853333pt;}
.ydf{bottom:586.493333pt;}
.yb8{bottom:588.893333pt;}
.y131{bottom:589.693333pt;}
.y93{bottom:592.733333pt;}
.y6b{bottom:597.213333pt;}
.y3e{bottom:600.253333pt;}
.ye{bottom:601.533333pt;}
.yde{bottom:602.173333pt;}
.y108{bottom:605.053333pt;}
.y130{bottom:605.373333pt;}
.yb7{bottom:612.253333pt;}
.ydd{bottom:617.693333pt;}
.y12f{bottom:620.893333pt;}
.yd{bottom:625.213333pt;}
.y6a{bottom:628.893333pt;}
.y3d{bottom:632.093333pt;}
.ydc{bottom:633.373333pt;}
.y92{bottom:635.773333pt;}
.y12e{bottom:636.573333pt;}
.y69{bottom:644.573333pt;}
.y107{bottom:648.253333pt;}
.ydb{bottom:649.053333pt;}
.y91{bottom:651.453333pt;}
.yb6{bottom:652.093333pt;}
.y12d{bottom:660.093333pt;}
.y68{bottom:660.253333pt;}
.y106{bottom:664.253333pt;}
.yda{bottom:664.573333pt;}
.yc{bottom:668.253333pt;}
.y3c{bottom:674.973333pt;}
.y90{bottom:675.133333pt;}
.y67{bottom:675.773333pt;}
.y14e{bottom:683.773333pt;}
.y105{bottom:688.413333pt;}
.y3b{bottom:691.293333pt;}
.y66{bottom:691.453333pt;}
.yb5{bottom:692.093333pt;}
.yd9{bottom:696.253333pt;}
.y12c{bottom:699.453333pt;}
.yb{bottom:699.933333pt;}
.y8f{bottom:706.653333pt;}
.y65{bottom:707.133333pt;}
.y14d{bottom:707.453333pt;}
.yd8{bottom:711.933333pt;}
.y12b{bottom:715.133333pt;}
.y3a{bottom:715.773333pt;}
.y104{bottom:721.213333pt;}
.y8e{bottom:722.333333pt;}
.y64{bottom:722.813333pt;}
.y14c{bottom:723.133333pt;}
.yd7{bottom:727.613333pt;}
.ya{bottom:731.773333pt;}
.yb4{bottom:731.933333pt;}
.y63{bottom:738.333333pt;}
.y12a{bottom:738.653333pt;}
.yd6{bottom:743.133333pt;}
.y103{bottom:745.213333pt;}
.y8d{bottom:746.013333pt;}
.y14b{bottom:746.653333pt;}
.y39{bottom:747.453333pt;}
.y62{bottom:754.013333pt;}
.y129{bottom:754.333333pt;}
.yd5{bottom:758.813333pt;}
.y14a{bottom:762.333333pt;}
.y38{bottom:763.133333pt;}
.y9{bottom:763.773333pt;}
.yb2{bottom:771.933333pt;}
.y61{bottom:777.533333pt;}
.y128{bottom:778.013333pt;}
.y102{bottom:778.333333pt;}
.y37{bottom:778.813333pt;}
.y8{bottom:783.133333pt;}
.yd4{bottom:790.333333pt;}
.y8c{bottom:793.213333pt;}
.y127{bottom:793.693333pt;}
.y36{bottom:794.333333pt;}
.y7{bottom:795.773333pt;}
.y149{bottom:801.573333pt;}
.yd3{bottom:806.053333pt;}
.y8b{bottom:808.933333pt;}
.y60{bottom:809.253333pt;}
.y35{bottom:810.053333pt;}
.yb0{bottom:811.973333pt;}
.y6{bottom:815.173333pt;}
.y126{bottom:817.253333pt;}
.y101{bottom:821.253333pt;}
.yd2{bottom:821.733333pt;}
.y5f{bottom:824.933333pt;}
.y148{bottom:825.253333pt;}
.y34{bottom:825.733333pt;}
.y8a{bottom:832.453333pt;}
.y125{bottom:832.933333pt;}
.y100{bottom:836.933333pt;}
.yd1{bottom:837.413333pt;}
.y5e{bottom:840.613333pt;}
.y147{bottom:840.933333pt;}
.y33{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yff{bottom:852.613333pt;}
.yd0{bottom:852.933333pt;}
.y5d{bottom:856.133333pt;}
.y124{bottom:856.453333pt;}
.y32{bottom:856.933333pt;}
.y89{bottom:864.133333pt;}
.y146{bottom:864.453333pt;}
.yac{bottom:867.493333pt;}
.yfe{bottom:868.293333pt;}
.ycf{bottom:868.613333pt;}
.y123{bottom:872.133333pt;}
.y31{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.y5c{bottom:879.813333pt;}
.y145{bottom:880.133333pt;}
.yfd{bottom:883.973333pt;}
.yce{bottom:884.293333pt;}
.y30{bottom:888.133333pt;}
.y88{bottom:895.493333pt;}
.y122{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.ycd{bottom:899.973333pt;}
.y2f{bottom:903.813333pt;}
.yae{bottom:907.333333pt;}
.yfc{bottom:907.653333pt;}
.y5b{bottom:911.493333pt;}
.y87{bottom:919.013333pt;}
.y2e{bottom:919.493333pt;}
.ycc{bottom:923.653333pt;}
.y5a{bottom:927.173333pt;}
.y2d{bottom:935.173333pt;}
.y144{bottom:943.013333pt;}
.y2c{bottom:950.693333pt;}
.y59{bottom:958.693333pt;}
.y86{bottom:966.373333pt;}
.ycb{bottom:966.693333pt;}
.y58{bottom:974.373333pt;}
.y2b{bottom:982.373333pt;}
.y57{bottom:990.053333pt;}
.y85{bottom:997.893333pt;}
.y2a{bottom:998.053333pt;}
.y29{bottom:1013.573333pt;}
.y27{bottom:1061.600000pt;}
.h11{height:23.520000pt;}
.hf{height:23.680000pt;}
.h10{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.h17{height:36.305625pt;}
.h13{height:39.200000pt;}
.h15{height:39.232000pt;}
.h16{height:39.360000pt;}
.h7{height:44.975625pt;}
.h5{height:49.852500pt;}
.hc{height:52.990313pt;}
.h8{height:54.187500pt;}
.ha{height:54.598989pt;}
.h14{height:54.880000pt;}
.h9{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:63.399375pt;}
.h12{height:63.520000pt;}
.hd{height:65.781915pt;}
.he{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:68.832000pt;}
.w11{width:84.480000pt;}
.w13{width:85.120000pt;}
.w10{width:86.272000pt;}
.w12{width:87.232000pt;}
.wb{width:90.432000pt;}
.wf{width:91.040000pt;}
.we{width:91.072000pt;}
.w8{width:93.312000pt;}
.w6{width:93.792000pt;}
.wc{width:96.800000pt;}
.w9{width:97.760000pt;}
.wa{width:97.792000pt;}
.w5{width:130.592000pt;}
.wd{width:142.426667pt;}
.w4{width:196.986667pt;}
.w7{width:577.373333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:3.520000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:62.879988pt;}
.x1b{left:65.599988pt;}
.x1c{left:69.439988pt;}
.x10{left:70.879988pt;}
.x1a{left:78.111988pt;}
.x4{left:84.511988pt;}
.x11{left:88.991988pt;}
.x1e{left:98.911988pt;}
.x9{left:155.546667pt;}
.x2{left:171.066655pt;}
.x5{left:198.106667pt;}
.x14{left:204.186667pt;}
.x1d{left:212.986655pt;}
.xa{left:249.506667pt;}
.x7{left:267.586667pt;}
.x15{left:295.906667pt;}
.xb{left:348.066667pt;}
.x12{left:367.266655pt;}
.x16{left:387.586667pt;}
.xc{left:446.493333pt;}
.x8{left:465.373333pt;}
.x17{left:474.493333pt;}
.xd{left:544.893333pt;}
.x18{left:559.773333pt;}
.xe{left:636.133333pt;}
.x19{left:647.813333pt;}
.x3{left:711.493322pt;}
}




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