
    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_586b972afbcbefaae1ec1f75.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_822789fcac2846eee403689c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_e7e2cda7161564c49e215822.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_155f22d86d84a4266c73ee56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_e15acdc6c3602904446ee185.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_35151388e050216bd9f08c37.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_de2f7163469d5142a33f6750.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_2dd0e7bb03dffda77e8b8e5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_68f14b8d6be2c58fa753bcc2.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_af7319ee2c1111873382d2a1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f0c7e9f7ebe983e580d280cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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:ffc;src:url('chunks/assets/font_e15acdc6c3602904446ee185.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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:ffd;src:url('chunks/assets/font_afc47b1aea092dc7e8bea8b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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:ffe;src:url('chunks/assets/font_de2f7163469d5142a33f6750.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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:fff;src:url('chunks/assets/font_3e37bbf9b4427108792f4929.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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:ff10;src:url('chunks/assets/font_0fa9395481e56856c3775082.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_51aeb18b7c8d9aa66262bd2b.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v4{vertical-align:-72.000000px;}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.lsb{letter-spacing:-2.280000px;}
.ls13{letter-spacing:-1.980000px;}
.lse{letter-spacing:-1.440000px;}
.ls21{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.588000px;}
.ls6{letter-spacing:-0.300000px;}
.ls16{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.620000px;}
.ls20{letter-spacing:1.800000px;}
.ls14{letter-spacing:3.000000px;}
.ls3{letter-spacing:4.140000px;}
.ls4{letter-spacing:6.600000px;}
.ls1c{letter-spacing:13.800000px;}
.ls1e{letter-spacing:13.860000px;}
.ls22{letter-spacing:18.588000px;}
.ls1b{letter-spacing:53.400000px;}
.ls2{letter-spacing:114.384000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.320000px;}
.ws7{word-spacing:-16.200000px;}
.wsa{word-spacing:-15.960000px;}
.ws11{word-spacing:-15.600000px;}
.wsd{word-spacing:-15.420000px;}
.ws16{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.880000px;}
.ws12{word-spacing:-14.760000px;}
.wse{word-spacing:-14.220000px;}
.ws10{word-spacing:-14.100000px;}
.ws15{word-spacing:-14.088000px;}
.wsc{word-spacing:-13.920000px;}
.ws3{word-spacing:-13.800000px;}
.wsb{word-spacing:-13.560000px;}
.ws14{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws13{word-spacing:-12.900000px;}
.ws8{word-spacing:-12.720000px;}
.wsf{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-10.920000px;}
._10{margin-left:-9.480000px;}
._11{margin-left:-6.636000px;}
._13{margin-left:-5.010000px;}
._2{margin-left:-3.240000px;}
._0{margin-left:-1.344000px;}
._1{width:1.176000px;}
._3{width:2.466000px;}
._4{width:3.948000px;}
._7{width:5.892000px;}
._a{width:7.236000px;}
._9{width:8.268000px;}
._8{width:9.432000px;}
._5{width:10.524000px;}
._6{width:11.604000px;}
._e{width:13.416000px;}
._f{width:16.356000px;}
._1a{width:17.712000px;}
._15{width:19.206000px;}
._19{width:21.126000px;}
._b{width:22.380000px;}
._d{width:24.300000px;}
._c{width:26.004000px;}
._1c{width:32.124000px;}
._1b{width:33.822000px;}
._16{width:35.220000px;}
._17{width:36.276000px;}
._18{width:37.440000px;}
._14{width:43.560000px;}
._1d{width:60.090000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:1.665000px;}
.y55{bottom:1.709998px;}
.yc7{bottom:3.285000px;}
.ya2{bottom:3.300000px;}
.y83{bottom:3.315000px;}
.y2b{bottom:4.710081px;}
.y26{bottom:4.740000px;}
.y85{bottom:4.800000px;}
.ya9{bottom:12.300000px;}
.yba{bottom:21.285000px;}
.ya4{bottom:21.300000px;}
.yac{bottom:21.315000px;}
.y2a{bottom:21.315081px;}
.yc6{bottom:21.330000px;}
.yb1{bottom:21.345000px;}
.ya8{bottom:30.300000px;}
.y25{bottom:35.895000px;}
.y54{bottom:38.925002px;}
.y27{bottom:38.970000px;}
.ya7{bottom:39.300000px;}
.y24{bottom:225.975000px;}
.ybe{bottom:226.275000px;}
.yfb{bottom:226.875000px;}
.y13c{bottom:236.175000px;}
.yef{bottom:239.475000px;}
.y23{bottom:243.975000px;}
.yfa{bottom:244.875000px;}
.y7d{bottom:245.775000px;}
.yde{bottom:247.275000px;}
.y13b{bottom:252.675000px;}
.y10f{bottom:255.675000px;}
.y53{bottom:257.475000px;}
.y7c{bottom:258.075000px;}
.y22{bottom:261.975000px;}
.ybd{bottom:262.875000px;}
.ydd{bottom:265.275000px;}
.y13a{bottom:269.175000px;}
.y10e{bottom:272.175000px;}
.y52{bottom:275.475000px;}
.y21{bottom:279.975000px;}
.yf9{bottom:280.875000px;}
.ydc{bottom:283.275000px;}
.y139{bottom:285.675000px;}
.y10d{bottom:288.675000px;}
.y7b{bottom:288.975000px;}
.y51{bottom:293.475000px;}
.y20{bottom:297.975000px;}
.yf8{bottom:298.875000px;}
.ybc{bottom:299.775000px;}
.ydb{bottom:301.275000px;}
.y138{bottom:302.175000px;}
.y9f{bottom:305.175000px;}
.y7a{bottom:306.975000px;}
.y50{bottom:311.475000px;}
.y1f{bottom:315.975000px;}
.yf7{bottom:316.875000px;}
.y137{bottom:318.675000px;}
.yda{bottom:319.275000px;}
.y10c{bottom:321.675000px;}
.y9e{bottom:323.175000px;}
.y79{bottom:324.975000px;}
.y4f{bottom:329.475000px;}
.y1e{bottom:334.005000px;}
.yf6{bottom:334.920000px;}
.y136{bottom:335.220000px;}
.ybb{bottom:336.405000px;}
.yd9{bottom:337.305000px;}
.y10b{bottom:338.220000px;}
.y9d{bottom:341.220000px;}
.y78{bottom:343.005000px;}
.y4e{bottom:347.505000px;}
.y135{bottom:351.720000px;}
.y1d{bottom:352.005000px;}
.yf5{bottom:352.905000px;}
.y10a{bottom:354.720000px;}
.yd8{bottom:355.320000px;}
.y9c{bottom:359.205000px;}
.y77{bottom:361.005000px;}
.y4d{bottom:365.505000px;}
.y134{bottom:368.220000px;}
.y1c{bottom:370.005000px;}
.yf4{bottom:370.905000px;}
.y109{bottom:371.205000px;}
.yb9{bottom:373.320000px;}
.y9b{bottom:377.205000px;}
.y4c{bottom:383.505000px;}
.y133{bottom:384.705000px;}
.y108{bottom:387.705000px;}
.y1b{bottom:388.005000px;}
.yd7{bottom:391.305000px;}
.y9a{bottom:395.220000px;}
.y76{bottom:397.320000px;}
.y132{bottom:401.205000px;}
.y4b{bottom:401.505000px;}
.y107{bottom:404.205000px;}
.y1a{bottom:406.005000px;}
.yf3{bottom:407.205000px;}
.yd6{bottom:409.320000px;}
.yb8{bottom:409.905000px;}
.y99{bottom:413.205000px;}
.y131{bottom:417.705000px;}
.y4a{bottom:419.505000px;}
.y106{bottom:420.705000px;}
.y19{bottom:424.005000px;}
.yd5{bottom:427.320000px;}
.y98{bottom:431.205000px;}
.y130{bottom:434.205000px;}
.y105{bottom:437.205000px;}
.y49{bottom:437.505000px;}
.y18{bottom:442.005000px;}
.yd4{bottom:445.320000px;}
.y75{bottom:446.505000px;}
.yb7{bottom:446.820000px;}
.y97{bottom:449.205000px;}
.y12f{bottom:450.705000px;}
.y104{bottom:453.705000px;}
.y48{bottom:455.505000px;}
.yf2{bottom:456.120000px;}
.y17{bottom:460.005000px;}
.yd3{bottom:463.320000px;}
.y74{bottom:464.505000px;}
.y96{bottom:467.205000px;}
.y103{bottom:470.205000px;}
.yf1{bottom:472.605000px;}
.y47{bottom:473.505000px;}
.y16{bottom:478.005000px;}
.yd2{bottom:481.320000px;}
.y73{bottom:482.505000px;}
.yb6{bottom:483.405000px;}
.y12e{bottom:483.705000px;}
.y95{bottom:485.205000px;}
.y102{bottom:486.705000px;}
.y46{bottom:491.505000px;}
.yf0{bottom:494.820000px;}
.y15{bottom:496.005000px;}
.yd1{bottom:499.320000px;}
.y12d{bottom:500.205000px;}
.y72{bottom:500.505000px;}
.y94{bottom:503.250000px;}
.y45{bottom:509.550000px;}
.y14{bottom:514.050000px;}
.y12c{bottom:516.750000px;}
.yd0{bottom:517.350000px;}
.y71{bottom:518.550000px;}
.y101{bottom:519.750000px;}
.yb5{bottom:520.350000px;}
.y93{bottom:521.250000px;}
.y44{bottom:527.550000px;}
.y13{bottom:532.050000px;}
.y12b{bottom:533.250000px;}
.y100{bottom:536.250000px;}
.y70{bottom:536.550000px;}
.y92{bottom:539.250000px;}
.y43{bottom:545.550000px;}
.yee{bottom:545.850000px;}
.y12a{bottom:549.750000px;}
.yff{bottom:552.750000px;}
.ycf{bottom:553.350000px;}
.y6f{bottom:554.550000px;}
.yb4{bottom:556.950000px;}
.y91{bottom:557.250000px;}
.y42{bottom:563.550000px;}
.y129{bottom:566.250000px;}
.y12{bottom:568.350000px;}
.yfe{bottom:569.250000px;}
.yce{bottom:570.150000px;}
.y6e{bottom:572.550000px;}
.y90{bottom:575.250000px;}
.y41{bottom:581.550000px;}
.y128{bottom:582.750000px;}
.y6d{bottom:590.550000px;}
.y8f{bottom:593.250000px;}
.yb3{bottom:593.850000px;}
.yed{bottom:595.050000px;}
.y127{bottom:599.250000px;}
.y40{bottom:599.550000px;}
.yfd{bottom:604.350000px;}
.ycd{bottom:606.150000px;}
.y6c{bottom:608.550000px;}
.y8e{bottom:611.250000px;}
.yec{bottom:613.050000px;}
.y126{bottom:615.750000px;}
.y11{bottom:617.250000px;}
.y3f{bottom:617.550000px;}
.y6b{bottom:626.550000px;}
.y8d{bottom:629.250000px;}
.yb2{bottom:630.450000px;}
.yeb{bottom:631.050000px;}
.y125{bottom:632.250000px;}
.y3e{bottom:635.550000px;}
.ycc{bottom:642.150000px;}
.y6a{bottom:644.550000px;}
.y8c{bottom:647.250000px;}
.y124{bottom:648.750000px;}
.yea{bottom:649.050000px;}
.y3d{bottom:653.550000px;}
.y10{bottom:660.750000px;}
.y69{bottom:662.550000px;}
.y8b{bottom:665.250000px;}
.ye9{bottom:667.050000px;}
.yb0{bottom:667.350000px;}
.y3c{bottom:671.595000px;}
.yf{bottom:677.280000px;}
.ycb{bottom:678.180000px;}
.y68{bottom:680.580000px;}
.y123{bottom:681.780000px;}
.y8a{bottom:683.280000px;}
.ye8{bottom:685.095000px;}
.y3b{bottom:689.580000px;}
.ye{bottom:693.780000px;}
.y122{bottom:698.280000px;}
.y67{bottom:698.595000px;}
.y89{bottom:701.280000px;}
.ye7{bottom:703.080000px;}
.yaf{bottom:703.380000px;}
.y3a{bottom:707.580000px;}
.yfc{bottom:707.880000px;}
.yd{bottom:710.280000px;}
.yca{bottom:714.180000px;}
.y121{bottom:714.780000px;}
.y66{bottom:716.580000px;}
.y88{bottom:719.280000px;}
.ye6{bottom:721.080000px;}
.y39{bottom:725.595000px;}
.yc{bottom:726.780000px;}
.y120{bottom:731.280000px;}
.y65{bottom:734.580000px;}
.y87{bottom:737.280000px;}
.ye5{bottom:739.095000px;}
.yae{bottom:739.380000px;}
.yb{bottom:743.280000px;}
.y38{bottom:743.580000px;}
.y11f{bottom:747.780000px;}
.yc9{bottom:750.195000px;}
.y64{bottom:752.595000px;}
.y86{bottom:754.080000px;}
.ye4{bottom:757.080000px;}
.ya{bottom:759.780000px;}
.y37{bottom:761.580000px;}
.y11e{bottom:764.280000px;}
.y63{bottom:770.580000px;}
.ye3{bottom:775.080000px;}
.yad{bottom:775.380000px;}
.y84{bottom:775.395000px;}
.y9{bottom:776.295000px;}
.y36{bottom:779.580000px;}
.y11d{bottom:780.780000px;}
.yc8{bottom:786.195000px;}
.y62{bottom:788.580000px;}
.y8{bottom:792.780000px;}
.ye2{bottom:793.080000px;}
.y11c{bottom:797.295000px;}
.y35{bottom:797.580000px;}
.y82{bottom:797.880000px;}
.y61{bottom:806.580000px;}
.y7{bottom:809.280000px;}
.ye1{bottom:811.080000px;}
.yab{bottom:811.380000px;}
.y11b{bottom:813.795000px;}
.y34{bottom:815.580000px;}
.yc5{bottom:822.195000px;}
.y60{bottom:824.580000px;}
.ye0{bottom:829.080000px;}
.y81{bottom:830.295000px;}
.y33{bottom:833.580000px;}
.y5f{bottom:842.625000px;}
.y11a{bottom:846.825000px;}
.ydf{bottom:847.125000px;}
.yaa{bottom:847.425000px;}
.yc4{bottom:858.225000px;}
.y5e{bottom:860.625000px;}
.y119{bottom:863.325000px;}
.y80{bottom:865.125000px;}
.y32{bottom:869.925000px;}
.y6{bottom:875.325000px;}
.y5d{bottom:878.625000px;}
.y118{bottom:879.825000px;}
.y7f{bottom:883.125000px;}
.ya6{bottom:883.425000px;}
.yc3{bottom:894.225000px;}
.y117{bottom:896.325000px;}
.y5c{bottom:896.625000px;}
.y7e{bottom:901.125000px;}
.y5{bottom:902.925000px;}
.y116{bottom:912.825000px;}
.y5b{bottom:914.625000px;}
.y31{bottom:919.125000px;}
.y4{bottom:920.025000px;}
.y115{bottom:929.325000px;}
.yc2{bottom:930.225000px;}
.y5a{bottom:932.625000px;}
.y3{bottom:937.125000px;}
.ya5{bottom:937.425000px;}
.y114{bottom:945.825000px;}
.y59{bottom:950.625000px;}
.y30{bottom:955.125000px;}
.ya3{bottom:958.725000px;}
.y113{bottom:962.325000px;}
.yc1{bottom:966.225000px;}
.y58{bottom:968.625000px;}
.y2f{bottom:973.125000px;}
.y112{bottom:978.825000px;}
.y57{bottom:986.625000px;}
.y2e{bottom:991.125000px;}
.y2{bottom:992.025000px;}
.y111{bottom:995.325000px;}
.ya1{bottom:995.925000px;}
.yc0{bottom:1003.425000px;}
.y2d{bottom:1009.170000px;}
.y110{bottom:1011.870000px;}
.y1{bottom:1019.070000px;}
.y56{bottom:1022.955000px;}
.ybf{bottom:1026.855000px;}
.y2c{bottom:1027.170000px;}
.ya0{bottom:1028.355000px;}
.y29{bottom:1207.229919px;}
.hb{height:13.305003px;}
.hf{height:13.350001px;}
.h10{height:18.000000px;}
.h13{height:18.037500px;}
.h9{height:18.105000px;}
.h11{height:21.285000px;}
.h12{height:21.300000px;}
.hc{height:34.679993px;}
.h5{height:35.332031px;}
.h17{height:35.985000px;}
.h14{height:36.000000px;}
.h16{height:36.037500px;}
.h1a{height:37.705078px;}
.hd{height:41.894531px;}
.h7{height:52.998047px;}
.h15{height:54.000000px;}
.h6{height:54.421875px;}
.h19{height:55.503491px;}
.ha{height:58.857422px;}
.h4{height:58.886719px;}
.h3{height:60.465234px;}
.he{height:60.468750px;}
.h18{height:72.562500px;}
.h8{height:74.953125px;}
.h2{height:84.656250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w15{width:21.911225px;}
.w17{width:22.497162px;}
.w19{width:22.753328px;}
.w6{width:22.878022px;}
.w5{width:23.075592px;}
.wd{width:23.097657px;}
.w16{width:23.119720px;}
.w3{width:23.163483px;}
.w11{width:23.207611px;}
.w18{width:23.222077px;}
.wf{width:53.737500px;}
.w9{width:56.700000px;}
.wa{width:56.737500px;}
.wb{width:57.000000px;}
.w8{width:57.300000px;}
.wc{width:57.637500px;}
.w13{width:67.237500px;}
.w7{width:113.737500px;}
.we{width:195.045000px;}
.w12{width:201.645000px;}
.w14{width:247.275000px;}
.w10{width:267.675000px;}
.w2{width:467.996955px;}
.w4{width:552.642414px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.419360px;}
.x12{left:5.100000px;}
.x1f{left:11.430000px;}
.x14{left:15.000000px;}
.x1d{left:18.000000px;}
.x1c{left:21.900000px;}
.x1b{left:24.045000px;}
.x1e{left:25.545000px;}
.x24{left:26.700000px;}
.x29{left:33.930000px;}
.xa{left:53.540154px;}
.x28{left:87.930000px;}
.x23{left:98.100000px;}
.xd{left:135.909360px;}
.xc{left:169.738140px;}
.x8{left:186.975000px;}
.x11{left:188.175000px;}
.x2b{left:192.975000px;}
.x1{left:200.175000px;}
.x9{left:204.075000px;}
.x3{left:210.675000px;}
.x2d{left:212.475000px;}
.xf{left:221.175000px;}
.x7{left:229.575000px;}
.x20{left:252.675000px;}
.x6{left:281.175000px;}
.x13{left:301.920000px;}
.x10{left:326.220000px;}
.x25{left:328.320000px;}
.x15{left:359.820000px;}
.x2{left:363.720000px;}
.x21{left:382.920000px;}
.x26{left:389.520000px;}
.x2c{left:393.720000px;}
.x16{left:417.405000px;}
.x4{left:427.050000px;}
.x22{left:437.250000px;}
.x5{left:446.250000px;}
.x27{left:457.650000px;}
.x17{left:475.050000px;}
.x18{left:532.650000px;}
.x19{left:590.280000px;}
.x1a{left:647.280000px;}
.x2a{left:705.225000px;}
.xb{left:816.857849px;}
@media print{
.v4{vertical-align:-64.000000pt;}
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.lsb{letter-spacing:-2.026667pt;}
.ls13{letter-spacing:-1.760000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls21{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.853333pt;}
.lsa{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.600000pt;}
.ls14{letter-spacing:2.666667pt;}
.ls3{letter-spacing:3.680000pt;}
.ls4{letter-spacing:5.866667pt;}
.ls1c{letter-spacing:12.266667pt;}
.ls1e{letter-spacing:12.320000pt;}
.ls22{letter-spacing:16.522667pt;}
.ls1b{letter-spacing:47.466667pt;}
.ls2{letter-spacing:101.674667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.506667pt;}
.ws7{word-spacing:-14.400000pt;}
.wsa{word-spacing:-14.186667pt;}
.ws11{word-spacing:-13.866667pt;}
.wsd{word-spacing:-13.706667pt;}
.ws16{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.226667pt;}
.ws12{word-spacing:-13.120000pt;}
.wse{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.533333pt;}
.ws15{word-spacing:-12.522667pt;}
.wsc{word-spacing:-12.373333pt;}
.ws3{word-spacing:-12.266667pt;}
.wsb{word-spacing:-12.053333pt;}
.ws14{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.466667pt;}
.ws8{word-spacing:-11.306667pt;}
.wsf{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-9.706667pt;}
._10{margin-left:-8.426667pt;}
._11{margin-left:-5.898667pt;}
._13{margin-left:-4.453333pt;}
._2{margin-left:-2.880000pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.045333pt;}
._3{width:2.192000pt;}
._4{width:3.509333pt;}
._7{width:5.237333pt;}
._a{width:6.432000pt;}
._9{width:7.349333pt;}
._8{width:8.384000pt;}
._5{width:9.354667pt;}
._6{width:10.314667pt;}
._e{width:11.925333pt;}
._f{width:14.538667pt;}
._1a{width:15.744000pt;}
._15{width:17.072000pt;}
._19{width:18.778667pt;}
._b{width:19.893333pt;}
._d{width:21.600000pt;}
._c{width:23.114667pt;}
._1c{width:28.554667pt;}
._1b{width:30.064000pt;}
._16{width:31.306667pt;}
._17{width:32.245333pt;}
._18{width:33.280000pt;}
._14{width:38.720000pt;}
._1d{width:53.413333pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:1.480000pt;}
.y55{bottom:1.519999pt;}
.yc7{bottom:2.920000pt;}
.ya2{bottom:2.933333pt;}
.y83{bottom:2.946667pt;}
.y2b{bottom:4.186739pt;}
.y26{bottom:4.213333pt;}
.y85{bottom:4.266667pt;}
.ya9{bottom:10.933333pt;}
.yba{bottom:18.920000pt;}
.ya4{bottom:18.933333pt;}
.yac{bottom:18.946667pt;}
.y2a{bottom:18.946739pt;}
.yc6{bottom:18.960000pt;}
.yb1{bottom:18.973333pt;}
.ya8{bottom:26.933333pt;}
.y25{bottom:31.906667pt;}
.y54{bottom:34.600001pt;}
.y27{bottom:34.640000pt;}
.ya7{bottom:34.933333pt;}
.y24{bottom:200.866667pt;}
.ybe{bottom:201.133333pt;}
.yfb{bottom:201.666667pt;}
.y13c{bottom:209.933333pt;}
.yef{bottom:212.866667pt;}
.y23{bottom:216.866667pt;}
.yfa{bottom:217.666667pt;}
.y7d{bottom:218.466667pt;}
.yde{bottom:219.800000pt;}
.y13b{bottom:224.600000pt;}
.y10f{bottom:227.266667pt;}
.y53{bottom:228.866667pt;}
.y7c{bottom:229.400000pt;}
.y22{bottom:232.866667pt;}
.ybd{bottom:233.666667pt;}
.ydd{bottom:235.800000pt;}
.y13a{bottom:239.266667pt;}
.y10e{bottom:241.933333pt;}
.y52{bottom:244.866667pt;}
.y21{bottom:248.866667pt;}
.yf9{bottom:249.666667pt;}
.ydc{bottom:251.800000pt;}
.y139{bottom:253.933333pt;}
.y10d{bottom:256.600000pt;}
.y7b{bottom:256.866667pt;}
.y51{bottom:260.866667pt;}
.y20{bottom:264.866667pt;}
.yf8{bottom:265.666667pt;}
.ybc{bottom:266.466667pt;}
.ydb{bottom:267.800000pt;}
.y138{bottom:268.600000pt;}
.y9f{bottom:271.266667pt;}
.y7a{bottom:272.866667pt;}
.y50{bottom:276.866667pt;}
.y1f{bottom:280.866667pt;}
.yf7{bottom:281.666667pt;}
.y137{bottom:283.266667pt;}
.yda{bottom:283.800000pt;}
.y10c{bottom:285.933333pt;}
.y9e{bottom:287.266667pt;}
.y79{bottom:288.866667pt;}
.y4f{bottom:292.866667pt;}
.y1e{bottom:296.893333pt;}
.yf6{bottom:297.706667pt;}
.y136{bottom:297.973333pt;}
.ybb{bottom:299.026667pt;}
.yd9{bottom:299.826667pt;}
.y10b{bottom:300.640000pt;}
.y9d{bottom:303.306667pt;}
.y78{bottom:304.893333pt;}
.y4e{bottom:308.893333pt;}
.y135{bottom:312.640000pt;}
.y1d{bottom:312.893333pt;}
.yf5{bottom:313.693333pt;}
.y10a{bottom:315.306667pt;}
.yd8{bottom:315.840000pt;}
.y9c{bottom:319.293333pt;}
.y77{bottom:320.893333pt;}
.y4d{bottom:324.893333pt;}
.y134{bottom:327.306667pt;}
.y1c{bottom:328.893333pt;}
.yf4{bottom:329.693333pt;}
.y109{bottom:329.960000pt;}
.yb9{bottom:331.840000pt;}
.y9b{bottom:335.293333pt;}
.y4c{bottom:340.893333pt;}
.y133{bottom:341.960000pt;}
.y108{bottom:344.626667pt;}
.y1b{bottom:344.893333pt;}
.yd7{bottom:347.826667pt;}
.y9a{bottom:351.306667pt;}
.y76{bottom:353.173333pt;}
.y132{bottom:356.626667pt;}
.y4b{bottom:356.893333pt;}
.y107{bottom:359.293333pt;}
.y1a{bottom:360.893333pt;}
.yf3{bottom:361.960000pt;}
.yd6{bottom:363.840000pt;}
.yb8{bottom:364.360000pt;}
.y99{bottom:367.293333pt;}
.y131{bottom:371.293333pt;}
.y4a{bottom:372.893333pt;}
.y106{bottom:373.960000pt;}
.y19{bottom:376.893333pt;}
.yd5{bottom:379.840000pt;}
.y98{bottom:383.293333pt;}
.y130{bottom:385.960000pt;}
.y105{bottom:388.626667pt;}
.y49{bottom:388.893333pt;}
.y18{bottom:392.893333pt;}
.yd4{bottom:395.840000pt;}
.y75{bottom:396.893333pt;}
.yb7{bottom:397.173333pt;}
.y97{bottom:399.293333pt;}
.y12f{bottom:400.626667pt;}
.y104{bottom:403.293333pt;}
.y48{bottom:404.893333pt;}
.yf2{bottom:405.440000pt;}
.y17{bottom:408.893333pt;}
.yd3{bottom:411.840000pt;}
.y74{bottom:412.893333pt;}
.y96{bottom:415.293333pt;}
.y103{bottom:417.960000pt;}
.yf1{bottom:420.093333pt;}
.y47{bottom:420.893333pt;}
.y16{bottom:424.893333pt;}
.yd2{bottom:427.840000pt;}
.y73{bottom:428.893333pt;}
.yb6{bottom:429.693333pt;}
.y12e{bottom:429.960000pt;}
.y95{bottom:431.293333pt;}
.y102{bottom:432.626667pt;}
.y46{bottom:436.893333pt;}
.yf0{bottom:439.840000pt;}
.y15{bottom:440.893333pt;}
.yd1{bottom:443.840000pt;}
.y12d{bottom:444.626667pt;}
.y72{bottom:444.893333pt;}
.y94{bottom:447.333333pt;}
.y45{bottom:452.933333pt;}
.y14{bottom:456.933333pt;}
.y12c{bottom:459.333333pt;}
.yd0{bottom:459.866667pt;}
.y71{bottom:460.933333pt;}
.y101{bottom:462.000000pt;}
.yb5{bottom:462.533333pt;}
.y93{bottom:463.333333pt;}
.y44{bottom:468.933333pt;}
.y13{bottom:472.933333pt;}
.y12b{bottom:474.000000pt;}
.y100{bottom:476.666667pt;}
.y70{bottom:476.933333pt;}
.y92{bottom:479.333333pt;}
.y43{bottom:484.933333pt;}
.yee{bottom:485.200000pt;}
.y12a{bottom:488.666667pt;}
.yff{bottom:491.333333pt;}
.ycf{bottom:491.866667pt;}
.y6f{bottom:492.933333pt;}
.yb4{bottom:495.066667pt;}
.y91{bottom:495.333333pt;}
.y42{bottom:500.933333pt;}
.y129{bottom:503.333333pt;}
.y12{bottom:505.200000pt;}
.yfe{bottom:506.000000pt;}
.yce{bottom:506.800000pt;}
.y6e{bottom:508.933333pt;}
.y90{bottom:511.333333pt;}
.y41{bottom:516.933333pt;}
.y128{bottom:518.000000pt;}
.y6d{bottom:524.933333pt;}
.y8f{bottom:527.333333pt;}
.yb3{bottom:527.866667pt;}
.yed{bottom:528.933333pt;}
.y127{bottom:532.666667pt;}
.y40{bottom:532.933333pt;}
.yfd{bottom:537.200000pt;}
.ycd{bottom:538.800000pt;}
.y6c{bottom:540.933333pt;}
.y8e{bottom:543.333333pt;}
.yec{bottom:544.933333pt;}
.y126{bottom:547.333333pt;}
.y11{bottom:548.666667pt;}
.y3f{bottom:548.933333pt;}
.y6b{bottom:556.933333pt;}
.y8d{bottom:559.333333pt;}
.yb2{bottom:560.400000pt;}
.yeb{bottom:560.933333pt;}
.y125{bottom:562.000000pt;}
.y3e{bottom:564.933333pt;}
.ycc{bottom:570.800000pt;}
.y6a{bottom:572.933333pt;}
.y8c{bottom:575.333333pt;}
.y124{bottom:576.666667pt;}
.yea{bottom:576.933333pt;}
.y3d{bottom:580.933333pt;}
.y10{bottom:587.333333pt;}
.y69{bottom:588.933333pt;}
.y8b{bottom:591.333333pt;}
.ye9{bottom:592.933333pt;}
.yb0{bottom:593.200000pt;}
.y3c{bottom:596.973333pt;}
.yf{bottom:602.026667pt;}
.ycb{bottom:602.826667pt;}
.y68{bottom:604.960000pt;}
.y123{bottom:606.026667pt;}
.y8a{bottom:607.360000pt;}
.ye8{bottom:608.973333pt;}
.y3b{bottom:612.960000pt;}
.ye{bottom:616.693333pt;}
.y122{bottom:620.693333pt;}
.y67{bottom:620.973333pt;}
.y89{bottom:623.360000pt;}
.ye7{bottom:624.960000pt;}
.yaf{bottom:625.226667pt;}
.y3a{bottom:628.960000pt;}
.yfc{bottom:629.226667pt;}
.yd{bottom:631.360000pt;}
.yca{bottom:634.826667pt;}
.y121{bottom:635.360000pt;}
.y66{bottom:636.960000pt;}
.y88{bottom:639.360000pt;}
.ye6{bottom:640.960000pt;}
.y39{bottom:644.973333pt;}
.yc{bottom:646.026667pt;}
.y120{bottom:650.026667pt;}
.y65{bottom:652.960000pt;}
.y87{bottom:655.360000pt;}
.ye5{bottom:656.973333pt;}
.yae{bottom:657.226667pt;}
.yb{bottom:660.693333pt;}
.y38{bottom:660.960000pt;}
.y11f{bottom:664.693333pt;}
.yc9{bottom:666.840000pt;}
.y64{bottom:668.973333pt;}
.y86{bottom:670.293333pt;}
.ye4{bottom:672.960000pt;}
.ya{bottom:675.360000pt;}
.y37{bottom:676.960000pt;}
.y11e{bottom:679.360000pt;}
.y63{bottom:684.960000pt;}
.ye3{bottom:688.960000pt;}
.yad{bottom:689.226667pt;}
.y84{bottom:689.240000pt;}
.y9{bottom:690.040000pt;}
.y36{bottom:692.960000pt;}
.y11d{bottom:694.026667pt;}
.yc8{bottom:698.840000pt;}
.y62{bottom:700.960000pt;}
.y8{bottom:704.693333pt;}
.ye2{bottom:704.960000pt;}
.y11c{bottom:708.706667pt;}
.y35{bottom:708.960000pt;}
.y82{bottom:709.226667pt;}
.y61{bottom:716.960000pt;}
.y7{bottom:719.360000pt;}
.ye1{bottom:720.960000pt;}
.yab{bottom:721.226667pt;}
.y11b{bottom:723.373333pt;}
.y34{bottom:724.960000pt;}
.yc5{bottom:730.840000pt;}
.y60{bottom:732.960000pt;}
.ye0{bottom:736.960000pt;}
.y81{bottom:738.040000pt;}
.y33{bottom:740.960000pt;}
.y5f{bottom:749.000000pt;}
.y11a{bottom:752.733333pt;}
.ydf{bottom:753.000000pt;}
.yaa{bottom:753.266667pt;}
.yc4{bottom:762.866667pt;}
.y5e{bottom:765.000000pt;}
.y119{bottom:767.400000pt;}
.y80{bottom:769.000000pt;}
.y32{bottom:773.266667pt;}
.y6{bottom:778.066667pt;}
.y5d{bottom:781.000000pt;}
.y118{bottom:782.066667pt;}
.y7f{bottom:785.000000pt;}
.ya6{bottom:785.266667pt;}
.yc3{bottom:794.866667pt;}
.y117{bottom:796.733333pt;}
.y5c{bottom:797.000000pt;}
.y7e{bottom:801.000000pt;}
.y5{bottom:802.600000pt;}
.y116{bottom:811.400000pt;}
.y5b{bottom:813.000000pt;}
.y31{bottom:817.000000pt;}
.y4{bottom:817.800000pt;}
.y115{bottom:826.066667pt;}
.yc2{bottom:826.866667pt;}
.y5a{bottom:829.000000pt;}
.y3{bottom:833.000000pt;}
.ya5{bottom:833.266667pt;}
.y114{bottom:840.733333pt;}
.y59{bottom:845.000000pt;}
.y30{bottom:849.000000pt;}
.ya3{bottom:852.200000pt;}
.y113{bottom:855.400000pt;}
.yc1{bottom:858.866667pt;}
.y58{bottom:861.000000pt;}
.y2f{bottom:865.000000pt;}
.y112{bottom:870.066667pt;}
.y57{bottom:877.000000pt;}
.y2e{bottom:881.000000pt;}
.y2{bottom:881.800000pt;}
.y111{bottom:884.733333pt;}
.ya1{bottom:885.266667pt;}
.yc0{bottom:891.933333pt;}
.y2d{bottom:897.040000pt;}
.y110{bottom:899.440000pt;}
.y1{bottom:905.840000pt;}
.y56{bottom:909.293333pt;}
.ybf{bottom:912.760000pt;}
.y2c{bottom:913.040000pt;}
.ya0{bottom:914.093333pt;}
.y29{bottom:1073.093261pt;}
.hb{height:11.826669pt;}
.hf{height:11.866668pt;}
.h10{height:16.000000pt;}
.h13{height:16.033333pt;}
.h9{height:16.093333pt;}
.h11{height:18.920000pt;}
.h12{height:18.933333pt;}
.hc{height:30.826660pt;}
.h5{height:31.406250pt;}
.h17{height:31.986667pt;}
.h14{height:32.000000pt;}
.h16{height:32.033333pt;}
.h1a{height:33.515625pt;}
.hd{height:37.239583pt;}
.h7{height:47.109375pt;}
.h15{height:48.000000pt;}
.h6{height:48.375000pt;}
.h19{height:49.336436pt;}
.ha{height:52.317708pt;}
.h4{height:52.343750pt;}
.h3{height:53.746875pt;}
.he{height:53.750000pt;}
.h18{height:64.500000pt;}
.h8{height:66.625000pt;}
.h2{height:75.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w15{width:19.476644pt;}
.w17{width:19.997477pt;}
.w19{width:20.225180pt;}
.w6{width:20.336020pt;}
.w5{width:20.511637pt;}
.wd{width:20.531251pt;}
.w16{width:20.550863pt;}
.w3{width:20.589763pt;}
.w11{width:20.628988pt;}
.w18{width:20.641847pt;}
.wf{width:47.766667pt;}
.w9{width:50.400000pt;}
.wa{width:50.433333pt;}
.wb{width:50.666667pt;}
.w8{width:50.933333pt;}
.wc{width:51.233333pt;}
.w13{width:59.766667pt;}
.w7{width:101.100000pt;}
.we{width:173.373333pt;}
.w12{width:179.240000pt;}
.w14{width:219.800000pt;}
.w10{width:237.933333pt;}
.w2{width:415.997293pt;}
.w4{width:491.237701pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.261653pt;}
.x12{left:4.533333pt;}
.x1f{left:10.160000pt;}
.x14{left:13.333333pt;}
.x1d{left:16.000000pt;}
.x1c{left:19.466667pt;}
.x1b{left:21.373333pt;}
.x1e{left:22.706667pt;}
.x24{left:23.733333pt;}
.x29{left:30.160000pt;}
.xa{left:47.591248pt;}
.x28{left:78.160000pt;}
.x23{left:87.200000pt;}
.xd{left:120.808320pt;}
.xc{left:150.878347pt;}
.x8{left:166.200000pt;}
.x11{left:167.266667pt;}
.x2b{left:171.533333pt;}
.x1{left:177.933333pt;}
.x9{left:181.400000pt;}
.x3{left:187.266667pt;}
.x2d{left:188.866667pt;}
.xf{left:196.600000pt;}
.x7{left:204.066667pt;}
.x20{left:224.600000pt;}
.x6{left:249.933333pt;}
.x13{left:268.373333pt;}
.x10{left:289.973333pt;}
.x25{left:291.840000pt;}
.x15{left:319.840000pt;}
.x2{left:323.306667pt;}
.x21{left:340.373333pt;}
.x26{left:346.240000pt;}
.x2c{left:349.973333pt;}
.x16{left:371.026667pt;}
.x4{left:379.600000pt;}
.x22{left:388.666667pt;}
.x5{left:396.666667pt;}
.x27{left:406.800000pt;}
.x17{left:422.266667pt;}
.x18{left:473.466667pt;}
.x19{left:524.693333pt;}
.x1a{left:575.360000pt;}
.x2a{left:626.866667pt;}
.xb{left:726.095865pt;}
}




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