
    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_0712d0ca84fbb02832be0324.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_a13ef04a316b11307f1a6657.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_48e39ab435dcecc42f56eaf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_cb799d91e930018fb9a2c196.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995117;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_d0fb053cf6771c55f6524aba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2b58003007e56201dafaf613.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.920410;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_af34383be87bff8f7b4970f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_f8248880f60aa260ce890046.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f3690d3467f55ede77d00eb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_6d016a9f70cae67e620c7da1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aae78b7183918d4d215c5923.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.305400px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.lse{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.360720px;}
.ls6{letter-spacing:0.502800px;}
.ls10{letter-spacing:0.720000px;}
.ls3{letter-spacing:15.300000px;}
.ls8{letter-spacing:16.865280px;}
.ls1{letter-spacing:64.260000px;}
.ls13{letter-spacing:66.960000px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.251520px;}
.ws5{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws8{word-spacing:-16.145400px;}
.ws9{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-4.513680px;}
._d{margin-left:-3.346560px;}
._6{margin-left:-2.091600px;}
._1{margin-left:-1.028000px;}
._0{width:1.015920px;}
._c{width:2.982400px;}
._10{width:4.038320px;}
._8{width:5.079600px;}
._7{width:6.095520px;}
._e{width:7.529760px;}
._11{width:8.627760px;}
._13{width:9.891360px;}
._b{width:11.354400px;}
._5{width:12.382400px;}
._4{width:13.625280px;}
._12{width:14.904000px;}
._a{width:18.525600px;}
._9{width:19.661040px;}
._16{width:21.064320px;}
._17{width:22.587840px;}
._15{width:24.442560px;}
._19{width:31.767200px;}
._18{width:32.987520px;}
._1c{width:34.246080px;}
._1d{width:35.454240px;}
._2{width:64.800000px;}
._1e{width:66.504960px;}
._1f{width:67.956480px;}
._1a{width:79.156800px;}
._1b{width:80.775120px;}
._f{width:84.799440px;}
._3{width:201.204000px;}
.fc6{color:transparent;}
.fc5{color:rgb(73,74,76);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(0,0,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs8{font-size:2.880000px;}
.fs1{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y49{bottom:-34.245000px;}
.y48{bottom:-16.920000px;}
.y0{bottom:0.000000px;}
.y47{bottom:0.360000px;}
.y9{bottom:0.720000px;}
.y90{bottom:3.240000px;}
.y1b{bottom:12.240000px;}
.y19{bottom:14.760000px;}
.y46{bottom:17.460000px;}
.y30{bottom:29.520000px;}
.ya{bottom:32.220000px;}
.y8{bottom:33.330000px;}
.y45{bottom:34.740000px;}
.y2f{bottom:46.800000px;}
.y44{bottom:52.020000px;}
.y4{bottom:57.636000px;}
.y2e{bottom:64.080000px;}
.y3{bottom:76.536000px;}
.y2d{bottom:81.360000px;}
.y42{bottom:93.816000px;}
.yb8{bottom:94.356000px;}
.yf6{bottom:97.956000px;}
.y2c{bottom:98.460000px;}
.y11a{bottom:102.816000px;}
.y119{bottom:107.676000px;}
.yaa{bottom:111.456000px;}
.y41{bottom:112.176000px;}
.y2b{bottom:115.740000px;}
.y104{bottom:116.505000px;}
.y8c{bottom:119.736000px;}
.yb7{bottom:121.356000px;}
.yf5{bottom:126.396000px;}
.y118{bottom:129.276000px;}
.y40{bottom:129.456000px;}
.ya9{bottom:131.076000px;}
.y6e{bottom:131.256000px;}
.y6{bottom:132.870000px;}
.y2a{bottom:133.020000px;}
.y3f{bottom:134.676000px;}
.y36{bottom:137.520000px;}
.ye0{bottom:139.896000px;}
.y131{bottom:142.956000px;}
.y3e{bottom:147.996000px;}
.y8b{bottom:148.176000px;}
.yb6{bottom:149.796000px;}
.y29{bottom:150.300000px;}
.y117{bottom:151.050000px;}
.ya8{bottom:152.670000px;}
.yf4{bottom:154.830000px;}
.y6d{bottom:159.690000px;}
.y35{bottom:163.800000px;}
.y28{bottom:167.580000px;}
.ydf{bottom:168.330000px;}
.y130{bottom:171.390000px;}
.y116{bottom:172.830000px;}
.ya7{bottom:174.450000px;}
.y8a{bottom:176.610000px;}
.yb5{bottom:178.230000px;}
.y3d{bottom:180.390000px;}
.yf3{bottom:183.270000px;}
.y27{bottom:184.710000px;}
.y8d{bottom:186.870000px;}
.y6c{bottom:188.130000px;}
.y34{bottom:189.930000px;}
.y115{bottom:194.610000px;}
.ya6{bottom:196.230000px;}
.yde{bottom:196.770000px;}
.y12f{bottom:199.830000px;}
.y26{bottom:201.990000px;}
.y89{bottom:205.050000px;}
.yb4{bottom:206.670000px;}
.y3c{bottom:208.830000px;}
.yf2{bottom:211.890000px;}
.y33{bottom:216.210000px;}
.y6b{bottom:216.570000px;}
.y114{bottom:217.110000px;}
.ya5{bottom:218.010000px;}
.y25{bottom:219.270000px;}
.ydd{bottom:225.210000px;}
.y12e{bottom:228.270000px;}
.y88{bottom:233.490000px;}
.yb3{bottom:235.110000px;}
.y24{bottom:236.550000px;}
.yf1{bottom:240.330000px;}
.ya4{bottom:240.510000px;}
.y113{bottom:241.770000px;}
.y6a{bottom:245.190000px;}
.y3b{bottom:247.710000px;}
.ydc{bottom:253.650000px;}
.y23{bottom:253.830000px;}
.y12d{bottom:256.890000px;}
.y87{bottom:261.930000px;}
.yb2{bottom:263.550000px;}
.ya3{bottom:265.170000px;}
.yf0{bottom:268.770000px;}
.y22{bottom:271.110000px;}
.y69{bottom:273.675000px;}
.y3a{bottom:277.455000px;}
.ydb{bottom:282.135000px;}
.y12c{bottom:285.375000px;}
.y21{bottom:288.210000px;}
.y86{bottom:290.415000px;}
.ya2{bottom:292.215000px;}
.yef{bottom:297.255000px;}
.y68{bottom:302.115000px;}
.y39{bottom:303.555000px;}
.y43{bottom:304.455000px;}
.y20{bottom:305.490000px;}
.yda{bottom:310.575000px;}
.y12b{bottom:313.815000px;}
.y85{bottom:319.035000px;}
.ya1{bottom:320.655000px;}
.y38{bottom:321.735000px;}
.y1f{bottom:322.770000px;}
.yee{bottom:325.695000px;}
.y67{bottom:330.555000px;}
.y1d{bottom:335.550000px;}
.yd9{bottom:339.195000px;}
.y1e{bottom:340.050000px;}
.y37{bottom:340.995000px;}
.y12a{bottom:342.255000px;}
.y84{bottom:347.475000px;}
.ya0{bottom:349.095000px;}
.yed{bottom:354.135000px;}
.y66{bottom:358.995000px;}
.yd8{bottom:367.635000px;}
.y129{bottom:370.695000px;}
.y83{bottom:375.915000px;}
.y9f{bottom:377.535000px;}
.y1c{bottom:379.335000px;}
.yec{bottom:382.575000px;}
.y65{bottom:387.435000px;}
.yd7{bottom:396.075000px;}
.y128{bottom:399.135000px;}
.y82{bottom:404.355000px;}
.y9e{bottom:405.975000px;}
.yeb{bottom:411.015000px;}
.y64{bottom:415.875000px;}
.yd6{bottom:424.515000px;}
.y127{bottom:427.575000px;}
.yea{bottom:430.635000px;}
.y81{bottom:432.795000px;}
.y9d{bottom:434.415000px;}
.y112{bottom:439.455000px;}
.y63{bottom:444.315000px;}
.ye9{bottom:452.415000px;}
.yd5{bottom:452.955000px;}
.y126{bottom:456.015000px;}
.y80{bottom:461.235000px;}
.y9c{bottom:462.855000px;}
.y111{bottom:467.895000px;}
.y62{bottom:472.755000px;}
.ye8{bottom:474.195000px;}
.yd4{bottom:481.395000px;}
.y125{bottom:484.455000px;}
.y7f{bottom:489.675000px;}
.y9b{bottom:491.295000px;}
.y110{bottom:496.335000px;}
.ye7{bottom:496.695000px;}
.yd3{bottom:501.015000px;}
.y61{bottom:501.375000px;}
.y124{bottom:513.075000px;}
.y7e{bottom:518.115000px;}
.y9a{bottom:519.735000px;}
.ye6{bottom:521.355000px;}
.yd2{bottom:522.795000px;}
.y10f{bottom:524.955000px;}
.y11b{bottom:528.555000px;}
.y60{bottom:529.815000px;}
.yb1{bottom:539.355000px;}
.y123{bottom:541.515000px;}
.yd1{bottom:544.575000px;}
.y7d{bottom:546.555000px;}
.y99{bottom:548.355000px;}
.y10e{bottom:553.395000px;}
.y5f{bottom:558.285000px;}
.yb0{bottom:561.165000px;}
.yd0{bottom:566.385000px;}
.y7c{bottom:575.205000px;}
.y98{bottom:576.825000px;}
.y122{bottom:580.245000px;}
.y10d{bottom:581.865000px;}
.yaf{bottom:582.945000px;}
.y5e{bottom:586.725000px;}
.ycf{bottom:587.985000px;}
.y7b{bottom:603.645000px;}
.yae{bottom:604.725000px;}
.y97{bottom:605.265000px;}
.y121{bottom:609.945000px;}
.y10c{bottom:610.305000px;}
.yce{bottom:610.485000px;}
.y5d{bottom:615.165000px;}
.y32{bottom:623.085000px;}
.yad{bottom:626.505000px;}
.y7a{bottom:632.085000px;}
.y96{bottom:633.705000px;}
.ycd{bottom:635.145000px;}
.y120{bottom:638.385000px;}
.y10b{bottom:638.745000px;}
.y5c{bottom:643.605000px;}
.yac{bottom:649.005000px;}
.y95{bottom:653.325000px;}
.y79{bottom:660.525000px;}
.ycc{bottom:662.145000px;}
.y31{bottom:662.865000px;}
.y11f{bottom:667.005000px;}
.y10a{bottom:667.185000px;}
.y5b{bottom:672.045000px;}
.yab{bottom:673.485000px;}
.y94{bottom:675.105000px;}
.y78{bottom:688.965000px;}
.ycb{bottom:690.585000px;}
.y109{bottom:695.625000px;}
.y93{bottom:696.705000px;}
.y5a{bottom:700.485000px;}
.y1a{bottom:702.645000px;}
.y77{bottom:717.405000px;}
.y92{bottom:718.485000px;}
.yca{bottom:719.025000px;}
.y108{bottom:724.065000px;}
.y11e{bottom:726.405000px;}
.y59{bottom:728.925000px;}
.y91{bottom:740.265000px;}
.y18{bottom:742.425000px;}
.y76{bottom:745.845000px;}
.yc9{bottom:747.465000px;}
.y107{bottom:752.505000px;}
.y11d{bottom:754.845000px;}
.y58{bottom:757.545000px;}
.y8f{bottom:762.765000px;}
.y75{bottom:774.285000px;}
.yc8{bottom:775.905000px;}
.y106{bottom:781.125000px;}
.y11c{bottom:784.725000px;}
.y57{bottom:785.985000px;}
.y8e{bottom:787.425000px;}
.y17{bottom:787.965000px;}
.y105{bottom:799.845000px;}
.y74{bottom:802.725000px;}
.yc7{bottom:804.525000px;}
.y16{bottom:805.245000px;}
.y56{bottom:814.425000px;}
.y103{bottom:821.625000px;}
.y15{bottom:823.245000px;}
.y102{bottom:825.765000px;}
.y73{bottom:831.345000px;}
.yc6{bottom:832.965000px;}
.y55{bottom:842.910000px;}
.y13{bottom:843.990000px;}
.y101{bottom:847.590000px;}
.y14{bottom:850.830000px;}
.y72{bottom:859.830000px;}
.yc5{bottom:861.450000px;}
.y12{bottom:864.330000px;}
.y100{bottom:869.370000px;}
.y54{bottom:871.350000px;}
.ye5{bottom:881.070000px;}
.y11{bottom:883.230000px;}
.y71{bottom:888.270000px;}
.yc4{bottom:889.890000px;}
.yff{bottom:891.150000px;}
.y53{bottom:899.790000px;}
.y10{bottom:902.310000px;}
.ye4{bottom:902.850000px;}
.yfe{bottom:912.750000px;}
.y70{bottom:916.710000px;}
.yc3{bottom:918.330000px;}
.yf{bottom:922.110000px;}
.ye3{bottom:924.450000px;}
.y52{bottom:928.230000px;}
.yfd{bottom:934.530000px;}
.ye{bottom:946.230000px;}
.yc2{bottom:946.770000px;}
.y6f{bottom:955.410000px;}
.yfc{bottom:956.310000px;}
.y51{bottom:956.670000px;}
.ye2{bottom:968.010000px;}
.yd{bottom:969.810000px;}
.yc1{bottom:975.210000px;}
.yfb{bottom:978.090000px;}
.y50{bottom:985.110000px;}
.yc{bottom:990.510000px;}
.yfa{bottom:999.870000px;}
.yc0{bottom:1003.650000px;}
.yb{bottom:1011.210000px;}
.y4f{bottom:1013.730000px;}
.ye1{bottom:1015.170000px;}
.yf9{bottom:1021.650000px;}
.ybf{bottom:1023.270000px;}
.y5{bottom:1032.450000px;}
.y4e{bottom:1042.170000px;}
.yf8{bottom:1044.150000px;}
.ybe{bottom:1045.050000px;}
.ybd{bottom:1066.830000px;}
.y4d{bottom:1070.610000px;}
.yf7{bottom:1072.050000px;}
.ybc{bottom:1088.610000px;}
.y7{bottom:1095.990000px;}
.y4c{bottom:1099.050000px;}
.ybb{bottom:1110.390000px;}
.y4b{bottom:1127.520000px;}
.yba{bottom:1132.920000px;}
.y4a{bottom:1155.960000px;}
.yb9{bottom:1157.400000px;}
.y2{bottom:1176.120000px;}
.y1{bottom:1195.380000px;}
.h22{height:2.032031px;}
.h6{height:4.187813px;}
.h1e{height:17.100000px;}
.h20{height:17.136000px;}
.h1d{height:17.280000px;}
.h1f{height:17.316000px;}
.h18{height:34.036523px;}
.h1a{height:34.855313px;}
.h14{height:35.280000px;}
.h13{height:37.800000px;}
.h10{height:39.760312px;}
.h12{height:42.164648px;}
.h2{height:43.146720px;}
.h3{height:43.448555px;}
.h19{height:46.736719px;}
.h17{height:49.255313px;}
.ha{height:50.800781px;}
.h4{height:53.573906px;}
.h1c{height:54.596250px;}
.h11{height:59.343750px;}
.he{height:59.383125px;}
.hc{height:59.436914px;}
.h9{height:63.540000px;}
.hb{height:64.546875px;}
.h1b{height:66.060000px;}
.hf{height:67.120313px;}
.h8{height:69.669141px;}
.h7{height:70.956000px;}
.hd{height:75.519844px;}
.h5{height:134.496000px;}
.h16{height:239.250000px;}
.h21{height:243.750000px;}
.h15{height:358.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:2.700000px;}
.w20{width:22.320000px;}
.w8{width:23.040000px;}
.w2d{width:46.440000px;}
.w11{width:48.420000px;}
.w1c{width:48.600000px;}
.w16{width:48.636000px;}
.w27{width:49.680000px;}
.w2e{width:49.860000px;}
.wc{width:51.336000px;}
.w24{width:52.056000px;}
.w23{width:52.740000px;}
.wd{width:53.820000px;}
.wb{width:60.120000px;}
.w1e{width:67.320000px;}
.w10{width:71.820000px;}
.w2b{width:72.360000px;}
.we{width:78.300000px;}
.w22{width:88.380000px;}
.w2a{width:91.116000px;}
.w14{width:92.736000px;}
.wf{width:102.816000px;}
.w21{width:103.176000px;}
.w2c{width:103.536000px;}
.w19{width:103.896000px;}
.w5{width:108.540000px;}
.w25{width:109.440000px;}
.w1f{width:113.256000px;}
.w12{width:117.396000px;}
.w13{width:117.900000px;}
.w1b{width:127.296000px;}
.w15{width:131.436000px;}
.w18{width:154.980000px;}
.w26{width:164.010000px;}
.w1a{width:177.330000px;}
.w7{width:261.435000px;}
.w3{width:308.775000px;}
.w4{width:348.015000px;}
.w17{width:387.615000px;}
.w28{width:454.035000px;}
.w1d{width:462.885000px;}
.w9{width:481.035000px;}
.wa{width:486.435000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.080000px;}
.x49{left:3.600000px;}
.x2f{left:4.854000px;}
.x2a{left:5.976000px;}
.x5{left:8.100000px;}
.x13{left:10.800000px;}
.x3e{left:12.240000px;}
.x1d{left:13.680000px;}
.x19{left:15.120000px;}
.x1b{left:19.110000px;}
.x56{left:20.520000px;}
.x57{left:23.040000px;}
.x20{left:24.480000px;}
.x7{left:26.460000px;}
.x1e{left:27.900000px;}
.x40{left:34.560000px;}
.x4c{left:35.820000px;}
.x31{left:36.945000px;}
.x27{left:38.910000px;}
.x1f{left:39.990000px;}
.x4a{left:41.400000px;}
.x4b{left:43.200000px;}
.x26{left:51.120000px;}
.x38{left:56.160000px;}
.x4{left:63.900000px;}
.x11{left:68.759987px;}
.x30{left:73.620000px;}
.x9{left:76.679987px;}
.x35{left:81.000000px;}
.x14{left:85.139987px;}
.x29{left:95.400000px;}
.x15{left:117.935987px;}
.x2c{left:128.874000px;}
.x2b{left:146.376000px;}
.x3c{left:175.185000px;}
.x21{left:188.130000px;}
.x3a{left:189.750000px;}
.x51{left:192.809987px;}
.x46{left:199.649987px;}
.x4d{left:212.070000px;}
.xf{left:214.769987px;}
.xb{left:231.869973px;}
.xc{left:237.989987px;}
.x3b{left:240.510000px;}
.x3f{left:259.770000px;}
.x39{left:261.209987px;}
.x32{left:269.309987px;}
.x10{left:279.929987px;}
.x16{left:282.989987px;}
.x3d{left:292.169987px;}
.x17{left:294.330000px;}
.xa{left:298.469987px;}
.x36{left:311.654987px;}
.xd{left:325.335000px;}
.x28{left:329.474987px;}
.x33{left:332.535000px;}
.x47{left:335.055000px;}
.x1{left:338.834987px;}
.x12{left:345.855000px;}
.xe{left:348.375000px;}
.x52{left:353.775000px;}
.x23{left:358.455000px;}
.x6{left:372.675000px;}
.x41{left:375.195000px;}
.x34{left:383.295000px;}
.x42{left:399.675000px;}
.x18{left:403.815000px;}
.x37{left:408.315000px;}
.x53{left:428.295000px;}
.x3{left:439.094987px;}
.x2{left:446.654987px;}
.x24{left:478.515000px;}
.x1a{left:484.455000px;}
.x43{left:505.185000px;}
.x54{left:534.165000px;}
.x2d{left:536.325000px;}
.x25{left:573.585000px;}
.x55{left:582.765000px;}
.x1c{left:589.425000px;}
.x44{left:595.905000px;}
.x48{left:613.005000px;}
.x45{left:650.805000px;}
.x4e{left:668.445000px;}
.x4f{left:673.305000px;}
.x50{left:678.165000px;}
.x2e{left:693.645000px;}
.x8{left:720.690000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.320640pt;}
.ls6{letter-spacing:0.446933pt;}
.ls10{letter-spacing:0.640000pt;}
.ls3{letter-spacing:13.600000pt;}
.ls8{letter-spacing:14.991360pt;}
.ls1{letter-spacing:57.120000pt;}
.ls13{letter-spacing:59.520000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.223573pt;}
.ws5{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.351467pt;}
.ws9{word-spacing:-14.176000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-4.012160pt;}
._d{margin-left:-2.974720pt;}
._6{margin-left:-1.859200pt;}
._1{margin-left:-0.913778pt;}
._0{width:0.903040pt;}
._c{width:2.651022pt;}
._10{width:3.589618pt;}
._8{width:4.515200pt;}
._7{width:5.418240pt;}
._e{width:6.693120pt;}
._11{width:7.669120pt;}
._13{width:8.792320pt;}
._b{width:10.092800pt;}
._5{width:11.006578pt;}
._4{width:12.111360pt;}
._12{width:13.248000pt;}
._a{width:16.467200pt;}
._9{width:17.476480pt;}
._16{width:18.723840pt;}
._17{width:20.078080pt;}
._15{width:21.726720pt;}
._19{width:28.237511pt;}
._18{width:29.322240pt;}
._1c{width:30.440960pt;}
._1d{width:31.514880pt;}
._2{width:57.600000pt;}
._1e{width:59.115520pt;}
._1f{width:60.405760pt;}
._1a{width:70.361600pt;}
._1b{width:71.800107pt;}
._f{width:75.377280pt;}
._3{width:178.848000pt;}
.fs8{font-size:2.560000pt;}
.fs1{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y49{bottom:-30.440000pt;}
.y48{bottom:-15.040000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:0.320000pt;}
.y9{bottom:0.640000pt;}
.y90{bottom:2.880000pt;}
.y1b{bottom:10.880000pt;}
.y19{bottom:13.120000pt;}
.y46{bottom:15.520000pt;}
.y30{bottom:26.240000pt;}
.ya{bottom:28.640000pt;}
.y8{bottom:29.626667pt;}
.y45{bottom:30.880000pt;}
.y2f{bottom:41.600000pt;}
.y44{bottom:46.240000pt;}
.y4{bottom:51.232000pt;}
.y2e{bottom:56.960000pt;}
.y3{bottom:68.032000pt;}
.y2d{bottom:72.320000pt;}
.y42{bottom:83.392000pt;}
.yb8{bottom:83.872000pt;}
.yf6{bottom:87.072000pt;}
.y2c{bottom:87.520000pt;}
.y11a{bottom:91.392000pt;}
.y119{bottom:95.712000pt;}
.yaa{bottom:99.072000pt;}
.y41{bottom:99.712000pt;}
.y2b{bottom:102.880000pt;}
.y104{bottom:103.560000pt;}
.y8c{bottom:106.432000pt;}
.yb7{bottom:107.872000pt;}
.yf5{bottom:112.352000pt;}
.y118{bottom:114.912000pt;}
.y40{bottom:115.072000pt;}
.ya9{bottom:116.512000pt;}
.y6e{bottom:116.672000pt;}
.y6{bottom:118.106667pt;}
.y2a{bottom:118.240000pt;}
.y3f{bottom:119.712000pt;}
.y36{bottom:122.240000pt;}
.ye0{bottom:124.352000pt;}
.y131{bottom:127.072000pt;}
.y3e{bottom:131.552000pt;}
.y8b{bottom:131.712000pt;}
.yb6{bottom:133.152000pt;}
.y29{bottom:133.600000pt;}
.y117{bottom:134.266667pt;}
.ya8{bottom:135.706667pt;}
.yf4{bottom:137.626667pt;}
.y6d{bottom:141.946667pt;}
.y35{bottom:145.600000pt;}
.y28{bottom:148.960000pt;}
.ydf{bottom:149.626667pt;}
.y130{bottom:152.346667pt;}
.y116{bottom:153.626667pt;}
.ya7{bottom:155.066667pt;}
.y8a{bottom:156.986667pt;}
.yb5{bottom:158.426667pt;}
.y3d{bottom:160.346667pt;}
.yf3{bottom:162.906667pt;}
.y27{bottom:164.186667pt;}
.y8d{bottom:166.106667pt;}
.y6c{bottom:167.226667pt;}
.y34{bottom:168.826667pt;}
.y115{bottom:172.986667pt;}
.ya6{bottom:174.426667pt;}
.yde{bottom:174.906667pt;}
.y12f{bottom:177.626667pt;}
.y26{bottom:179.546667pt;}
.y89{bottom:182.266667pt;}
.yb4{bottom:183.706667pt;}
.y3c{bottom:185.626667pt;}
.yf2{bottom:188.346667pt;}
.y33{bottom:192.186667pt;}
.y6b{bottom:192.506667pt;}
.y114{bottom:192.986667pt;}
.ya5{bottom:193.786667pt;}
.y25{bottom:194.906667pt;}
.ydd{bottom:200.186667pt;}
.y12e{bottom:202.906667pt;}
.y88{bottom:207.546667pt;}
.yb3{bottom:208.986667pt;}
.y24{bottom:210.266667pt;}
.yf1{bottom:213.626667pt;}
.ya4{bottom:213.786667pt;}
.y113{bottom:214.906667pt;}
.y6a{bottom:217.946667pt;}
.y3b{bottom:220.186667pt;}
.ydc{bottom:225.466667pt;}
.y23{bottom:225.626667pt;}
.y12d{bottom:228.346667pt;}
.y87{bottom:232.826667pt;}
.yb2{bottom:234.266667pt;}
.ya3{bottom:235.706667pt;}
.yf0{bottom:238.906667pt;}
.y22{bottom:240.986667pt;}
.y69{bottom:243.266667pt;}
.y3a{bottom:246.626667pt;}
.ydb{bottom:250.786667pt;}
.y12c{bottom:253.666667pt;}
.y21{bottom:256.186667pt;}
.y86{bottom:258.146667pt;}
.ya2{bottom:259.746667pt;}
.yef{bottom:264.226667pt;}
.y68{bottom:268.546667pt;}
.y39{bottom:269.826667pt;}
.y43{bottom:270.626667pt;}
.y20{bottom:271.546667pt;}
.yda{bottom:276.066667pt;}
.y12b{bottom:278.946667pt;}
.y85{bottom:283.586667pt;}
.ya1{bottom:285.026667pt;}
.y38{bottom:285.986667pt;}
.y1f{bottom:286.906667pt;}
.yee{bottom:289.506667pt;}
.y67{bottom:293.826667pt;}
.y1d{bottom:298.266667pt;}
.yd9{bottom:301.506667pt;}
.y1e{bottom:302.266667pt;}
.y37{bottom:303.106667pt;}
.y12a{bottom:304.226667pt;}
.y84{bottom:308.866667pt;}
.ya0{bottom:310.306667pt;}
.yed{bottom:314.786667pt;}
.y66{bottom:319.106667pt;}
.yd8{bottom:326.786667pt;}
.y129{bottom:329.506667pt;}
.y83{bottom:334.146667pt;}
.y9f{bottom:335.586667pt;}
.y1c{bottom:337.186667pt;}
.yec{bottom:340.066667pt;}
.y65{bottom:344.386667pt;}
.yd7{bottom:352.066667pt;}
.y128{bottom:354.786667pt;}
.y82{bottom:359.426667pt;}
.y9e{bottom:360.866667pt;}
.yeb{bottom:365.346667pt;}
.y64{bottom:369.666667pt;}
.yd6{bottom:377.346667pt;}
.y127{bottom:380.066667pt;}
.yea{bottom:382.786667pt;}
.y81{bottom:384.706667pt;}
.y9d{bottom:386.146667pt;}
.y112{bottom:390.626667pt;}
.y63{bottom:394.946667pt;}
.ye9{bottom:402.146667pt;}
.yd5{bottom:402.626667pt;}
.y126{bottom:405.346667pt;}
.y80{bottom:409.986667pt;}
.y9c{bottom:411.426667pt;}
.y111{bottom:415.906667pt;}
.y62{bottom:420.226667pt;}
.ye8{bottom:421.506667pt;}
.yd4{bottom:427.906667pt;}
.y125{bottom:430.626667pt;}
.y7f{bottom:435.266667pt;}
.y9b{bottom:436.706667pt;}
.y110{bottom:441.186667pt;}
.ye7{bottom:441.506667pt;}
.yd3{bottom:445.346667pt;}
.y61{bottom:445.666667pt;}
.y124{bottom:456.066667pt;}
.y7e{bottom:460.546667pt;}
.y9a{bottom:461.986667pt;}
.ye6{bottom:463.426667pt;}
.yd2{bottom:464.706667pt;}
.y10f{bottom:466.626667pt;}
.y11b{bottom:469.826667pt;}
.y60{bottom:470.946667pt;}
.yb1{bottom:479.426667pt;}
.y123{bottom:481.346667pt;}
.yd1{bottom:484.066667pt;}
.y7d{bottom:485.826667pt;}
.y99{bottom:487.426667pt;}
.y10e{bottom:491.906667pt;}
.y5f{bottom:496.253333pt;}
.yb0{bottom:498.813333pt;}
.yd0{bottom:503.453333pt;}
.y7c{bottom:511.293333pt;}
.y98{bottom:512.733333pt;}
.y122{bottom:515.773333pt;}
.y10d{bottom:517.213333pt;}
.yaf{bottom:518.173333pt;}
.y5e{bottom:521.533333pt;}
.ycf{bottom:522.653333pt;}
.y7b{bottom:536.573333pt;}
.yae{bottom:537.533333pt;}
.y97{bottom:538.013333pt;}
.y121{bottom:542.173333pt;}
.y10c{bottom:542.493333pt;}
.yce{bottom:542.653333pt;}
.y5d{bottom:546.813333pt;}
.y32{bottom:553.853333pt;}
.yad{bottom:556.893333pt;}
.y7a{bottom:561.853333pt;}
.y96{bottom:563.293333pt;}
.ycd{bottom:564.573333pt;}
.y120{bottom:567.453333pt;}
.y10b{bottom:567.773333pt;}
.y5c{bottom:572.093333pt;}
.yac{bottom:576.893333pt;}
.y95{bottom:580.733333pt;}
.y79{bottom:587.133333pt;}
.ycc{bottom:588.573333pt;}
.y31{bottom:589.213333pt;}
.y11f{bottom:592.893333pt;}
.y10a{bottom:593.053333pt;}
.y5b{bottom:597.373333pt;}
.yab{bottom:598.653333pt;}
.y94{bottom:600.093333pt;}
.y78{bottom:612.413333pt;}
.ycb{bottom:613.853333pt;}
.y109{bottom:618.333333pt;}
.y93{bottom:619.293333pt;}
.y5a{bottom:622.653333pt;}
.y1a{bottom:624.573333pt;}
.y77{bottom:637.693333pt;}
.y92{bottom:638.653333pt;}
.yca{bottom:639.133333pt;}
.y108{bottom:643.613333pt;}
.y11e{bottom:645.693333pt;}
.y59{bottom:647.933333pt;}
.y91{bottom:658.013333pt;}
.y18{bottom:659.933333pt;}
.y76{bottom:662.973333pt;}
.yc9{bottom:664.413333pt;}
.y107{bottom:668.893333pt;}
.y11d{bottom:670.973333pt;}
.y58{bottom:673.373333pt;}
.y8f{bottom:678.013333pt;}
.y75{bottom:688.253333pt;}
.yc8{bottom:689.693333pt;}
.y106{bottom:694.333333pt;}
.y11c{bottom:697.533333pt;}
.y57{bottom:698.653333pt;}
.y8e{bottom:699.933333pt;}
.y17{bottom:700.413333pt;}
.y105{bottom:710.973333pt;}
.y74{bottom:713.533333pt;}
.yc7{bottom:715.133333pt;}
.y16{bottom:715.773333pt;}
.y56{bottom:723.933333pt;}
.y103{bottom:730.333333pt;}
.y15{bottom:731.773333pt;}
.y102{bottom:734.013333pt;}
.y73{bottom:738.973333pt;}
.yc6{bottom:740.413333pt;}
.y55{bottom:749.253333pt;}
.y13{bottom:750.213333pt;}
.y101{bottom:753.413333pt;}
.y14{bottom:756.293333pt;}
.y72{bottom:764.293333pt;}
.yc5{bottom:765.733333pt;}
.y12{bottom:768.293333pt;}
.y100{bottom:772.773333pt;}
.y54{bottom:774.533333pt;}
.ye5{bottom:783.173333pt;}
.y11{bottom:785.093333pt;}
.y71{bottom:789.573333pt;}
.yc4{bottom:791.013333pt;}
.yff{bottom:792.133333pt;}
.y53{bottom:799.813333pt;}
.y10{bottom:802.053333pt;}
.ye4{bottom:802.533333pt;}
.yfe{bottom:811.333333pt;}
.y70{bottom:814.853333pt;}
.yc3{bottom:816.293333pt;}
.yf{bottom:819.653333pt;}
.ye3{bottom:821.733333pt;}
.y52{bottom:825.093333pt;}
.yfd{bottom:830.693333pt;}
.ye{bottom:841.093333pt;}
.yc2{bottom:841.573333pt;}
.y6f{bottom:849.253333pt;}
.yfc{bottom:850.053333pt;}
.y51{bottom:850.373333pt;}
.ye2{bottom:860.453333pt;}
.yd{bottom:862.053333pt;}
.yc1{bottom:866.853333pt;}
.yfb{bottom:869.413333pt;}
.y50{bottom:875.653333pt;}
.yc{bottom:880.453333pt;}
.yfa{bottom:888.773333pt;}
.yc0{bottom:892.133333pt;}
.yb{bottom:898.853333pt;}
.y4f{bottom:901.093333pt;}
.ye1{bottom:902.373333pt;}
.yf9{bottom:908.133333pt;}
.ybf{bottom:909.573333pt;}
.y5{bottom:917.733333pt;}
.y4e{bottom:926.373333pt;}
.yf8{bottom:928.133333pt;}
.ybe{bottom:928.933333pt;}
.ybd{bottom:948.293333pt;}
.y4d{bottom:951.653333pt;}
.yf7{bottom:952.933333pt;}
.ybc{bottom:967.653333pt;}
.y7{bottom:974.213333pt;}
.y4c{bottom:976.933333pt;}
.ybb{bottom:987.013333pt;}
.y4b{bottom:1002.240000pt;}
.yba{bottom:1007.040000pt;}
.y4a{bottom:1027.520000pt;}
.yb9{bottom:1028.800000pt;}
.y2{bottom:1045.440000pt;}
.y1{bottom:1062.560000pt;}
.h22{height:1.806250pt;}
.h6{height:3.722500pt;}
.h1e{height:15.200000pt;}
.h20{height:15.232000pt;}
.h1d{height:15.360000pt;}
.h1f{height:15.392000pt;}
.h18{height:30.254687pt;}
.h1a{height:30.982500pt;}
.h14{height:31.360000pt;}
.h13{height:33.600000pt;}
.h10{height:35.342500pt;}
.h12{height:37.479688pt;}
.h2{height:38.352640pt;}
.h3{height:38.620938pt;}
.h19{height:41.543750pt;}
.h17{height:43.782500pt;}
.ha{height:45.156250pt;}
.h4{height:47.621250pt;}
.h1c{height:48.530000pt;}
.h11{height:52.750000pt;}
.he{height:52.785000pt;}
.hc{height:52.832812pt;}
.h9{height:56.480000pt;}
.hb{height:57.375000pt;}
.h1b{height:58.720000pt;}
.hf{height:59.662500pt;}
.h8{height:61.928125pt;}
.h7{height:63.072000pt;}
.hd{height:67.128750pt;}
.h5{height:119.552000pt;}
.h16{height:212.666667pt;}
.h21{height:216.666667pt;}
.h15{height:318.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:2.400000pt;}
.w20{width:19.840000pt;}
.w8{width:20.480000pt;}
.w2d{width:41.280000pt;}
.w11{width:43.040000pt;}
.w1c{width:43.200000pt;}
.w16{width:43.232000pt;}
.w27{width:44.160000pt;}
.w2e{width:44.320000pt;}
.wc{width:45.632000pt;}
.w24{width:46.272000pt;}
.w23{width:46.880000pt;}
.wd{width:47.840000pt;}
.wb{width:53.440000pt;}
.w1e{width:59.840000pt;}
.w10{width:63.840000pt;}
.w2b{width:64.320000pt;}
.we{width:69.600000pt;}
.w22{width:78.560000pt;}
.w2a{width:80.992000pt;}
.w14{width:82.432000pt;}
.wf{width:91.392000pt;}
.w21{width:91.712000pt;}
.w2c{width:92.032000pt;}
.w19{width:92.352000pt;}
.w5{width:96.480000pt;}
.w25{width:97.280000pt;}
.w1f{width:100.672000pt;}
.w12{width:104.352000pt;}
.w13{width:104.800000pt;}
.w1b{width:113.152000pt;}
.w15{width:116.832000pt;}
.w18{width:137.760000pt;}
.w26{width:145.786667pt;}
.w1a{width:157.626667pt;}
.w7{width:232.386667pt;}
.w3{width:274.466667pt;}
.w4{width:309.346667pt;}
.w17{width:344.546667pt;}
.w28{width:403.586667pt;}
.w1d{width:411.453333pt;}
.w9{width:427.586667pt;}
.wa{width:432.386667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:0.960000pt;}
.x49{left:3.200000pt;}
.x2f{left:4.314667pt;}
.x2a{left:5.312000pt;}
.x5{left:7.200000pt;}
.x13{left:9.600000pt;}
.x3e{left:10.880000pt;}
.x1d{left:12.160000pt;}
.x19{left:13.440000pt;}
.x1b{left:16.986667pt;}
.x56{left:18.240000pt;}
.x57{left:20.480000pt;}
.x20{left:21.760000pt;}
.x7{left:23.520000pt;}
.x1e{left:24.800000pt;}
.x40{left:30.720000pt;}
.x4c{left:31.840000pt;}
.x31{left:32.840000pt;}
.x27{left:34.586667pt;}
.x1f{left:35.546667pt;}
.x4a{left:36.800000pt;}
.x4b{left:38.400000pt;}
.x26{left:45.440000pt;}
.x38{left:49.920000pt;}
.x4{left:56.800000pt;}
.x11{left:61.119988pt;}
.x30{left:65.440000pt;}
.x9{left:68.159988pt;}
.x35{left:72.000000pt;}
.x14{left:75.679988pt;}
.x29{left:84.800000pt;}
.x15{left:104.831988pt;}
.x2c{left:114.554667pt;}
.x2b{left:130.112000pt;}
.x3c{left:155.720000pt;}
.x21{left:167.226667pt;}
.x3a{left:168.666667pt;}
.x51{left:171.386655pt;}
.x46{left:177.466655pt;}
.x4d{left:188.506667pt;}
.xf{left:190.906655pt;}
.xb{left:206.106643pt;}
.xc{left:211.546655pt;}
.x3b{left:213.786667pt;}
.x3f{left:230.906667pt;}
.x39{left:232.186655pt;}
.x32{left:239.386655pt;}
.x10{left:248.826655pt;}
.x16{left:251.546655pt;}
.x3d{left:259.706655pt;}
.x17{left:261.626667pt;}
.xa{left:265.306655pt;}
.x36{left:277.026655pt;}
.xd{left:289.186667pt;}
.x28{left:292.866655pt;}
.x33{left:295.586667pt;}
.x47{left:297.826667pt;}
.x1{left:301.186655pt;}
.x12{left:307.426667pt;}
.xe{left:309.666667pt;}
.x52{left:314.466667pt;}
.x23{left:318.626667pt;}
.x6{left:331.266667pt;}
.x41{left:333.506667pt;}
.x34{left:340.706667pt;}
.x42{left:355.266667pt;}
.x18{left:358.946667pt;}
.x37{left:362.946667pt;}
.x53{left:380.706667pt;}
.x3{left:390.306655pt;}
.x2{left:397.026655pt;}
.x24{left:425.346667pt;}
.x1a{left:430.626667pt;}
.x43{left:449.053333pt;}
.x54{left:474.813333pt;}
.x2d{left:476.733333pt;}
.x25{left:509.853333pt;}
.x55{left:518.013333pt;}
.x1c{left:523.933333pt;}
.x44{left:529.693333pt;}
.x48{left:544.893333pt;}
.x45{left:578.493333pt;}
.x4e{left:594.173333pt;}
.x4f{left:598.493333pt;}
.x50{left:602.813333pt;}
.x2e{left:616.573333pt;}
.x8{left:640.613333pt;}
}




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