
    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_24f6829a10d68ae9d15c8553.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_7c1e7073a68f902bc01ff742.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_8a35a16a5b77536e09167c27.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_4900728a087cbd323ee5811e.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_62fdec9ee53582d32bd2c188.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_1c9a3148c879169bbe81389d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91444d3746c55a9af9b1fe60.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f19e525f7a1407ce89a87e6.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_5d5f88246f46ee755d627c33.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;}
.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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.478200px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.283200px;}
.ls8{letter-spacing:-0.270600px;}
.ls4{letter-spacing:-0.247800px;}
.ls9{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.157200px;}
.lsc{letter-spacing:-0.094800px;}
.ls14{letter-spacing:-0.046800px;}
.ls6{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.126720px;}
.ls2{letter-spacing:0.187200px;}
.lsf{letter-spacing:0.319680px;}
.lsa{letter-spacing:0.328200px;}
.ls5{letter-spacing:0.357000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.466560px;}
.ls1{letter-spacing:0.478080px;}
.ls12{letter-spacing:0.781920px;}
.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:-14.572800px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.273800px;}
.wsf{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.ws10{word-spacing:-13.136400px;}
.ws11{word-spacing:-13.100400px;}
.wsc{word-spacing:-12.990000px;}
.wse{word-spacing:-12.864000px;}
.ws9{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.342200px;}
.wsa{word-spacing:-10.134600px;}
.ws2{word-spacing:-9.187200px;}
.wsb{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.884000px;}
.ws6{word-spacing:-7.632000px;}
.ws4{word-spacing:-6.652800px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-2.582640px;}
._2{margin-left:-1.242000px;}
._1{width:1.092000px;}
._a{width:2.211120px;}
._13{width:3.450960px;}
._11{width:4.467600px;}
._f{width:5.660880px;}
._14{width:7.048080px;}
._e{width:8.098080px;}
._d{width:9.322560px;}
._4{width:11.286000px;}
._15{width:13.170000px;}
._8{width:14.820480px;}
._b{width:15.983040px;}
._12{width:17.748720px;}
._1e{width:19.226400px;}
._1b{width:20.318400px;}
._18{width:21.633120px;}
._19{width:23.051040px;}
._1a{width:24.740640px;}
._9{width:26.174880px;}
._1f{width:27.353760px;}
._20{width:28.825680px;}
._c{width:30.298560px;}
._6{width:34.063200px;}
._7{width:36.274560px;}
._1d{width:40.995360px;}
._1c{width:42.190560px;}
._16{width:46.790280px;}
._0{width:75.000000px;}
._21{width:82.034160px;}
._3{width:181.620000px;}
._5{width:200.280000px;}
._17{width:1126.567200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.420000px;}
.y55{bottom:18.720000px;}
.yaa{bottom:20.880000px;}
.y98{bottom:21.060000px;}
.y54{bottom:32.040000px;}
.y108{bottom:40.140000px;}
.y53{bottom:42.660000px;}
.y52{bottom:53.100000px;}
.y7{bottom:56.520000px;}
.ye5{bottom:57.780000px;}
.yfb{bottom:57.810000px;}
.y6{bottom:70.596000px;}
.y51{bottom:70.740000px;}
.ycc{bottom:109.656000px;}
.yf0{bottom:120.096000px;}
.y119{bottom:122.256000px;}
.y50{bottom:123.660000px;}
.y118{bottom:125.136000px;}
.ycb{bottom:127.296000px;}
.y3f{bottom:132.336000px;}
.yef{bottom:137.556000px;}
.y4f{bottom:137.700000px;}
.y91{bottom:139.896000px;}
.y117{bottom:142.776000px;}
.yca{bottom:144.936000px;}
.y3e{bottom:149.976000px;}
.y4e{bottom:151.740000px;}
.yee{bottom:155.190000px;}
.y90{bottom:157.350000px;}
.y116{bottom:161.130000px;}
.yc9{bottom:162.570000px;}
.y4d{bottom:165.960000px;}
.y3d{bottom:167.610000px;}
.yed{bottom:172.830000px;}
.y8f{bottom:174.990000px;}
.y115{bottom:179.490000px;}
.y4c{bottom:180.000000px;}
.yc8{bottom:180.030000px;}
.y3c{bottom:185.070000px;}
.y14d{bottom:189.570000px;}
.yec{bottom:190.470000px;}
.y8e{bottom:192.630000px;}
.y4b{bottom:194.040000px;}
.yc7{bottom:197.670000px;}
.y114{bottom:197.850000px;}
.y3b{bottom:202.710000px;}
.y14c{bottom:207.030000px;}
.yeb{bottom:207.930000px;}
.y4a{bottom:208.080000px;}
.y8d{bottom:210.270000px;}
.yc6{bottom:215.310000px;}
.y113{bottom:219.630000px;}
.y3a{bottom:220.350000px;}
.y49{bottom:222.120000px;}
.y14b{bottom:224.670000px;}
.yea{bottom:225.570000px;}
.y8c{bottom:227.730000px;}
.yc5{bottom:230.070000px;}
.y48{bottom:234.720000px;}
.y112{bottom:237.090000px;}
.y39{bottom:237.990000px;}
.y14a{bottom:242.310000px;}
.ye9{bottom:243.210000px;}
.y47{bottom:243.225000px;}
.y8b{bottom:245.370000px;}
.yc4{bottom:248.430000px;}
.y111{bottom:254.730000px;}
.y38{bottom:255.450000px;}
.ye8{bottom:257.250000px;}
.y46{bottom:257.445000px;}
.y149{bottom:259.770000px;}
.y8a{bottom:263.010000px;}
.yc3{bottom:266.790000px;}
.y45{bottom:271.485000px;}
.y110{bottom:272.370000px;}
.y37{bottom:273.090000px;}
.ye4{bottom:275.610000px;}
.y148{bottom:277.410000px;}
.y89{bottom:280.470000px;}
.yc2{bottom:285.150000px;}
.y44{bottom:285.525000px;}
.y10f{bottom:289.830000px;}
.y36{bottom:290.730000px;}
.ye7{bottom:293.970000px;}
.y147{bottom:295.050000px;}
.y88{bottom:298.110000px;}
.y43{bottom:299.565000px;}
.yc1{bottom:303.510000px;}
.y10e{bottom:307.470000px;}
.y35{bottom:308.190000px;}
.y42{bottom:312.165000px;}
.ye6{bottom:312.330000px;}
.y146{bottom:312.510000px;}
.y87{bottom:315.750000px;}
.yc0{bottom:321.870000px;}
.y41{bottom:323.325000px;}
.y10d{bottom:325.110000px;}
.y34{bottom:325.830000px;}
.y145{bottom:330.150000px;}
.y86{bottom:333.210000px;}
.y10c{bottom:339.195000px;}
.ybf{bottom:340.275000px;}
.y33{bottom:343.515000px;}
.y144{bottom:347.835000px;}
.ye2{bottom:348.375000px;}
.y85{bottom:350.895000px;}
.y10b{bottom:356.835000px;}
.ybe{bottom:358.635000px;}
.y32{bottom:360.975000px;}
.y143{bottom:365.295000px;}
.y84{bottom:368.535000px;}
.y107{bottom:375.195000px;}
.ybd{bottom:376.815000px;}
.y31{bottom:378.615000px;}
.y142{bottom:382.935000px;}
.ye3{bottom:384.195000px;}
.y83{bottom:386.175000px;}
.y10a{bottom:393.555000px;}
.ybc{bottom:395.175000px;}
.y30{bottom:396.255000px;}
.y141{bottom:400.575000px;}
.y82{bottom:403.635000px;}
.y109{bottom:411.915000px;}
.ybb{bottom:413.535000px;}
.y2f{bottom:413.895000px;}
.y140{bottom:418.215000px;}
.y81{bottom:421.275000px;}
.ye1{bottom:423.615000px;}
.y106{bottom:430.275000px;}
.y2e{bottom:431.355000px;}
.yba{bottom:431.895000px;}
.y13f{bottom:435.675000px;}
.y80{bottom:438.915000px;}
.ye0{bottom:441.075000px;}
.y105{bottom:448.455000px;}
.y2d{bottom:448.995000px;}
.yb9{bottom:450.255000px;}
.y13e{bottom:453.315000px;}
.y7f{bottom:456.375000px;}
.ydf{bottom:458.715000px;}
.y2c{bottom:466.635000px;}
.y104{bottom:470.235000px;}
.y13d{bottom:470.955000px;}
.y7e{bottom:474.015000px;}
.yde{bottom:476.355000px;}
.y2b{bottom:484.095000px;}
.y103{bottom:487.875000px;}
.y13c{bottom:488.415000px;}
.yb8{bottom:489.495000px;}
.y7d{bottom:491.655000px;}
.ydd{bottom:493.815000px;}
.y2a{bottom:501.735000px;}
.y102{bottom:505.515000px;}
.y13b{bottom:506.055000px;}
.yb7{bottom:507.135000px;}
.y7c{bottom:509.115000px;}
.ydc{bottom:511.455000px;}
.y29{bottom:519.375000px;}
.y101{bottom:522.975000px;}
.y13a{bottom:523.695000px;}
.yb6{bottom:524.775000px;}
.ydb{bottom:525.675000px;}
.y7b{bottom:526.755000px;}
.y28{bottom:538.815000px;}
.y100{bottom:540.615000px;}
.y139{bottom:541.155000px;}
.yb5{bottom:542.235000px;}
.y7a{bottom:544.395000px;}
.y27{bottom:555.015000px;}
.yff{bottom:558.255000px;}
.y138{bottom:558.795000px;}
.yb4{bottom:559.875000px;}
.y79{bottom:561.855000px;}
.yfe{bottom:572.475000px;}
.y26{bottom:572.655000px;}
.y137{bottom:576.435000px;}
.yb3{bottom:577.515000px;}
.y78{bottom:579.495000px;}
.y25{bottom:590.115000px;}
.yfa{bottom:590.655000px;}
.yb2{bottom:592.455000px;}
.y136{bottom:594.075000px;}
.y77{bottom:597.135000px;}
.y24{bottom:607.785000px;}
.yfd{bottom:609.045000px;}
.yb1{bottom:610.845000px;}
.y135{bottom:611.565000px;}
.y76{bottom:614.805000px;}
.y23{bottom:625.425000px;}
.yfc{bottom:627.405000px;}
.yb0{bottom:629.025000px;}
.y134{bottom:629.205000px;}
.y75{bottom:632.265000px;}
.y40{bottom:633.345000px;}
.y22{bottom:642.885000px;}
.y133{bottom:646.845000px;}
.yaf{bottom:647.385000px;}
.y74{bottom:649.905000px;}
.y21{bottom:660.525000px;}
.yf8{bottom:663.405000px;}
.y132{bottom:664.305000px;}
.yae{bottom:665.745000px;}
.y73{bottom:667.545000px;}
.y20{bottom:678.165000px;}
.y131{bottom:681.945000px;}
.yad{bottom:684.105000px;}
.y72{bottom:685.005000px;}
.y1f{bottom:695.625000px;}
.yf9{bottom:699.225000px;}
.y130{bottom:699.585000px;}
.yac{bottom:702.465000px;}
.y71{bottom:702.645000px;}
.y1e{bottom:713.265000px;}
.y12f{bottom:717.045000px;}
.y70{bottom:720.285000px;}
.yab{bottom:720.825000px;}
.y1d{bottom:730.905000px;}
.y12e{bottom:734.685000px;}
.y6f{bottom:737.745000px;}
.yf7{bottom:738.645000px;}
.ya9{bottom:739.185000px;}
.y1c{bottom:748.545000px;}
.y12d{bottom:752.325000px;}
.y6e{bottom:755.385000px;}
.yf6{bottom:756.285000px;}
.y1b{bottom:766.005000px;}
.y12c{bottom:769.965000px;}
.y6d{bottom:773.025000px;}
.yf5{bottom:773.745000px;}
.ya8{bottom:778.425000px;}
.y1a{bottom:783.645000px;}
.y12b{bottom:787.425000px;}
.y6c{bottom:790.665000px;}
.yf4{bottom:791.385000px;}
.ya7{bottom:796.065000px;}
.y19{bottom:801.285000px;}
.yda{bottom:804.345000px;}
.y12a{bottom:805.065000px;}
.y6b{bottom:808.125000px;}
.yf3{bottom:809.025000px;}
.ya6{bottom:813.705000px;}
.y18{bottom:818.745000px;}
.yd9{bottom:821.985000px;}
.y129{bottom:822.705000px;}
.y6a{bottom:825.765000px;}
.yf2{bottom:826.485000px;}
.ya5{bottom:831.165000px;}
.y17{bottom:836.385000px;}
.yd8{bottom:839.625000px;}
.y128{bottom:840.165000px;}
.yf1{bottom:840.705000px;}
.y69{bottom:843.405000px;}
.ya4{bottom:848.805000px;}
.y16{bottom:854.025000px;}
.yd7{bottom:857.085000px;}
.y127{bottom:857.805000px;}
.y68{bottom:860.865000px;}
.ya3{bottom:866.445000px;}
.y15{bottom:871.530000px;}
.yd6{bottom:874.770000px;}
.y126{bottom:875.490000px;}
.y67{bottom:878.550000px;}
.ya2{bottom:881.430000px;}
.y14{bottom:889.170000px;}
.yd5{bottom:892.410000px;}
.y125{bottom:892.950000px;}
.y66{bottom:896.190000px;}
.ya1{bottom:899.610000px;}
.y13{bottom:906.810000px;}
.yd4{bottom:910.050000px;}
.y124{bottom:910.590000px;}
.y65{bottom:913.650000px;}
.ya0{bottom:917.970000px;}
.y12{bottom:924.270000px;}
.yd3{bottom:927.510000px;}
.y123{bottom:928.230000px;}
.y64{bottom:931.290000px;}
.y9f{bottom:936.330000px;}
.y11{bottom:941.910000px;}
.yd2{bottom:945.150000px;}
.y122{bottom:945.690000px;}
.y63{bottom:948.930000px;}
.y9e{bottom:954.690000px;}
.y10{bottom:959.550000px;}
.yd1{bottom:962.790000px;}
.y121{bottom:963.330000px;}
.y62{bottom:966.570000px;}
.y9d{bottom:973.050000px;}
.yf{bottom:976.830000px;}
.yd0{bottom:977.730000px;}
.y120{bottom:980.970000px;}
.y61{bottom:984.030000px;}
.y9c{bottom:991.410000px;}
.ye{bottom:992.310000px;}
.ycf{bottom:995.910000px;}
.y11f{bottom:998.610000px;}
.y60{bottom:1001.670000px;}
.yd{bottom:1009.770000px;}
.yce{bottom:1014.270000px;}
.y11e{bottom:1016.070000px;}
.y5f{bottom:1019.310000px;}
.yc{bottom:1023.090000px;}
.y9b{bottom:1027.950000px;}
.ycd{bottom:1032.630000px;}
.y11d{bottom:1033.710000px;}
.y5e{bottom:1036.770000px;}
.yb{bottom:1043.070000px;}
.y9a{bottom:1046.310000px;}
.y11c{bottom:1051.350000px;}
.y5d{bottom:1054.410000px;}
.y97{bottom:1064.670000px;}
.ya{bottom:1065.930000px;}
.y11b{bottom:1068.810000px;}
.y5c{bottom:1072.050000px;}
.y11a{bottom:1086.450000px;}
.y9{bottom:1088.790000px;}
.y5b{bottom:1089.510000px;}
.y96{bottom:1104.090000px;}
.y5a{bottom:1107.150000px;}
.y8{bottom:1111.290000px;}
.y95{bottom:1121.550000px;}
.y59{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y94{bottom:1139.220000px;}
.y58{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y93{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y57{bottom:1175.220000px;}
.y92{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y56{bottom:1197.540000px;}
.h12{height:17.460000px;}
.h14{height:17.496000px;}
.h11{height:17.640000px;}
.h1a{height:17.676000px;}
.hd{height:20.117109px;}
.he{height:30.480469px;}
.h9{height:33.480703px;}
.h13{height:35.100000px;}
.h17{height:35.136000px;}
.h10{height:35.280000px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.hb{height:45.720703px;}
.h5{height:50.273438px;}
.ha{height:50.597578px;}
.h1b{height:54.180000px;}
.h8{height:56.084062px;}
.hf{height:58.819922px;}
.h6{height:60.960938px;}
.h7{height:65.837812px;}
.h15{height:70.920000px;}
.h18{height:71.100000px;}
.h16{height:71.856000px;}
.h19{height:72.036000px;}
.hc{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:25.920000px;}
.w1b{width:54.000000px;}
.wa{width:54.180000px;}
.w1e{width:55.440000px;}
.w1a{width:60.156000px;}
.w10{width:61.380000px;}
.wb{width:62.100000px;}
.wd{width:67.860000px;}
.w20{width:74.556000px;}
.we{width:76.140000px;}
.wf{width:80.496000px;}
.w18{width:92.376000px;}
.w9{width:100.656000px;}
.w19{width:105.480000px;}
.w1c{width:115.560000px;}
.w15{width:122.040000px;}
.w17{width:124.920000px;}
.w21{width:134.280000px;}
.w4{width:135.180000px;}
.w5{width:135.216000px;}
.wc{width:142.776000px;}
.w12{width:144.216000px;}
.w8{width:144.720000px;}
.w16{width:170.280000px;}
.w7{width:170.850000px;}
.w22{width:179.670000px;}
.w3{width:221.970000px;}
.w6{width:225.750000px;}
.w1f{width:232.050000px;}
.w14{width:556.125000px;}
.w1d{width:678.885000px;}
.w13{width:679.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x35{left:8.820000px;}
.x3a{left:10.080000px;}
.x2c{left:12.780000px;}
.x3e{left:17.280000px;}
.x37{left:18.900000px;}
.x30{left:19.980000px;}
.x14{left:21.060000px;}
.x49{left:22.860000px;}
.x2e{left:24.480000px;}
.x33{left:26.100000px;}
.x17{left:27.945000px;}
.x32{left:29.340000px;}
.x38{left:32.040000px;}
.x2a{left:34.920000px;}
.x10{left:36.765000px;}
.x57{left:38.700000px;}
.x12{left:40.500000px;}
.x15{left:42.480000px;}
.x3d{left:44.685000px;}
.x1b{left:48.234000px;}
.x19{left:49.365000px;}
.x1a{left:51.165000px;}
.x18{left:52.374000px;}
.x3b{left:53.640000px;}
.x1e{left:56.694000px;}
.x45{left:61.020000px;}
.xe{left:62.994000px;}
.x3c{left:64.650000px;}
.x4d{left:68.070000px;}
.x23{left:72.720000px;}
.x4b{left:76.350000px;}
.x4c{left:81.720000px;}
.x20{left:83.514000px;}
.x26{left:86.940000px;}
.x39{left:92.730000px;}
.x25{left:94.680000px;}
.x4f{left:97.740000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x52{left:111.240000px;}
.x4e{left:114.480000px;}
.x4{left:119.015987px;}
.x36{left:133.776000px;}
.xa{left:134.994000px;}
.x9{left:148.535987px;}
.xb{left:160.409987px;}
.x4a{left:161.850000px;}
.x51{left:163.290000px;}
.x56{left:191.565000px;}
.x1d{left:235.829987px;}
.xf{left:243.030000px;}
.x6{left:246.269987px;}
.x43{left:250.239000px;}
.x5{left:274.529987px;}
.xd{left:277.994987px;}
.x50{left:280.299000px;}
.x1c{left:286.274987px;}
.x7{left:302.474987px;}
.x40{left:310.394987px;}
.x29{left:326.954987px;}
.x21{left:333.615000px;}
.x8{left:342.614987px;}
.x1f{left:347.834987px;}
.x28{left:350.174987px;}
.x11{left:378.975000px;}
.x42{left:382.934987px;}
.x41{left:384.374987px;}
.x53{left:396.075000px;}
.x46{left:403.815000px;}
.x2b{left:424.155000px;}
.x3{left:446.654987px;}
.x54{left:471.345000px;}
.x47{left:496.905000px;}
.x13{left:514.905000px;}
.x2d{left:525.525000px;}
.xc{left:558.464987px;}
.x22{left:560.265000px;}
.x2f{left:580.425000px;}
.x48{left:603.105000px;}
.x55{left:606.345000px;}
.x27{left:624.344987px;}
.x31{left:643.245000px;}
.x16{left:650.805000px;}
.x3f{left:660.389987px;}
.x44{left:663.990000px;}
.x34{left:724.650000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.425067pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.251733pt;}
.ls8{letter-spacing:-0.240533pt;}
.ls4{letter-spacing:-0.220267pt;}
.ls9{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.139733pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls14{letter-spacing:-0.041600pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.112640pt;}
.ls2{letter-spacing:0.166400pt;}
.lsf{letter-spacing:0.284160pt;}
.lsa{letter-spacing:0.291733pt;}
.ls5{letter-spacing:0.317333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.414720pt;}
.ls1{letter-spacing:0.424960pt;}
.ls12{letter-spacing:0.695040pt;}
.ws3{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.798933pt;}
.wsf{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.ws10{word-spacing:-11.676800pt;}
.ws11{word-spacing:-11.644800pt;}
.wsc{word-spacing:-11.546667pt;}
.wse{word-spacing:-11.434667pt;}
.ws9{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.193067pt;}
.wsa{word-spacing:-9.008533pt;}
.ws2{word-spacing:-8.166400pt;}
.wsb{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.008000pt;}
.ws6{word-spacing:-6.784000pt;}
.ws4{word-spacing:-5.913600pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-2.295680pt;}
._2{margin-left:-1.104000pt;}
._1{width:0.970667pt;}
._a{width:1.965440pt;}
._13{width:3.067520pt;}
._11{width:3.971200pt;}
._f{width:5.031893pt;}
._14{width:6.264960pt;}
._e{width:7.198293pt;}
._d{width:8.286720pt;}
._4{width:10.032000pt;}
._15{width:11.706667pt;}
._8{width:13.173760pt;}
._b{width:14.207147pt;}
._12{width:15.776640pt;}
._1e{width:17.090133pt;}
._1b{width:18.060800pt;}
._18{width:19.229440pt;}
._19{width:20.489813pt;}
._1a{width:21.991680pt;}
._9{width:23.266560pt;}
._1f{width:24.314453pt;}
._20{width:25.622827pt;}
._c{width:26.932053pt;}
._6{width:30.278400pt;}
._7{width:32.244053pt;}
._1d{width:36.440320pt;}
._1c{width:37.502720pt;}
._16{width:41.591360pt;}
._0{width:66.666667pt;}
._21{width:72.919253pt;}
._3{width:161.440000pt;}
._5{width:178.026667pt;}
._17{width:1001.393067pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.040000pt;}
.y55{bottom:16.640000pt;}
.yaa{bottom:18.560000pt;}
.y98{bottom:18.720000pt;}
.y54{bottom:28.480000pt;}
.y108{bottom:35.680000pt;}
.y53{bottom:37.920000pt;}
.y52{bottom:47.200000pt;}
.y7{bottom:50.240000pt;}
.ye5{bottom:51.360000pt;}
.yfb{bottom:51.386667pt;}
.y6{bottom:62.752000pt;}
.y51{bottom:62.880000pt;}
.ycc{bottom:97.472000pt;}
.yf0{bottom:106.752000pt;}
.y119{bottom:108.672000pt;}
.y50{bottom:109.920000pt;}
.y118{bottom:111.232000pt;}
.ycb{bottom:113.152000pt;}
.y3f{bottom:117.632000pt;}
.yef{bottom:122.272000pt;}
.y4f{bottom:122.400000pt;}
.y91{bottom:124.352000pt;}
.y117{bottom:126.912000pt;}
.yca{bottom:128.832000pt;}
.y3e{bottom:133.312000pt;}
.y4e{bottom:134.880000pt;}
.yee{bottom:137.946667pt;}
.y90{bottom:139.866667pt;}
.y116{bottom:143.226667pt;}
.yc9{bottom:144.506667pt;}
.y4d{bottom:147.520000pt;}
.y3d{bottom:148.986667pt;}
.yed{bottom:153.626667pt;}
.y8f{bottom:155.546667pt;}
.y115{bottom:159.546667pt;}
.y4c{bottom:160.000000pt;}
.yc8{bottom:160.026667pt;}
.y3c{bottom:164.506667pt;}
.y14d{bottom:168.506667pt;}
.yec{bottom:169.306667pt;}
.y8e{bottom:171.226667pt;}
.y4b{bottom:172.480000pt;}
.yc7{bottom:175.706667pt;}
.y114{bottom:175.866667pt;}
.y3b{bottom:180.186667pt;}
.y14c{bottom:184.026667pt;}
.yeb{bottom:184.826667pt;}
.y4a{bottom:184.960000pt;}
.y8d{bottom:186.906667pt;}
.yc6{bottom:191.386667pt;}
.y113{bottom:195.226667pt;}
.y3a{bottom:195.866667pt;}
.y49{bottom:197.440000pt;}
.y14b{bottom:199.706667pt;}
.yea{bottom:200.506667pt;}
.y8c{bottom:202.426667pt;}
.yc5{bottom:204.506667pt;}
.y48{bottom:208.640000pt;}
.y112{bottom:210.746667pt;}
.y39{bottom:211.546667pt;}
.y14a{bottom:215.386667pt;}
.ye9{bottom:216.186667pt;}
.y47{bottom:216.200000pt;}
.y8b{bottom:218.106667pt;}
.yc4{bottom:220.826667pt;}
.y111{bottom:226.426667pt;}
.y38{bottom:227.066667pt;}
.ye8{bottom:228.666667pt;}
.y46{bottom:228.840000pt;}
.y149{bottom:230.906667pt;}
.y8a{bottom:233.786667pt;}
.yc3{bottom:237.146667pt;}
.y45{bottom:241.320000pt;}
.y110{bottom:242.106667pt;}
.y37{bottom:242.746667pt;}
.ye4{bottom:244.986667pt;}
.y148{bottom:246.586667pt;}
.y89{bottom:249.306667pt;}
.yc2{bottom:253.466667pt;}
.y44{bottom:253.800000pt;}
.y10f{bottom:257.626667pt;}
.y36{bottom:258.426667pt;}
.ye7{bottom:261.306667pt;}
.y147{bottom:262.266667pt;}
.y88{bottom:264.986667pt;}
.y43{bottom:266.280000pt;}
.yc1{bottom:269.786667pt;}
.y10e{bottom:273.306667pt;}
.y35{bottom:273.946667pt;}
.y42{bottom:277.480000pt;}
.ye6{bottom:277.626667pt;}
.y146{bottom:277.786667pt;}
.y87{bottom:280.666667pt;}
.yc0{bottom:286.106667pt;}
.y41{bottom:287.400000pt;}
.y10d{bottom:288.986667pt;}
.y34{bottom:289.626667pt;}
.y145{bottom:293.466667pt;}
.y86{bottom:296.186667pt;}
.y10c{bottom:301.506667pt;}
.ybf{bottom:302.466667pt;}
.y33{bottom:305.346667pt;}
.y144{bottom:309.186667pt;}
.ye2{bottom:309.666667pt;}
.y85{bottom:311.906667pt;}
.y10b{bottom:317.186667pt;}
.ybe{bottom:318.786667pt;}
.y32{bottom:320.866667pt;}
.y143{bottom:324.706667pt;}
.y84{bottom:327.586667pt;}
.y107{bottom:333.506667pt;}
.ybd{bottom:334.946667pt;}
.y31{bottom:336.546667pt;}
.y142{bottom:340.386667pt;}
.ye3{bottom:341.506667pt;}
.y83{bottom:343.266667pt;}
.y10a{bottom:349.826667pt;}
.ybc{bottom:351.266667pt;}
.y30{bottom:352.226667pt;}
.y141{bottom:356.066667pt;}
.y82{bottom:358.786667pt;}
.y109{bottom:366.146667pt;}
.ybb{bottom:367.586667pt;}
.y2f{bottom:367.906667pt;}
.y140{bottom:371.746667pt;}
.y81{bottom:374.466667pt;}
.ye1{bottom:376.546667pt;}
.y106{bottom:382.466667pt;}
.y2e{bottom:383.426667pt;}
.yba{bottom:383.906667pt;}
.y13f{bottom:387.266667pt;}
.y80{bottom:390.146667pt;}
.ye0{bottom:392.066667pt;}
.y105{bottom:398.626667pt;}
.y2d{bottom:399.106667pt;}
.yb9{bottom:400.226667pt;}
.y13e{bottom:402.946667pt;}
.y7f{bottom:405.666667pt;}
.ydf{bottom:407.746667pt;}
.y2c{bottom:414.786667pt;}
.y104{bottom:417.986667pt;}
.y13d{bottom:418.626667pt;}
.y7e{bottom:421.346667pt;}
.yde{bottom:423.426667pt;}
.y2b{bottom:430.306667pt;}
.y103{bottom:433.666667pt;}
.y13c{bottom:434.146667pt;}
.yb8{bottom:435.106667pt;}
.y7d{bottom:437.026667pt;}
.ydd{bottom:438.946667pt;}
.y2a{bottom:445.986667pt;}
.y102{bottom:449.346667pt;}
.y13b{bottom:449.826667pt;}
.yb7{bottom:450.786667pt;}
.y7c{bottom:452.546667pt;}
.ydc{bottom:454.626667pt;}
.y29{bottom:461.666667pt;}
.y101{bottom:464.866667pt;}
.y13a{bottom:465.506667pt;}
.yb6{bottom:466.466667pt;}
.ydb{bottom:467.266667pt;}
.y7b{bottom:468.226667pt;}
.y28{bottom:478.946667pt;}
.y100{bottom:480.546667pt;}
.y139{bottom:481.026667pt;}
.yb5{bottom:481.986667pt;}
.y7a{bottom:483.906667pt;}
.y27{bottom:493.346667pt;}
.yff{bottom:496.226667pt;}
.y138{bottom:496.706667pt;}
.yb4{bottom:497.666667pt;}
.y79{bottom:499.426667pt;}
.yfe{bottom:508.866667pt;}
.y26{bottom:509.026667pt;}
.y137{bottom:512.386667pt;}
.yb3{bottom:513.346667pt;}
.y78{bottom:515.106667pt;}
.y25{bottom:524.546667pt;}
.yfa{bottom:525.026667pt;}
.yb2{bottom:526.626667pt;}
.y136{bottom:528.066667pt;}
.y77{bottom:530.786667pt;}
.y24{bottom:540.253333pt;}
.yfd{bottom:541.373333pt;}
.yb1{bottom:542.973333pt;}
.y135{bottom:543.613333pt;}
.y76{bottom:546.493333pt;}
.y23{bottom:555.933333pt;}
.yfc{bottom:557.693333pt;}
.yb0{bottom:559.133333pt;}
.y134{bottom:559.293333pt;}
.y75{bottom:562.013333pt;}
.y40{bottom:562.973333pt;}
.y22{bottom:571.453333pt;}
.y133{bottom:574.973333pt;}
.yaf{bottom:575.453333pt;}
.y74{bottom:577.693333pt;}
.y21{bottom:587.133333pt;}
.yf8{bottom:589.693333pt;}
.y132{bottom:590.493333pt;}
.yae{bottom:591.773333pt;}
.y73{bottom:593.373333pt;}
.y20{bottom:602.813333pt;}
.y131{bottom:606.173333pt;}
.yad{bottom:608.093333pt;}
.y72{bottom:608.893333pt;}
.y1f{bottom:618.333333pt;}
.yf9{bottom:621.533333pt;}
.y130{bottom:621.853333pt;}
.yac{bottom:624.413333pt;}
.y71{bottom:624.573333pt;}
.y1e{bottom:634.013333pt;}
.y12f{bottom:637.373333pt;}
.y70{bottom:640.253333pt;}
.yab{bottom:640.733333pt;}
.y1d{bottom:649.693333pt;}
.y12e{bottom:653.053333pt;}
.y6f{bottom:655.773333pt;}
.yf7{bottom:656.573333pt;}
.ya9{bottom:657.053333pt;}
.y1c{bottom:665.373333pt;}
.y12d{bottom:668.733333pt;}
.y6e{bottom:671.453333pt;}
.yf6{bottom:672.253333pt;}
.y1b{bottom:680.893333pt;}
.y12c{bottom:684.413333pt;}
.y6d{bottom:687.133333pt;}
.yf5{bottom:687.773333pt;}
.ya8{bottom:691.933333pt;}
.y1a{bottom:696.573333pt;}
.y12b{bottom:699.933333pt;}
.y6c{bottom:702.813333pt;}
.yf4{bottom:703.453333pt;}
.ya7{bottom:707.613333pt;}
.y19{bottom:712.253333pt;}
.yda{bottom:714.973333pt;}
.y12a{bottom:715.613333pt;}
.y6b{bottom:718.333333pt;}
.yf3{bottom:719.133333pt;}
.ya6{bottom:723.293333pt;}
.y18{bottom:727.773333pt;}
.yd9{bottom:730.653333pt;}
.y129{bottom:731.293333pt;}
.y6a{bottom:734.013333pt;}
.yf2{bottom:734.653333pt;}
.ya5{bottom:738.813333pt;}
.y17{bottom:743.453333pt;}
.yd8{bottom:746.333333pt;}
.y128{bottom:746.813333pt;}
.yf1{bottom:747.293333pt;}
.y69{bottom:749.693333pt;}
.ya4{bottom:754.493333pt;}
.y16{bottom:759.133333pt;}
.yd7{bottom:761.853333pt;}
.y127{bottom:762.493333pt;}
.y68{bottom:765.213333pt;}
.ya3{bottom:770.173333pt;}
.y15{bottom:774.693333pt;}
.yd6{bottom:777.573333pt;}
.y126{bottom:778.213333pt;}
.y67{bottom:780.933333pt;}
.ya2{bottom:783.493333pt;}
.y14{bottom:790.373333pt;}
.yd5{bottom:793.253333pt;}
.y125{bottom:793.733333pt;}
.y66{bottom:796.613333pt;}
.ya1{bottom:799.653333pt;}
.y13{bottom:806.053333pt;}
.yd4{bottom:808.933333pt;}
.y124{bottom:809.413333pt;}
.y65{bottom:812.133333pt;}
.ya0{bottom:815.973333pt;}
.y12{bottom:821.573333pt;}
.yd3{bottom:824.453333pt;}
.y123{bottom:825.093333pt;}
.y64{bottom:827.813333pt;}
.y9f{bottom:832.293333pt;}
.y11{bottom:837.253333pt;}
.yd2{bottom:840.133333pt;}
.y122{bottom:840.613333pt;}
.y63{bottom:843.493333pt;}
.y9e{bottom:848.613333pt;}
.y10{bottom:852.933333pt;}
.yd1{bottom:855.813333pt;}
.y121{bottom:856.293333pt;}
.y62{bottom:859.173333pt;}
.y9d{bottom:864.933333pt;}
.yf{bottom:868.293333pt;}
.yd0{bottom:869.093333pt;}
.y120{bottom:871.973333pt;}
.y61{bottom:874.693333pt;}
.y9c{bottom:881.253333pt;}
.ye{bottom:882.053333pt;}
.ycf{bottom:885.253333pt;}
.y11f{bottom:887.653333pt;}
.y60{bottom:890.373333pt;}
.yd{bottom:897.573333pt;}
.yce{bottom:901.573333pt;}
.y11e{bottom:903.173333pt;}
.y5f{bottom:906.053333pt;}
.yc{bottom:909.413333pt;}
.y9b{bottom:913.733333pt;}
.ycd{bottom:917.893333pt;}
.y11d{bottom:918.853333pt;}
.y5e{bottom:921.573333pt;}
.yb{bottom:927.173333pt;}
.y9a{bottom:930.053333pt;}
.y11c{bottom:934.533333pt;}
.y5d{bottom:937.253333pt;}
.y97{bottom:946.373333pt;}
.ya{bottom:947.493333pt;}
.y11b{bottom:950.053333pt;}
.y5c{bottom:952.933333pt;}
.y11a{bottom:965.733333pt;}
.y9{bottom:967.813333pt;}
.y5b{bottom:968.453333pt;}
.y96{bottom:981.413333pt;}
.y5a{bottom:984.133333pt;}
.y8{bottom:987.813333pt;}
.y95{bottom:996.933333pt;}
.y59{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y94{bottom:1012.640000pt;}
.y58{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y93{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y57{bottom:1044.640000pt;}
.y92{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y56{bottom:1064.480000pt;}
.h12{height:15.520000pt;}
.h14{height:15.552000pt;}
.h11{height:15.680000pt;}
.h1a{height:15.712000pt;}
.hd{height:17.881875pt;}
.he{height:27.093750pt;}
.h9{height:29.760625pt;}
.h13{height:31.200000pt;}
.h17{height:31.232000pt;}
.h10{height:31.360000pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.hb{height:40.640625pt;}
.h5{height:44.687500pt;}
.ha{height:44.975625pt;}
.h1b{height:48.160000pt;}
.h8{height:49.852500pt;}
.hf{height:52.284375pt;}
.h6{height:54.187500pt;}
.h7{height:58.522500pt;}
.h15{height:63.040000pt;}
.h18{height:63.200000pt;}
.h16{height:63.872000pt;}
.h19{height:64.032000pt;}
.hc{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:23.040000pt;}
.w1b{width:48.000000pt;}
.wa{width:48.160000pt;}
.w1e{width:49.280000pt;}
.w1a{width:53.472000pt;}
.w10{width:54.560000pt;}
.wb{width:55.200000pt;}
.wd{width:60.320000pt;}
.w20{width:66.272000pt;}
.we{width:67.680000pt;}
.wf{width:71.552000pt;}
.w18{width:82.112000pt;}
.w9{width:89.472000pt;}
.w19{width:93.760000pt;}
.w1c{width:102.720000pt;}
.w15{width:108.480000pt;}
.w17{width:111.040000pt;}
.w21{width:119.360000pt;}
.w4{width:120.160000pt;}
.w5{width:120.192000pt;}
.wc{width:126.912000pt;}
.w12{width:128.192000pt;}
.w8{width:128.640000pt;}
.w16{width:151.360000pt;}
.w7{width:151.866667pt;}
.w22{width:159.706667pt;}
.w3{width:197.306667pt;}
.w6{width:200.666667pt;}
.w1f{width:206.266667pt;}
.w14{width:494.333333pt;}
.w1d{width:603.453333pt;}
.w13{width:604.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x35{left:7.840000pt;}
.x3a{left:8.960000pt;}
.x2c{left:11.360000pt;}
.x3e{left:15.360000pt;}
.x37{left:16.800000pt;}
.x30{left:17.760000pt;}
.x14{left:18.720000pt;}
.x49{left:20.320000pt;}
.x2e{left:21.760000pt;}
.x33{left:23.200000pt;}
.x17{left:24.840000pt;}
.x32{left:26.080000pt;}
.x38{left:28.480000pt;}
.x2a{left:31.040000pt;}
.x10{left:32.680000pt;}
.x57{left:34.400000pt;}
.x12{left:36.000000pt;}
.x15{left:37.760000pt;}
.x3d{left:39.720000pt;}
.x1b{left:42.874667pt;}
.x19{left:43.880000pt;}
.x1a{left:45.480000pt;}
.x18{left:46.554667pt;}
.x3b{left:47.680000pt;}
.x1e{left:50.394667pt;}
.x45{left:54.240000pt;}
.xe{left:55.994667pt;}
.x3c{left:57.466667pt;}
.x4d{left:60.506667pt;}
.x23{left:64.640000pt;}
.x4b{left:67.866667pt;}
.x4c{left:72.640000pt;}
.x20{left:74.234667pt;}
.x26{left:77.280000pt;}
.x39{left:82.426667pt;}
.x25{left:84.160000pt;}
.x4f{left:86.880000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x52{left:98.880000pt;}
.x4e{left:101.760000pt;}
.x4{left:105.791988pt;}
.x36{left:118.912000pt;}
.xa{left:119.994667pt;}
.x9{left:132.031988pt;}
.xb{left:142.586655pt;}
.x4a{left:143.866667pt;}
.x51{left:145.146667pt;}
.x56{left:170.280000pt;}
.x1d{left:209.626655pt;}
.xf{left:216.026667pt;}
.x6{left:218.906655pt;}
.x43{left:222.434667pt;}
.x5{left:244.026655pt;}
.xd{left:247.106655pt;}
.x50{left:249.154667pt;}
.x1c{left:254.466655pt;}
.x7{left:268.866655pt;}
.x40{left:275.906655pt;}
.x29{left:290.626655pt;}
.x21{left:296.546667pt;}
.x8{left:304.546655pt;}
.x1f{left:309.186655pt;}
.x28{left:311.266655pt;}
.x11{left:336.866667pt;}
.x42{left:340.386655pt;}
.x41{left:341.666655pt;}
.x53{left:352.066667pt;}
.x46{left:358.946667pt;}
.x2b{left:377.026667pt;}
.x3{left:397.026655pt;}
.x54{left:418.973333pt;}
.x47{left:441.693333pt;}
.x13{left:457.693333pt;}
.x2d{left:467.133333pt;}
.xc{left:496.413322pt;}
.x22{left:498.013333pt;}
.x2f{left:515.933333pt;}
.x48{left:536.093333pt;}
.x55{left:538.973333pt;}
.x27{left:554.973322pt;}
.x31{left:571.773333pt;}
.x16{left:578.493333pt;}
.x3f{left:587.013322pt;}
.x44{left:590.213333pt;}
.x34{left:644.133333pt;}
}




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