
    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_bd4d78933844b85a68ebc83d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_38c9d543a203a7aecb111f7e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2e4a5191bc6c620981486304.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f5d3f917d3c5d3d18f41310.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bbcf97bc6c163f80dc285a4d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_421010c107853c0af5ced125.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_b0a38565af2e2274b028b1f9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6758ae80e2250eeb417762de.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aee4924739334abc7d85fb05.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.960000px;}
.v5{vertical-align:15.120000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:35.280000px;}
.ls4{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.288600px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270600px;}
.lsd{letter-spacing:-0.256800px;}
.ls16{letter-spacing:-0.223200px;}
.ls1c{letter-spacing:-0.187200px;}
.ls1e{letter-spacing:-0.175200px;}
.lsb{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.097800px;}
.lsa{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls21{letter-spacing:0.038160px;}
.ls1f{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.086400px;}
.ls1d{letter-spacing:0.246000px;}
.ls0{letter-spacing:0.281520px;}
.lse{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.388080px;}
.ls18{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.620000px;}
.ls22{letter-spacing:46.002720px;}
.ls1a{letter-spacing:48.162720px;}
.ls12{letter-spacing:52.372800px;}
.ls10{letter-spacing:64.002720px;}
.ls1b{letter-spacing:65.466720px;}
.ls19{letter-spacing:115.012800px;}
.ls13{letter-spacing:141.652800px;}
.ls1{letter-spacing:198.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.wsd{word-spacing:-13.504200px;}
.ws0{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.393200px;}
.wsb{word-spacing:-13.160160px;}
.ws2{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.040400px;}
.ws11{word-spacing:-12.972000px;}
.wsc{word-spacing:-12.890400px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.342200px;}
.ws9{word-spacing:-9.092400px;}
.wsf{word-spacing:-8.553600px;}
.ws4{word-spacing:-7.884000px;}
.ws5{word-spacing:-7.632000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-188.874000px;}
._1e{margin-left:-3.651360px;}
._f{margin-left:-2.623440px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._4{width:2.490240px;}
._1a{width:3.723120px;}
._14{width:4.840560px;}
._17{width:6.366720px;}
._16{width:7.529760px;}
._18{width:8.583120px;}
._12{width:9.643680px;}
._13{width:10.829760px;}
._8{width:12.011760px;}
._1c{width:13.045440px;}
._1b{width:14.700960px;}
._20{width:16.200960px;}
._1d{width:17.975760px;}
._b{width:19.428000px;}
._c{width:20.736720px;}
._11{width:22.242720px;}
._10{width:23.246640px;}
._15{width:24.268560px;}
._19{width:25.876080px;}
._22{width:27.071280px;}
._21{width:28.087200px;}
._a{width:29.473680px;}
._9{width:30.656880px;}
._7{width:33.830400px;}
._6{width:35.310240px;}
._1f{width:36.698640px;}
._e{width:38.491440px;}
._d{width:39.561120px;}
._2a{width:42.278400px;}
._28{width:43.783920px;}
._24{width:48.088800px;}
._27{width:49.594080px;}
._26{width:51.828720px;}
._23{width:71.647920px;}
._0{width:75.000000px;}
._29{width:203.274720px;}
._3{width:719.100000px;}
._25{width:902.222400px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(13,53,94);}
.fc7{color:rgb(13,13,13);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.420000px;}
.y10d{bottom:3.465000px;}
.y10a{bottom:21.060000px;}
.y10c{bottom:21.105000px;}
.y56{bottom:54.570000px;}
.y8{bottom:56.340000px;}
.y58{bottom:56.520000px;}
.y55{bottom:68.070000px;}
.y7{bottom:70.416000px;}
.y54{bottom:78.510000px;}
.y53{bottom:89.130000px;}
.y52{bottom:106.770000px;}
.yea{bottom:111.816000px;}
.y14c{bottom:116.316000px;}
.y40{bottom:116.496000px;}
.yb7{bottom:117.756000px;}
.y14d{bottom:122.256000px;}
.ye9{bottom:129.276000px;}
.y14b{bottom:133.776000px;}
.y3f{bottom:134.136000px;}
.yb6{bottom:135.396000px;}
.y92{bottom:139.896000px;}
.ye8{bottom:146.916000px;}
.y14a{bottom:151.410000px;}
.y3e{bottom:151.770000px;}
.yb5{bottom:152.850000px;}
.y91{bottom:157.350000px;}
.y51{bottom:159.690000px;}
.y117{bottom:160.050000px;}
.ye7{bottom:164.550000px;}
.y149{bottom:169.050000px;}
.y3d{bottom:169.410000px;}
.yb4{bottom:170.490000px;}
.y50{bottom:173.730000px;}
.y90{bottom:174.990000px;}
.y116{bottom:177.690000px;}
.ye6{bottom:182.010000px;}
.y148{bottom:186.690000px;}
.y3c{bottom:186.870000px;}
.y4f{bottom:187.770000px;}
.yb3{bottom:188.130000px;}
.y8f{bottom:192.630000px;}
.y115{bottom:195.150000px;}
.ye5{bottom:199.650000px;}
.y4e{bottom:201.810000px;}
.y147{bottom:204.150000px;}
.y3b{bottom:204.510000px;}
.yb2{bottom:205.770000px;}
.y8e{bottom:210.270000px;}
.y114{bottom:212.790000px;}
.y4d{bottom:216.030000px;}
.ye4{bottom:217.290000px;}
.y146{bottom:221.790000px;}
.y3a{bottom:222.150000px;}
.yb1{bottom:223.230000px;}
.y8d{bottom:227.730000px;}
.y4c{bottom:230.070000px;}
.y113{bottom:230.430000px;}
.ye3{bottom:234.750000px;}
.y145{bottom:239.430000px;}
.y39{bottom:239.610000px;}
.yb0{bottom:240.870000px;}
.y4b{bottom:244.110000px;}
.y8c{bottom:245.370000px;}
.y112{bottom:247.890000px;}
.ye2{bottom:252.390000px;}
.y4a{bottom:256.710000px;}
.y144{bottom:256.890000px;}
.y38{bottom:257.250000px;}
.yaf{bottom:258.510000px;}
.y8b{bottom:263.010000px;}
.y49{bottom:263.730000px;}
.y111{bottom:265.530000px;}
.ye1{bottom:270.030000px;}
.y143{bottom:274.530000px;}
.y37{bottom:274.890000px;}
.y48{bottom:275.250000px;}
.yae{bottom:275.970000px;}
.y8a{bottom:280.470000px;}
.y110{bottom:283.170000px;}
.ye0{bottom:287.670000px;}
.y47{bottom:289.290000px;}
.y142{bottom:292.170000px;}
.y36{bottom:292.350000px;}
.yad{bottom:293.610000px;}
.y89{bottom:298.110000px;}
.y10f{bottom:300.630000px;}
.y46{bottom:303.375000px;}
.ydf{bottom:305.130000px;}
.y141{bottom:309.630000px;}
.y35{bottom:309.990000px;}
.yac{bottom:311.250000px;}
.y88{bottom:315.750000px;}
.y45{bottom:317.415000px;}
.y10e{bottom:318.270000px;}
.yde{bottom:322.770000px;}
.y140{bottom:327.270000px;}
.y34{bottom:327.630000px;}
.yab{bottom:328.710000px;}
.y44{bottom:331.635000px;}
.y87{bottom:333.210000px;}
.ydd{bottom:340.455000px;}
.y43{bottom:344.235000px;}
.y13f{bottom:344.955000px;}
.y33{bottom:345.315000px;}
.yaa{bottom:346.395000px;}
.y86{bottom:350.895000px;}
.y42{bottom:355.215000px;}
.ydc{bottom:357.915000px;}
.y13e{bottom:362.415000px;}
.y32{bottom:362.775000px;}
.ya9{bottom:364.035000px;}
.y85{bottom:368.535000px;}
.y10b{bottom:369.255000px;}
.ydb{bottom:375.555000px;}
.y13d{bottom:380.055000px;}
.y31{bottom:380.415000px;}
.ya8{bottom:381.675000px;}
.y84{bottom:386.175000px;}
.y109{bottom:387.435000px;}
.yda{bottom:393.195000px;}
.y13c{bottom:397.695000px;}
.y30{bottom:398.055000px;}
.ya7{bottom:399.135000px;}
.y83{bottom:403.635000px;}
.yd9{bottom:410.655000px;}
.y13b{bottom:415.335000px;}
.y2f{bottom:415.515000px;}
.ya6{bottom:416.775000px;}
.y82{bottom:421.275000px;}
.y108{bottom:426.855000px;}
.yd8{bottom:428.295000px;}
.y13a{bottom:432.795000px;}
.y2e{bottom:433.155000px;}
.ya5{bottom:434.415000px;}
.y81{bottom:438.915000px;}
.y107{bottom:444.495000px;}
.yd7{bottom:445.935000px;}
.y139{bottom:450.435000px;}
.y2d{bottom:450.795000px;}
.ya4{bottom:451.875000px;}
.y80{bottom:456.375000px;}
.y106{bottom:461.955000px;}
.yd6{bottom:463.575000px;}
.y138{bottom:468.075000px;}
.ya3{bottom:469.515000px;}
.y2c{bottom:470.235000px;}
.y7f{bottom:474.015000px;}
.y105{bottom:479.595000px;}
.yd5{bottom:481.035000px;}
.y137{bottom:485.535000px;}
.y2b{bottom:486.435000px;}
.ya2{bottom:487.155000px;}
.y7e{bottom:491.655000px;}
.y104{bottom:497.235000px;}
.yd4{bottom:498.675000px;}
.y136{bottom:503.175000px;}
.y2a{bottom:504.075000px;}
.ya1{bottom:504.615000px;}
.y7d{bottom:509.115000px;}
.y103{bottom:514.695000px;}
.yd3{bottom:516.315000px;}
.y135{bottom:520.815000px;}
.y29{bottom:521.535000px;}
.ya0{bottom:522.255000px;}
.y7c{bottom:526.755000px;}
.y102{bottom:532.335000px;}
.yd2{bottom:533.775000px;}
.y134{bottom:538.275000px;}
.y28{bottom:539.175000px;}
.y9f{bottom:539.895000px;}
.y7b{bottom:544.395000px;}
.y101{bottom:547.275000px;}
.yd1{bottom:551.415000px;}
.y133{bottom:555.915000px;}
.y27{bottom:556.815000px;}
.y9e{bottom:557.355000px;}
.y7a{bottom:561.855000px;}
.y100{bottom:565.635000px;}
.y41{bottom:568.515000px;}
.yd0{bottom:569.055000px;}
.y132{bottom:573.555000px;}
.y26{bottom:574.275000px;}
.y9d{bottom:574.995000px;}
.y79{bottom:579.495000px;}
.yff{bottom:583.995000px;}
.ycf{bottom:586.515000px;}
.y131{bottom:591.195000px;}
.y25{bottom:591.915000px;}
.y9c{bottom:592.635000px;}
.y78{bottom:597.135000px;}
.yce{bottom:604.185000px;}
.yfe{bottom:605.805000px;}
.y130{bottom:608.685000px;}
.y24{bottom:609.585000px;}
.y9b{bottom:610.305000px;}
.y77{bottom:614.805000px;}
.ycd{bottom:621.825000px;}
.yfd{bottom:623.265000px;}
.y12f{bottom:626.325000px;}
.y23{bottom:627.045000px;}
.y9a{bottom:627.765000px;}
.y76{bottom:632.265000px;}
.ycc{bottom:639.465000px;}
.yfc{bottom:640.905000px;}
.y99{bottom:642.705000px;}
.y12e{bottom:643.965000px;}
.y22{bottom:644.685000px;}
.y75{bottom:649.905000px;}
.ycb{bottom:656.925000px;}
.yfb{bottom:658.545000px;}
.y12d{bottom:658.725000px;}
.y98{bottom:661.065000px;}
.y21{bottom:662.325000px;}
.y74{bottom:667.545000px;}
.yca{bottom:674.565000px;}
.yfa{bottom:676.005000px;}
.y12c{bottom:677.085000px;}
.y97{bottom:679.425000px;}
.y20{bottom:679.785000px;}
.y73{bottom:685.005000px;}
.yc9{bottom:692.205000px;}
.yf9{bottom:693.645000px;}
.y12b{bottom:695.445000px;}
.y1f{bottom:697.425000px;}
.y96{bottom:697.785000px;}
.y72{bottom:702.645000px;}
.yc8{bottom:709.665000px;}
.yf8{bottom:711.285000px;}
.y1e{bottom:715.065000px;}
.y94{bottom:716.145000px;}
.y12a{bottom:717.225000px;}
.y71{bottom:720.285000px;}
.yc7{bottom:727.305000px;}
.yf7{bottom:728.745000px;}
.y1d{bottom:732.705000px;}
.y129{bottom:734.865000px;}
.y70{bottom:737.745000px;}
.yc6{bottom:744.945000px;}
.yf6{bottom:746.385000px;}
.y1c{bottom:750.165000px;}
.y128{bottom:752.325000px;}
.y6f{bottom:755.385000px;}
.yf5{bottom:761.325000px;}
.yc5{bottom:762.405000px;}
.y1b{bottom:767.805000px;}
.y127{bottom:769.965000px;}
.y6e{bottom:773.025000px;}
.yf4{bottom:779.685000px;}
.yc4{bottom:780.045000px;}
.y1a{bottom:785.445000px;}
.y126{bottom:787.605000px;}
.y6d{bottom:790.665000px;}
.yc3{bottom:797.685000px;}
.yf3{bottom:798.045000px;}
.y19{bottom:802.905000px;}
.y125{bottom:805.245000px;}
.y6c{bottom:808.125000px;}
.yc2{bottom:815.145000px;}
.yf2{bottom:816.405000px;}
.y18{bottom:820.545000px;}
.y124{bottom:822.705000px;}
.y6b{bottom:825.765000px;}
.yc1{bottom:832.785000px;}
.yf1{bottom:834.585000px;}
.y17{bottom:838.185000px;}
.y123{bottom:840.345000px;}
.y6a{bottom:843.405000px;}
.yc0{bottom:850.425000px;}
.yf0{bottom:852.945000px;}
.y16{bottom:855.645000px;}
.y122{bottom:857.985000px;}
.y69{bottom:860.865000px;}
.ybf{bottom:868.065000px;}
.yef{bottom:871.350000px;}
.y15{bottom:873.330000px;}
.y121{bottom:875.490000px;}
.y68{bottom:878.550000px;}
.ybe{bottom:885.570000px;}
.yee{bottom:889.710000px;}
.y14{bottom:890.970000px;}
.y120{bottom:893.130000px;}
.y67{bottom:896.190000px;}
.ybd{bottom:903.030000px;}
.yed{bottom:908.070000px;}
.y13{bottom:908.610000px;}
.y11f{bottom:910.770000px;}
.y66{bottom:913.650000px;}
.ybc{bottom:921.570000px;}
.y12{bottom:926.070000px;}
.yec{bottom:926.430000px;}
.y11e{bottom:928.230000px;}
.y65{bottom:931.290000px;}
.ybb{bottom:939.930000px;}
.y11{bottom:943.350000px;}
.yeb{bottom:944.790000px;}
.y11d{bottom:945.870000px;}
.y64{bottom:948.930000px;}
.yba{bottom:958.470000px;}
.y10{bottom:958.830000px;}
.y11c{bottom:963.510000px;}
.y63{bottom:966.570000px;}
.yb9{bottom:972.690000px;}
.yf{bottom:973.590000px;}
.yb8{bottom:980.250000px;}
.y11b{bottom:981.150000px;}
.y62{bottom:984.030000px;}
.ye{bottom:991.410000px;}
.y11a{bottom:995.910000px;}
.y61{bottom:1001.670000px;}
.yd{bottom:1011.390000px;}
.y60{bottom:1019.310000px;}
.y119{bottom:1031.910000px;}
.yc{bottom:1033.350000px;}
.y5f{bottom:1036.770000px;}
.y118{bottom:1050.270000px;}
.yb{bottom:1051.890000px;}
.y5e{bottom:1054.410000px;}
.y5d{bottom:1072.050000px;}
.ya{bottom:1074.750000px;}
.y5c{bottom:1089.510000px;}
.y9{bottom:1097.610000px;}
.y5b{bottom:1107.150000px;}
.y6{bottom:1122.270000px;}
.y5a{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y59{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y3{bottom:1166.220000px;}
.y93{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y57{bottom:1197.540000px;}
.hf{height:17.460000px;}
.h10{height:17.640000px;}
.h13{height:17.676000px;}
.hb{height:20.117109px;}
.hd{height:30.480469px;}
.h16{height:35.100000px;}
.h15{height:35.136000px;}
.h14{height:35.280000px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h5{height:40.843828px;}
.h4{height:45.720703px;}
.h6{height:50.273438px;}
.h9{height:50.597578px;}
.h8{height:56.084062px;}
.he{height:58.819922px;}
.hc{height:60.960938px;}
.h7{height:65.837812px;}
.h11{height:70.474219px;}
.h12{height:80.837578px;}
.ha{height:367.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:34.200000px;}
.w9{width:50.256000px;}
.w16{width:51.660000px;}
.w15{width:51.840000px;}
.w19{width:57.276000px;}
.w18{width:58.320000px;}
.w5{width:60.156000px;}
.wc{width:60.660000px;}
.w13{width:69.876000px;}
.wb{width:70.776000px;}
.w1a{width:77.040000px;}
.w10{width:77.580000px;}
.wd{width:95.220000px;}
.w8{width:126.576000px;}
.w11{width:130.320000px;}
.wf{width:134.856000px;}
.w6{width:136.260000px;}
.wa{width:136.800000px;}
.w7{width:137.016000px;}
.w1b{width:141.336000px;}
.we{width:170.310000px;}
.w14{width:182.730000px;}
.w1c{width:187.950000px;}
.w12{width:188.850000px;}
.w3{width:221.970000px;}
.w17{width:525.165000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x22{left:9.540000px;}
.x29{left:11.880000px;}
.x15{left:13.320000px;}
.x20{left:15.660000px;}
.x28{left:17.100000px;}
.x2b{left:18.900000px;}
.x26{left:20.880000px;}
.x35{left:22.140000px;}
.x39{left:23.220000px;}
.x27{left:26.460000px;}
.x37{left:27.540000px;}
.x2a{left:31.500000px;}
.x33{left:39.465000px;}
.x34{left:41.445000px;}
.x32{left:43.734000px;}
.x36{left:45.540000px;}
.x18{left:50.940000px;}
.x17{left:56.010000px;}
.x16{left:59.760000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x6{left:111.995987px;}
.x45{left:127.655987px;}
.x1b{left:133.415987px;}
.xb{left:134.994000px;}
.xd{left:136.835987px;}
.x19{left:138.455987px;}
.x4{left:147.815987px;}
.xa{left:148.895987px;}
.x1d{left:160.409987px;}
.x3f{left:183.990000px;}
.xf{left:198.030000px;}
.x40{left:203.085000px;}
.x1c{left:212.789987px;}
.x1a{left:214.409987px;}
.x11{left:232.950000px;}
.x1f{left:238.170000px;}
.x8{left:241.949987px;}
.x41{left:243.030000px;}
.x5{left:254.549987px;}
.x1e{left:264.269987px;}
.x3c{left:268.409987px;}
.x7{left:271.289987px;}
.x3e{left:274.169987px;}
.x21{left:289.335000px;}
.x12{left:293.835000px;}
.x42{left:301.035000px;}
.x31{left:317.594987px;}
.x3d{left:322.454987px;}
.x9{left:342.614987px;}
.x2d{left:355.574987px;}
.xe{left:361.514987px;}
.x30{left:369.434987px;}
.x43{left:378.975000px;}
.x2c{left:386.174987px;}
.x3b{left:392.114987px;}
.x2e{left:425.595000px;}
.x23{left:426.855000px;}
.x13{left:430.815000px;}
.x3{left:446.654987px;}
.x24{left:498.345000px;}
.x44{left:521.205000px;}
.xc{left:553.424987px;}
.x25{left:559.725000px;}
.x2f{left:561.165000px;}
.x14{left:568.545000px;}
.x38{left:681.810000px;}
.x3a{left:734.370000px;}
@media print{
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.520000pt;}
.v5{vertical-align:13.440000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:31.360000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.256533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240533pt;}
.lsd{letter-spacing:-0.228267pt;}
.ls16{letter-spacing:-0.198400pt;}
.ls1c{letter-spacing:-0.166400pt;}
.ls1e{letter-spacing:-0.155733pt;}
.lsb{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.086933pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls21{letter-spacing:0.033920pt;}
.ls1f{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.076800pt;}
.ls1d{letter-spacing:0.218667pt;}
.ls0{letter-spacing:0.250240pt;}
.lse{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.344960pt;}
.ls18{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls22{letter-spacing:40.891307pt;}
.ls1a{letter-spacing:42.811307pt;}
.ls12{letter-spacing:46.553600pt;}
.ls10{letter-spacing:56.891307pt;}
.ls1b{letter-spacing:58.192640pt;}
.ls19{letter-spacing:102.233600pt;}
.ls13{letter-spacing:125.913600pt;}
.ls1{letter-spacing:176.000000pt;}
.wse{word-spacing:-53.120000pt;}
.wsd{word-spacing:-12.003733pt;}
.ws0{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.905067pt;}
.wsb{word-spacing:-11.697920pt;}
.ws2{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.591467pt;}
.ws11{word-spacing:-11.530667pt;}
.wsc{word-spacing:-11.458133pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.193067pt;}
.ws9{word-spacing:-8.082133pt;}
.wsf{word-spacing:-7.603200pt;}
.ws4{word-spacing:-7.008000pt;}
.ws5{word-spacing:-6.784000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-167.888000pt;}
._1e{margin-left:-3.245653pt;}
._f{margin-left:-2.331947pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._4{width:2.213547pt;}
._1a{width:3.309440pt;}
._14{width:4.302720pt;}
._17{width:5.659307pt;}
._16{width:6.693120pt;}
._18{width:7.629440pt;}
._12{width:8.572160pt;}
._13{width:9.626453pt;}
._8{width:10.677120pt;}
._1c{width:11.595947pt;}
._1b{width:13.067520pt;}
._20{width:14.400853pt;}
._1d{width:15.978453pt;}
._b{width:17.269333pt;}
._c{width:18.432640pt;}
._11{width:19.771307pt;}
._10{width:20.663680pt;}
._15{width:21.572053pt;}
._19{width:23.000960pt;}
._22{width:24.063360pt;}
._21{width:24.966400pt;}
._a{width:26.198827pt;}
._9{width:27.250560pt;}
._7{width:30.071467pt;}
._6{width:31.386880pt;}
._1f{width:32.621013pt;}
._e{width:34.214613pt;}
._d{width:35.165440pt;}
._2a{width:37.580800pt;}
._28{width:38.919040pt;}
._24{width:42.745600pt;}
._27{width:44.083627pt;}
._26{width:46.069973pt;}
._23{width:63.687040pt;}
._0{width:66.666667pt;}
._29{width:180.688640pt;}
._3{width:639.200000pt;}
._25{width:801.975467pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.040000pt;}
.y10d{bottom:3.080000pt;}
.y10a{bottom:18.720000pt;}
.y10c{bottom:18.760000pt;}
.y56{bottom:48.506667pt;}
.y8{bottom:50.080000pt;}
.y58{bottom:50.240000pt;}
.y55{bottom:60.506667pt;}
.y7{bottom:62.592000pt;}
.y54{bottom:69.786667pt;}
.y53{bottom:79.226667pt;}
.y52{bottom:94.906667pt;}
.yea{bottom:99.392000pt;}
.y14c{bottom:103.392000pt;}
.y40{bottom:103.552000pt;}
.yb7{bottom:104.672000pt;}
.y14d{bottom:108.672000pt;}
.ye9{bottom:114.912000pt;}
.y14b{bottom:118.912000pt;}
.y3f{bottom:119.232000pt;}
.yb6{bottom:120.352000pt;}
.y92{bottom:124.352000pt;}
.ye8{bottom:130.592000pt;}
.y14a{bottom:134.586667pt;}
.y3e{bottom:134.906667pt;}
.yb5{bottom:135.866667pt;}
.y91{bottom:139.866667pt;}
.y51{bottom:141.946667pt;}
.y117{bottom:142.266667pt;}
.ye7{bottom:146.266667pt;}
.y149{bottom:150.266667pt;}
.y3d{bottom:150.586667pt;}
.yb4{bottom:151.546667pt;}
.y50{bottom:154.426667pt;}
.y90{bottom:155.546667pt;}
.y116{bottom:157.946667pt;}
.ye6{bottom:161.786667pt;}
.y148{bottom:165.946667pt;}
.y3c{bottom:166.106667pt;}
.y4f{bottom:166.906667pt;}
.yb3{bottom:167.226667pt;}
.y8f{bottom:171.226667pt;}
.y115{bottom:173.466667pt;}
.ye5{bottom:177.466667pt;}
.y4e{bottom:179.386667pt;}
.y147{bottom:181.466667pt;}
.y3b{bottom:181.786667pt;}
.yb2{bottom:182.906667pt;}
.y8e{bottom:186.906667pt;}
.y114{bottom:189.146667pt;}
.y4d{bottom:192.026667pt;}
.ye4{bottom:193.146667pt;}
.y146{bottom:197.146667pt;}
.y3a{bottom:197.466667pt;}
.yb1{bottom:198.426667pt;}
.y8d{bottom:202.426667pt;}
.y4c{bottom:204.506667pt;}
.y113{bottom:204.826667pt;}
.ye3{bottom:208.666667pt;}
.y145{bottom:212.826667pt;}
.y39{bottom:212.986667pt;}
.yb0{bottom:214.106667pt;}
.y4b{bottom:216.986667pt;}
.y8c{bottom:218.106667pt;}
.y112{bottom:220.346667pt;}
.ye2{bottom:224.346667pt;}
.y4a{bottom:228.186667pt;}
.y144{bottom:228.346667pt;}
.y38{bottom:228.666667pt;}
.yaf{bottom:229.786667pt;}
.y8b{bottom:233.786667pt;}
.y49{bottom:234.426667pt;}
.y111{bottom:236.026667pt;}
.ye1{bottom:240.026667pt;}
.y143{bottom:244.026667pt;}
.y37{bottom:244.346667pt;}
.y48{bottom:244.666667pt;}
.yae{bottom:245.306667pt;}
.y8a{bottom:249.306667pt;}
.y110{bottom:251.706667pt;}
.ye0{bottom:255.706667pt;}
.y47{bottom:257.146667pt;}
.y142{bottom:259.706667pt;}
.y36{bottom:259.866667pt;}
.yad{bottom:260.986667pt;}
.y89{bottom:264.986667pt;}
.y10f{bottom:267.226667pt;}
.y46{bottom:269.666667pt;}
.ydf{bottom:271.226667pt;}
.y141{bottom:275.226667pt;}
.y35{bottom:275.546667pt;}
.yac{bottom:276.666667pt;}
.y88{bottom:280.666667pt;}
.y45{bottom:282.146667pt;}
.y10e{bottom:282.906667pt;}
.yde{bottom:286.906667pt;}
.y140{bottom:290.906667pt;}
.y34{bottom:291.226667pt;}
.yab{bottom:292.186667pt;}
.y44{bottom:294.786667pt;}
.y87{bottom:296.186667pt;}
.ydd{bottom:302.626667pt;}
.y43{bottom:305.986667pt;}
.y13f{bottom:306.626667pt;}
.y33{bottom:306.946667pt;}
.yaa{bottom:307.906667pt;}
.y86{bottom:311.906667pt;}
.y42{bottom:315.746667pt;}
.ydc{bottom:318.146667pt;}
.y13e{bottom:322.146667pt;}
.y32{bottom:322.466667pt;}
.ya9{bottom:323.586667pt;}
.y85{bottom:327.586667pt;}
.y10b{bottom:328.226667pt;}
.ydb{bottom:333.826667pt;}
.y13d{bottom:337.826667pt;}
.y31{bottom:338.146667pt;}
.ya8{bottom:339.266667pt;}
.y84{bottom:343.266667pt;}
.y109{bottom:344.386667pt;}
.yda{bottom:349.506667pt;}
.y13c{bottom:353.506667pt;}
.y30{bottom:353.826667pt;}
.ya7{bottom:354.786667pt;}
.y83{bottom:358.786667pt;}
.yd9{bottom:365.026667pt;}
.y13b{bottom:369.186667pt;}
.y2f{bottom:369.346667pt;}
.ya6{bottom:370.466667pt;}
.y82{bottom:374.466667pt;}
.y108{bottom:379.426667pt;}
.yd8{bottom:380.706667pt;}
.y13a{bottom:384.706667pt;}
.y2e{bottom:385.026667pt;}
.ya5{bottom:386.146667pt;}
.y81{bottom:390.146667pt;}
.y107{bottom:395.106667pt;}
.yd7{bottom:396.386667pt;}
.y139{bottom:400.386667pt;}
.y2d{bottom:400.706667pt;}
.ya4{bottom:401.666667pt;}
.y80{bottom:405.666667pt;}
.y106{bottom:410.626667pt;}
.yd6{bottom:412.066667pt;}
.y138{bottom:416.066667pt;}
.ya3{bottom:417.346667pt;}
.y2c{bottom:417.986667pt;}
.y7f{bottom:421.346667pt;}
.y105{bottom:426.306667pt;}
.yd5{bottom:427.586667pt;}
.y137{bottom:431.586667pt;}
.y2b{bottom:432.386667pt;}
.ya2{bottom:433.026667pt;}
.y7e{bottom:437.026667pt;}
.y104{bottom:441.986667pt;}
.yd4{bottom:443.266667pt;}
.y136{bottom:447.266667pt;}
.y2a{bottom:448.066667pt;}
.ya1{bottom:448.546667pt;}
.y7d{bottom:452.546667pt;}
.y103{bottom:457.506667pt;}
.yd3{bottom:458.946667pt;}
.y135{bottom:462.946667pt;}
.y29{bottom:463.586667pt;}
.ya0{bottom:464.226667pt;}
.y7c{bottom:468.226667pt;}
.y102{bottom:473.186667pt;}
.yd2{bottom:474.466667pt;}
.y134{bottom:478.466667pt;}
.y28{bottom:479.266667pt;}
.y9f{bottom:479.906667pt;}
.y7b{bottom:483.906667pt;}
.y101{bottom:486.466667pt;}
.yd1{bottom:490.146667pt;}
.y133{bottom:494.146667pt;}
.y27{bottom:494.946667pt;}
.y9e{bottom:495.426667pt;}
.y7a{bottom:499.426667pt;}
.y100{bottom:502.786667pt;}
.y41{bottom:505.346667pt;}
.yd0{bottom:505.826667pt;}
.y132{bottom:509.826667pt;}
.y26{bottom:510.466667pt;}
.y9d{bottom:511.106667pt;}
.y79{bottom:515.106667pt;}
.yff{bottom:519.106667pt;}
.ycf{bottom:521.346667pt;}
.y131{bottom:525.506667pt;}
.y25{bottom:526.146667pt;}
.y9c{bottom:526.786667pt;}
.y78{bottom:530.786667pt;}
.yce{bottom:537.053333pt;}
.yfe{bottom:538.493333pt;}
.y130{bottom:541.053333pt;}
.y24{bottom:541.853333pt;}
.y9b{bottom:542.493333pt;}
.y77{bottom:546.493333pt;}
.ycd{bottom:552.733333pt;}
.yfd{bottom:554.013333pt;}
.y12f{bottom:556.733333pt;}
.y23{bottom:557.373333pt;}
.y9a{bottom:558.013333pt;}
.y76{bottom:562.013333pt;}
.ycc{bottom:568.413333pt;}
.yfc{bottom:569.693333pt;}
.y99{bottom:571.293333pt;}
.y12e{bottom:572.413333pt;}
.y22{bottom:573.053333pt;}
.y75{bottom:577.693333pt;}
.ycb{bottom:583.933333pt;}
.yfb{bottom:585.373333pt;}
.y12d{bottom:585.533333pt;}
.y98{bottom:587.613333pt;}
.y21{bottom:588.733333pt;}
.y74{bottom:593.373333pt;}
.yca{bottom:599.613333pt;}
.yfa{bottom:600.893333pt;}
.y12c{bottom:601.853333pt;}
.y97{bottom:603.933333pt;}
.y20{bottom:604.253333pt;}
.y73{bottom:608.893333pt;}
.yc9{bottom:615.293333pt;}
.yf9{bottom:616.573333pt;}
.y12b{bottom:618.173333pt;}
.y1f{bottom:619.933333pt;}
.y96{bottom:620.253333pt;}
.y72{bottom:624.573333pt;}
.yc8{bottom:630.813333pt;}
.yf8{bottom:632.253333pt;}
.y1e{bottom:635.613333pt;}
.y94{bottom:636.573333pt;}
.y12a{bottom:637.533333pt;}
.y71{bottom:640.253333pt;}
.yc7{bottom:646.493333pt;}
.yf7{bottom:647.773333pt;}
.y1d{bottom:651.293333pt;}
.y129{bottom:653.213333pt;}
.y70{bottom:655.773333pt;}
.yc6{bottom:662.173333pt;}
.yf6{bottom:663.453333pt;}
.y1c{bottom:666.813333pt;}
.y128{bottom:668.733333pt;}
.y6f{bottom:671.453333pt;}
.yf5{bottom:676.733333pt;}
.yc5{bottom:677.693333pt;}
.y1b{bottom:682.493333pt;}
.y127{bottom:684.413333pt;}
.y6e{bottom:687.133333pt;}
.yf4{bottom:693.053333pt;}
.yc4{bottom:693.373333pt;}
.y1a{bottom:698.173333pt;}
.y126{bottom:700.093333pt;}
.y6d{bottom:702.813333pt;}
.yc3{bottom:709.053333pt;}
.yf3{bottom:709.373333pt;}
.y19{bottom:713.693333pt;}
.y125{bottom:715.773333pt;}
.y6c{bottom:718.333333pt;}
.yc2{bottom:724.573333pt;}
.yf2{bottom:725.693333pt;}
.y18{bottom:729.373333pt;}
.y124{bottom:731.293333pt;}
.y6b{bottom:734.013333pt;}
.yc1{bottom:740.253333pt;}
.yf1{bottom:741.853333pt;}
.y17{bottom:745.053333pt;}
.y123{bottom:746.973333pt;}
.y6a{bottom:749.693333pt;}
.yc0{bottom:755.933333pt;}
.yf0{bottom:758.173333pt;}
.y16{bottom:760.573333pt;}
.y122{bottom:762.653333pt;}
.y69{bottom:765.213333pt;}
.ybf{bottom:771.613333pt;}
.yef{bottom:774.533333pt;}
.y15{bottom:776.293333pt;}
.y121{bottom:778.213333pt;}
.y68{bottom:780.933333pt;}
.ybe{bottom:787.173333pt;}
.yee{bottom:790.853333pt;}
.y14{bottom:791.973333pt;}
.y120{bottom:793.893333pt;}
.y67{bottom:796.613333pt;}
.ybd{bottom:802.693333pt;}
.yed{bottom:807.173333pt;}
.y13{bottom:807.653333pt;}
.y11f{bottom:809.573333pt;}
.y66{bottom:812.133333pt;}
.ybc{bottom:819.173333pt;}
.y12{bottom:823.173333pt;}
.yec{bottom:823.493333pt;}
.y11e{bottom:825.093333pt;}
.y65{bottom:827.813333pt;}
.ybb{bottom:835.493333pt;}
.y11{bottom:838.533333pt;}
.yeb{bottom:839.813333pt;}
.y11d{bottom:840.773333pt;}
.y64{bottom:843.493333pt;}
.yba{bottom:851.973333pt;}
.y10{bottom:852.293333pt;}
.y11c{bottom:856.453333pt;}
.y63{bottom:859.173333pt;}
.yb9{bottom:864.613333pt;}
.yf{bottom:865.413333pt;}
.yb8{bottom:871.333333pt;}
.y11b{bottom:872.133333pt;}
.y62{bottom:874.693333pt;}
.ye{bottom:881.253333pt;}
.y11a{bottom:885.253333pt;}
.y61{bottom:890.373333pt;}
.yd{bottom:899.013333pt;}
.y60{bottom:906.053333pt;}
.y119{bottom:917.253333pt;}
.yc{bottom:918.533333pt;}
.y5f{bottom:921.573333pt;}
.y118{bottom:933.573333pt;}
.yb{bottom:935.013333pt;}
.y5e{bottom:937.253333pt;}
.y5d{bottom:952.933333pt;}
.ya{bottom:955.333333pt;}
.y5c{bottom:968.453333pt;}
.y9{bottom:975.653333pt;}
.y5b{bottom:984.133333pt;}
.y6{bottom:997.573333pt;}
.y5a{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y59{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y3{bottom:1036.640000pt;}
.y93{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y57{bottom:1064.480000pt;}
.hf{height:15.520000pt;}
.h10{height:15.680000pt;}
.h13{height:15.712000pt;}
.hb{height:17.881875pt;}
.hd{height:27.093750pt;}
.h16{height:31.200000pt;}
.h15{height:31.232000pt;}
.h14{height:31.360000pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h5{height:36.305625pt;}
.h4{height:40.640625pt;}
.h6{height:44.687500pt;}
.h9{height:44.975625pt;}
.h8{height:49.852500pt;}
.he{height:52.284375pt;}
.hc{height:54.187500pt;}
.h7{height:58.522500pt;}
.h11{height:62.643750pt;}
.h12{height:71.855625pt;}
.ha{height:327.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:30.400000pt;}
.w9{width:44.672000pt;}
.w16{width:45.920000pt;}
.w15{width:46.080000pt;}
.w19{width:50.912000pt;}
.w18{width:51.840000pt;}
.w5{width:53.472000pt;}
.wc{width:53.920000pt;}
.w13{width:62.112000pt;}
.wb{width:62.912000pt;}
.w1a{width:68.480000pt;}
.w10{width:68.960000pt;}
.wd{width:84.640000pt;}
.w8{width:112.512000pt;}
.w11{width:115.840000pt;}
.wf{width:119.872000pt;}
.w6{width:121.120000pt;}
.wa{width:121.600000pt;}
.w7{width:121.792000pt;}
.w1b{width:125.632000pt;}
.we{width:151.386667pt;}
.w14{width:162.426667pt;}
.w1c{width:167.066667pt;}
.w12{width:167.866667pt;}
.w3{width:197.306667pt;}
.w17{width:466.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x22{left:8.480000pt;}
.x29{left:10.560000pt;}
.x15{left:11.840000pt;}
.x20{left:13.920000pt;}
.x28{left:15.200000pt;}
.x2b{left:16.800000pt;}
.x26{left:18.560000pt;}
.x35{left:19.680000pt;}
.x39{left:20.640000pt;}
.x27{left:23.520000pt;}
.x37{left:24.480000pt;}
.x2a{left:28.000000pt;}
.x33{left:35.080000pt;}
.x34{left:36.840000pt;}
.x32{left:38.874667pt;}
.x36{left:40.480000pt;}
.x18{left:45.280000pt;}
.x17{left:49.786667pt;}
.x16{left:53.120000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x6{left:99.551988pt;}
.x45{left:113.471988pt;}
.x1b{left:118.591988pt;}
.xb{left:119.994667pt;}
.xd{left:121.631988pt;}
.x19{left:123.071988pt;}
.x4{left:131.391988pt;}
.xa{left:132.351988pt;}
.x1d{left:142.586655pt;}
.x3f{left:163.546667pt;}
.xf{left:176.026667pt;}
.x40{left:180.520000pt;}
.x1c{left:189.146655pt;}
.x1a{left:190.586655pt;}
.x11{left:207.066667pt;}
.x1f{left:211.706667pt;}
.x8{left:215.066655pt;}
.x41{left:216.026667pt;}
.x5{left:226.266655pt;}
.x1e{left:234.906655pt;}
.x3c{left:238.586655pt;}
.x7{left:241.146655pt;}
.x3e{left:243.706655pt;}
.x21{left:257.186667pt;}
.x12{left:261.186667pt;}
.x42{left:267.586667pt;}
.x31{left:282.306655pt;}
.x3d{left:286.626655pt;}
.x9{left:304.546655pt;}
.x2d{left:316.066655pt;}
.xe{left:321.346655pt;}
.x30{left:328.386655pt;}
.x43{left:336.866667pt;}
.x2c{left:343.266655pt;}
.x3b{left:348.546655pt;}
.x2e{left:378.306667pt;}
.x23{left:379.426667pt;}
.x13{left:382.946667pt;}
.x3{left:397.026655pt;}
.x24{left:442.973333pt;}
.x44{left:463.293333pt;}
.xc{left:491.933322pt;}
.x25{left:497.533333pt;}
.x2f{left:498.813333pt;}
.x14{left:505.373333pt;}
.x38{left:606.053333pt;}
.x3a{left:652.773333pt;}
}




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