
    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_95bc38da493709d1100402e5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_789695dff9358611c01c0931.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9c3569312e901f77bfb88350.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f8ab981c4c7029437887618.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b3d4b44d1fbceb459b7c58b5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_3d1ace34af33c5580c0bcbf5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_88f8f1d32a967c347b41aa9f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_a61bd6c59bedf686e6691483.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_a853dc1c623cb6de65ba5d17.woff')format("woff");}.ffc{font-family:ffc;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7266022de2c748ee2d251907.woff')format("woff");}.ffe{font-family:ffe;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;}
.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:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-4.782000px;}
.ls2a{letter-spacing:-0.738000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.413400px;}
.ls17{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.008640px;}
.ls15{letter-spacing:-0.004320px;}
.ls5{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.095040px;}
.ls27{letter-spacing:0.100800px;}
.ls1e{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.135600px;}
.ls23{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.214560px;}
.ls14{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.666000px;}
.ls24{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.828000px;}
.ls26{letter-spacing:0.858000px;}
.lsa{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.924000px;}
.ls13{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.620000px;}
.lse{letter-spacing:2.340000px;}
.ls19{letter-spacing:3.060000px;}
.lsb{letter-spacing:4.500000px;}
.lsc{letter-spacing:5.220000px;}
.ls1c{letter-spacing:5.940000px;}
.ls4{letter-spacing:11.700000px;}
.ls2b{letter-spacing:16.506720px;}
.ls0{letter-spacing:17.460000px;}
.ls29{letter-spacing:46.026720px;}
.ls21{letter-spacing:64.170720px;}
.ls1a{letter-spacing:91.530720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.798000px;}
.wsd{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.075600px;}
.wse{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.526600px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.715680px;}
.ws6{word-spacing:-9.711360px;}
.ws13{word-spacing:-8.982000px;}
.ws7{word-spacing:0.000000px;}
._1f{margin-left:-6.640800px;}
._21{margin-left:-5.595600px;}
._5{margin-left:-4.537440px;}
._1d{margin-left:-3.491280px;}
._6{margin-left:-2.424480px;}
._2{margin-left:-1.192320px;}
._0{width:1.185840px;}
._1a{width:2.316720px;}
._4{width:3.324480px;}
._1b{width:4.379040px;}
._8{width:5.766480px;}
._7{width:6.812640px;}
._10{width:8.671200px;}
._a{width:9.854400px;}
._9{width:10.876320px;}
._11{width:12.430080px;}
._14{width:13.685040px;}
._c{width:16.832400px;}
._b{width:18.246720px;}
._16{width:19.661040px;}
._22{width:20.796000px;}
._1c{width:21.872160px;}
._17{width:23.963760px;}
._12{width:25.398000px;}
._13{width:26.618400px;}
._18{width:28.153440px;}
._19{width:29.275920px;}
._20{width:30.417840px;}
._3{width:31.792320px;}
._f{width:33.056640px;}
._15{width:36.214560px;}
._1e{width:38.784240px;}
._e{width:52.235280px;}
._23{width:59.222160px;}
._24{width:60.576240px;}
._d{width:70.158240px;}
._1{width:1100.028000px;}
.fca{color:rgb(5,99,193);}
.fc6{color:rgb(85,84,84);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc9{color:rgb(80,80,80);}
.fc8{color:rgb(31,31,31);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y3a{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y38{bottom:11.160000px;}
.y56{bottom:25.740000px;}
.y37{bottom:30.960000px;}
.y6{bottom:36.180000px;}
.y55{bottom:45.540000px;}
.y36{bottom:50.760000px;}
.yb{bottom:57.420000px;}
.y5{bottom:58.140000px;}
.y54{bottom:65.340000px;}
.y35{bottom:70.560000px;}
.y118{bottom:81.396000px;}
.y4{bottom:81.900000px;}
.ye9{bottom:82.476000px;}
.y53{bottom:85.185000px;}
.ybb{bottom:85.716000px;}
.y34{bottom:90.585000px;}
.y12c{bottom:94.716000px;}
.y8d{bottom:96.516000px;}
.ye8{bottom:101.016000px;}
.y117{bottom:101.196000px;}
.y52{bottom:105.165000px;}
.yba{bottom:105.516000px;}
.y9{bottom:108.750000px;}
.y33{bottom:110.385000px;}
.y12b{bottom:114.516000px;}
.y8c{bottom:116.316000px;}
.y19{bottom:117.396000px;}
.y3{bottom:118.110000px;}
.y116{bottom:120.996000px;}
.ye7{bottom:122.256000px;}
.y51{bottom:124.965000px;}
.yb9{bottom:125.316000px;}
.y32{bottom:130.185000px;}
.y8{bottom:130.710000px;}
.y12a{bottom:134.316000px;}
.y8b{bottom:136.296000px;}
.y18{bottom:137.196000px;}
.y115{bottom:140.796000px;}
.ye6{bottom:142.056000px;}
.y50{bottom:144.765000px;}
.yb8{bottom:145.296000px;}
.y31{bottom:149.985000px;}
.y129{bottom:154.290000px;}
.y8a{bottom:156.090000px;}
.y17{bottom:156.990000px;}
.y114{bottom:160.770000px;}
.y4f{bottom:164.565000px;}
.yb7{bottom:165.090000px;}
.y30{bottom:169.785000px;}
.ye5{bottom:170.850000px;}
.y128{bottom:174.090000px;}
.y89{bottom:175.890000px;}
.y16{bottom:176.970000px;}
.y113{bottom:178.050000px;}
.y4e{bottom:184.365000px;}
.yb6{bottom:184.890000px;}
.y2f{bottom:189.765000px;}
.ye4{bottom:190.650000px;}
.y127{bottom:193.890000px;}
.y88{bottom:195.690000px;}
.y15{bottom:196.770000px;}
.y112{bottom:197.850000px;}
.y4d{bottom:204.345000px;}
.yb5{bottom:204.690000px;}
.y2e{bottom:209.565000px;}
.ye3{bottom:210.630000px;}
.y126{bottom:213.690000px;}
.y87{bottom:215.490000px;}
.y14{bottom:216.570000px;}
.y111{bottom:217.650000px;}
.y4c{bottom:224.145000px;}
.yb4{bottom:224.490000px;}
.y2d{bottom:229.365000px;}
.ye2{bottom:231.510000px;}
.y125{bottom:233.490000px;}
.y86{bottom:235.470000px;}
.y13{bottom:236.370000px;}
.y110{bottom:237.450000px;}
.y4b{bottom:243.945000px;}
.yb3{bottom:244.470000px;}
.y2c{bottom:249.165000px;}
.ye1{bottom:251.310000px;}
.y124{bottom:253.470000px;}
.y85{bottom:255.270000px;}
.y1a{bottom:255.630000px;}
.y10f{bottom:257.250000px;}
.y4a{bottom:263.745000px;}
.yb2{bottom:264.270000px;}
.y2b{bottom:268.965000px;}
.ye0{bottom:272.190000px;}
.y123{bottom:273.270000px;}
.y84{bottom:275.070000px;}
.y10e{bottom:277.050000px;}
.y49{bottom:283.545000px;}
.yb1{bottom:284.070000px;}
.y2a{bottom:288.945000px;}
.ydf{bottom:291.990000px;}
.y122{bottom:293.070000px;}
.y83{bottom:294.870000px;}
.y10d{bottom:297.030000px;}
.y48{bottom:303.525000px;}
.yb0{bottom:303.870000px;}
.y29{bottom:308.745000px;}
.yde{bottom:311.970000px;}
.y121{bottom:312.870000px;}
.y82{bottom:314.670000px;}
.y10c{bottom:316.830000px;}
.y47{bottom:323.325000px;}
.yaf{bottom:323.670000px;}
.y28{bottom:328.545000px;}
.y120{bottom:332.670000px;}
.ydd{bottom:332.850000px;}
.y81{bottom:334.650000px;}
.y10b{bottom:336.675000px;}
.y46{bottom:343.125000px;}
.yae{bottom:343.695000px;}
.y27{bottom:348.375000px;}
.ydc{bottom:352.695000px;}
.y80{bottom:354.495000px;}
.y10a{bottom:356.475000px;}
.y45{bottom:362.955000px;}
.yad{bottom:363.495000px;}
.y26{bottom:368.175000px;}
.ydb{bottom:372.495000px;}
.ya6{bottom:374.295000px;}
.y109{bottom:376.275000px;}
.y44{bottom:382.755000px;}
.y7f{bottom:383.295000px;}
.y25{bottom:388.155000px;}
.y11f{bottom:392.295000px;}
.yda{bottom:393.375000px;}
.ya5{bottom:394.095000px;}
.y108{bottom:396.255000px;}
.y43{bottom:402.735000px;}
.y7e{bottom:403.095000px;}
.y24{bottom:407.955000px;}
.y11e{bottom:412.095000px;}
.yd9{bottom:413.355000px;}
.ya4{bottom:413.895000px;}
.y107{bottom:416.055000px;}
.y42{bottom:422.535000px;}
.y7d{bottom:422.895000px;}
.y23{bottom:427.755000px;}
.y11d{bottom:431.895000px;}
.yd8{bottom:433.155000px;}
.ya3{bottom:433.875000px;}
.y106{bottom:435.855000px;}
.y41{bottom:442.335000px;}
.y7c{bottom:442.875000px;}
.y22{bottom:447.555000px;}
.y11c{bottom:451.875000px;}
.y105{bottom:453.135000px;}
.ya2{bottom:453.675000px;}
.yd7{bottom:454.035000px;}
.y40{bottom:462.135000px;}
.y7b{bottom:462.675000px;}
.y21{bottom:467.355000px;}
.y104{bottom:470.415000px;}
.y11b{bottom:471.675000px;}
.ya1{bottom:473.475000px;}
.yd6{bottom:473.835000px;}
.y3f{bottom:481.935000px;}
.y7a{bottom:482.475000px;}
.y20{bottom:487.335000px;}
.y103{bottom:490.215000px;}
.y11a{bottom:491.475000px;}
.ya0{bottom:493.275000px;}
.yd5{bottom:494.715000px;}
.y3e{bottom:501.915000px;}
.y79{bottom:502.275000px;}
.y1f{bottom:507.135000px;}
.y102{bottom:510.015000px;}
.y119{bottom:511.275000px;}
.y9f{bottom:513.075000px;}
.yd4{bottom:515.775000px;}
.y3d{bottom:521.715000px;}
.y78{bottom:522.075000px;}
.y1e{bottom:526.935000px;}
.y101{bottom:529.815000px;}
.ycc{bottom:531.075000px;}
.y9e{bottom:533.055000px;}
.yd3{bottom:536.655000px;}
.y3c{bottom:541.515000px;}
.y77{bottom:542.055000px;}
.y1d{bottom:546.735000px;}
.y100{bottom:549.795000px;}
.ycb{bottom:551.055000px;}
.y9d{bottom:552.855000px;}
.yd2{bottom:557.535000px;}
.y3b{bottom:561.315000px;}
.y76{bottom:561.855000px;}
.y1c{bottom:566.535000px;}
.yff{bottom:569.595000px;}
.yca{bottom:570.855000px;}
.y9c{bottom:572.655000px;}
.yd1{bottom:578.415000px;}
.y75{bottom:581.655000px;}
.y1b{bottom:586.515000px;}
.yfe{bottom:589.395000px;}
.yc9{bottom:590.655000px;}
.y9b{bottom:592.455000px;}
.yd0{bottom:599.295000px;}
.y74{bottom:601.455000px;}
.yfd{bottom:609.225000px;}
.yc8{bottom:610.485000px;}
.y9a{bottom:612.285000px;}
.ycf{bottom:619.125000px;}
.y73{bottom:621.285000px;}
.yfc{bottom:629.025000px;}
.yc7{bottom:630.285000px;}
.y99{bottom:632.265000px;}
.yce{bottom:640.185000px;}
.y72{bottom:641.265000px;}
.yfb{bottom:649.005000px;}
.yc6{bottom:650.265000px;}
.y98{bottom:652.065000px;}
.ycd{bottom:659.985000px;}
.y71{bottom:661.065000px;}
.yfa{bottom:668.805000px;}
.yc5{bottom:670.065000px;}
.y97{bottom:671.865000px;}
.y70{bottom:680.865000px;}
.yf9{bottom:688.605000px;}
.yc4{bottom:689.865000px;}
.y96{bottom:691.665000px;}
.y6f{bottom:700.665000px;}
.yc3{bottom:709.665000px;}
.yf8{bottom:717.405000px;}
.y6e{bottom:720.465000px;}
.yc2{bottom:729.465000px;}
.yf7{bottom:737.205000px;}
.y6d{bottom:740.445000px;}
.yc1{bottom:749.445000px;}
.yf6{bottom:758.085000px;}
.y6c{bottom:760.245000px;}
.yc0{bottom:769.245000px;}
.yf5{bottom:779.145000px;}
.y6b{bottom:780.045000px;}
.ybf{bottom:789.045000px;}
.y6a{bottom:799.845000px;}
.yf4{bottom:800.025000px;}
.ybe{bottom:808.845000px;}
.y69{bottom:819.645000px;}
.yf3{bottom:819.825000px;}
.ybd{bottom:828.645000px;}
.y39{bottom:836.205000px;}
.y68{bottom:839.625000px;}
.ybc{bottom:848.625000px;}
.y67{bottom:859.425000px;}
.y12{bottom:866.625000px;}
.yac{bottom:868.425000px;}
.y66{bottom:879.270000px;}
.yab{bottom:888.270000px;}
.yf2{bottom:889.530000px;}
.y11{bottom:894.930000px;}
.y65{bottom:899.070000px;}
.yaa{bottom:908.070000px;}
.yf1{bottom:910.410000px;}
.y10{bottom:914.730000px;}
.y64{bottom:918.870000px;}
.ya9{bottom:927.870000px;}
.yf{bottom:929.850000px;}
.yf0{bottom:931.290000px;}
.y63{bottom:938.850000px;}
.ya8{bottom:947.850000px;}
.ye{bottom:951.090000px;}
.yef{bottom:952.170000px;}
.y62{bottom:958.650000px;}
.ya7{bottom:967.650000px;}
.yee{bottom:971.970000px;}
.yd{bottom:974.490000px;}
.y95{bottom:978.450000px;}
.y61{bottom:987.450000px;}
.yed{bottom:991.950000px;}
.y94{bottom:998.250000px;}
.yc{bottom:1006.350000px;}
.y60{bottom:1007.250000px;}
.y93{bottom:1018.050000px;}
.yec{bottom:1020.750000px;}
.y5f{bottom:1027.050000px;}
.ya{bottom:1033.530000px;}
.y92{bottom:1038.030000px;}
.yeb{bottom:1040.550000px;}
.y5e{bottom:1047.030000px;}
.y1{bottom:1051.350000px;}
.y91{bottom:1057.830000px;}
.yea{bottom:1060.350000px;}
.y5d{bottom:1066.830000px;}
.y90{bottom:1077.630000px;}
.y5c{bottom:1086.630000px;}
.y8f{bottom:1097.430000px;}
.y5b{bottom:1106.430000px;}
.y8e{bottom:1117.230000px;}
.y5a{bottom:1126.230000px;}
.y59{bottom:1146.240000px;}
.y58{bottom:1166.040000px;}
.y57{bottom:1194.840000px;}
.hf{height:19.980000px;}
.hb{height:37.771172px;}
.hd{height:52.319180px;}
.h12{height:54.918984px;}
.h15{height:58.621992px;}
.h9{height:58.651172px;}
.hc{height:60.226875px;}
.h13{height:61.423863px;}
.h14{height:64.411172px;}
.ha{height:65.846250px;}
.h11{height:65.884219px;}
.h7{height:67.565039px;}
.h6{height:70.664062px;}
.h5{height:71.613281px;}
.h3{height:73.722656px;}
.h8{height:96.508125px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.h10{height:575.355000px;}
.he{height:600.555000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:127.656000px;}
.w4{width:157.140000px;}
.w6{width:285.555000px;}
.w7{width:494.715000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xe{left:64.799987px;}
.xd{left:68.939987px;}
.xc{left:73.079987px;}
.xf{left:80.999987px;}
.x10{left:108.035987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x3{left:181.650000px;}
.xb{left:245.549987px;}
.xa{left:342.795000px;}
.x9{left:681.450000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-4.250667pt;}
.ls2a{letter-spacing:-0.656000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.367467pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls15{letter-spacing:-0.003840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.084480pt;}
.ls27{letter-spacing:0.089600pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.120533pt;}
.ls23{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.190720pt;}
.ls14{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.592000pt;}
.ls24{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls26{letter-spacing:0.762667pt;}
.lsa{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.440000pt;}
.lse{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.720000pt;}
.lsb{letter-spacing:4.000000pt;}
.lsc{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:5.280000pt;}
.ls4{letter-spacing:10.400000pt;}
.ls2b{letter-spacing:14.672640pt;}
.ls0{letter-spacing:15.520000pt;}
.ls29{letter-spacing:40.912640pt;}
.ls21{letter-spacing:57.040640pt;}
.ls1a{letter-spacing:81.360640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.042667pt;}
.wsd{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.400533pt;}
.wse{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.912533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.636160pt;}
.ws6{word-spacing:-8.632320pt;}
.ws13{word-spacing:-7.984000pt;}
.ws7{word-spacing:0.000000pt;}
._1f{margin-left:-5.902933pt;}
._21{margin-left:-4.973867pt;}
._5{margin-left:-4.033280pt;}
._1d{margin-left:-3.103360pt;}
._6{margin-left:-2.155093pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.054080pt;}
._1a{width:2.059307pt;}
._4{width:2.955093pt;}
._1b{width:3.892480pt;}
._8{width:5.125760pt;}
._7{width:6.055680pt;}
._10{width:7.707733pt;}
._a{width:8.759467pt;}
._9{width:9.667840pt;}
._11{width:11.048960pt;}
._14{width:12.164480pt;}
._c{width:14.962133pt;}
._b{width:16.219307pt;}
._16{width:17.476480pt;}
._22{width:18.485333pt;}
._1c{width:19.441920pt;}
._17{width:21.301120pt;}
._12{width:22.576000pt;}
._13{width:23.660800pt;}
._18{width:25.025280pt;}
._19{width:26.023040pt;}
._20{width:27.038080pt;}
._3{width:28.259840pt;}
._f{width:29.383680pt;}
._15{width:32.190720pt;}
._1e{width:34.474880pt;}
._e{width:46.431360pt;}
._23{width:52.641920pt;}
._24{width:53.845547pt;}
._d{width:62.362880pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y3a{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y38{bottom:9.920000pt;}
.y56{bottom:22.880000pt;}
.y37{bottom:27.520000pt;}
.y6{bottom:32.160000pt;}
.y55{bottom:40.480000pt;}
.y36{bottom:45.120000pt;}
.yb{bottom:51.040000pt;}
.y5{bottom:51.680000pt;}
.y54{bottom:58.080000pt;}
.y35{bottom:62.720000pt;}
.y118{bottom:72.352000pt;}
.y4{bottom:72.800000pt;}
.ye9{bottom:73.312000pt;}
.y53{bottom:75.720000pt;}
.ybb{bottom:76.192000pt;}
.y34{bottom:80.520000pt;}
.y12c{bottom:84.192000pt;}
.y8d{bottom:85.792000pt;}
.ye8{bottom:89.792000pt;}
.y117{bottom:89.952000pt;}
.y52{bottom:93.480000pt;}
.yba{bottom:93.792000pt;}
.y9{bottom:96.666667pt;}
.y33{bottom:98.120000pt;}
.y12b{bottom:101.792000pt;}
.y8c{bottom:103.392000pt;}
.y19{bottom:104.352000pt;}
.y3{bottom:104.986667pt;}
.y116{bottom:107.552000pt;}
.ye7{bottom:108.672000pt;}
.y51{bottom:111.080000pt;}
.yb9{bottom:111.392000pt;}
.y32{bottom:115.720000pt;}
.y8{bottom:116.186667pt;}
.y12a{bottom:119.392000pt;}
.y8b{bottom:121.152000pt;}
.y18{bottom:121.952000pt;}
.y115{bottom:125.152000pt;}
.ye6{bottom:126.272000pt;}
.y50{bottom:128.680000pt;}
.yb8{bottom:129.152000pt;}
.y31{bottom:133.320000pt;}
.y129{bottom:137.146667pt;}
.y8a{bottom:138.746667pt;}
.y17{bottom:139.546667pt;}
.y114{bottom:142.906667pt;}
.y4f{bottom:146.280000pt;}
.yb7{bottom:146.746667pt;}
.y30{bottom:150.920000pt;}
.ye5{bottom:151.866667pt;}
.y128{bottom:154.746667pt;}
.y89{bottom:156.346667pt;}
.y16{bottom:157.306667pt;}
.y113{bottom:158.266667pt;}
.y4e{bottom:163.880000pt;}
.yb6{bottom:164.346667pt;}
.y2f{bottom:168.680000pt;}
.ye4{bottom:169.466667pt;}
.y127{bottom:172.346667pt;}
.y88{bottom:173.946667pt;}
.y15{bottom:174.906667pt;}
.y112{bottom:175.866667pt;}
.y4d{bottom:181.640000pt;}
.yb5{bottom:181.946667pt;}
.y2e{bottom:186.280000pt;}
.ye3{bottom:187.226667pt;}
.y126{bottom:189.946667pt;}
.y87{bottom:191.546667pt;}
.y14{bottom:192.506667pt;}
.y111{bottom:193.466667pt;}
.y4c{bottom:199.240000pt;}
.yb4{bottom:199.546667pt;}
.y2d{bottom:203.880000pt;}
.ye2{bottom:205.786667pt;}
.y125{bottom:207.546667pt;}
.y86{bottom:209.306667pt;}
.y13{bottom:210.106667pt;}
.y110{bottom:211.066667pt;}
.y4b{bottom:216.840000pt;}
.yb3{bottom:217.306667pt;}
.y2c{bottom:221.480000pt;}
.ye1{bottom:223.386667pt;}
.y124{bottom:225.306667pt;}
.y85{bottom:226.906667pt;}
.y1a{bottom:227.226667pt;}
.y10f{bottom:228.666667pt;}
.y4a{bottom:234.440000pt;}
.yb2{bottom:234.906667pt;}
.y2b{bottom:239.080000pt;}
.ye0{bottom:241.946667pt;}
.y123{bottom:242.906667pt;}
.y84{bottom:244.506667pt;}
.y10e{bottom:246.266667pt;}
.y49{bottom:252.040000pt;}
.yb1{bottom:252.506667pt;}
.y2a{bottom:256.840000pt;}
.ydf{bottom:259.546667pt;}
.y122{bottom:260.506667pt;}
.y83{bottom:262.106667pt;}
.y10d{bottom:264.026667pt;}
.y48{bottom:269.800000pt;}
.yb0{bottom:270.106667pt;}
.y29{bottom:274.440000pt;}
.yde{bottom:277.306667pt;}
.y121{bottom:278.106667pt;}
.y82{bottom:279.706667pt;}
.y10c{bottom:281.626667pt;}
.y47{bottom:287.400000pt;}
.yaf{bottom:287.706667pt;}
.y28{bottom:292.040000pt;}
.y120{bottom:295.706667pt;}
.ydd{bottom:295.866667pt;}
.y81{bottom:297.466667pt;}
.y10b{bottom:299.266667pt;}
.y46{bottom:305.000000pt;}
.yae{bottom:305.506667pt;}
.y27{bottom:309.666667pt;}
.ydc{bottom:313.506667pt;}
.y80{bottom:315.106667pt;}
.y10a{bottom:316.866667pt;}
.y45{bottom:322.626667pt;}
.yad{bottom:323.106667pt;}
.y26{bottom:327.266667pt;}
.ydb{bottom:331.106667pt;}
.ya6{bottom:332.706667pt;}
.y109{bottom:334.466667pt;}
.y44{bottom:340.226667pt;}
.y7f{bottom:340.706667pt;}
.y25{bottom:345.026667pt;}
.y11f{bottom:348.706667pt;}
.yda{bottom:349.666667pt;}
.ya5{bottom:350.306667pt;}
.y108{bottom:352.226667pt;}
.y43{bottom:357.986667pt;}
.y7e{bottom:358.306667pt;}
.y24{bottom:362.626667pt;}
.y11e{bottom:366.306667pt;}
.yd9{bottom:367.426667pt;}
.ya4{bottom:367.906667pt;}
.y107{bottom:369.826667pt;}
.y42{bottom:375.586667pt;}
.y7d{bottom:375.906667pt;}
.y23{bottom:380.226667pt;}
.y11d{bottom:383.906667pt;}
.yd8{bottom:385.026667pt;}
.ya3{bottom:385.666667pt;}
.y106{bottom:387.426667pt;}
.y41{bottom:393.186667pt;}
.y7c{bottom:393.666667pt;}
.y22{bottom:397.826667pt;}
.y11c{bottom:401.666667pt;}
.y105{bottom:402.786667pt;}
.ya2{bottom:403.266667pt;}
.yd7{bottom:403.586667pt;}
.y40{bottom:410.786667pt;}
.y7b{bottom:411.266667pt;}
.y21{bottom:415.426667pt;}
.y104{bottom:418.146667pt;}
.y11b{bottom:419.266667pt;}
.ya1{bottom:420.866667pt;}
.yd6{bottom:421.186667pt;}
.y3f{bottom:428.386667pt;}
.y7a{bottom:428.866667pt;}
.y20{bottom:433.186667pt;}
.y103{bottom:435.746667pt;}
.y11a{bottom:436.866667pt;}
.ya0{bottom:438.466667pt;}
.yd5{bottom:439.746667pt;}
.y3e{bottom:446.146667pt;}
.y79{bottom:446.466667pt;}
.y1f{bottom:450.786667pt;}
.y102{bottom:453.346667pt;}
.y119{bottom:454.466667pt;}
.y9f{bottom:456.066667pt;}
.yd4{bottom:458.466667pt;}
.y3d{bottom:463.746667pt;}
.y78{bottom:464.066667pt;}
.y1e{bottom:468.386667pt;}
.y101{bottom:470.946667pt;}
.ycc{bottom:472.066667pt;}
.y9e{bottom:473.826667pt;}
.yd3{bottom:477.026667pt;}
.y3c{bottom:481.346667pt;}
.y77{bottom:481.826667pt;}
.y1d{bottom:485.986667pt;}
.y100{bottom:488.706667pt;}
.ycb{bottom:489.826667pt;}
.y9d{bottom:491.426667pt;}
.yd2{bottom:495.586667pt;}
.y3b{bottom:498.946667pt;}
.y76{bottom:499.426667pt;}
.y1c{bottom:503.586667pt;}
.yff{bottom:506.306667pt;}
.yca{bottom:507.426667pt;}
.y9c{bottom:509.026667pt;}
.yd1{bottom:514.146667pt;}
.y75{bottom:517.026667pt;}
.y1b{bottom:521.346667pt;}
.yfe{bottom:523.906667pt;}
.yc9{bottom:525.026667pt;}
.y9b{bottom:526.626667pt;}
.yd0{bottom:532.706667pt;}
.y74{bottom:534.626667pt;}
.yfd{bottom:541.533333pt;}
.yc8{bottom:542.653333pt;}
.y9a{bottom:544.253333pt;}
.ycf{bottom:550.333333pt;}
.y73{bottom:552.253333pt;}
.yfc{bottom:559.133333pt;}
.yc7{bottom:560.253333pt;}
.y99{bottom:562.013333pt;}
.yce{bottom:569.053333pt;}
.y72{bottom:570.013333pt;}
.yfb{bottom:576.893333pt;}
.yc6{bottom:578.013333pt;}
.y98{bottom:579.613333pt;}
.ycd{bottom:586.653333pt;}
.y71{bottom:587.613333pt;}
.yfa{bottom:594.493333pt;}
.yc5{bottom:595.613333pt;}
.y97{bottom:597.213333pt;}
.y70{bottom:605.213333pt;}
.yf9{bottom:612.093333pt;}
.yc4{bottom:613.213333pt;}
.y96{bottom:614.813333pt;}
.y6f{bottom:622.813333pt;}
.yc3{bottom:630.813333pt;}
.yf8{bottom:637.693333pt;}
.y6e{bottom:640.413333pt;}
.yc2{bottom:648.413333pt;}
.yf7{bottom:655.293333pt;}
.y6d{bottom:658.173333pt;}
.yc1{bottom:666.173333pt;}
.yf6{bottom:673.853333pt;}
.y6c{bottom:675.773333pt;}
.yc0{bottom:683.773333pt;}
.yf5{bottom:692.573333pt;}
.y6b{bottom:693.373333pt;}
.ybf{bottom:701.373333pt;}
.y6a{bottom:710.973333pt;}
.yf4{bottom:711.133333pt;}
.ybe{bottom:718.973333pt;}
.y69{bottom:728.573333pt;}
.yf3{bottom:728.733333pt;}
.ybd{bottom:736.573333pt;}
.y39{bottom:743.293333pt;}
.y68{bottom:746.333333pt;}
.ybc{bottom:754.333333pt;}
.y67{bottom:763.933333pt;}
.y12{bottom:770.333333pt;}
.yac{bottom:771.933333pt;}
.y66{bottom:781.573333pt;}
.yab{bottom:789.573333pt;}
.yf2{bottom:790.693333pt;}
.y11{bottom:795.493333pt;}
.y65{bottom:799.173333pt;}
.yaa{bottom:807.173333pt;}
.yf1{bottom:809.253333pt;}
.y10{bottom:813.093333pt;}
.y64{bottom:816.773333pt;}
.ya9{bottom:824.773333pt;}
.yf{bottom:826.533333pt;}
.yf0{bottom:827.813333pt;}
.y63{bottom:834.533333pt;}
.ya8{bottom:842.533333pt;}
.ye{bottom:845.413333pt;}
.yef{bottom:846.373333pt;}
.y62{bottom:852.133333pt;}
.ya7{bottom:860.133333pt;}
.yee{bottom:863.973333pt;}
.yd{bottom:866.213333pt;}
.y95{bottom:869.733333pt;}
.y61{bottom:877.733333pt;}
.yed{bottom:881.733333pt;}
.y94{bottom:887.333333pt;}
.yc{bottom:894.533333pt;}
.y60{bottom:895.333333pt;}
.y93{bottom:904.933333pt;}
.yec{bottom:907.333333pt;}
.y5f{bottom:912.933333pt;}
.ya{bottom:918.693333pt;}
.y92{bottom:922.693333pt;}
.yeb{bottom:924.933333pt;}
.y5e{bottom:930.693333pt;}
.y1{bottom:934.533333pt;}
.y91{bottom:940.293333pt;}
.yea{bottom:942.533333pt;}
.y5d{bottom:948.293333pt;}
.y90{bottom:957.893333pt;}
.y5c{bottom:965.893333pt;}
.y8f{bottom:975.493333pt;}
.y5b{bottom:983.493333pt;}
.y8e{bottom:993.093333pt;}
.y5a{bottom:1001.093333pt;}
.y59{bottom:1018.880000pt;}
.y58{bottom:1036.480000pt;}
.y57{bottom:1062.080000pt;}
.hf{height:17.760000pt;}
.hb{height:33.574375pt;}
.hd{height:46.505938pt;}
.h12{height:48.816875pt;}
.h15{height:52.108438pt;}
.h9{height:52.134375pt;}
.hc{height:53.535000pt;}
.h13{height:54.598989pt;}
.h14{height:57.254375pt;}
.ha{height:58.530000pt;}
.h11{height:58.563750pt;}
.h7{height:60.057813pt;}
.h6{height:62.812500pt;}
.h5{height:63.656250pt;}
.h3{height:65.531250pt;}
.h8{height:85.785000pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.h10{height:511.426667pt;}
.he{height:533.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.472000pt;}
.w4{width:139.680000pt;}
.w6{width:253.826667pt;}
.w7{width:439.746667pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xe{left:57.599988pt;}
.xd{left:61.279988pt;}
.xc{left:64.959988pt;}
.xf{left:71.999988pt;}
.x10{left:96.031988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x3{left:161.466667pt;}
.xb{left:218.266655pt;}
.xa{left:304.706667pt;}
.x9{left:605.733333pt;}
}




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