
    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_335a7b54b8df3585de98d332.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_1af3629ccb197baff7df4efb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_c01ec303cd472fef6e9bd54c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_f62a0c6da4b18111a250fb28.woff')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsd{word-spacing:-55.944000px;}
.ws53{word-spacing:-38.878200px;}
.ws6{word-spacing:-38.657700px;}
.ws3e{word-spacing:-38.655900px;}
.ws90{word-spacing:-38.654100px;}
.ws79{word-spacing:-38.653500px;}
.ws80{word-spacing:-38.650800px;}
.wsc{word-spacing:-38.650500px;}
.wsa3{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws7f{word-spacing:-38.647200px;}
.ws9e{word-spacing:-38.524200px;}
.ws6e{word-spacing:-38.439000px;}
.wsb{word-spacing:-38.435400px;}
.ws67{word-spacing:-38.434500px;}
.ws3{word-spacing:-38.374200px;}
.wsc6{word-spacing:-38.363100px;}
.wsa{word-spacing:-38.340900px;}
.ws21{word-spacing:-38.310000px;}
.ws8d{word-spacing:-38.302800px;}
.ws72{word-spacing:-38.301900px;}
.ws6d{word-spacing:-38.300400px;}
.wsc0{word-spacing:-38.299500px;}
.ws7d{word-spacing:-38.298600px;}
.ws48{word-spacing:-38.298300px;}
.ws3a{word-spacing:-38.297700px;}
.ws7b{word-spacing:-38.295900px;}
.ws64{word-spacing:-38.295000px;}
.ws91{word-spacing:-38.294100px;}
.ws7a{word-spacing:-38.293200px;}
.wsb1{word-spacing:-38.292300px;}
.ws44{word-spacing:-38.290500px;}
.ws97{word-spacing:-38.289900px;}
.ws17{word-spacing:-38.286300px;}
.ws88{word-spacing:-38.222100px;}
.wsa0{word-spacing:-38.166000px;}
.wsa1{word-spacing:-38.160000px;}
.ws8e{word-spacing:-38.158200px;}
.wsa9{word-spacing:-38.157000px;}
.ws93{word-spacing:-38.152800px;}
.ws60{word-spacing:-38.152500px;}
.ws8b{word-spacing:-38.149200px;}
.wscc{word-spacing:-38.143200px;}
.ws7c{word-spacing:-38.141100px;}
.ws7e{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws29{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.ws2b{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws8a{word-spacing:-37.926900px;}
.ws9{word-spacing:-37.728000px;}
.ws89{word-spacing:-37.647900px;}
.wsb9{word-spacing:-37.585500px;}
.ws95{word-spacing:-37.574100px;}
.ws8c{word-spacing:-37.571400px;}
.ws1d{word-spacing:-37.434600px;}
.ws6a{word-spacing:-37.422000px;}
.ws25{word-spacing:-36.720000px;}
.ws9a{word-spacing:-36.494100px;}
.wsaf{word-spacing:-36.486000px;}
.ws5b{word-spacing:-36.137400px;}
.ws24{word-spacing:-35.773800px;}
.ws6f{word-spacing:-35.767800px;}
.ws78{word-spacing:-35.419500px;}
.ws31{word-spacing:-35.274300px;}
.wsb7{word-spacing:-35.272200px;}
.wsa8{word-spacing:-35.252100px;}
.ws52{word-spacing:-35.064000px;}
.wsb3{word-spacing:-34.700400px;}
.ws34{word-spacing:-34.697700px;}
.wsad{word-spacing:-34.696800px;}
.ws3d{word-spacing:-34.344000px;}
.wsc5{word-spacing:-33.962700px;}
.wsa6{word-spacing:-33.613200px;}
.ws8{word-spacing:-33.547800px;}
.ws6c{word-spacing:-33.258600px;}
.ws3b{word-spacing:-33.251700px;}
.ws4e{word-spacing:-33.114300px;}
.ws42{word-spacing:-32.884200px;}
.ws1a{word-spacing:-32.823600px;}
.ws12{word-spacing:-32.537700px;}
.wsa5{word-spacing:-32.404200px;}
.ws5a{word-spacing:-32.184000px;}
.ws84{word-spacing:-31.819500px;}
.wsab{word-spacing:-31.809000px;}
.ws4a{word-spacing:-31.668300px;}
.ws62{word-spacing:-31.662300px;}
.ws49{word-spacing:-31.524300px;}
.ws65{word-spacing:-31.097700px;}
.ws35{word-spacing:-31.089600px;}
.ws71{word-spacing:-30.953700px;}
.ws83{word-spacing:-30.881700px;}
.ws15{word-spacing:-30.744000px;}
.wsa4{word-spacing:-30.724200px;}
.ws57{word-spacing:-30.379500px;}
.wsa2{word-spacing:-30.226500px;}
.wsc9{word-spacing:-30.024000px;}
.ws5f{word-spacing:-30.019500px;}
.wse{word-spacing:-29.304000px;}
.wsbc{word-spacing:-28.928700px;}
.wsc2{word-spacing:-28.786500px;}
.wsf{word-spacing:-28.777500px;}
.ws39{word-spacing:-28.584000px;}
.ws11{word-spacing:-28.359000px;}
.ws20{word-spacing:-28.216800px;}
.ws26{word-spacing:-28.077300px;}
.wsc1{word-spacing:-27.864000px;}
.ws30{word-spacing:-27.144000px;}
.wsb5{word-spacing:-26.646000px;}
.ws5e{word-spacing:-26.052600px;}
.ws27{word-spacing:-25.920000px;}
.ws6b{word-spacing:-25.704000px;}
.ws1b{word-spacing:-24.990000px;}
.ws28{word-spacing:-24.897000px;}
.ws87{word-spacing:-24.680700px;}
.ws2a{word-spacing:-24.480000px;}
.ws4c{word-spacing:-24.257700px;}
.ws2e{word-spacing:-24.249300px;}
.wsb8{word-spacing:-23.893200px;}
.ws2d{word-spacing:-23.544000px;}
.ws77{word-spacing:-23.178600px;}
.ws2c{word-spacing:-22.830000px;}
.wscd{word-spacing:-22.824000px;}
.ws76{word-spacing:-22.527000px;}
.ws70{word-spacing:-22.320000px;}
.ws59{word-spacing:-22.023900px;}
.ws1c{word-spacing:-22.017600px;}
.ws3c{word-spacing:-21.390000px;}
.ws69{word-spacing:-21.231900px;}
.wsbe{word-spacing:-20.664000px;}
.ws61{word-spacing:-20.305500px;}
.ws73{word-spacing:-20.145900px;}
.ws2f{word-spacing:-20.084100px;}
.wsca{word-spacing:-19.944000px;}
.ws10{word-spacing:-19.935900px;}
.wsac{word-spacing:-18.847800px;}
.wsc7{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.472500px;}
.wsb2{word-spacing:-17.784000px;}
.wscb{word-spacing:-17.408100px;}
.ws38{word-spacing:-17.070000px;}
.ws98{word-spacing:-16.987200px;}
.ws5c{word-spacing:-16.699500px;}
.wsa7{word-spacing:-15.826500px;}
.wsbf{word-spacing:-14.515200px;}
.ws50{word-spacing:-13.815900px;}
.ws85{word-spacing:-13.812300px;}
.ws16{word-spacing:-13.464000px;}
.ws33{word-spacing:-12.944700px;}
.ws41{word-spacing:-12.744000px;}
.wsc8{word-spacing:-12.155700px;}
.ws43{word-spacing:-12.013200px;}
.ws8f{word-spacing:-10.582800px;}
.ws4f{word-spacing:-9.864000px;}
.ws63{word-spacing:-9.715200px;}
.ws68{word-spacing:-9.635400px;}
.ws4b{word-spacing:-9.139500px;}
.ws66{word-spacing:-9.138600px;}
.ws36{word-spacing:-8.767800px;}
.ws74{word-spacing:-6.990000px;}
.ws54{word-spacing:-5.098500px;}
.wsaa{word-spacing:-4.815900px;}
.ws81{word-spacing:-4.317900px;}
.ws55{word-spacing:-4.311300px;}
.ws13{word-spacing:-3.378600px;}
.ws40{word-spacing:-2.294700px;}
.wsce{word-spacing:-1.944000px;}
.ws23{word-spacing:-1.648800px;}
.ws22{word-spacing:-1.440000px;}
.wsb4{word-spacing:1.299000px;}
.ws58{word-spacing:2.028600px;}
.ws1e{word-spacing:3.182400px;}
.wsbd{word-spacing:3.465300px;}
.ws18{word-spacing:3.751200px;}
.ws19{word-spacing:3.810000px;}
.ws46{word-spacing:4.339200px;}
.ws47{word-spacing:4.346700px;}
.ws5d{word-spacing:6.489900px;}
.ws1f{word-spacing:8.634000px;}
.ws9d{word-spacing:8.850000px;}
.wsc4{word-spacing:9.801000px;}
.ws92{word-spacing:10.081800px;}
.wsae{word-spacing:11.393100px;}
.ws4d{word-spacing:11.736000px;}
.wsb0{word-spacing:14.118600px;}
.ws51{word-spacing:14.616000px;}
.wsc3{word-spacing:15.120900px;}
.ws32{word-spacing:15.703200px;}
.ws56{word-spacing:16.063200px;}
.ws9b{word-spacing:16.785900px;}
.ws45{word-spacing:17.137200px;}
.ws86{word-spacing:17.504100px;}
.ws14{word-spacing:18.361800px;}
.ws94{word-spacing:18.584100px;}
.ws75{word-spacing:18.937800px;}
.ws3f{word-spacing:25.276500px;}
.wsbb{word-spacing:27.232200px;}
.ws37{word-spacing:27.602100px;}
.wsb6{word-spacing:28.664400px;}
.wsba{word-spacing:40.265400px;}
.ws82{word-spacing:57.096000px;}
.ws9f{word-spacing:61.428600px;}
.ws9c{word-spacing:65.010000px;}
.ws96{word-spacing:246.108300px;}
.ws99{word-spacing:253.163700px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._d{width:20.087400px;}
._12{width:21.373800px;}
._14{width:22.818300px;}
._1c{width:23.832000px;}
._7{width:24.833700px;}
._a{width:26.235600px;}
._5{width:28.224000px;}
._10{width:29.656800px;}
._21{width:30.997200px;}
._b{width:32.628000px;}
._13{width:33.652200px;}
._c{width:34.992000px;}
._1{width:36.000000px;}
._6{width:37.713900px;}
._26{width:38.829900px;}
._18{width:40.210800px;}
._28{width:42.608400px;}
._15{width:44.067000px;}
._1a{width:45.222000px;}
._22{width:47.659200px;}
._16{width:48.867000px;}
._23{width:50.455200px;}
._1e{width:52.693800px;}
._2b{width:54.000000px;}
._11{width:56.084400px;}
._1f{width:59.226000px;}
._e{width:60.453600px;}
._20{width:63.687300px;}
._f{width:65.793600px;}
._2a{width:67.167000px;}
._1b{width:68.848800px;}
._29{width:69.983100px;}
._1d{width:71.784000px;}
._8{width:75.321000px;}
._9{width:76.668000px;}
._19{width:82.368000px;}
._17{width:84.983100px;}
._27{width:97.470600px;}
._24{width:114.784800px;}
._25{width:118.470600px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:3.750000px;}
.y89{bottom:3.780000px;}
.y8a{bottom:3.811500px;}
.y8c{bottom:3.840000px;}
.y98{bottom:3.855000px;}
.yb3{bottom:3.870000px;}
.y8e{bottom:3.871500px;}
.y61{bottom:3.900000px;}
.ya9{bottom:3.930000px;}
.y9b{bottom:3.990000px;}
.y5d{bottom:4.350000px;}
.y7{bottom:4.471500px;}
.y65{bottom:4.486500px;}
.y63{bottom:4.500000px;}
.y5f{bottom:4.515000px;}
.yb6{bottom:4.575000px;}
.y5b{bottom:8.325000px;}
.y9c{bottom:14.250000px;}
.ya6{bottom:14.340000px;}
.y87{bottom:14.611500px;}
.y68{bottom:19.155000px;}
.ya8{bottom:24.450000px;}
.y9a{bottom:24.511500px;}
.ya0{bottom:24.540000px;}
.ya2{bottom:24.570000px;}
.ya4{bottom:24.600000px;}
.y93{bottom:24.855000px;}
.yac{bottom:26.161500px;}
.yb1{bottom:26.821500px;}
.ya5{bottom:35.040000px;}
.ya3{bottom:45.300000px;}
.y97{bottom:45.615000px;}
.yab{bottom:46.680000px;}
.yb0{bottom:47.520000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y96{bottom:87.375000px;}
.y52{bottom:101.596500px;}
.y92{bottom:110.400000px;}
.y51{bottom:122.296500px;}
.y95{bottom:128.955000px;}
.y9e{bottom:129.540000px;}
.yc9{bottom:133.275000px;}
.y70{bottom:141.015000px;}
.y29{bottom:141.736500px;}
.y50{bottom:142.996500px;}
.y90{bottom:152.925000px;}
.yc8{bottom:153.975000px;}
.y6f{bottom:161.715000px;}
.y4f{bottom:163.696500px;}
.y8f{bottom:174.375000px;}
.yc7{bottom:174.675000px;}
.y6e{bottom:182.415000px;}
.yd5{bottom:182.596500px;}
.y28{bottom:183.496500px;}
.yc6{bottom:195.375000px;}
.y8d{bottom:195.825000px;}
.y6d{bottom:203.115000px;}
.yd4{bottom:203.295000px;}
.y27{bottom:204.196500px;}
.y4e{bottom:205.275000px;}
.y8b{bottom:217.275000px;}
.yd3{bottom:223.996500px;}
.y26{bottom:224.896500px;}
.y4d{bottom:225.975000px;}
.yc5{bottom:236.955000px;}
.y86{bottom:238.725000px;}
.y6c{bottom:244.875000px;}
.y25{bottom:245.596500px;}
.y4c{bottom:246.675000px;}
.yc4{bottom:257.655000px;}
.y88{bottom:260.175000px;}
.y6b{bottom:265.575000px;}
.y24{bottom:266.295000px;}
.y4b{bottom:267.375000px;}
.y6a{bottom:286.275000px;}
.y23{bottom:286.996500px;}
.y4a{bottom:288.075000px;}
.yc3{bottom:299.415000px;}
.y85{bottom:306.436500px;}
.y69{bottom:306.975000px;}
.y22{bottom:307.696500px;}
.y49{bottom:308.775000px;}
.yc2{bottom:320.115000px;}
.y84{bottom:327.136500px;}
.y48{bottom:329.475000px;}
.yc1{bottom:340.815000px;}
.y67{bottom:344.700000px;}
.yd2{bottom:348.736500px;}
.y21{bottom:349.275000px;}
.y47{bottom:350.175000px;}
.yc0{bottom:361.515000px;}
.y83{bottom:368.896500px;}
.yd1{bottom:369.436500px;}
.y20{bottom:369.975000px;}
.y46{bottom:370.875000px;}
.y66{bottom:380.625000px;}
.ybf{bottom:382.215000px;}
.yd0{bottom:390.136500px;}
.y45{bottom:391.575000px;}
.y64{bottom:401.850000px;}
.ybe{bottom:402.915000px;}
.y82{bottom:410.475000px;}
.ycf{bottom:410.836500px;}
.y1f{bottom:411.736500px;}
.y62{bottom:423.075000px;}
.ybd{bottom:423.615000px;}
.y81{bottom:431.175000px;}
.yce{bottom:431.536500px;}
.y1e{bottom:432.436500px;}
.y44{bottom:433.336500px;}
.y60{bottom:444.375000px;}
.y80{bottom:451.875000px;}
.ycd{bottom:452.236500px;}
.y1d{bottom:453.136500px;}
.y43{bottom:454.036500px;}
.y5e{bottom:465.000000px;}
.ybc{bottom:465.375000px;}
.y7f{bottom:472.575000px;}
.y1c{bottom:473.836500px;}
.y42{bottom:474.736500px;}
.ybb{bottom:486.075000px;}
.y5c{bottom:486.225000px;}
.y1b{bottom:494.536500px;}
.yba{bottom:506.775000px;}
.y5a{bottom:507.450000px;}
.y7e{bottom:514.336500px;}
.y1a{bottom:515.236500px;}
.y41{bottom:516.496500px;}
.yb9{bottom:527.475000px;}
.y7d{bottom:535.036500px;}
.ycc{bottom:535.575000px;}
.y19{bottom:535.936500px;}
.y40{bottom:537.195000px;}
.yb8{bottom:548.175000px;}
.y7c{bottom:555.736500px;}
.ycb{bottom:556.275000px;}
.y18{bottom:556.636500px;}
.y59{bottom:557.536500px;}
.y3f{bottom:557.896500px;}
.yb7{bottom:568.875000px;}
.y7b{bottom:576.436500px;}
.y3e{bottom:578.596500px;}
.y7a{bottom:597.136500px;}
.y17{bottom:598.396500px;}
.y3d{bottom:599.295000px;}
.yb5{bottom:606.600000px;}
.yaf{bottom:606.675000px;}
.y16{bottom:619.096500px;}
.y3c{bottom:619.996500px;}
.yb4{bottom:628.875000px;}
.y79{bottom:638.896500px;}
.y58{bottom:640.695000px;}
.yb2{bottom:650.325000px;}
.y15{bottom:660.675000px;}
.y3b{bottom:661.575000px;}
.yde{bottom:662.295000px;}
.yaa{bottom:671.775000px;}
.y78{bottom:680.475000px;}
.y14{bottom:681.375000px;}
.y3a{bottom:682.275000px;}
.ydd{bottom:682.996500px;}
.yae{bottom:693.225000px;}
.y13{bottom:702.075000px;}
.y39{bottom:702.975000px;}
.ydc{bottom:703.695000px;}
.yad{bottom:714.675000px;}
.y77{bottom:722.236500px;}
.y12{bottom:722.775000px;}
.y38{bottom:723.675000px;}
.ydb{bottom:724.396500px;}
.ya7{bottom:736.125000px;}
.y11{bottom:743.475000px;}
.yda{bottom:745.096500px;}
.y76{bottom:763.996500px;}
.y10{bottom:764.175000px;}
.y37{bottom:765.436500px;}
.yd9{bottom:765.795000px;}
.y9d{bottom:778.275000px;}
.yf{bottom:784.875000px;}
.y36{bottom:786.136500px;}
.yd8{bottom:786.496500px;}
.ye{bottom:805.575000px;}
.y35{bottom:806.836500px;}
.yd7{bottom:807.195000px;}
.yd{bottom:826.275000px;}
.y34{bottom:827.536500px;}
.yd6{bottom:827.895000px;}
.ya1{bottom:841.125000px;}
.y75{bottom:847.336500px;}
.y33{bottom:848.236500px;}
.y57{bottom:848.596500px;}
.y56{bottom:869.295000px;}
.y9f{bottom:883.275000px;}
.y74{bottom:889.095000px;}
.y32{bottom:889.995000px;}
.yc{bottom:909.795000px;}
.y31{bottom:910.695000px;}
.y99{bottom:925.425000px;}
.y73{bottom:930.675000px;}
.y30{bottom:931.395000px;}
.yb{bottom:951.375000px;}
.y2f{bottom:952.095000px;}
.y55{bottom:952.275000px;}
.y94{bottom:967.500000px;}
.y72{bottom:972.436500px;}
.y2e{bottom:972.795000px;}
.y54{bottom:972.975000px;}
.yca{bottom:993.495000px;}
.y53{bottom:993.675000px;}
.y71{bottom:1014.195000px;}
.y2d{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2c{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2b{bottom:1055.775000px;}
.y2a{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h9{height:20.625000px;}
.h8{height:21.225000px;}
.hc{height:21.375000px;}
.h14{height:22.200000px;}
.h7{height:25.200000px;}
.ha{height:35.925000px;}
.hf{height:42.075000px;}
.hd{height:42.450000px;}
.hb{height:42.825000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h2{height:62.261719px;}
.h11{height:62.775000px;}
.h6{height:63.457031px;}
.h12{height:64.275000px;}
.h13{height:65.025000px;}
.he{height:146.475000px;}
.h10{height:147.075000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w7{width:202.050000px;}
.w6{width:202.125000px;}
.w4{width:297.375000px;}
.w3{width:328.275000px;}
.w5{width:404.100000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.145000px;}
.xb{left:61.260000px;}
.xa{left:119.100000px;}
.x1{left:127.620000px;}
.x10{left:154.620000px;}
.x5{left:156.960000px;}
.x8{left:170.100000px;}
.x4{left:172.980000px;}
.x9{left:180.720000px;}
.xe{left:416.775000px;}
.xc{left:447.300000px;}
.x6{left:465.480000px;}
.x3{left:470.025000px;}
.xf{left:618.825000px;}
.x2{left:731.160000px;}
.x7{left:741.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd{word-spacing:-49.728000pt;}
.ws53{word-spacing:-34.558400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws3e{word-spacing:-34.360800pt;}
.ws90{word-spacing:-34.359200pt;}
.ws79{word-spacing:-34.358667pt;}
.ws80{word-spacing:-34.356267pt;}
.wsc{word-spacing:-34.356000pt;}
.wsa3{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws7f{word-spacing:-34.353067pt;}
.ws9e{word-spacing:-34.243733pt;}
.ws6e{word-spacing:-34.168000pt;}
.wsb{word-spacing:-34.164800pt;}
.ws67{word-spacing:-34.164000pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc6{word-spacing:-34.100533pt;}
.wsa{word-spacing:-34.080800pt;}
.ws21{word-spacing:-34.053333pt;}
.ws8d{word-spacing:-34.046933pt;}
.ws72{word-spacing:-34.046133pt;}
.ws6d{word-spacing:-34.044800pt;}
.wsc0{word-spacing:-34.044000pt;}
.ws7d{word-spacing:-34.043200pt;}
.ws48{word-spacing:-34.042933pt;}
.ws3a{word-spacing:-34.042400pt;}
.ws7b{word-spacing:-34.040800pt;}
.ws64{word-spacing:-34.040000pt;}
.ws91{word-spacing:-34.039200pt;}
.ws7a{word-spacing:-34.038400pt;}
.wsb1{word-spacing:-34.037600pt;}
.ws44{word-spacing:-34.036000pt;}
.ws97{word-spacing:-34.035467pt;}
.ws17{word-spacing:-34.032267pt;}
.ws88{word-spacing:-33.975200pt;}
.wsa0{word-spacing:-33.925333pt;}
.wsa1{word-spacing:-33.920000pt;}
.ws8e{word-spacing:-33.918400pt;}
.wsa9{word-spacing:-33.917333pt;}
.ws93{word-spacing:-33.913600pt;}
.ws60{word-spacing:-33.913333pt;}
.ws8b{word-spacing:-33.910400pt;}
.wscc{word-spacing:-33.905067pt;}
.ws7c{word-spacing:-33.903200pt;}
.ws7e{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws29{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2b{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws8a{word-spacing:-33.712800pt;}
.ws9{word-spacing:-33.536000pt;}
.ws89{word-spacing:-33.464800pt;}
.wsb9{word-spacing:-33.409333pt;}
.ws95{word-spacing:-33.399200pt;}
.ws8c{word-spacing:-33.396800pt;}
.ws1d{word-spacing:-33.275200pt;}
.ws6a{word-spacing:-33.264000pt;}
.ws25{word-spacing:-32.640000pt;}
.ws9a{word-spacing:-32.439200pt;}
.wsaf{word-spacing:-32.432000pt;}
.ws5b{word-spacing:-32.122133pt;}
.ws24{word-spacing:-31.798933pt;}
.ws6f{word-spacing:-31.793600pt;}
.ws78{word-spacing:-31.484000pt;}
.ws31{word-spacing:-31.354933pt;}
.wsb7{word-spacing:-31.353067pt;}
.wsa8{word-spacing:-31.335200pt;}
.ws52{word-spacing:-31.168000pt;}
.wsb3{word-spacing:-30.844800pt;}
.ws34{word-spacing:-30.842400pt;}
.wsad{word-spacing:-30.841600pt;}
.ws3d{word-spacing:-30.528000pt;}
.wsc5{word-spacing:-30.189067pt;}
.wsa6{word-spacing:-29.878400pt;}
.ws8{word-spacing:-29.820267pt;}
.ws6c{word-spacing:-29.563200pt;}
.ws3b{word-spacing:-29.557067pt;}
.ws4e{word-spacing:-29.434933pt;}
.ws42{word-spacing:-29.230400pt;}
.ws1a{word-spacing:-29.176533pt;}
.ws12{word-spacing:-28.922400pt;}
.wsa5{word-spacing:-28.803733pt;}
.ws5a{word-spacing:-28.608000pt;}
.ws84{word-spacing:-28.284000pt;}
.wsab{word-spacing:-28.274667pt;}
.ws4a{word-spacing:-28.149600pt;}
.ws62{word-spacing:-28.144267pt;}
.ws49{word-spacing:-28.021600pt;}
.ws65{word-spacing:-27.642400pt;}
.ws35{word-spacing:-27.635200pt;}
.ws71{word-spacing:-27.514400pt;}
.ws83{word-spacing:-27.450400pt;}
.ws15{word-spacing:-27.328000pt;}
.wsa4{word-spacing:-27.310400pt;}
.ws57{word-spacing:-27.004000pt;}
.wsa2{word-spacing:-26.868000pt;}
.wsc9{word-spacing:-26.688000pt;}
.ws5f{word-spacing:-26.684000pt;}
.wse{word-spacing:-26.048000pt;}
.wsbc{word-spacing:-25.714400pt;}
.wsc2{word-spacing:-25.588000pt;}
.wsf{word-spacing:-25.580000pt;}
.ws39{word-spacing:-25.408000pt;}
.ws11{word-spacing:-25.208000pt;}
.ws20{word-spacing:-25.081600pt;}
.ws26{word-spacing:-24.957600pt;}
.wsc1{word-spacing:-24.768000pt;}
.ws30{word-spacing:-24.128000pt;}
.wsb5{word-spacing:-23.685333pt;}
.ws5e{word-spacing:-23.157867pt;}
.ws27{word-spacing:-23.040000pt;}
.ws6b{word-spacing:-22.848000pt;}
.ws1b{word-spacing:-22.213333pt;}
.ws28{word-spacing:-22.130667pt;}
.ws87{word-spacing:-21.938400pt;}
.ws2a{word-spacing:-21.760000pt;}
.ws4c{word-spacing:-21.562400pt;}
.ws2e{word-spacing:-21.554933pt;}
.wsb8{word-spacing:-21.238400pt;}
.ws2d{word-spacing:-20.928000pt;}
.ws77{word-spacing:-20.603200pt;}
.ws2c{word-spacing:-20.293333pt;}
.wscd{word-spacing:-20.288000pt;}
.ws76{word-spacing:-20.024000pt;}
.ws70{word-spacing:-19.840000pt;}
.ws59{word-spacing:-19.576800pt;}
.ws1c{word-spacing:-19.571200pt;}
.ws3c{word-spacing:-19.013333pt;}
.ws69{word-spacing:-18.872800pt;}
.wsbe{word-spacing:-18.368000pt;}
.ws61{word-spacing:-18.049333pt;}
.ws73{word-spacing:-17.907467pt;}
.ws2f{word-spacing:-17.852533pt;}
.wsca{word-spacing:-17.728000pt;}
.ws10{word-spacing:-17.720800pt;}
.wsac{word-spacing:-16.753600pt;}
.wsc7{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.420000pt;}
.wsb2{word-spacing:-15.808000pt;}
.wscb{word-spacing:-15.473867pt;}
.ws38{word-spacing:-15.173333pt;}
.ws98{word-spacing:-15.099733pt;}
.ws5c{word-spacing:-14.844000pt;}
.wsa7{word-spacing:-14.068000pt;}
.wsbf{word-spacing:-12.902400pt;}
.ws50{word-spacing:-12.280800pt;}
.ws85{word-spacing:-12.277600pt;}
.ws16{word-spacing:-11.968000pt;}
.ws33{word-spacing:-11.506400pt;}
.ws41{word-spacing:-11.328000pt;}
.wsc8{word-spacing:-10.805067pt;}
.ws43{word-spacing:-10.678400pt;}
.ws8f{word-spacing:-9.406933pt;}
.ws4f{word-spacing:-8.768000pt;}
.ws63{word-spacing:-8.635733pt;}
.ws68{word-spacing:-8.564800pt;}
.ws4b{word-spacing:-8.124000pt;}
.ws66{word-spacing:-8.123200pt;}
.ws36{word-spacing:-7.793600pt;}
.ws74{word-spacing:-6.213333pt;}
.ws54{word-spacing:-4.532000pt;}
.wsaa{word-spacing:-4.280800pt;}
.ws81{word-spacing:-3.838133pt;}
.ws55{word-spacing:-3.832267pt;}
.ws13{word-spacing:-3.003200pt;}
.ws40{word-spacing:-2.039733pt;}
.wsce{word-spacing:-1.728000pt;}
.ws23{word-spacing:-1.465600pt;}
.ws22{word-spacing:-1.280000pt;}
.wsb4{word-spacing:1.154667pt;}
.ws58{word-spacing:1.803200pt;}
.ws1e{word-spacing:2.828800pt;}
.wsbd{word-spacing:3.080267pt;}
.ws18{word-spacing:3.334400pt;}
.ws19{word-spacing:3.386667pt;}
.ws46{word-spacing:3.857067pt;}
.ws47{word-spacing:3.863733pt;}
.ws5d{word-spacing:5.768800pt;}
.ws1f{word-spacing:7.674667pt;}
.ws9d{word-spacing:7.866667pt;}
.wsc4{word-spacing:8.712000pt;}
.ws92{word-spacing:8.961600pt;}
.wsae{word-spacing:10.127200pt;}
.ws4d{word-spacing:10.432000pt;}
.wsb0{word-spacing:12.549867pt;}
.ws51{word-spacing:12.992000pt;}
.wsc3{word-spacing:13.440800pt;}
.ws32{word-spacing:13.958400pt;}
.ws56{word-spacing:14.278400pt;}
.ws9b{word-spacing:14.920800pt;}
.ws45{word-spacing:15.233067pt;}
.ws86{word-spacing:15.559200pt;}
.ws14{word-spacing:16.321600pt;}
.ws94{word-spacing:16.519200pt;}
.ws75{word-spacing:16.833600pt;}
.ws3f{word-spacing:22.468000pt;}
.wsbb{word-spacing:24.206400pt;}
.ws37{word-spacing:24.535200pt;}
.wsb6{word-spacing:25.479467pt;}
.wsba{word-spacing:35.791467pt;}
.ws82{word-spacing:50.752000pt;}
.ws9f{word-spacing:54.603200pt;}
.ws9c{word-spacing:57.786667pt;}
.ws96{word-spacing:218.762933pt;}
.ws99{word-spacing:225.034400pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._d{width:17.855467pt;}
._12{width:18.998933pt;}
._14{width:20.282933pt;}
._1c{width:21.184000pt;}
._7{width:22.074400pt;}
._a{width:23.320533pt;}
._5{width:25.088000pt;}
._10{width:26.361600pt;}
._21{width:27.553067pt;}
._b{width:29.002667pt;}
._13{width:29.913067pt;}
._c{width:31.104000pt;}
._1{width:32.000000pt;}
._6{width:33.523467pt;}
._26{width:34.515467pt;}
._18{width:35.742933pt;}
._28{width:37.874133pt;}
._15{width:39.170667pt;}
._1a{width:40.197333pt;}
._22{width:42.363733pt;}
._16{width:43.437333pt;}
._23{width:44.849067pt;}
._1e{width:46.838933pt;}
._2b{width:48.000000pt;}
._11{width:49.852800pt;}
._1f{width:52.645333pt;}
._e{width:53.736533pt;}
._20{width:56.610933pt;}
._f{width:58.483200pt;}
._2a{width:59.704000pt;}
._1b{width:61.198933pt;}
._29{width:62.207200pt;}
._1d{width:63.808000pt;}
._8{width:66.952000pt;}
._9{width:68.149333pt;}
._19{width:73.216000pt;}
._17{width:75.540533pt;}
._27{width:86.640533pt;}
._24{width:102.030933pt;}
._25{width:105.307200pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:3.333333pt;}
.y89{bottom:3.360000pt;}
.y8a{bottom:3.388000pt;}
.y8c{bottom:3.413333pt;}
.y98{bottom:3.426667pt;}
.yb3{bottom:3.440000pt;}
.y8e{bottom:3.441333pt;}
.y61{bottom:3.466667pt;}
.ya9{bottom:3.493333pt;}
.y9b{bottom:3.546667pt;}
.y5d{bottom:3.866667pt;}
.y7{bottom:3.974667pt;}
.y65{bottom:3.988000pt;}
.y63{bottom:4.000000pt;}
.y5f{bottom:4.013333pt;}
.yb6{bottom:4.066667pt;}
.y5b{bottom:7.400000pt;}
.y9c{bottom:12.666667pt;}
.ya6{bottom:12.746667pt;}
.y87{bottom:12.988000pt;}
.y68{bottom:17.026667pt;}
.ya8{bottom:21.733333pt;}
.y9a{bottom:21.788000pt;}
.ya0{bottom:21.813333pt;}
.ya2{bottom:21.840000pt;}
.ya4{bottom:21.866667pt;}
.y93{bottom:22.093333pt;}
.yac{bottom:23.254667pt;}
.yb1{bottom:23.841333pt;}
.ya5{bottom:31.146667pt;}
.ya3{bottom:40.266667pt;}
.y97{bottom:40.546667pt;}
.yab{bottom:41.493333pt;}
.yb0{bottom:42.240000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y96{bottom:77.666667pt;}
.y52{bottom:90.308000pt;}
.y92{bottom:98.133333pt;}
.y51{bottom:108.708000pt;}
.y95{bottom:114.626667pt;}
.y9e{bottom:115.146667pt;}
.yc9{bottom:118.466667pt;}
.y70{bottom:125.346667pt;}
.y29{bottom:125.988000pt;}
.y50{bottom:127.108000pt;}
.y90{bottom:135.933333pt;}
.yc8{bottom:136.866667pt;}
.y6f{bottom:143.746667pt;}
.y4f{bottom:145.508000pt;}
.y8f{bottom:155.000000pt;}
.yc7{bottom:155.266667pt;}
.y6e{bottom:162.146667pt;}
.yd5{bottom:162.308000pt;}
.y28{bottom:163.108000pt;}
.yc6{bottom:173.666667pt;}
.y8d{bottom:174.066667pt;}
.y6d{bottom:180.546667pt;}
.yd4{bottom:180.706667pt;}
.y27{bottom:181.508000pt;}
.y4e{bottom:182.466667pt;}
.y8b{bottom:193.133333pt;}
.yd3{bottom:199.108000pt;}
.y26{bottom:199.908000pt;}
.y4d{bottom:200.866667pt;}
.yc5{bottom:210.626667pt;}
.y86{bottom:212.200000pt;}
.y6c{bottom:217.666667pt;}
.y25{bottom:218.308000pt;}
.y4c{bottom:219.266667pt;}
.yc4{bottom:229.026667pt;}
.y88{bottom:231.266667pt;}
.y6b{bottom:236.066667pt;}
.y24{bottom:236.706667pt;}
.y4b{bottom:237.666667pt;}
.y6a{bottom:254.466667pt;}
.y23{bottom:255.108000pt;}
.y4a{bottom:256.066667pt;}
.yc3{bottom:266.146667pt;}
.y85{bottom:272.388000pt;}
.y69{bottom:272.866667pt;}
.y22{bottom:273.508000pt;}
.y49{bottom:274.466667pt;}
.yc2{bottom:284.546667pt;}
.y84{bottom:290.788000pt;}
.y48{bottom:292.866667pt;}
.yc1{bottom:302.946667pt;}
.y67{bottom:306.400000pt;}
.yd2{bottom:309.988000pt;}
.y21{bottom:310.466667pt;}
.y47{bottom:311.266667pt;}
.yc0{bottom:321.346667pt;}
.y83{bottom:327.908000pt;}
.yd1{bottom:328.388000pt;}
.y20{bottom:328.866667pt;}
.y46{bottom:329.666667pt;}
.y66{bottom:338.333333pt;}
.ybf{bottom:339.746667pt;}
.yd0{bottom:346.788000pt;}
.y45{bottom:348.066667pt;}
.y64{bottom:357.200000pt;}
.ybe{bottom:358.146667pt;}
.y82{bottom:364.866667pt;}
.ycf{bottom:365.188000pt;}
.y1f{bottom:365.988000pt;}
.y62{bottom:376.066667pt;}
.ybd{bottom:376.546667pt;}
.y81{bottom:383.266667pt;}
.yce{bottom:383.588000pt;}
.y1e{bottom:384.388000pt;}
.y44{bottom:385.188000pt;}
.y60{bottom:395.000000pt;}
.y80{bottom:401.666667pt;}
.ycd{bottom:401.988000pt;}
.y1d{bottom:402.788000pt;}
.y43{bottom:403.588000pt;}
.y5e{bottom:413.333333pt;}
.ybc{bottom:413.666667pt;}
.y7f{bottom:420.066667pt;}
.y1c{bottom:421.188000pt;}
.y42{bottom:421.988000pt;}
.ybb{bottom:432.066667pt;}
.y5c{bottom:432.200000pt;}
.y1b{bottom:439.588000pt;}
.yba{bottom:450.466667pt;}
.y5a{bottom:451.066667pt;}
.y7e{bottom:457.188000pt;}
.y1a{bottom:457.988000pt;}
.y41{bottom:459.108000pt;}
.yb9{bottom:468.866667pt;}
.y7d{bottom:475.588000pt;}
.ycc{bottom:476.066667pt;}
.y19{bottom:476.388000pt;}
.y40{bottom:477.506667pt;}
.yb8{bottom:487.266667pt;}
.y7c{bottom:493.988000pt;}
.ycb{bottom:494.466667pt;}
.y18{bottom:494.788000pt;}
.y59{bottom:495.588000pt;}
.y3f{bottom:495.908000pt;}
.yb7{bottom:505.666667pt;}
.y7b{bottom:512.388000pt;}
.y3e{bottom:514.308000pt;}
.y7a{bottom:530.788000pt;}
.y17{bottom:531.908000pt;}
.y3d{bottom:532.706667pt;}
.yb5{bottom:539.200000pt;}
.yaf{bottom:539.266667pt;}
.y16{bottom:550.308000pt;}
.y3c{bottom:551.108000pt;}
.yb4{bottom:559.000000pt;}
.y79{bottom:567.908000pt;}
.y58{bottom:569.506667pt;}
.yb2{bottom:578.066667pt;}
.y15{bottom:587.266667pt;}
.y3b{bottom:588.066667pt;}
.yde{bottom:588.706667pt;}
.yaa{bottom:597.133333pt;}
.y78{bottom:604.866667pt;}
.y14{bottom:605.666667pt;}
.y3a{bottom:606.466667pt;}
.ydd{bottom:607.108000pt;}
.yae{bottom:616.200000pt;}
.y13{bottom:624.066667pt;}
.y39{bottom:624.866667pt;}
.ydc{bottom:625.506667pt;}
.yad{bottom:635.266667pt;}
.y77{bottom:641.988000pt;}
.y12{bottom:642.466667pt;}
.y38{bottom:643.266667pt;}
.ydb{bottom:643.908000pt;}
.ya7{bottom:654.333333pt;}
.y11{bottom:660.866667pt;}
.yda{bottom:662.308000pt;}
.y76{bottom:679.108000pt;}
.y10{bottom:679.266667pt;}
.y37{bottom:680.388000pt;}
.yd9{bottom:680.706667pt;}
.y9d{bottom:691.800000pt;}
.yf{bottom:697.666667pt;}
.y36{bottom:698.788000pt;}
.yd8{bottom:699.108000pt;}
.ye{bottom:716.066667pt;}
.y35{bottom:717.188000pt;}
.yd7{bottom:717.506667pt;}
.yd{bottom:734.466667pt;}
.y34{bottom:735.588000pt;}
.yd6{bottom:735.906667pt;}
.ya1{bottom:747.666667pt;}
.y75{bottom:753.188000pt;}
.y33{bottom:753.988000pt;}
.y57{bottom:754.308000pt;}
.y56{bottom:772.706667pt;}
.y9f{bottom:785.133333pt;}
.y74{bottom:790.306667pt;}
.y32{bottom:791.106667pt;}
.yc{bottom:808.706667pt;}
.y31{bottom:809.506667pt;}
.y99{bottom:822.600000pt;}
.y73{bottom:827.266667pt;}
.y30{bottom:827.906667pt;}
.yb{bottom:845.666667pt;}
.y2f{bottom:846.306667pt;}
.y55{bottom:846.466667pt;}
.y94{bottom:860.000000pt;}
.y72{bottom:864.388000pt;}
.y2e{bottom:864.706667pt;}
.y54{bottom:864.866667pt;}
.yca{bottom:883.106667pt;}
.y53{bottom:883.266667pt;}
.y71{bottom:901.506667pt;}
.y2d{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2c{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2b{bottom:938.466667pt;}
.y2a{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h9{height:18.333333pt;}
.h8{height:18.866667pt;}
.hc{height:19.000000pt;}
.h14{height:19.733333pt;}
.h7{height:22.400000pt;}
.ha{height:31.933333pt;}
.hf{height:37.400000pt;}
.hd{height:37.733333pt;}
.hb{height:38.066667pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h2{height:55.343750pt;}
.h11{height:55.800000pt;}
.h6{height:56.406250pt;}
.h12{height:57.133333pt;}
.h13{height:57.800000pt;}
.he{height:130.200000pt;}
.h10{height:130.733333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w7{width:179.600000pt;}
.w6{width:179.666667pt;}
.w4{width:264.333333pt;}
.w3{width:291.800000pt;}
.w5{width:359.200000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.240000pt;}
.xb{left:54.453333pt;}
.xa{left:105.866667pt;}
.x1{left:113.440000pt;}
.x10{left:137.440000pt;}
.x5{left:139.520000pt;}
.x8{left:151.200000pt;}
.x4{left:153.760000pt;}
.x9{left:160.640000pt;}
.xe{left:370.466667pt;}
.xc{left:397.600000pt;}
.x6{left:413.760000pt;}
.x3{left:417.800000pt;}
.xf{left:550.066667pt;}
.x2{left:649.920000pt;}
.x7{left:659.200000pt;}
}




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