
    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_fddd3ffc56da9c16054baa90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_40ea67cb872d4bf7dac2c274.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_16a2530d9c33196901e536e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_59a98024d10c3c3d40a94f14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_13b196c3110e942391786e5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_31551a86c5418f54226c93bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_0f2301156c92dbb35f050552.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.754883;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_8180ed793bce95f4ac6e0a60.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_157ff7eeacb513c980ac545c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747070;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_9775e3f9cd88a96e32c6caaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_765cb3f17864bd96282573fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_039f4f8350b632fac9012a63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710449;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_5976699dcbfc04e007c3f328.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.459648px;}
.lsa{letter-spacing:-0.417312px;}
.lsc{letter-spacing:-0.381024px;}
.lsd{letter-spacing:-0.338688px;}
.lsb{letter-spacing:-0.320544px;}
.ls11{letter-spacing:-0.302400px;}
.ls2c{letter-spacing:-0.284256px;}
.ls1e{letter-spacing:-0.272160px;}
.ls1d{letter-spacing:-0.260064px;}
.lsf{letter-spacing:-0.241920px;}
.ls13{letter-spacing:-0.223776px;}
.ls14{letter-spacing:-0.175392px;}
.ls12{letter-spacing:-0.157248px;}
.lse{letter-spacing:-0.145152px;}
.ls15{letter-spacing:-0.120960px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.159840px;}
.ls8{letter-spacing:0.200448px;}
.ls6{letter-spacing:0.242208px;}
.ls0{letter-spacing:0.279360px;}
.ls9{letter-spacing:0.317376px;}
.ls34{letter-spacing:0.338544px;}
.ls5{letter-spacing:0.359136px;}
.ls20{letter-spacing:0.575856px;}
.ls16{letter-spacing:0.593280px;}
.ls17{letter-spacing:0.864288px;}
.ls31{letter-spacing:1.509120px;}
.ls29{letter-spacing:1.654560px;}
.ls1f{letter-spacing:1.690560px;}
.ls25{letter-spacing:1.904400px;}
.ls26{letter-spacing:1.904544px;}
.ls19{letter-spacing:2.060640px;}
.ls24{letter-spacing:2.061360px;}
.ls1c{letter-spacing:2.061504px;}
.ls3{letter-spacing:2.959200px;}
.ls1a{letter-spacing:4.176000px;}
.ls18{letter-spacing:4.177440px;}
.ls27{letter-spacing:5.945904px;}
.ls21{letter-spacing:6.223680px;}
.ls22{letter-spacing:6.225120px;}
.ls23{letter-spacing:7.523568px;}
.ls4{letter-spacing:8.036352px;}
.ls38{letter-spacing:8.268480px;}
.ls35{letter-spacing:8.417088px;}
.ls37{letter-spacing:8.418528px;}
.ls36{letter-spacing:8.418672px;}
.ls30{letter-spacing:9.514080px;}
.ls2f{letter-spacing:9.514224px;}
.ls2e{letter-spacing:9.514368px;}
.ls28{letter-spacing:9.934704px;}
.ls2a{letter-spacing:11.628000px;}
.ls32{letter-spacing:12.259440px;}
.ls33{letter-spacing:12.259584px;}
.ls2d{letter-spacing:13.183200px;}
.ls1b{letter-spacing:15.341760px;}
.ls2b{letter-spacing:23.803200px;}
.ls2{letter-spacing:63.588960px;}
.ls39{letter-spacing:71.787744px;}
.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;}
}
.ws0{word-spacing:-21.239136px;}
.ws1{word-spacing:-21.122208px;}
.ws12{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.120000px;}
.wse{word-spacing:-14.974848px;}
.wsc{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.ws9{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.wsd{word-spacing:-14.817600px;}
.ws3{word-spacing:-14.799456px;}
.ws5{word-spacing:-14.781312px;}
.ws4{word-spacing:-14.738976px;}
.ws2{word-spacing:-14.702688px;}
.ws8{word-spacing:-0.060480px;}
.ws13{word-spacing:-0.054720px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.223776px;}
.wsf{word-spacing:16.248384px;}
._10{margin-left:-4.200048px;}
._7{margin-left:-3.118032px;}
._6{margin-left:-2.109600px;}
._1{margin-left:-1.103904px;}
._0{width:1.002240px;}
._3{width:2.750544px;}
._2{width:4.233600px;}
._9{width:5.369760px;}
._f{width:6.423840px;}
._4{width:7.600608px;}
._5{width:9.276480px;}
._12{width:10.420704px;}
._a{width:11.551680px;}
._8{width:13.547520px;}
._b{width:16.571520px;}
._17{width:18.025920px;}
._11{width:19.181232px;}
._15{width:23.897376px;}
._16{width:31.691520px;}
._14{width:46.025280px;}
._c{width:80.687664px;}
._13{width:81.768960px;}
._e{width:152.755920px;}
._d{width:197.278560px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:63.877126px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y90{bottom:15.660000px;}
.yc4{bottom:15.720000px;}
.yc2{bottom:15.840000px;}
.ybe{bottom:16.020000px;}
.y86{bottom:16.260000px;}
.yc8{bottom:16.320000px;}
.y95{bottom:16.440000px;}
.ycc{bottom:16.680000px;}
.y8b{bottom:16.740000px;}
.yc0{bottom:16.860000px;}
.yc6{bottom:16.980000px;}
.yca{bottom:17.160000px;}
.ycf{bottom:17.280000px;}
.y88{bottom:25.020000px;}
.y89{bottom:25.380000px;}
.y8d{bottom:32.580000px;}
.y8e{bottom:32.940000px;}
.y92{bottom:33.360000px;}
.y93{bottom:33.720000px;}
.y8a{bottom:34.020000px;}
.y8f{bottom:50.580000px;}
.y94{bottom:51.000000px;}
.y59{bottom:93.960000px;}
.y2d{bottom:98.280000px;}
.yfd{bottom:102.600000px;}
.y84{bottom:104.400000px;}
.ybb{bottom:114.480000px;}
.yfc{bottom:119.880000px;}
.y83{bottom:121.680000px;}
.y58{bottom:123.480000px;}
.y2c{bottom:127.800000px;}
.y82{bottom:138.960000px;}
.yba{bottom:143.640000px;}
.yfb{bottom:146.160000px;}
.y57{bottom:153.360000px;}
.y2b{bottom:156.960000px;}
.yb9{bottom:160.920000px;}
.yfa{bottom:163.440000px;}
.y81{bottom:168.480000px;}
.y56{bottom:170.640000px;}
.yb8{bottom:178.200000px;}
.y2a{bottom:186.480000px;}
.y55{bottom:187.920000px;}
.yf9{bottom:192.600000px;}
.y80{bottom:197.640000px;}
.yb7{bottom:205.560000px;}
.yf8{bottom:210.240000px;}
.y7f{bottom:214.920000px;}
.y29{bottom:215.640000px;}
.y54{bottom:218.160000px;}
.y7e{bottom:232.200000px;}
.y53{bottom:235.440000px;}
.yf7{bottom:236.520000px;}
.yb6{bottom:237.600000px;}
.y28{bottom:245.160000px;}
.y7d{bottom:249.480000px;}
.yf6{bottom:253.800000px;}
.y52{bottom:264.600000px;}
.yb5{bottom:266.760000px;}
.y27{bottom:274.320000px;}
.y7c{bottom:279.720000px;}
.yf5{bottom:280.080000px;}
.y91{bottom:282.000000px;}
.yb4{bottom:284.040000px;}
.y26{bottom:291.600000px;}
.y51{bottom:294.120000px;}
.yb3{bottom:301.320000px;}
.y25{bottom:308.880000px;}
.yf4{bottom:309.240000px;}
.y50{bottom:311.400000px;}
.y24{bottom:326.160000px;}
.yf3{bottom:326.520000px;}
.yb2{bottom:331.560000px;}
.y7b{bottom:338.400000px;}
.y4f{bottom:338.760000px;}
.y23{bottom:343.440000px;}
.yf2{bottom:344.160000px;}
.y8c{bottom:346.500000px;}
.yb1{bottom:360.720000px;}
.y22{bottom:361.080000px;}
.yf1{bottom:361.440000px;}
.yd0{bottom:367.500000px;}
.y7a{bottom:367.560000px;}
.y4e{bottom:368.280000px;}
.y21{bottom:390.240000px;}
.yf0{bottom:390.600000px;}
.yce{bottom:396.000000px;}
.y79{bottom:397.080000px;}
.y4d{bottom:400.320000px;}
.y20{bottom:407.520000px;}
.yef{bottom:407.880000px;}
.y87{bottom:409.500000px;}
.y4c{bottom:417.600000px;}
.yb0{bottom:419.400000px;}
.yee{bottom:425.160000px;}
.y1f{bottom:425.520000px;}
.ycd{bottom:426.000000px;}
.y78{bottom:426.240000px;}
.yed{bottom:442.440000px;}
.y4b{bottom:446.760000px;}
.yaf{bottom:448.560000px;}
.y1e{bottom:455.040000px;}
.y77{bottom:455.760000px;}
.ycb{bottom:456.000000px;}
.y85{bottom:457.500000px;}
.yec{bottom:460.080000px;}
.y4a{bottom:464.400000px;}
.y1d{bottom:472.320000px;}
.yae{bottom:478.080000px;}
.y49{bottom:481.680000px;}
.y76{bottom:484.920000px;}
.yeb{bottom:489.240000px;}
.y1c{bottom:489.600000px;}
.y48{bottom:498.960000px;}
.yea{bottom:506.520000px;}
.y1b{bottom:506.880000px;}
.yad{bottom:510.120000px;}
.y75{bottom:514.440000px;}
.ye9{bottom:523.800000px;}
.y47{bottom:528.120000px;}
.yac{bottom:530.280000px;}
.y11a{bottom:533.160000px;}
.y1a{bottom:534.240000px;}
.ye8{bottom:541.080000px;}
.y74{bottom:543.600000px;}
.y46{bottom:545.400000px;}
.y119{bottom:550.440000px;}
.yab{bottom:557.280000px;}
.y73{bottom:560.880000px;}
.y45{bottom:562.680000px;}
.y19{bottom:563.040000px;}
.y118{bottom:568.080000px;}
.ye7{bottom:568.440000px;}
.y72{bottom:578.160000px;}
.y117{bottom:585.360000px;}
.yaa{bottom:587.160000px;}
.y18{bottom:592.200000px;}
.ye6{bottom:600.480000px;}
.y116{bottom:602.640000px;}
.y71{bottom:607.680000px;}
.y44{bottom:609.480000px;}
.y17{bottom:609.840000px;}
.ya9{bottom:618.840000px;}
.y115{bottom:619.920000px;}
.y43{bottom:626.760000px;}
.ye5{bottom:629.640000px;}
.y114{bottom:637.200000px;}
.y70{bottom:639.720000px;}
.y16{bottom:640.440000px;}
.ya8{bottom:645.840000px;}
.ye4{bottom:646.920000px;}
.y113{bottom:654.480000px;}
.y42{bottom:656.280000px;}
.y15{bottom:657.720000px;}
.y6f{bottom:659.520000px;}
.ye3{bottom:664.920000px;}
.y112{bottom:671.760000px;}
.y41{bottom:673.560000px;}
.ya7{bottom:675.000000px;}
.y6e{bottom:679.680000px;}
.y14{bottom:688.680000px;}
.y111{bottom:689.040000px;}
.y40{bottom:690.840000px;}
.ya6{bottom:692.280000px;}
.ye2{bottom:694.440000px;}
.y6d{bottom:699.840000px;}
.y13{bottom:705.960000px;}
.y110{bottom:706.320000px;}
.y3f{bottom:708.120000px;}
.ya5{bottom:709.920000px;}
.y6c{bottom:720.000000px;}
.y10f{bottom:723.960000px;}
.ye1{bottom:726.480000px;}
.y3e{bottom:735.480000px;}
.y12{bottom:736.560000px;}
.ya4{bottom:739.080000px;}
.y10e{bottom:741.240000px;}
.ye0{bottom:746.280000px;}
.y6b{bottom:753.480000px;}
.y11{bottom:754.200000px;}
.ya3{bottom:756.360000px;}
.y10d{bottom:758.520000px;}
.y3d{bottom:765.000000px;}
.y10{bottom:771.480000px;}
.y6a{bottom:773.640000px;}
.ydf{bottom:775.800000px;}
.ya2{bottom:785.880000px;}
.yc9{bottom:786.000000px;}
.yf{bottom:788.760000px;}
.yde{bottom:793.080000px;}
.y69{bottom:793.800000px;}
.y3c{bottom:797.040000px;}
.ye{bottom:806.040000px;}
.y10c{bottom:810.720000px;}
.y68{bottom:813.960000px;}
.y3b{bottom:814.320000px;}
.ya1{bottom:815.040000px;}
.yc7{bottom:816.000000px;}
.yd{bottom:823.320000px;}
.ydd{bottom:825.840000px;}
.y10b{bottom:828.000000px;}
.yc{bottom:840.600000px;}
.yc5{bottom:844.500000px;}
.ya0{bottom:844.560000px;}
.y10a{bottom:845.640000px;}
.ydc{bottom:846.000000px;}
.y67{bottom:847.440000px;}
.y3a{bottom:849.600000px;}
.yb{bottom:857.880000px;}
.y109{bottom:862.920000px;}
.y66{bottom:867.240000px;}
.y9f{bottom:873.720000px;}
.ya{bottom:875.160000px;}
.yc3{bottom:876.000000px;}
.ydb{bottom:878.040000px;}
.y108{bottom:880.200000px;}
.y39{bottom:881.640000px;}
.y65{bottom:887.400000px;}
.y107{bottom:897.480000px;}
.yda{bottom:898.560000px;}
.y38{bottom:901.800000px;}
.y9e{bottom:902.880000px;}
.y9{bottom:904.680000px;}
.y106{bottom:914.760000px;}
.y64{bottom:918.360000px;}
.y37{bottom:921.960000px;}
.yd9{bottom:930.960000px;}
.y9d{bottom:932.400000px;}
.y63{bottom:935.640000px;}
.y8{bottom:939.960000px;}
.y36{bottom:942.120000px;}
.y62{bottom:952.920000px;}
.y7{bottom:957.240000px;}
.yd8{bottom:960.120000px;}
.y9c{bottom:961.560000px;}
.yc1{bottom:963.000000px;}
.y105{bottom:972.000000px;}
.y6{bottom:974.520000px;}
.y35{bottom:975.600000px;}
.y61{bottom:982.080000px;}
.yd7{bottom:989.280000px;}
.y9b{bottom:991.080000px;}
.ybf{bottom:991.500000px;}
.y34{bottom:995.400000px;}
.y104{bottom:1003.680000px;}
.yd6{bottom:1006.920000px;}
.y5{bottom:1009.800000px;}
.y60{bottom:1012.320000px;}
.y33{bottom:1015.560000px;}
.y9a{bottom:1020.240000px;}
.y103{bottom:1020.960000px;}
.ybd{bottom:1021.500000px;}
.yd5{bottom:1024.200000px;}
.y5f{bottom:1029.600000px;}
.y32{bottom:1035.720000px;}
.y102{bottom:1038.240000px;}
.y4{bottom:1040.760000px;}
.yd4{bottom:1041.480000px;}
.y5e{bottom:1047.600000px;}
.y99{bottom:1049.760000px;}
.ybc{bottom:1051.500000px;}
.y101{bottom:1064.520000px;}
.y3{bottom:1064.880000px;}
.y31{bottom:1069.200000px;}
.yd3{bottom:1073.520000px;}
.y5d{bottom:1076.760000px;}
.y98{bottom:1078.920000px;}
.y100{bottom:1081.800000px;}
.y30{bottom:1089.360000px;}
.yd2{bottom:1093.680000px;}
.y5c{bottom:1094.040000px;}
.yff{bottom:1099.440000px;}
.y2{bottom:1101.240000px;}
.y97{bottom:1108.440000px;}
.y2f{bottom:1109.520000px;}
.y5b{bottom:1112.040000px;}
.yd1{bottom:1113.480000px;}
.yfe{bottom:1116.720000px;}
.y96{bottom:1125.720000px;}
.y1{bottom:1137.600000px;}
.y5a{bottom:1142.280000px;}
.y2e{bottom:1143.000000px;}
.h8{height:30.000000px;}
.he{height:31.500000px;}
.h7{height:41.284688px;}
.h3{height:41.550469px;}
.h4{height:41.993438px;}
.h6{height:42.406875px;}
.h9{height:44.385469px;}
.hc{height:44.788844px;}
.ha{height:48.000000px;}
.h5{height:49.746094px;}
.h2{height:57.990938px;}
.hb{height:64.500000px;}
.hd{height:66.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:96.000000px;}
.wd{width:106.500000px;}
.wc{width:108.000000px;}
.w6{width:118.500000px;}
.w3{width:129.000000px;}
.w7{width:139.500000px;}
.w2{width:150.000000px;}
.wb{width:151.500000px;}
.w5{width:162.000000px;}
.wa{width:171.000000px;}
.w9{width:172.500000px;}
.w4{width:235.500000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.140036px;}
.xe{left:38.759412px;}
.xf{left:42.062628px;}
.x5{left:84.959856px;}
.x3{left:93.774888px;}
.x8{left:111.960000px;}
.x9{left:138.959856px;}
.x1d{left:140.459832px;}
.x18{left:157.500000px;}
.x10{left:174.000000px;}
.x7{left:178.989264px;}
.xb{left:190.500000px;}
.x14{left:228.000000px;}
.xa{left:297.359604px;}
.x19{left:307.500000px;}
.x15{left:322.500000px;}
.x11{left:334.500000px;}
.xc{left:339.000000px;}
.x6{left:373.289760px;}
.x4{left:382.560840px;}
.x1{left:400.335840px;}
.x1a{left:414.000000px;}
.x2{left:446.421960px;}
.x12{left:462.000000px;}
.xd{left:466.500000px;}
.x17{left:493.500000px;}
.x1b{left:519.000000px;}
.x13{left:579.000000px;}
.x1c{left:625.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.408576pt;}
.lsa{letter-spacing:-0.370944pt;}
.lsc{letter-spacing:-0.338688pt;}
.lsd{letter-spacing:-0.301056pt;}
.lsb{letter-spacing:-0.284928pt;}
.ls11{letter-spacing:-0.268800pt;}
.ls2c{letter-spacing:-0.252672pt;}
.ls1e{letter-spacing:-0.241920pt;}
.ls1d{letter-spacing:-0.231168pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls14{letter-spacing:-0.155904pt;}
.ls12{letter-spacing:-0.139776pt;}
.lse{letter-spacing:-0.129024pt;}
.ls15{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.142080pt;}
.ls8{letter-spacing:0.178176pt;}
.ls6{letter-spacing:0.215296pt;}
.ls0{letter-spacing:0.248320pt;}
.ls9{letter-spacing:0.282112pt;}
.ls34{letter-spacing:0.300928pt;}
.ls5{letter-spacing:0.319232pt;}
.ls20{letter-spacing:0.511872pt;}
.ls16{letter-spacing:0.527360pt;}
.ls17{letter-spacing:0.768256pt;}
.ls31{letter-spacing:1.341440pt;}
.ls29{letter-spacing:1.470720pt;}
.ls1f{letter-spacing:1.502720pt;}
.ls25{letter-spacing:1.692800pt;}
.ls26{letter-spacing:1.692928pt;}
.ls19{letter-spacing:1.831680pt;}
.ls24{letter-spacing:1.832320pt;}
.ls1c{letter-spacing:1.832448pt;}
.ls3{letter-spacing:2.630400pt;}
.ls1a{letter-spacing:3.712000pt;}
.ls18{letter-spacing:3.713280pt;}
.ls27{letter-spacing:5.285248pt;}
.ls21{letter-spacing:5.532160pt;}
.ls22{letter-spacing:5.533440pt;}
.ls23{letter-spacing:6.687616pt;}
.ls4{letter-spacing:7.143424pt;}
.ls38{letter-spacing:7.349760pt;}
.ls35{letter-spacing:7.481856pt;}
.ls37{letter-spacing:7.483136pt;}
.ls36{letter-spacing:7.483264pt;}
.ls30{letter-spacing:8.456960pt;}
.ls2f{letter-spacing:8.457088pt;}
.ls2e{letter-spacing:8.457216pt;}
.ls28{letter-spacing:8.830848pt;}
.ls2a{letter-spacing:10.336000pt;}
.ls32{letter-spacing:10.897280pt;}
.ls33{letter-spacing:10.897408pt;}
.ls2d{letter-spacing:11.718400pt;}
.ls1b{letter-spacing:13.637120pt;}
.ls2b{letter-spacing:21.158400pt;}
.ls2{letter-spacing:56.523520pt;}
.ls39{letter-spacing:63.811328pt;}
.ws0{word-spacing:-18.879232pt;}
.ws1{word-spacing:-18.775296pt;}
.ws12{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.310976pt;}
.wsc{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.ws9{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.wsd{word-spacing:-13.171200pt;}
.ws3{word-spacing:-13.155072pt;}
.ws5{word-spacing:-13.138944pt;}
.ws4{word-spacing:-13.101312pt;}
.ws2{word-spacing:-13.069056pt;}
.ws8{word-spacing:-0.053760pt;}
.ws13{word-spacing:-0.048640pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.198912pt;}
.wsf{word-spacing:14.443008pt;}
._10{margin-left:-3.733376pt;}
._7{margin-left:-2.771584pt;}
._6{margin-left:-1.875200pt;}
._1{margin-left:-0.981248pt;}
._0{width:0.890880pt;}
._3{width:2.444928pt;}
._2{width:3.763200pt;}
._9{width:4.773120pt;}
._f{width:5.710080pt;}
._4{width:6.756096pt;}
._5{width:8.245760pt;}
._12{width:9.262848pt;}
._a{width:10.268160pt;}
._8{width:12.042240pt;}
._b{width:14.730240pt;}
._17{width:16.023040pt;}
._11{width:17.049984pt;}
._15{width:21.242112pt;}
._16{width:28.170240pt;}
._14{width:40.911360pt;}
._c{width:71.722368pt;}
._13{width:72.683520pt;}
._e{width:135.783040pt;}
._d{width:175.358720pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:56.779667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:13.920000pt;}
.yc4{bottom:13.973333pt;}
.yc2{bottom:14.080000pt;}
.ybe{bottom:14.240000pt;}
.y86{bottom:14.453333pt;}
.yc8{bottom:14.506667pt;}
.y95{bottom:14.613333pt;}
.ycc{bottom:14.826667pt;}
.y8b{bottom:14.880000pt;}
.yc0{bottom:14.986667pt;}
.yc6{bottom:15.093333pt;}
.yca{bottom:15.253333pt;}
.ycf{bottom:15.360000pt;}
.y88{bottom:22.240000pt;}
.y89{bottom:22.560000pt;}
.y8d{bottom:28.960000pt;}
.y8e{bottom:29.280000pt;}
.y92{bottom:29.653333pt;}
.y93{bottom:29.973333pt;}
.y8a{bottom:30.240000pt;}
.y8f{bottom:44.960000pt;}
.y94{bottom:45.333333pt;}
.y59{bottom:83.520000pt;}
.y2d{bottom:87.360000pt;}
.yfd{bottom:91.200000pt;}
.y84{bottom:92.800000pt;}
.ybb{bottom:101.760000pt;}
.yfc{bottom:106.560000pt;}
.y83{bottom:108.160000pt;}
.y58{bottom:109.760000pt;}
.y2c{bottom:113.600000pt;}
.y82{bottom:123.520000pt;}
.yba{bottom:127.680000pt;}
.yfb{bottom:129.920000pt;}
.y57{bottom:136.320000pt;}
.y2b{bottom:139.520000pt;}
.yb9{bottom:143.040000pt;}
.yfa{bottom:145.280000pt;}
.y81{bottom:149.760000pt;}
.y56{bottom:151.680000pt;}
.yb8{bottom:158.400000pt;}
.y2a{bottom:165.760000pt;}
.y55{bottom:167.040000pt;}
.yf9{bottom:171.200000pt;}
.y80{bottom:175.680000pt;}
.yb7{bottom:182.720000pt;}
.yf8{bottom:186.880000pt;}
.y7f{bottom:191.040000pt;}
.y29{bottom:191.680000pt;}
.y54{bottom:193.920000pt;}
.y7e{bottom:206.400000pt;}
.y53{bottom:209.280000pt;}
.yf7{bottom:210.240000pt;}
.yb6{bottom:211.200000pt;}
.y28{bottom:217.920000pt;}
.y7d{bottom:221.760000pt;}
.yf6{bottom:225.600000pt;}
.y52{bottom:235.200000pt;}
.yb5{bottom:237.120000pt;}
.y27{bottom:243.840000pt;}
.y7c{bottom:248.640000pt;}
.yf5{bottom:248.960000pt;}
.y91{bottom:250.666667pt;}
.yb4{bottom:252.480000pt;}
.y26{bottom:259.200000pt;}
.y51{bottom:261.440000pt;}
.yb3{bottom:267.840000pt;}
.y25{bottom:274.560000pt;}
.yf4{bottom:274.880000pt;}
.y50{bottom:276.800000pt;}
.y24{bottom:289.920000pt;}
.yf3{bottom:290.240000pt;}
.yb2{bottom:294.720000pt;}
.y7b{bottom:300.800000pt;}
.y4f{bottom:301.120000pt;}
.y23{bottom:305.280000pt;}
.yf2{bottom:305.920000pt;}
.y8c{bottom:308.000000pt;}
.yb1{bottom:320.640000pt;}
.y22{bottom:320.960000pt;}
.yf1{bottom:321.280000pt;}
.yd0{bottom:326.666667pt;}
.y7a{bottom:326.720000pt;}
.y4e{bottom:327.360000pt;}
.y21{bottom:346.880000pt;}
.yf0{bottom:347.200000pt;}
.yce{bottom:352.000000pt;}
.y79{bottom:352.960000pt;}
.y4d{bottom:355.840000pt;}
.y20{bottom:362.240000pt;}
.yef{bottom:362.560000pt;}
.y87{bottom:364.000000pt;}
.y4c{bottom:371.200000pt;}
.yb0{bottom:372.800000pt;}
.yee{bottom:377.920000pt;}
.y1f{bottom:378.240000pt;}
.ycd{bottom:378.666667pt;}
.y78{bottom:378.880000pt;}
.yed{bottom:393.280000pt;}
.y4b{bottom:397.120000pt;}
.yaf{bottom:398.720000pt;}
.y1e{bottom:404.480000pt;}
.y77{bottom:405.120000pt;}
.ycb{bottom:405.333333pt;}
.y85{bottom:406.666667pt;}
.yec{bottom:408.960000pt;}
.y4a{bottom:412.800000pt;}
.y1d{bottom:419.840000pt;}
.yae{bottom:424.960000pt;}
.y49{bottom:428.160000pt;}
.y76{bottom:431.040000pt;}
.yeb{bottom:434.880000pt;}
.y1c{bottom:435.200000pt;}
.y48{bottom:443.520000pt;}
.yea{bottom:450.240000pt;}
.y1b{bottom:450.560000pt;}
.yad{bottom:453.440000pt;}
.y75{bottom:457.280000pt;}
.ye9{bottom:465.600000pt;}
.y47{bottom:469.440000pt;}
.yac{bottom:471.360000pt;}
.y11a{bottom:473.920000pt;}
.y1a{bottom:474.880000pt;}
.ye8{bottom:480.960000pt;}
.y74{bottom:483.200000pt;}
.y46{bottom:484.800000pt;}
.y119{bottom:489.280000pt;}
.yab{bottom:495.360000pt;}
.y73{bottom:498.560000pt;}
.y45{bottom:500.160000pt;}
.y19{bottom:500.480000pt;}
.y118{bottom:504.960000pt;}
.ye7{bottom:505.280000pt;}
.y72{bottom:513.920000pt;}
.y117{bottom:520.320000pt;}
.yaa{bottom:521.920000pt;}
.y18{bottom:526.400000pt;}
.ye6{bottom:533.760000pt;}
.y116{bottom:535.680000pt;}
.y71{bottom:540.160000pt;}
.y44{bottom:541.760000pt;}
.y17{bottom:542.080000pt;}
.ya9{bottom:550.080000pt;}
.y115{bottom:551.040000pt;}
.y43{bottom:557.120000pt;}
.ye5{bottom:559.680000pt;}
.y114{bottom:566.400000pt;}
.y70{bottom:568.640000pt;}
.y16{bottom:569.280000pt;}
.ya8{bottom:574.080000pt;}
.ye4{bottom:575.040000pt;}
.y113{bottom:581.760000pt;}
.y42{bottom:583.360000pt;}
.y15{bottom:584.640000pt;}
.y6f{bottom:586.240000pt;}
.ye3{bottom:591.040000pt;}
.y112{bottom:597.120000pt;}
.y41{bottom:598.720000pt;}
.ya7{bottom:600.000000pt;}
.y6e{bottom:604.160000pt;}
.y14{bottom:612.160000pt;}
.y111{bottom:612.480000pt;}
.y40{bottom:614.080000pt;}
.ya6{bottom:615.360000pt;}
.ye2{bottom:617.280000pt;}
.y6d{bottom:622.080000pt;}
.y13{bottom:627.520000pt;}
.y110{bottom:627.840000pt;}
.y3f{bottom:629.440000pt;}
.ya5{bottom:631.040000pt;}
.y6c{bottom:640.000000pt;}
.y10f{bottom:643.520000pt;}
.ye1{bottom:645.760000pt;}
.y3e{bottom:653.760000pt;}
.y12{bottom:654.720000pt;}
.ya4{bottom:656.960000pt;}
.y10e{bottom:658.880000pt;}
.ye0{bottom:663.360000pt;}
.y6b{bottom:669.760000pt;}
.y11{bottom:670.400000pt;}
.ya3{bottom:672.320000pt;}
.y10d{bottom:674.240000pt;}
.y3d{bottom:680.000000pt;}
.y10{bottom:685.760000pt;}
.y6a{bottom:687.680000pt;}
.ydf{bottom:689.600000pt;}
.ya2{bottom:698.560000pt;}
.yc9{bottom:698.666667pt;}
.yf{bottom:701.120000pt;}
.yde{bottom:704.960000pt;}
.y69{bottom:705.600000pt;}
.y3c{bottom:708.480000pt;}
.ye{bottom:716.480000pt;}
.y10c{bottom:720.640000pt;}
.y68{bottom:723.520000pt;}
.y3b{bottom:723.840000pt;}
.ya1{bottom:724.480000pt;}
.yc7{bottom:725.333333pt;}
.yd{bottom:731.840000pt;}
.ydd{bottom:734.080000pt;}
.y10b{bottom:736.000000pt;}
.yc{bottom:747.200000pt;}
.yc5{bottom:750.666667pt;}
.ya0{bottom:750.720000pt;}
.y10a{bottom:751.680000pt;}
.ydc{bottom:752.000000pt;}
.y67{bottom:753.280000pt;}
.y3a{bottom:755.200000pt;}
.yb{bottom:762.560000pt;}
.y109{bottom:767.040000pt;}
.y66{bottom:770.880000pt;}
.y9f{bottom:776.640000pt;}
.ya{bottom:777.920000pt;}
.yc3{bottom:778.666667pt;}
.ydb{bottom:780.480000pt;}
.y108{bottom:782.400000pt;}
.y39{bottom:783.680000pt;}
.y65{bottom:788.800000pt;}
.y107{bottom:797.760000pt;}
.yda{bottom:798.720000pt;}
.y38{bottom:801.600000pt;}
.y9e{bottom:802.560000pt;}
.y9{bottom:804.160000pt;}
.y106{bottom:813.120000pt;}
.y64{bottom:816.320000pt;}
.y37{bottom:819.520000pt;}
.yd9{bottom:827.520000pt;}
.y9d{bottom:828.800000pt;}
.y63{bottom:831.680000pt;}
.y8{bottom:835.520000pt;}
.y36{bottom:837.440000pt;}
.y62{bottom:847.040000pt;}
.y7{bottom:850.880000pt;}
.yd8{bottom:853.440000pt;}
.y9c{bottom:854.720000pt;}
.yc1{bottom:856.000000pt;}
.y105{bottom:864.000000pt;}
.y6{bottom:866.240000pt;}
.y35{bottom:867.200000pt;}
.y61{bottom:872.960000pt;}
.yd7{bottom:879.360000pt;}
.y9b{bottom:880.960000pt;}
.ybf{bottom:881.333333pt;}
.y34{bottom:884.800000pt;}
.y104{bottom:892.160000pt;}
.yd6{bottom:895.040000pt;}
.y5{bottom:897.600000pt;}
.y60{bottom:899.840000pt;}
.y33{bottom:902.720000pt;}
.y9a{bottom:906.880000pt;}
.y103{bottom:907.520000pt;}
.ybd{bottom:908.000000pt;}
.yd5{bottom:910.400000pt;}
.y5f{bottom:915.200000pt;}
.y32{bottom:920.640000pt;}
.y102{bottom:922.880000pt;}
.y4{bottom:925.120000pt;}
.yd4{bottom:925.760000pt;}
.y5e{bottom:931.200000pt;}
.y99{bottom:933.120000pt;}
.ybc{bottom:934.666667pt;}
.y101{bottom:946.240000pt;}
.y3{bottom:946.560000pt;}
.y31{bottom:950.400000pt;}
.yd3{bottom:954.240000pt;}
.y5d{bottom:957.120000pt;}
.y98{bottom:959.040000pt;}
.y100{bottom:961.600000pt;}
.y30{bottom:968.320000pt;}
.yd2{bottom:972.160000pt;}
.y5c{bottom:972.480000pt;}
.yff{bottom:977.280000pt;}
.y2{bottom:978.880000pt;}
.y97{bottom:985.280000pt;}
.y2f{bottom:986.240000pt;}
.y5b{bottom:988.480000pt;}
.yd1{bottom:989.760000pt;}
.yfe{bottom:992.640000pt;}
.y96{bottom:1000.640000pt;}
.y1{bottom:1011.200000pt;}
.y5a{bottom:1015.360000pt;}
.y2e{bottom:1016.000000pt;}
.h8{height:26.666667pt;}
.he{height:28.000000pt;}
.h7{height:36.697500pt;}
.h3{height:36.933750pt;}
.h4{height:37.327500pt;}
.h6{height:37.695000pt;}
.h9{height:39.453750pt;}
.hc{height:39.812306pt;}
.ha{height:42.666667pt;}
.h5{height:44.218750pt;}
.h2{height:51.547500pt;}
.hb{height:57.333333pt;}
.hd{height:58.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:85.333333pt;}
.wd{width:94.666667pt;}
.wc{width:96.000000pt;}
.w6{width:105.333333pt;}
.w3{width:114.666667pt;}
.w7{width:124.000000pt;}
.w2{width:133.333333pt;}
.wb{width:134.666667pt;}
.w5{width:144.000000pt;}
.wa{width:152.000000pt;}
.w9{width:153.333333pt;}
.w4{width:209.333333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.013365pt;}
.xe{left:34.452811pt;}
.xf{left:37.389003pt;}
.x5{left:75.519872pt;}
.x3{left:83.355456pt;}
.x8{left:99.520000pt;}
.x9{left:123.519872pt;}
.x1d{left:124.853184pt;}
.x18{left:140.000000pt;}
.x10{left:154.666667pt;}
.x7{left:159.101568pt;}
.xb{left:169.333333pt;}
.x14{left:202.666667pt;}
.xa{left:264.319648pt;}
.x19{left:273.333333pt;}
.x15{left:286.666667pt;}
.x11{left:297.333333pt;}
.xc{left:301.333333pt;}
.x6{left:331.813120pt;}
.x4{left:340.054080pt;}
.x1{left:355.854080pt;}
.x1a{left:368.000000pt;}
.x2{left:396.819520pt;}
.x12{left:410.666667pt;}
.xd{left:414.666667pt;}
.x17{left:438.666667pt;}
.x1b{left:461.333333pt;}
.x13{left:514.666667pt;}
.x1c{left:556.000000pt;}
}




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