
    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_01df1ae88ed741b8adda4479.woff')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_2935e48e28cc5abe663d5159.woff')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_c8d609044baac5ee82a8b96d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a511b64eacafe9d00836c777.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69e17d9370df82b5c8894c21.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_4a0b22ba8d704a539f1230fc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5907ca2bd1cc6219493df099.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_f631e0a48e12162b6707b9bb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_82069a7b1802c137505c3eb4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6026e23e9c41f0cbdfd64f3e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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);}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.034560px;}
.lsb{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lse{letter-spacing:25.308000px;}
.ls1{letter-spacing:28.062720px;}
.ls10{letter-spacing:52.668000px;}
.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;}
}
.wsf{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.431360px;}
.ws7{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.976000px;}
.ws6{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.284000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.252000px;}
.wsa{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._4{width:3.078000px;}
._6{width:4.125840px;}
._5{width:5.238000px;}
._8{width:7.074000px;}
._7{width:8.370000px;}
._9{width:9.666000px;}
._3{width:10.991520px;}
._c{width:12.076560px;}
._13{width:13.577040px;}
._f{width:15.174000px;}
._14{width:16.316400px;}
._12{width:17.496000px;}
._11{width:18.522000px;}
._e{width:19.739520px;}
._d{width:21.438000px;}
._b{width:22.626000px;}
._a{width:23.868000px;}
._16{width:24.878640px;}
._18{width:26.259360px;}
._1c{width:27.324000px;}
._1d{width:28.512000px;}
._1a{width:30.240000px;}
._19{width:31.320000px;}
._1b{width:32.400000px;}
._21{width:34.074000px;}
._17{width:35.100000px;}
._30{width:36.181680px;}
._22{width:37.294560px;}
._10{width:38.448000px;}
._2e{width:39.557040px;}
._26{width:40.662000px;}
._25{width:41.688000px;}
._1f{width:43.092000px;}
._20{width:44.326320px;}
._2a{width:46.332000px;}
._33{width:48.078000px;}
._23{width:49.194000px;}
._24{width:50.464320px;}
._2b{width:52.542000px;}
._2c{width:53.830320px;}
._2f{width:59.148000px;}
._15{width:62.694000px;}
._1e{width:68.447520px;}
._27{width:69.606960px;}
._31{width:71.697360px;}
._29{width:80.481600px;}
._2d{width:82.103040px;}
._28{width:114.384960px;}
._32{width:250.225680px;}
._2{width:2903.467200px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(31,35,40);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.y34{bottom:-2.445000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y46{bottom:6.990000px;}
.y8{bottom:22.500000px;}
.y33{bottom:25.485000px;}
.y7{bottom:41.040000px;}
.y6{bottom:56.880000px;}
.y30{bottom:60.585000px;}
.y3e{bottom:69.330000px;}
.y3d{bottom:89.130000px;}
.y29{bottom:92.160000px;}
.y83{bottom:92.700000px;}
.y111{bottom:93.600000px;}
.ye3{bottom:94.500000px;}
.yb8{bottom:95.580000px;}
.y1d{bottom:101.160000px;}
.y3c{bottom:109.155000px;}
.y28{bottom:110.160000px;}
.y82{bottom:110.520000px;}
.y110{bottom:111.420000px;}
.ye2{bottom:112.320000px;}
.yb7{bottom:113.400000px;}
.y1c{bottom:119.160000px;}
.y27{bottom:127.980000px;}
.y81{bottom:128.340000px;}
.y3b{bottom:128.955000px;}
.y10f{bottom:129.240000px;}
.ye1{bottom:130.140000px;}
.yb6{bottom:131.220000px;}
.y1b{bottom:136.980000px;}
.y2b{bottom:144.870000px;}
.y26{bottom:145.800000px;}
.y80{bottom:146.160000px;}
.y10e{bottom:147.060000px;}
.ye0{bottom:147.960000px;}
.y3a{bottom:148.755000px;}
.yb5{bottom:149.040000px;}
.y1a{bottom:154.800000px;}
.y25{bottom:163.620000px;}
.y7f{bottom:163.980000px;}
.y10d{bottom:164.880000px;}
.ydf{bottom:165.960000px;}
.yb4{bottom:166.860000px;}
.y39{bottom:168.555000px;}
.y19{bottom:172.620000px;}
.y24{bottom:181.440000px;}
.y7e{bottom:181.980000px;}
.y10c{bottom:182.880000px;}
.yde{bottom:183.780000px;}
.yb3{bottom:184.860000px;}
.y38{bottom:188.355000px;}
.y18{bottom:190.440000px;}
.y23{bottom:199.260000px;}
.y7d{bottom:199.800000px;}
.y10b{bottom:200.700000px;}
.ydd{bottom:201.600000px;}
.yb2{bottom:202.680000px;}
.y17{bottom:208.290000px;}
.y37{bottom:208.335000px;}
.y22{bottom:217.290000px;}
.y7c{bottom:217.650000px;}
.y10a{bottom:218.550000px;}
.ydc{bottom:219.450000px;}
.yb1{bottom:220.530000px;}
.y16{bottom:226.290000px;}
.y21{bottom:235.110000px;}
.y7b{bottom:235.470000px;}
.y109{bottom:236.370000px;}
.ydb{bottom:237.270000px;}
.yb0{bottom:238.350000px;}
.y15{bottom:244.110000px;}
.y7a{bottom:253.290000px;}
.y108{bottom:254.190000px;}
.y20{bottom:254.910000px;}
.yda{bottom:255.090000px;}
.yaf{bottom:256.170000px;}
.y14{bottom:261.930000px;}
.y79{bottom:271.110000px;}
.y107{bottom:272.190000px;}
.yd9{bottom:273.090000px;}
.yae{bottom:274.170000px;}
.y13{bottom:279.750000px;}
.y1f{bottom:287.670000px;}
.y78{bottom:289.110000px;}
.y106{bottom:290.010000px;}
.yd8{bottom:290.910000px;}
.yad{bottom:291.990000px;}
.y12{bottom:299.550000px;}
.y1e{bottom:305.490000px;}
.yf1{bottom:306.030000px;}
.y77{bottom:306.930000px;}
.yd7{bottom:308.370000px;}
.yac{bottom:309.810000px;}
.yf0{bottom:323.850000px;}
.y76{bottom:324.750000px;}
.yab{bottom:327.630000px;}
.y11{bottom:335.190000px;}
.yd6{bottom:335.550000px;}
.yef{bottom:341.670000px;}
.y75{bottom:342.570000px;}
.yaa{bottom:345.450000px;}
.y36{bottom:352.980000px;}
.yd5{bottom:353.370000px;}
.yee{bottom:359.490000px;}
.y74{bottom:360.390000px;}
.ya9{bottom:365.430000px;}
.yd4{bottom:371.370000px;}
.y40{bottom:373.350000px;}
.yed{bottom:377.310000px;}
.y73{bottom:378.210000px;}
.yd3{bottom:389.190000px;}
.ya8{bottom:391.170000px;}
.yec{bottom:395.310000px;}
.y72{bottom:396.210000px;}
.y3f{bottom:402.510000px;}
.yd2{bottom:407.010000px;}
.yeb{bottom:413.130000px;}
.y71{bottom:414.030000px;}
.ya7{bottom:416.910000px;}
.yd1{bottom:424.830000px;}
.yea{bottom:430.950000px;}
.y70{bottom:431.850000px;}
.y122{bottom:434.910000px;}
.ya6{bottom:442.695000px;}
.ye9{bottom:448.815000px;}
.y6f{bottom:449.715000px;}
.yd0{bottom:460.515000px;}
.ye8{bottom:466.635000px;}
.y6e{bottom:467.535000px;}
.y121{bottom:471.315000px;}
.ya5{bottom:475.455000px;}
.ycf{bottom:478.515000px;}
.ye7{bottom:484.455000px;}
.y6d{bottom:485.535000px;}
.y120{bottom:493.275000px;}
.ya4{bottom:493.455000px;}
.yce{bottom:496.335000px;}
.ye6{bottom:502.455000px;}
.y105{bottom:503.355000px;}
.y6c{bottom:505.335000px;}
.y11f{bottom:511.095000px;}
.ya3{bottom:511.275000px;}
.ycd{bottom:514.155000px;}
.ye5{bottom:520.275000px;}
.y104{bottom:521.175000px;}
.y11e{bottom:528.915000px;}
.ya2{bottom:529.095000px;}
.ycc{bottom:531.975000px;}
.y6b{bottom:538.095000px;}
.y103{bottom:538.995000px;}
.y11d{bottom:546.735000px;}
.ya1{bottom:546.915000px;}
.ycb{bottom:549.795000px;}
.y6a{bottom:555.915000px;}
.y102{bottom:556.815000px;}
.ya0{bottom:564.735000px;}
.yca{bottom:567.255000px;}
.y69{bottom:573.735000px;}
.y101{bottom:574.635000px;}
.y35{bottom:581.115000px;}
.y11c{bottom:582.555000px;}
.y9f{bottom:582.735000px;}
.yc9{bottom:585.255000px;}
.y68{bottom:591.735000px;}
.y100{bottom:592.635000px;}
.y11b{bottom:600.375000px;}
.y9e{bottom:600.555000px;}
.y67{bottom:609.555000px;}
.yff{bottom:610.455000px;}
.yc8{bottom:612.435000px;}
.y10{bottom:616.755000px;}
.y11a{bottom:618.195000px;}
.y9d{bottom:618.375000px;}
.y66{bottom:627.375000px;}
.yfe{bottom:628.275000px;}
.yc7{bottom:630.255000px;}
.y119{bottom:636.015000px;}
.y9c{bottom:636.195000px;}
.y65{bottom:645.195000px;}
.yfd{bottom:646.095000px;}
.yc6{bottom:648.075000px;}
.y118{bottom:653.835000px;}
.y9b{bottom:654.015000px;}
.yf{bottom:657.975000px;}
.y64{bottom:663.015000px;}
.yfc{bottom:663.915000px;}
.yc5{bottom:665.895000px;}
.y9a{bottom:671.835000px;}
.ye{bottom:673.635000px;}
.y32{bottom:679.680000px;}
.y63{bottom:680.865000px;}
.yfb{bottom:681.945000px;}
.yc4{bottom:683.925000px;}
.y117{bottom:689.685000px;}
.y99{bottom:689.865000px;}
.y2f{bottom:698.220000px;}
.y62{bottom:698.865000px;}
.yfa{bottom:699.765000px;}
.yc3{bottom:701.745000px;}
.y116{bottom:707.505000px;}
.y98{bottom:707.685000px;}
.y61{bottom:716.685000px;}
.yf9{bottom:717.585000px;}
.yc2{bottom:719.565000px;}
.y115{bottom:725.325000px;}
.y97{bottom:725.505000px;}
.yd{bottom:725.865000px;}
.y60{bottom:734.505000px;}
.yf8{bottom:735.405000px;}
.yc1{bottom:737.385000px;}
.y114{bottom:743.145000px;}
.y96{bottom:743.325000px;}
.y5f{bottom:752.325000px;}
.yf7{bottom:753.225000px;}
.yc0{bottom:755.205000px;}
.y31{bottom:755.925000px;}
.y95{bottom:761.145000px;}
.y5e{bottom:770.145000px;}
.yf6{bottom:771.045000px;}
.ybf{bottom:775.185000px;}
.yc{bottom:778.245000px;}
.y113{bottom:778.965000px;}
.y94{bottom:779.145000px;}
.y5d{bottom:788.145000px;}
.yf5{bottom:789.045000px;}
.y93{bottom:796.965000px;}
.y2e{bottom:800.385000px;}
.ybe{bottom:800.925000px;}
.y112{bottom:805.785000px;}
.y5c{bottom:805.965000px;}
.yf4{bottom:806.865000px;}
.y92{bottom:814.785000px;}
.y5b{bottom:823.785000px;}
.yf3{bottom:824.685000px;}
.ybd{bottom:826.665000px;}
.y91{bottom:832.605000px;}
.y5a{bottom:841.605000px;}
.yf2{bottom:844.485000px;}
.y90{bottom:850.425000px;}
.y59{bottom:859.425000px;}
.y8f{bottom:868.245000px;}
.y2d{bottom:872.385000px;}
.ybc{bottom:877.245000px;}
.y58{bottom:886.245000px;}
.ybb{bottom:895.245000px;}
.y2c{bottom:897.225000px;}
.y57{bottom:904.245000px;}
.y8e{bottom:913.110000px;}
.y56{bottom:922.110000px;}
.y8d{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.y55{bottom:939.930000px;}
.y2a{bottom:941.400000px;}
.ye4{bottom:948.390000px;}
.y8c{bottom:948.750000px;}
.y45{bottom:955.800000px;}
.y54{bottom:957.750000px;}
.y8b{bottom:966.570000px;}
.y53{bottom:975.570000px;}
.y8a{bottom:984.570000px;}
.y44{bottom:989.430000px;}
.y52{bottom:993.570000px;}
.y89{bottom:1002.390000px;}
.y51{bottom:1011.390000px;}
.y43{bottom:1015.710000px;}
.y88{bottom:1020.210000px;}
.y50{bottom:1029.210000px;}
.y87{bottom:1038.030000px;}
.y42{bottom:1041.990000px;}
.y4f{bottom:1047.030000px;}
.y86{bottom:1055.850000px;}
.y4e{bottom:1064.850000px;}
.y41{bottom:1068.450000px;}
.y85{bottom:1073.670000px;}
.y4d{bottom:1082.670000px;}
.y84{bottom:1091.670000px;}
.y4c{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.yba{bottom:1109.490000px;}
.y4b{bottom:1118.490000px;}
.yb9{bottom:1127.310000px;}
.y4a{bottom:1136.310000px;}
.y49{bottom:1154.160000px;}
.y48{bottom:1171.980000px;}
.y47{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1d{height:37.705078px;}
.h14{height:40.500000px;}
.h13{height:40.985156px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h1c{height:54.421875px;}
.h1e{height:55.503491px;}
.h8{height:55.825312px;}
.h1b{height:56.214844px;}
.h16{height:58.621992px;}
.h12{height:58.651172px;}
.h18{height:58.763250px;}
.hd{height:59.092031px;}
.h19{height:60.226875px;}
.h6{height:65.010937px;}
.h15{height:66.757500px;}
.h1f{height:70.664062px;}
.h20{height:70.995234px;}
.h10{height:72.326250px;}
.h11{height:74.160000px;}
.hb{height:78.367500px;}
.hc{height:80.949375px;}
.hf{height:84.898125px;}
.h1a{height:132.480000px;}
.he{height:160.380000px;}
.h17{height:250.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w4{width:783.360000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xe{left:10.800000px;}
.x12{left:51.660000px;}
.x5{left:54.000000px;}
.x15{left:61.200000px;}
.x14{left:72.000000px;}
.x1c{left:81.000000px;}
.xf{left:86.976000px;}
.x1f{left:90.036000px;}
.x1{left:100.080000px;}
.x1e{left:108.036000px;}
.x20{left:117.036000px;}
.x11{left:156.810000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x1b{left:177.915000px;}
.x1a{left:198.360000px;}
.x18{left:256.890000px;}
.x16{left:265.575000px;}
.x13{left:273.675000px;}
.x10{left:293.295000px;}
.x19{left:324.435000px;}
.x7{left:356.655000px;}
.x17{left:358.635000px;}
.x3{left:367.920000px;}
.xc{left:465.945000px;}
.x4{left:468.900000px;}
.xd{left:492.945000px;}
.x21{left:501.945000px;}
.x1d{left:519.945000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.030720pt;}
.lsb{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lse{letter-spacing:22.496000pt;}
.ls1{letter-spacing:24.944640pt;}
.ls10{letter-spacing:46.816000pt;}
.wsf{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.280000pt;}
.ws1{word-spacing:-17.272320pt;}
.ws7{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.312000pt;}
.ws6{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.808000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.224000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._4{width:2.736000pt;}
._6{width:3.667413pt;}
._5{width:4.656000pt;}
._8{width:6.288000pt;}
._7{width:7.440000pt;}
._9{width:8.592000pt;}
._3{width:9.770240pt;}
._c{width:10.734720pt;}
._13{width:12.068480pt;}
._f{width:13.488000pt;}
._14{width:14.503467pt;}
._12{width:15.552000pt;}
._11{width:16.464000pt;}
._e{width:17.546240pt;}
._d{width:19.056000pt;}
._b{width:20.112000pt;}
._a{width:21.216000pt;}
._16{width:22.114347pt;}
._18{width:23.341653pt;}
._1c{width:24.288000pt;}
._1d{width:25.344000pt;}
._1a{width:26.880000pt;}
._19{width:27.840000pt;}
._1b{width:28.800000pt;}
._21{width:30.288000pt;}
._17{width:31.200000pt;}
._30{width:32.161493pt;}
._22{width:33.150720pt;}
._10{width:34.176000pt;}
._2e{width:35.161813pt;}
._26{width:36.144000pt;}
._25{width:37.056000pt;}
._1f{width:38.304000pt;}
._20{width:39.401173pt;}
._2a{width:41.184000pt;}
._33{width:42.736000pt;}
._23{width:43.728000pt;}
._24{width:44.857173pt;}
._2b{width:46.704000pt;}
._2c{width:47.849173pt;}
._2f{width:52.576000pt;}
._15{width:55.728000pt;}
._1e{width:60.842240pt;}
._27{width:61.872853pt;}
._31{width:63.730987pt;}
._29{width:71.539200pt;}
._2d{width:72.980480pt;}
._28{width:101.675520pt;}
._32{width:222.422827pt;}
._2{width:2580.859733pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.y34{bottom:-2.173333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y46{bottom:6.213333pt;}
.y8{bottom:20.000000pt;}
.y33{bottom:22.653333pt;}
.y7{bottom:36.480000pt;}
.y6{bottom:50.560000pt;}
.y30{bottom:53.853333pt;}
.y3e{bottom:61.626667pt;}
.y3d{bottom:79.226667pt;}
.y29{bottom:81.920000pt;}
.y83{bottom:82.400000pt;}
.y111{bottom:83.200000pt;}
.ye3{bottom:84.000000pt;}
.yb8{bottom:84.960000pt;}
.y1d{bottom:89.920000pt;}
.y3c{bottom:97.026667pt;}
.y28{bottom:97.920000pt;}
.y82{bottom:98.240000pt;}
.y110{bottom:99.040000pt;}
.ye2{bottom:99.840000pt;}
.yb7{bottom:100.800000pt;}
.y1c{bottom:105.920000pt;}
.y27{bottom:113.760000pt;}
.y81{bottom:114.080000pt;}
.y3b{bottom:114.626667pt;}
.y10f{bottom:114.880000pt;}
.ye1{bottom:115.680000pt;}
.yb6{bottom:116.640000pt;}
.y1b{bottom:121.760000pt;}
.y2b{bottom:128.773333pt;}
.y26{bottom:129.600000pt;}
.y80{bottom:129.920000pt;}
.y10e{bottom:130.720000pt;}
.ye0{bottom:131.520000pt;}
.y3a{bottom:132.226667pt;}
.yb5{bottom:132.480000pt;}
.y1a{bottom:137.600000pt;}
.y25{bottom:145.440000pt;}
.y7f{bottom:145.760000pt;}
.y10d{bottom:146.560000pt;}
.ydf{bottom:147.520000pt;}
.yb4{bottom:148.320000pt;}
.y39{bottom:149.826667pt;}
.y19{bottom:153.440000pt;}
.y24{bottom:161.280000pt;}
.y7e{bottom:161.760000pt;}
.y10c{bottom:162.560000pt;}
.yde{bottom:163.360000pt;}
.yb3{bottom:164.320000pt;}
.y38{bottom:167.426667pt;}
.y18{bottom:169.280000pt;}
.y23{bottom:177.120000pt;}
.y7d{bottom:177.600000pt;}
.y10b{bottom:178.400000pt;}
.ydd{bottom:179.200000pt;}
.yb2{bottom:180.160000pt;}
.y17{bottom:185.146667pt;}
.y37{bottom:185.186667pt;}
.y22{bottom:193.146667pt;}
.y7c{bottom:193.466667pt;}
.y10a{bottom:194.266667pt;}
.ydc{bottom:195.066667pt;}
.yb1{bottom:196.026667pt;}
.y16{bottom:201.146667pt;}
.y21{bottom:208.986667pt;}
.y7b{bottom:209.306667pt;}
.y109{bottom:210.106667pt;}
.ydb{bottom:210.906667pt;}
.yb0{bottom:211.866667pt;}
.y15{bottom:216.986667pt;}
.y7a{bottom:225.146667pt;}
.y108{bottom:225.946667pt;}
.y20{bottom:226.586667pt;}
.yda{bottom:226.746667pt;}
.yaf{bottom:227.706667pt;}
.y14{bottom:232.826667pt;}
.y79{bottom:240.986667pt;}
.y107{bottom:241.946667pt;}
.yd9{bottom:242.746667pt;}
.yae{bottom:243.706667pt;}
.y13{bottom:248.666667pt;}
.y1f{bottom:255.706667pt;}
.y78{bottom:256.986667pt;}
.y106{bottom:257.786667pt;}
.yd8{bottom:258.586667pt;}
.yad{bottom:259.546667pt;}
.y12{bottom:266.266667pt;}
.y1e{bottom:271.546667pt;}
.yf1{bottom:272.026667pt;}
.y77{bottom:272.826667pt;}
.yd7{bottom:274.106667pt;}
.yac{bottom:275.386667pt;}
.yf0{bottom:287.866667pt;}
.y76{bottom:288.666667pt;}
.yab{bottom:291.226667pt;}
.y11{bottom:297.946667pt;}
.yd6{bottom:298.266667pt;}
.yef{bottom:303.706667pt;}
.y75{bottom:304.506667pt;}
.yaa{bottom:307.066667pt;}
.y36{bottom:313.760000pt;}
.yd5{bottom:314.106667pt;}
.yee{bottom:319.546667pt;}
.y74{bottom:320.346667pt;}
.ya9{bottom:324.826667pt;}
.yd4{bottom:330.106667pt;}
.y40{bottom:331.866667pt;}
.yed{bottom:335.386667pt;}
.y73{bottom:336.186667pt;}
.yd3{bottom:345.946667pt;}
.ya8{bottom:347.706667pt;}
.yec{bottom:351.386667pt;}
.y72{bottom:352.186667pt;}
.y3f{bottom:357.786667pt;}
.yd2{bottom:361.786667pt;}
.yeb{bottom:367.226667pt;}
.y71{bottom:368.026667pt;}
.ya7{bottom:370.586667pt;}
.yd1{bottom:377.626667pt;}
.yea{bottom:383.066667pt;}
.y70{bottom:383.866667pt;}
.y122{bottom:386.586667pt;}
.ya6{bottom:393.506667pt;}
.ye9{bottom:398.946667pt;}
.y6f{bottom:399.746667pt;}
.yd0{bottom:409.346667pt;}
.ye8{bottom:414.786667pt;}
.y6e{bottom:415.586667pt;}
.y121{bottom:418.946667pt;}
.ya5{bottom:422.626667pt;}
.ycf{bottom:425.346667pt;}
.ye7{bottom:430.626667pt;}
.y6d{bottom:431.586667pt;}
.y120{bottom:438.466667pt;}
.ya4{bottom:438.626667pt;}
.yce{bottom:441.186667pt;}
.ye6{bottom:446.626667pt;}
.y105{bottom:447.426667pt;}
.y6c{bottom:449.186667pt;}
.y11f{bottom:454.306667pt;}
.ya3{bottom:454.466667pt;}
.ycd{bottom:457.026667pt;}
.ye5{bottom:462.466667pt;}
.y104{bottom:463.266667pt;}
.y11e{bottom:470.146667pt;}
.ya2{bottom:470.306667pt;}
.ycc{bottom:472.866667pt;}
.y6b{bottom:478.306667pt;}
.y103{bottom:479.106667pt;}
.y11d{bottom:485.986667pt;}
.ya1{bottom:486.146667pt;}
.ycb{bottom:488.706667pt;}
.y6a{bottom:494.146667pt;}
.y102{bottom:494.946667pt;}
.ya0{bottom:501.986667pt;}
.yca{bottom:504.226667pt;}
.y69{bottom:509.986667pt;}
.y101{bottom:510.786667pt;}
.y35{bottom:516.546667pt;}
.y11c{bottom:517.826667pt;}
.y9f{bottom:517.986667pt;}
.yc9{bottom:520.226667pt;}
.y68{bottom:525.986667pt;}
.y100{bottom:526.786667pt;}
.y11b{bottom:533.666667pt;}
.y9e{bottom:533.826667pt;}
.y67{bottom:541.826667pt;}
.yff{bottom:542.626667pt;}
.yc8{bottom:544.386667pt;}
.y10{bottom:548.226667pt;}
.y11a{bottom:549.506667pt;}
.y9d{bottom:549.666667pt;}
.y66{bottom:557.666667pt;}
.yfe{bottom:558.466667pt;}
.yc7{bottom:560.226667pt;}
.y119{bottom:565.346667pt;}
.y9c{bottom:565.506667pt;}
.y65{bottom:573.506667pt;}
.yfd{bottom:574.306667pt;}
.yc6{bottom:576.066667pt;}
.y118{bottom:581.186667pt;}
.y9b{bottom:581.346667pt;}
.yf{bottom:584.866667pt;}
.y64{bottom:589.346667pt;}
.yfc{bottom:590.146667pt;}
.yc5{bottom:591.906667pt;}
.y9a{bottom:597.186667pt;}
.ye{bottom:598.786667pt;}
.y32{bottom:604.160000pt;}
.y63{bottom:605.213333pt;}
.yfb{bottom:606.173333pt;}
.yc4{bottom:607.933333pt;}
.y117{bottom:613.053333pt;}
.y99{bottom:613.213333pt;}
.y2f{bottom:620.640000pt;}
.y62{bottom:621.213333pt;}
.yfa{bottom:622.013333pt;}
.yc3{bottom:623.773333pt;}
.y116{bottom:628.893333pt;}
.y98{bottom:629.053333pt;}
.y61{bottom:637.053333pt;}
.yf9{bottom:637.853333pt;}
.yc2{bottom:639.613333pt;}
.y115{bottom:644.733333pt;}
.y97{bottom:644.893333pt;}
.yd{bottom:645.213333pt;}
.y60{bottom:652.893333pt;}
.yf8{bottom:653.693333pt;}
.yc1{bottom:655.453333pt;}
.y114{bottom:660.573333pt;}
.y96{bottom:660.733333pt;}
.y5f{bottom:668.733333pt;}
.yf7{bottom:669.533333pt;}
.yc0{bottom:671.293333pt;}
.y31{bottom:671.933333pt;}
.y95{bottom:676.573333pt;}
.y5e{bottom:684.573333pt;}
.yf6{bottom:685.373333pt;}
.ybf{bottom:689.053333pt;}
.yc{bottom:691.773333pt;}
.y113{bottom:692.413333pt;}
.y94{bottom:692.573333pt;}
.y5d{bottom:700.573333pt;}
.yf5{bottom:701.373333pt;}
.y93{bottom:708.413333pt;}
.y2e{bottom:711.453333pt;}
.ybe{bottom:711.933333pt;}
.y112{bottom:716.253333pt;}
.y5c{bottom:716.413333pt;}
.yf4{bottom:717.213333pt;}
.y92{bottom:724.253333pt;}
.y5b{bottom:732.253333pt;}
.yf3{bottom:733.053333pt;}
.ybd{bottom:734.813333pt;}
.y91{bottom:740.093333pt;}
.y5a{bottom:748.093333pt;}
.yf2{bottom:750.653333pt;}
.y90{bottom:755.933333pt;}
.y59{bottom:763.933333pt;}
.y8f{bottom:771.773333pt;}
.y2d{bottom:775.453333pt;}
.ybc{bottom:779.773333pt;}
.y58{bottom:787.773333pt;}
.ybb{bottom:795.773333pt;}
.y2c{bottom:797.533333pt;}
.y57{bottom:803.773333pt;}
.y8e{bottom:811.653333pt;}
.y56{bottom:819.653333pt;}
.y8d{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.y55{bottom:835.493333pt;}
.y2a{bottom:836.800000pt;}
.ye4{bottom:843.013333pt;}
.y8c{bottom:843.333333pt;}
.y45{bottom:849.600000pt;}
.y54{bottom:851.333333pt;}
.y8b{bottom:859.173333pt;}
.y53{bottom:867.173333pt;}
.y8a{bottom:875.173333pt;}
.y44{bottom:879.493333pt;}
.y52{bottom:883.173333pt;}
.y89{bottom:891.013333pt;}
.y51{bottom:899.013333pt;}
.y43{bottom:902.853333pt;}
.y88{bottom:906.853333pt;}
.y50{bottom:914.853333pt;}
.y87{bottom:922.693333pt;}
.y42{bottom:926.213333pt;}
.y4f{bottom:930.693333pt;}
.y86{bottom:938.533333pt;}
.y4e{bottom:946.533333pt;}
.y41{bottom:949.733333pt;}
.y85{bottom:954.373333pt;}
.y4d{bottom:962.373333pt;}
.y84{bottom:970.373333pt;}
.y4c{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.yba{bottom:986.213333pt;}
.y4b{bottom:994.213333pt;}
.yb9{bottom:1002.053333pt;}
.y4a{bottom:1010.053333pt;}
.y49{bottom:1025.920000pt;}
.y48{bottom:1041.760000pt;}
.y47{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1d{height:33.515625pt;}
.h14{height:36.000000pt;}
.h13{height:36.431250pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h1c{height:48.375000pt;}
.h1e{height:49.336436pt;}
.h8{height:49.622500pt;}
.h1b{height:49.968750pt;}
.h16{height:52.108438pt;}
.h12{height:52.134375pt;}
.h18{height:52.234000pt;}
.hd{height:52.526250pt;}
.h19{height:53.535000pt;}
.h6{height:57.787500pt;}
.h15{height:59.340000pt;}
.h1f{height:62.812500pt;}
.h20{height:63.106875pt;}
.h10{height:64.290000pt;}
.h11{height:65.920000pt;}
.hb{height:69.660000pt;}
.hc{height:71.955000pt;}
.hf{height:75.465000pt;}
.h1a{height:117.760000pt;}
.he{height:142.560000pt;}
.h17{height:223.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w4{width:696.320000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xe{left:9.600000pt;}
.x12{left:45.920000pt;}
.x5{left:48.000000pt;}
.x15{left:54.400000pt;}
.x14{left:64.000000pt;}
.x1c{left:72.000000pt;}
.xf{left:77.312000pt;}
.x1f{left:80.032000pt;}
.x1{left:88.960000pt;}
.x1e{left:96.032000pt;}
.x20{left:104.032000pt;}
.x11{left:139.386667pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x1b{left:158.146667pt;}
.x1a{left:176.320000pt;}
.x18{left:228.346667pt;}
.x16{left:236.066667pt;}
.x13{left:243.266667pt;}
.x10{left:260.706667pt;}
.x19{left:288.386667pt;}
.x7{left:317.026667pt;}
.x17{left:318.786667pt;}
.x3{left:327.040000pt;}
.xc{left:414.173333pt;}
.x4{left:416.800000pt;}
.xd{left:438.173333pt;}
.x21{left:446.173333pt;}
.x1d{left:462.173333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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