
    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_a76a26a65bc463761117d972.woff2')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_31706d61b141749f931caeb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_88b5d560616250e2a74cb8e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.163086;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_b71c9bc4aa8c16e39a273b36.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_5a161262f23a364fd64b4ce8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.876465;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_a3e0624ca7256a73a1352a61.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.055664;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-100.800000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.ls14{letter-spacing:-14.940000px;}
.ls16{letter-spacing:-14.220000px;}
.ls12{letter-spacing:-12.780000px;}
.ls9{letter-spacing:-3.642000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.570000px;}
.lse{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1f{letter-spacing:-0.414000px;}
.ls1c{letter-spacing:-0.240600px;}
.ls1a{letter-spacing:-0.226800px;}
.ls5{letter-spacing:-0.132600px;}
.ls10{letter-spacing:-0.107400px;}
.ls31{letter-spacing:-0.069600px;}
.ls11{letter-spacing:-0.064800px;}
.ls20{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.041760px;}
.ls3{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.038880px;}
.ls2c{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.060480px;}
.ls1d{letter-spacing:0.060600px;}
.ls2f{letter-spacing:0.064200px;}
.lsb{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.066240px;}
.ls2b{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.186600px;}
.ls30{letter-spacing:0.274800px;}
.ls18{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.393600px;}
.ls15{letter-spacing:0.479400px;}
.ls1e{letter-spacing:0.780000px;}
.ls29{letter-spacing:0.894000px;}
.lsc{letter-spacing:0.906000px;}
.ls23{letter-spacing:2.460960px;}
.ls2d{letter-spacing:3.054240px;}
.ls27{letter-spacing:3.180960px;}
.ls25{letter-spacing:3.342240px;}
.ls28{letter-spacing:4.062240px;}
.ls26{letter-spacing:4.782240px;}
.ls2e{letter-spacing:12.186720px;}
.ls22{letter-spacing:16.140960px;}
.ls24{letter-spacing:17.742240px;}
.ls21{letter-spacing:21.342240px;}
.ls2a{letter-spacing:42.426720px;}
.ls0{letter-spacing:1307.994240px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws5{word-spacing:-14.411760px;}
.ws6{word-spacing:-13.899360px;}
.wsc{word-spacing:-13.811760px;}
.ws13{word-spacing:-13.780560px;}
.ws9{word-spacing:-13.692360px;}
.wsa{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.569960px;}
.ws15{word-spacing:-13.530960px;}
.ws4{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.436160px;}
.ws7{word-spacing:-13.398360px;}
.wsd{word-spacing:-13.147200px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:0.532080px;}
.wsf{word-spacing:0.652080px;}
.wse{word-spacing:4.132080px;}
._28{margin-left:-3179.520000px;}
._36{margin-left:-3176.140320px;}
._29{margin-left:-1890.974160px;}
._3a{margin-left:-1043.298720px;}
._45{margin-left:-772.904880px;}
._47{margin-left:-688.981680px;}
._46{margin-left:-572.049360px;}
._44{margin-left:-555.316560px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._43{margin-left:-354.978720px;}
._8{margin-left:-306.459120px;}
._3d{margin-left:-294.441840px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._3e{margin-left:-268.685280px;}
._3b{margin-left:-261.514080px;}
._3f{margin-left:-258.107760px;}
._17{margin-left:-247.991040px;}
._3c{margin-left:-246.514320px;}
._b{margin-left:-240.510240px;}
._41{margin-left:-229.160880px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._22{margin-left:-120.382560px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._40{margin-left:-61.115760px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._39{margin-left:-5.270400px;}
._26{margin-left:-3.734640px;}
._31{margin-left:-2.569680px;}
._2{margin-left:-1.347840px;}
._27{width:1.436400px;}
._2c{width:3.241920px;}
._2d{width:4.466640px;}
._2e{width:5.522400px;}
._32{width:6.643200px;}
._2f{width:7.662240px;}
._30{width:9.216480px;}
._35{width:10.567680px;}
._33{width:12.518160px;}
._34{width:14.136240px;}
._2a{width:15.358320px;}
._2b{width:16.609680px;}
._37{width:17.929440px;}
._38{width:49.959360px;}
._42{width:67.947120px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y67{bottom:6.660000px;}
.y74{bottom:6.690000px;}
.y66{bottom:27.720000px;}
.ybe{bottom:48.780000px;}
.yb0{bottom:48.825000px;}
.y6{bottom:60.480000px;}
.yaf{bottom:69.885000px;}
.yeb{bottom:88.200000px;}
.y8d{bottom:92.520000px;}
.ybc{bottom:93.960000px;}
.y64{bottom:105.120000px;}
.y8c{bottom:114.300000px;}
.ybb{bottom:115.920000px;}
.y2e{bottom:126.180000px;}
.y8b{bottom:136.080000px;}
.y2d{bottom:147.240000px;}
.y8a{bottom:157.890000px;}
.yba{bottom:158.790000px;}
.y2c{bottom:168.330000px;}
.yea{bottom:175.890000px;}
.y89{bottom:179.670000px;}
.yb9{bottom:180.570000px;}
.y2b{bottom:189.390000px;}
.ye9{bottom:196.950000px;}
.y88{bottom:201.450000px;}
.yb8{bottom:202.350000px;}
.y2a{bottom:210.450000px;}
.ye8{bottom:218.010000px;}
.yb7{bottom:230.790000px;}
.y29{bottom:231.510000px;}
.ye7{bottom:239.070000px;}
.y87{bottom:251.130000px;}
.yb6{bottom:251.850000px;}
.y28{bottom:252.570000px;}
.ye6{bottom:260.130000px;}
.y86{bottom:272.190000px;}
.yb5{bottom:272.910000px;}
.y27{bottom:273.630000px;}
.ye5{bottom:281.190000px;}
.y85{bottom:293.250000px;}
.yb4{bottom:293.970000px;}
.y26{bottom:294.690000px;}
.ye4{bottom:302.250000px;}
.y84{bottom:314.130000px;}
.yb3{bottom:315.030000px;}
.y25{bottom:315.750000px;}
.ye3{bottom:323.130000px;}
.y83{bottom:335.190000px;}
.yb2{bottom:336.090000px;}
.y24{bottom:336.810000px;}
.ye2{bottom:344.190000px;}
.y82{bottom:356.250000px;}
.yb1{bottom:357.150000px;}
.y56{bottom:357.870000px;}
.ye1{bottom:365.250000px;}
.y23{bottom:366.870000px;}
.yae{bottom:372.270000px;}
.y81{bottom:377.310000px;}
.y55{bottom:378.930000px;}
.ye0{bottom:386.310000px;}
.y22{bottom:387.930000px;}
.y80{bottom:398.370000px;}
.y54{bottom:399.990000px;}
.ydf{bottom:407.415000px;}
.y21{bottom:409.035000px;}
.y7f{bottom:419.475000px;}
.y53{bottom:421.095000px;}
.yde{bottom:428.475000px;}
.y20{bottom:430.095000px;}
.y7e{bottom:440.535000px;}
.y52{bottom:442.155000px;}
.ydd{bottom:449.535000px;}
.y1f{bottom:451.155000px;}
.yad{bottom:457.275000px;}
.y7d{bottom:461.595000px;}
.y51{bottom:463.215000px;}
.ydc{bottom:470.595000px;}
.y1e{bottom:472.215000px;}
.y7c{bottom:482.655000px;}
.y50{bottom:484.275000px;}
.ydb{bottom:491.655000px;}
.y1d{bottom:493.275000px;}
.yac{bottom:500.115000px;}
.y7b{bottom:503.715000px;}
.y4f{bottom:505.335000px;}
.yda{bottom:512.715000px;}
.y1c{bottom:514.335000px;}
.yab{bottom:522.075000px;}
.y7a{bottom:524.775000px;}
.y4e{bottom:526.395000px;}
.yd9{bottom:533.775000px;}
.y1b{bottom:535.395000px;}
.yaa{bottom:543.855000px;}
.y79{bottom:545.835000px;}
.y4d{bottom:547.455000px;}
.yd8{bottom:554.835000px;}
.y1a{bottom:556.455000px;}
.y78{bottom:566.895000px;}
.y4c{bottom:568.515000px;}
.ya9{bottom:572.295000px;}
.yd7{bottom:575.895000px;}
.y19{bottom:577.515000px;}
.y77{bottom:587.955000px;}
.y4b{bottom:589.575000px;}
.ya8{bottom:593.355000px;}
.yd6{bottom:596.955000px;}
.y18{bottom:598.575000px;}
.y76{bottom:609.015000px;}
.y4a{bottom:610.635000px;}
.ya7{bottom:614.415000px;}
.yd5{bottom:618.015000px;}
.y63{bottom:619.635000px;}
.y17{bottom:621.975000px;}
.y75{bottom:630.075000px;}
.y49{bottom:631.695000px;}
.ya6{bottom:635.475000px;}
.yd4{bottom:639.075000px;}
.y62{bottom:640.695000px;}
.y73{bottom:645.195000px;}
.y16{bottom:651.885000px;}
.y48{bottom:652.785000px;}
.ya5{bottom:656.565000px;}
.yd3{bottom:660.165000px;}
.y61{bottom:661.785000px;}
.y72{bottom:667.185000px;}
.y15{bottom:672.945000px;}
.y47{bottom:673.845000px;}
.ya4{bottom:677.625000px;}
.yd2{bottom:681.225000px;}
.y60{bottom:682.845000px;}
.y71{bottom:688.965000px;}
.y14{bottom:694.005000px;}
.y46{bottom:694.905000px;}
.ya3{bottom:698.685000px;}
.yd1{bottom:702.285000px;}
.y5f{bottom:703.905000px;}
.y70{bottom:710.745000px;}
.y13{bottom:715.065000px;}
.y45{bottom:715.965000px;}
.ya2{bottom:719.745000px;}
.yd0{bottom:723.345000px;}
.y5e{bottom:724.965000px;}
.y6f{bottom:732.525000px;}
.y12{bottom:736.125000px;}
.y44{bottom:737.025000px;}
.ya1{bottom:740.805000px;}
.ycf{bottom:744.405000px;}
.y5d{bottom:746.025000px;}
.y6e{bottom:754.305000px;}
.y11{bottom:757.185000px;}
.y43{bottom:757.905000px;}
.ya0{bottom:761.865000px;}
.yce{bottom:765.465000px;}
.y5c{bottom:766.905000px;}
.y6d{bottom:776.085000px;}
.y10{bottom:778.245000px;}
.y42{bottom:778.965000px;}
.y9f{bottom:782.925000px;}
.ycd{bottom:786.525000px;}
.y5b{bottom:787.965000px;}
.y6c{bottom:797.865000px;}
.yf{bottom:799.305000px;}
.y41{bottom:800.025000px;}
.y9e{bottom:803.985000px;}
.ycc{bottom:807.585000px;}
.y5a{bottom:809.025000px;}
.y6b{bottom:819.825000px;}
.ye{bottom:820.365000px;}
.y40{bottom:821.085000px;}
.y9d{bottom:824.325000px;}
.ycb{bottom:828.645000px;}
.y59{bottom:830.085000px;}
.yd{bottom:841.425000px;}
.y6a{bottom:841.605000px;}
.y3f{bottom:842.145000px;}
.y9c{bottom:845.205000px;}
.yca{bottom:849.705000px;}
.y58{bottom:851.145000px;}
.yc{bottom:862.485000px;}
.y3e{bottom:863.205000px;}
.y69{bottom:863.385000px;}
.y9b{bottom:866.265000px;}
.yc9{bottom:870.765000px;}
.y57{bottom:872.205000px;}
.y68{bottom:885.165000px;}
.yb{bottom:885.705000px;}
.y9a{bottom:887.325000px;}
.yc8{bottom:891.825000px;}
.y3d{bottom:893.265000px;}
.ya{bottom:906.810000px;}
.y65{bottom:906.990000px;}
.y99{bottom:908.430000px;}
.yc7{bottom:912.930000px;}
.y3c{bottom:914.370000px;}
.y9{bottom:928.770000px;}
.y98{bottom:929.490000px;}
.yc6{bottom:933.990000px;}
.y3b{bottom:935.430000px;}
.y97{bottom:950.550000px;}
.yc5{bottom:955.050000px;}
.y3a{bottom:956.490000px;}
.y96{bottom:971.610000px;}
.yc4{bottom:976.110000px;}
.y8{bottom:976.290000px;}
.y39{bottom:977.550000px;}
.y95{bottom:992.670000px;}
.yc3{bottom:997.170000px;}
.y38{bottom:998.610000px;}
.y94{bottom:1007.790000px;}
.y7{bottom:1009.950000px;}
.yc2{bottom:1018.230000px;}
.y37{bottom:1019.670000px;}
.y93{bottom:1029.570000px;}
.yc1{bottom:1039.290000px;}
.y36{bottom:1040.730000px;}
.y5{bottom:1050.090000px;}
.y92{bottom:1051.350000px;}
.yc0{bottom:1060.350000px;}
.y35{bottom:1061.790000px;}
.y91{bottom:1073.310000px;}
.ybf{bottom:1081.410000px;}
.y4{bottom:1082.310000px;}
.y34{bottom:1082.850000px;}
.y90{bottom:1095.090000px;}
.ybd{bottom:1096.530000px;}
.y33{bottom:1103.910000px;}
.y3{bottom:1114.530000px;}
.y8f{bottom:1116.870000px;}
.y32{bottom:1124.970000px;}
.y8e{bottom:1138.650000px;}
.y31{bottom:1146.030000px;}
.y2{bottom:1146.600000px;}
.y30{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y2f{bottom:1194.120000px;}
.ha{height:21.060000px;}
.h9{height:21.096000px;}
.h8{height:42.120000px;}
.hd{height:42.156000px;}
.hb{height:50.364141px;}
.h6{height:59.439023px;}
.h7{height:61.189805px;}
.he{height:63.216000px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.hc{height:84.276000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:109.980000px;}
.wd{width:110.016000px;}
.w12{width:110.520000px;}
.wf{width:110.700000px;}
.we{width:118.476000px;}
.wa{width:147.060000px;}
.w5{width:160.590000px;}
.w6{width:169.050000px;}
.w7{width:180.030000px;}
.w10{width:180.570000px;}
.w13{width:180.750000px;}
.w9{width:187.410000px;}
.w8{width:192.270000px;}
.w4{width:197.310000px;}
.w3{width:202.755000px;}
.w11{width:624.165000px;}
.wb{width:632.805000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.596000px;}
.x1c{left:16.020000px;}
.x19{left:37.080000px;}
.x16{left:44.685000px;}
.x1d{left:46.080000px;}
.x6{left:53.999987px;}
.x17{left:56.880000px;}
.x14{left:69.834000px;}
.x8{left:80.640000px;}
.xd{left:92.016000px;}
.x26{left:108.035987px;}
.x1b{left:113.445000px;}
.x12{left:130.176000px;}
.x22{left:134.496000px;}
.x5{left:181.649987px;}
.x15{left:240.870000px;}
.x23{left:245.190000px;}
.xe{left:272.775000px;}
.xa{left:284.115000px;}
.x3{left:286.814987px;}
.x2{left:350.714987px;}
.x24{left:355.935000px;}
.x13{left:371.769000px;}
.x11{left:385.814987px;}
.x4{left:419.294987px;}
.x1f{left:441.069000px;}
.x21{left:460.689000px;}
.xf{left:465.765000px;}
.x18{left:470.985000px;}
.x1{left:479.444987px;}
.xb{left:482.145000px;}
.x20{left:491.109000px;}
.x1e{left:495.249000px;}
.x25{left:577.905000px;}
.x1a{left:582.405000px;}
.xc{left:643.470000px;}
.x10{left:654.090000px;}
.x7{left:830.159987px;}
.x27{left:839.339987px;}
@media print{
.v1{vertical-align:-89.600000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.ls14{letter-spacing:-13.280000pt;}
.ls16{letter-spacing:-12.640000pt;}
.ls12{letter-spacing:-11.360000pt;}
.ls9{letter-spacing:-3.237333pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.506667pt;}
.lse{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1f{letter-spacing:-0.368000pt;}
.ls1c{letter-spacing:-0.213867pt;}
.ls1a{letter-spacing:-0.201600pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls10{letter-spacing:-0.095467pt;}
.ls31{letter-spacing:-0.061867pt;}
.ls11{letter-spacing:-0.057600pt;}
.ls20{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.037120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.034560pt;}
.ls2c{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.053760pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls2f{letter-spacing:0.057067pt;}
.lsb{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.058880pt;}
.ls2b{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.165867pt;}
.ls30{letter-spacing:0.244267pt;}
.ls18{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.349867pt;}
.ls15{letter-spacing:0.426133pt;}
.ls1e{letter-spacing:0.693333pt;}
.ls29{letter-spacing:0.794667pt;}
.lsc{letter-spacing:0.805333pt;}
.ls23{letter-spacing:2.187520pt;}
.ls2d{letter-spacing:2.714880pt;}
.ls27{letter-spacing:2.827520pt;}
.ls25{letter-spacing:2.970880pt;}
.ls28{letter-spacing:3.610880pt;}
.ls26{letter-spacing:4.250880pt;}
.ls2e{letter-spacing:10.832640pt;}
.ls22{letter-spacing:14.347520pt;}
.ls24{letter-spacing:15.770880pt;}
.ls21{letter-spacing:18.970880pt;}
.ls2a{letter-spacing:37.712640pt;}
.ls0{letter-spacing:1162.661547pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.810453pt;}
.ws6{word-spacing:-12.354987pt;}
.wsc{word-spacing:-12.277120pt;}
.ws13{word-spacing:-12.249387pt;}
.ws9{word-spacing:-12.170987pt;}
.wsa{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.062187pt;}
.ws15{word-spacing:-12.027520pt;}
.ws4{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.943253pt;}
.ws7{word-spacing:-11.909653pt;}
.wsd{word-spacing:-11.686400pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:0.472960pt;}
.wsf{word-spacing:0.579627pt;}
.wse{word-spacing:3.672960pt;}
._28{margin-left:-2826.240000pt;}
._36{margin-left:-2823.235840pt;}
._29{margin-left:-1680.865920pt;}
._3a{margin-left:-927.376640pt;}
._45{margin-left:-687.026560pt;}
._47{margin-left:-612.428160pt;}
._46{margin-left:-508.488320pt;}
._44{margin-left:-493.614720pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._43{margin-left:-315.536640pt;}
._8{margin-left:-272.408107pt;}
._3d{margin-left:-261.726080pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._3e{margin-left:-238.831360pt;}
._3b{margin-left:-232.456960pt;}
._3f{margin-left:-229.429120pt;}
._17{margin-left:-220.436480pt;}
._3c{margin-left:-219.123840pt;}
._b{margin-left:-213.786880pt;}
._41{margin-left:-203.698560pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._22{margin-left:-107.006720pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._40{margin-left:-54.325120pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._39{margin-left:-4.684800pt;}
._26{margin-left:-3.319680pt;}
._31{margin-left:-2.284160pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.276800pt;}
._2c{width:2.881707pt;}
._2d{width:3.970347pt;}
._2e{width:4.908800pt;}
._32{width:5.905067pt;}
._2f{width:6.810880pt;}
._30{width:8.192427pt;}
._35{width:9.393493pt;}
._33{width:11.127253pt;}
._34{width:12.565547pt;}
._2a{width:13.651840pt;}
._2b{width:14.764160pt;}
._37{width:15.937280pt;}
._38{width:44.408320pt;}
._42{width:60.397440pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:5.920000pt;}
.y74{bottom:5.946667pt;}
.y66{bottom:24.640000pt;}
.ybe{bottom:43.360000pt;}
.yb0{bottom:43.400000pt;}
.y6{bottom:53.760000pt;}
.yaf{bottom:62.120000pt;}
.yeb{bottom:78.400000pt;}
.y8d{bottom:82.240000pt;}
.ybc{bottom:83.520000pt;}
.y64{bottom:93.440000pt;}
.y8c{bottom:101.600000pt;}
.ybb{bottom:103.040000pt;}
.y2e{bottom:112.160000pt;}
.y8b{bottom:120.960000pt;}
.y2d{bottom:130.880000pt;}
.y8a{bottom:140.346667pt;}
.yba{bottom:141.146667pt;}
.y2c{bottom:149.626667pt;}
.yea{bottom:156.346667pt;}
.y89{bottom:159.706667pt;}
.yb9{bottom:160.506667pt;}
.y2b{bottom:168.346667pt;}
.ye9{bottom:175.066667pt;}
.y88{bottom:179.066667pt;}
.yb8{bottom:179.866667pt;}
.y2a{bottom:187.066667pt;}
.ye8{bottom:193.786667pt;}
.yb7{bottom:205.146667pt;}
.y29{bottom:205.786667pt;}
.ye7{bottom:212.506667pt;}
.y87{bottom:223.226667pt;}
.yb6{bottom:223.866667pt;}
.y28{bottom:224.506667pt;}
.ye6{bottom:231.226667pt;}
.y86{bottom:241.946667pt;}
.yb5{bottom:242.586667pt;}
.y27{bottom:243.226667pt;}
.ye5{bottom:249.946667pt;}
.y85{bottom:260.666667pt;}
.yb4{bottom:261.306667pt;}
.y26{bottom:261.946667pt;}
.ye4{bottom:268.666667pt;}
.y84{bottom:279.226667pt;}
.yb3{bottom:280.026667pt;}
.y25{bottom:280.666667pt;}
.ye3{bottom:287.226667pt;}
.y83{bottom:297.946667pt;}
.yb2{bottom:298.746667pt;}
.y24{bottom:299.386667pt;}
.ye2{bottom:305.946667pt;}
.y82{bottom:316.666667pt;}
.yb1{bottom:317.466667pt;}
.y56{bottom:318.106667pt;}
.ye1{bottom:324.666667pt;}
.y23{bottom:326.106667pt;}
.yae{bottom:330.906667pt;}
.y81{bottom:335.386667pt;}
.y55{bottom:336.826667pt;}
.ye0{bottom:343.386667pt;}
.y22{bottom:344.826667pt;}
.y80{bottom:354.106667pt;}
.y54{bottom:355.546667pt;}
.ydf{bottom:362.146667pt;}
.y21{bottom:363.586667pt;}
.y7f{bottom:372.866667pt;}
.y53{bottom:374.306667pt;}
.yde{bottom:380.866667pt;}
.y20{bottom:382.306667pt;}
.y7e{bottom:391.586667pt;}
.y52{bottom:393.026667pt;}
.ydd{bottom:399.586667pt;}
.y1f{bottom:401.026667pt;}
.yad{bottom:406.466667pt;}
.y7d{bottom:410.306667pt;}
.y51{bottom:411.746667pt;}
.ydc{bottom:418.306667pt;}
.y1e{bottom:419.746667pt;}
.y7c{bottom:429.026667pt;}
.y50{bottom:430.466667pt;}
.ydb{bottom:437.026667pt;}
.y1d{bottom:438.466667pt;}
.yac{bottom:444.546667pt;}
.y7b{bottom:447.746667pt;}
.y4f{bottom:449.186667pt;}
.yda{bottom:455.746667pt;}
.y1c{bottom:457.186667pt;}
.yab{bottom:464.066667pt;}
.y7a{bottom:466.466667pt;}
.y4e{bottom:467.906667pt;}
.yd9{bottom:474.466667pt;}
.y1b{bottom:475.906667pt;}
.yaa{bottom:483.426667pt;}
.y79{bottom:485.186667pt;}
.y4d{bottom:486.626667pt;}
.yd8{bottom:493.186667pt;}
.y1a{bottom:494.626667pt;}
.y78{bottom:503.906667pt;}
.y4c{bottom:505.346667pt;}
.ya9{bottom:508.706667pt;}
.yd7{bottom:511.906667pt;}
.y19{bottom:513.346667pt;}
.y77{bottom:522.626667pt;}
.y4b{bottom:524.066667pt;}
.ya8{bottom:527.426667pt;}
.yd6{bottom:530.626667pt;}
.y18{bottom:532.066667pt;}
.y76{bottom:541.346667pt;}
.y4a{bottom:542.786667pt;}
.ya7{bottom:546.146667pt;}
.yd5{bottom:549.346667pt;}
.y63{bottom:550.786667pt;}
.y17{bottom:552.866667pt;}
.y75{bottom:560.066667pt;}
.y49{bottom:561.506667pt;}
.ya6{bottom:564.866667pt;}
.yd4{bottom:568.066667pt;}
.y62{bottom:569.506667pt;}
.y73{bottom:573.506667pt;}
.y16{bottom:579.453333pt;}
.y48{bottom:580.253333pt;}
.ya5{bottom:583.613333pt;}
.yd3{bottom:586.813333pt;}
.y61{bottom:588.253333pt;}
.y72{bottom:593.053333pt;}
.y15{bottom:598.173333pt;}
.y47{bottom:598.973333pt;}
.ya4{bottom:602.333333pt;}
.yd2{bottom:605.533333pt;}
.y60{bottom:606.973333pt;}
.y71{bottom:612.413333pt;}
.y14{bottom:616.893333pt;}
.y46{bottom:617.693333pt;}
.ya3{bottom:621.053333pt;}
.yd1{bottom:624.253333pt;}
.y5f{bottom:625.693333pt;}
.y70{bottom:631.773333pt;}
.y13{bottom:635.613333pt;}
.y45{bottom:636.413333pt;}
.ya2{bottom:639.773333pt;}
.yd0{bottom:642.973333pt;}
.y5e{bottom:644.413333pt;}
.y6f{bottom:651.133333pt;}
.y12{bottom:654.333333pt;}
.y44{bottom:655.133333pt;}
.ya1{bottom:658.493333pt;}
.ycf{bottom:661.693333pt;}
.y5d{bottom:663.133333pt;}
.y6e{bottom:670.493333pt;}
.y11{bottom:673.053333pt;}
.y43{bottom:673.693333pt;}
.ya0{bottom:677.213333pt;}
.yce{bottom:680.413333pt;}
.y5c{bottom:681.693333pt;}
.y6d{bottom:689.853333pt;}
.y10{bottom:691.773333pt;}
.y42{bottom:692.413333pt;}
.y9f{bottom:695.933333pt;}
.ycd{bottom:699.133333pt;}
.y5b{bottom:700.413333pt;}
.y6c{bottom:709.213333pt;}
.yf{bottom:710.493333pt;}
.y41{bottom:711.133333pt;}
.y9e{bottom:714.653333pt;}
.ycc{bottom:717.853333pt;}
.y5a{bottom:719.133333pt;}
.y6b{bottom:728.733333pt;}
.ye{bottom:729.213333pt;}
.y40{bottom:729.853333pt;}
.y9d{bottom:732.733333pt;}
.ycb{bottom:736.573333pt;}
.y59{bottom:737.853333pt;}
.yd{bottom:747.933333pt;}
.y6a{bottom:748.093333pt;}
.y3f{bottom:748.573333pt;}
.y9c{bottom:751.293333pt;}
.yca{bottom:755.293333pt;}
.y58{bottom:756.573333pt;}
.yc{bottom:766.653333pt;}
.y3e{bottom:767.293333pt;}
.y69{bottom:767.453333pt;}
.y9b{bottom:770.013333pt;}
.yc9{bottom:774.013333pt;}
.y57{bottom:775.293333pt;}
.y68{bottom:786.813333pt;}
.yb{bottom:787.293333pt;}
.y9a{bottom:788.733333pt;}
.yc8{bottom:792.733333pt;}
.y3d{bottom:794.013333pt;}
.ya{bottom:806.053333pt;}
.y65{bottom:806.213333pt;}
.y99{bottom:807.493333pt;}
.yc7{bottom:811.493333pt;}
.y3c{bottom:812.773333pt;}
.y9{bottom:825.573333pt;}
.y98{bottom:826.213333pt;}
.yc6{bottom:830.213333pt;}
.y3b{bottom:831.493333pt;}
.y97{bottom:844.933333pt;}
.yc5{bottom:848.933333pt;}
.y3a{bottom:850.213333pt;}
.y96{bottom:863.653333pt;}
.yc4{bottom:867.653333pt;}
.y8{bottom:867.813333pt;}
.y39{bottom:868.933333pt;}
.y95{bottom:882.373333pt;}
.yc3{bottom:886.373333pt;}
.y38{bottom:887.653333pt;}
.y94{bottom:895.813333pt;}
.y7{bottom:897.733333pt;}
.yc2{bottom:905.093333pt;}
.y37{bottom:906.373333pt;}
.y93{bottom:915.173333pt;}
.yc1{bottom:923.813333pt;}
.y36{bottom:925.093333pt;}
.y5{bottom:933.413333pt;}
.y92{bottom:934.533333pt;}
.yc0{bottom:942.533333pt;}
.y35{bottom:943.813333pt;}
.y91{bottom:954.053333pt;}
.ybf{bottom:961.253333pt;}
.y4{bottom:962.053333pt;}
.y34{bottom:962.533333pt;}
.y90{bottom:973.413333pt;}
.ybd{bottom:974.693333pt;}
.y33{bottom:981.253333pt;}
.y3{bottom:990.693333pt;}
.y8f{bottom:992.773333pt;}
.y32{bottom:999.973333pt;}
.y8e{bottom:1012.133333pt;}
.y31{bottom:1018.693333pt;}
.y2{bottom:1019.200000pt;}
.y30{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y2f{bottom:1061.440000pt;}
.ha{height:18.720000pt;}
.h9{height:18.752000pt;}
.h8{height:37.440000pt;}
.hd{height:37.472000pt;}
.hb{height:44.768125pt;}
.h6{height:52.834688pt;}
.h7{height:54.390938pt;}
.he{height:56.192000pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.hc{height:74.912000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:97.760000pt;}
.wd{width:97.792000pt;}
.w12{width:98.240000pt;}
.wf{width:98.400000pt;}
.we{width:105.312000pt;}
.wa{width:130.720000pt;}
.w5{width:142.746667pt;}
.w6{width:150.266667pt;}
.w7{width:160.026667pt;}
.w10{width:160.506667pt;}
.w13{width:160.666667pt;}
.w9{width:166.586667pt;}
.w8{width:170.906667pt;}
.w4{width:175.386667pt;}
.w3{width:180.226667pt;}
.w11{width:554.813333pt;}
.wb{width:562.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.752000pt;}
.x1c{left:14.240000pt;}
.x19{left:32.960000pt;}
.x16{left:39.720000pt;}
.x1d{left:40.960000pt;}
.x6{left:47.999988pt;}
.x17{left:50.560000pt;}
.x14{left:62.074667pt;}
.x8{left:71.680000pt;}
.xd{left:81.792000pt;}
.x26{left:96.031988pt;}
.x1b{left:100.840000pt;}
.x12{left:115.712000pt;}
.x22{left:119.552000pt;}
.x5{left:161.466655pt;}
.x15{left:214.106667pt;}
.x23{left:217.946667pt;}
.xe{left:242.466667pt;}
.xa{left:252.546667pt;}
.x3{left:254.946655pt;}
.x2{left:311.746655pt;}
.x24{left:316.386667pt;}
.x13{left:330.461333pt;}
.x11{left:342.946655pt;}
.x4{left:372.706655pt;}
.x1f{left:392.061333pt;}
.x21{left:409.501333pt;}
.xf{left:414.013333pt;}
.x18{left:418.653333pt;}
.x1{left:426.173322pt;}
.xb{left:428.573333pt;}
.x20{left:436.541333pt;}
.x1e{left:440.221333pt;}
.x25{left:513.693333pt;}
.x1a{left:517.693333pt;}
.xc{left:571.973333pt;}
.x10{left:581.413333pt;}
.x7{left:737.919988pt;}
.x27{left:746.079988pt;}
}




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